From 76078c70c312d563db438cc1e9feec691683a6c0 Mon Sep 17 00:00:00 2001 From: Emran Ramezan Date: Mon, 8 Jan 2024 22:00:32 +0000 Subject: [PATCH] POC #28, #34, #33 --- grammar.js | 18 +- queries/injections.scm | 10 +- src/grammar.json | 50 +- src/node-types.json | 67 + src/parser.c | 263128 ++++++++++++++++++++------------------ 5 files changed, 135515 insertions(+), 127758 deletions(-) diff --git a/grammar.js b/grammar.js index 58baf30..b6dbe7b 100644 --- a/grammar.js +++ b/grammar.js @@ -13,11 +13,13 @@ module.exports = grammar({ $._nested_directive, $.loop_operator, $.comment, - $.text + $.text, + $.alpine_js ), // https://stackoverflow.com/questions/13014947/regex-to-match-a-c-style-multiline-comment/36328890#36328890 - comment: $ => token(seq('{{--', /[^-]*-+([^}-][^-]*-+)*/, '}}')), + comment: ($) => + token(seq('{{--', /[^-]*-+([^}-][^-]*-+)*/, '}}')), // !keywords keyword: ($) => @@ -488,6 +490,14 @@ module.exports = grammar({ alias('@endvolt', $.directive_end) ), + alpine_js: ($) => + seq( + token(prec(1, /x-[a-zA-Z1-9]+=/)), + token(prec(1, /[\"\']/)), + $.text, + token(prec(1, /[\"\']/)) + ), + /*------------------------------------ / Do NOT change below this line  / / without running tests  / @@ -544,11 +554,11 @@ module.exports = grammar({ _text: ($) => choice( token(prec(-1, /@[a-zA-Z\d]*[^\(-]/)), // custom directive conflict resolution - token(prec(-2, /[{}!@()?,-]/)), // orphan tags + token(prec(-2, /[\"\'x{}!@()?,-]/)), // orphan tags token( prec( -1, - /[^\s(){!}@-]([^(){!}@,?]*[^{!}()@?,-])?/ //general text + /[^\"\'\sx(){!}@-]([^\"\'x(){!}@,?]*[^\"\'x{!}()@?,-])?/ //general text ) ) ), diff --git a/queries/injections.scm b/queries/injections.scm index ce96a7b..b31138d 100644 --- a/queries/injections.scm +++ b/queries/injections.scm @@ -1,15 +1,17 @@ ((text) @injection.content - (#not-has-ancestor? @injection.content "envoy") + (#not-has-ancestor? @injection.content "envoy" "alpine_js") (#set! injection.combined) (#set! injection.language php)) -; could be bash or zsh -; or whatever tree-sitter grammar you have. ((text) @injection.content (#has-ancestor? @injection.content "envoy") (#set! injection.combined) - (#set! injection.language bash)) + (#set! injection.language shell)) +((text) @injection.content + (#has-ancestor? @injection.content "alpine_js") + (#set! injection.combined) + (#set! injection.language js)) ((php_only) @injection.content (#set! injection.language php_only)) diff --git a/src/grammar.json b/src/grammar.json index c4e7de3..69c420f 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -42,6 +42,10 @@ { "type": "SYMBOL", "name": "text" + }, + { + "type": "SYMBOL", + "name": "alpine_js" } ] }, @@ -2047,6 +2051,48 @@ } ] }, + "alpine_js": { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "x-[a-zA-Z1-9]+=" + } + } + }, + { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[\\\"\\']" + } + } + }, + { + "type": "SYMBOL", + "name": "text" + }, + { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[\\\"\\']" + } + } + } + ] + }, "_directive_body": { "type": "REPEAT1", "content": { @@ -2351,7 +2397,7 @@ "value": -2, "content": { "type": "PATTERN", - "value": "[{}!@()?,-]" + "value": "[\\\"\\'x{}!@()?,-]" } } }, @@ -2362,7 +2408,7 @@ "value": -1, "content": { "type": "PATTERN", - "value": "[^\\s(){!}@-]([^(){!}@,?]*[^{!}()@?,-])?" + "value": "[^\\\"\\'\\sx(){!}@-]([^\\\"\\'x(){!}@,?]*[^\\\"\\'x{!}()@?,-])?" } } } diff --git a/src/node-types.json b/src/node-types.json index 17434cc..e28fa7e 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1,4 +1,19 @@ [ + { + "type": "alpine_js", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "text", + "named": true + } + ] + } + }, { "type": "attribute", "named": true, @@ -34,6 +49,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "alpine_js", + "named": true + }, { "type": "attribute", "named": true @@ -141,6 +160,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "alpine_js", + "named": true + }, { "type": "attribute", "named": true @@ -236,6 +259,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "alpine_js", + "named": true + }, { "type": "attribute", "named": true @@ -378,6 +405,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "alpine_js", + "named": true + }, { "type": "attribute", "named": true @@ -481,6 +512,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "alpine_js", + "named": true + }, { "type": "attribute", "named": true @@ -626,6 +661,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "alpine_js", + "named": true + }, { "type": "attribute", "named": true @@ -729,6 +768,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "alpine_js", + "named": true + }, { "type": "attribute", "named": true @@ -859,6 +902,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "alpine_js", + "named": true + }, { "type": "attribute", "named": true @@ -981,6 +1028,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "alpine_js", + "named": true + }, { "type": "attribute", "named": true @@ -1132,6 +1183,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "alpine_js", + "named": true + }, { "type": "attribute", "named": true @@ -1235,6 +1290,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "alpine_js", + "named": true + }, { "type": "attribute", "named": true @@ -1338,6 +1397,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "alpine_js", + "named": true + }, { "type": "attribute", "named": true @@ -1446,6 +1509,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "alpine_js", + "named": true + }, { "type": "attribute", "named": true diff --git a/src/parser.c b/src/parser.c index 5cfda94..17c5cb4 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,11 +14,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 6740 +#define STATE_COUNT 6882 #define LARGE_STATE_COUNT 658 -#define SYMBOL_COUNT 190 +#define SYMBOL_COUNT 193 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 107 +#define TOKEN_COUNT 109 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 6 @@ -124,96 +124,99 @@ enum { anon_sym_ATendteleport = 97, anon_sym_ATvolt = 98, anon_sym_ATendvolt = 99, - aux_sym_parameter_token1 = 100, - anon_sym_LPAREN2 = 101, - anon_sym_RPAREN2 = 102, - aux_sym__section_parameter_token1 = 103, - aux_sym__text_token1 = 104, - aux_sym__text_token2 = 105, - aux_sym__text_token3 = 106, - sym_blade = 107, - sym__definition = 108, - sym_keyword = 109, - sym_php_statement = 110, - sym__escaped = 111, - sym__unescaped = 112, - sym__raw = 113, - sym__inline_raw = 114, - sym__multi_line_raw = 115, - sym_attribute = 116, - sym__inline_directive = 117, - sym__nested_directive = 118, - sym_fragment = 119, - sym_section = 120, - sym_inlineSection = 121, - sym_once = 122, - sym_verbatim = 123, - sym_stack = 124, - sym__push = 125, - sym__pushOnce = 126, - sym__pushIf = 127, - sym__prepend = 128, - sym__prependOnce = 129, - sym_conditional = 130, - sym_conditional_keyword = 131, - sym__if = 132, - sym__unless = 133, - sym__isset = 134, - sym__empty = 135, - sym__auth = 136, - sym__guest = 137, - sym__production = 138, - sym__env = 139, - sym__hasSection = 140, - sym__sectionMissing = 141, - sym__error = 142, - sym_authorization = 143, - sym__can = 144, - sym__cannot = 145, - sym__canany = 146, - sym__feature = 147, - sym__custom = 148, - sym_switch = 149, - sym__case = 150, - sym_loop = 151, - sym_loop_operator = 152, - sym__for = 153, - sym__foreach = 154, - sym__forelse = 155, - sym__while = 156, - sym_envoy = 157, - sym__setup = 158, - sym__task = 159, - sym__story = 160, - sym__hooks = 161, - sym__before = 162, - sym__after = 163, - sym__envoy_error = 164, - sym__success = 165, - sym__finished = 166, - sym__notification = 167, - sym_livewire = 168, - sym__persist = 169, - sym__teleport = 170, - sym__volt = 171, - aux_sym__directive_body = 172, - sym__directive_body_with_parameter = 173, - sym__if_statement_directive_body = 174, - sym__if_statement_directive_body_with_optional_parameter = 175, - aux_sym__if_statement_directive_body_with_no_parameter = 176, - sym_parameter = 177, - sym__text_with_parenthesis = 178, - sym__directive_parameter = 179, - sym__section_parameter = 180, - sym_php_only = 181, - sym_text = 182, - sym__text = 183, - aux_sym_blade_repeat1 = 184, - aux_sym_switch_repeat1 = 185, - aux_sym__before_repeat1 = 186, - aux_sym__if_statement_directive_body_repeat1 = 187, - aux_sym__text_with_parenthesis_repeat1 = 188, - aux_sym_php_only_repeat1 = 189, + aux_sym_alpine_js_token1 = 100, + aux_sym_alpine_js_token2 = 101, + aux_sym_parameter_token1 = 102, + anon_sym_LPAREN2 = 103, + anon_sym_RPAREN2 = 104, + aux_sym__section_parameter_token1 = 105, + aux_sym__text_token1 = 106, + aux_sym__text_token2 = 107, + aux_sym__text_token3 = 108, + sym_blade = 109, + sym__definition = 110, + sym_keyword = 111, + sym_php_statement = 112, + sym__escaped = 113, + sym__unescaped = 114, + sym__raw = 115, + sym__inline_raw = 116, + sym__multi_line_raw = 117, + sym_attribute = 118, + sym__inline_directive = 119, + sym__nested_directive = 120, + sym_fragment = 121, + sym_section = 122, + sym_inlineSection = 123, + sym_once = 124, + sym_verbatim = 125, + sym_stack = 126, + sym__push = 127, + sym__pushOnce = 128, + sym__pushIf = 129, + sym__prepend = 130, + sym__prependOnce = 131, + sym_conditional = 132, + sym_conditional_keyword = 133, + sym__if = 134, + sym__unless = 135, + sym__isset = 136, + sym__empty = 137, + sym__auth = 138, + sym__guest = 139, + sym__production = 140, + sym__env = 141, + sym__hasSection = 142, + sym__sectionMissing = 143, + sym__error = 144, + sym_authorization = 145, + sym__can = 146, + sym__cannot = 147, + sym__canany = 148, + sym__feature = 149, + sym__custom = 150, + sym_switch = 151, + sym__case = 152, + sym_loop = 153, + sym_loop_operator = 154, + sym__for = 155, + sym__foreach = 156, + sym__forelse = 157, + sym__while = 158, + sym_envoy = 159, + sym__setup = 160, + sym__task = 161, + sym__story = 162, + sym__hooks = 163, + sym__before = 164, + sym__after = 165, + sym__envoy_error = 166, + sym__success = 167, + sym__finished = 168, + sym__notification = 169, + sym_livewire = 170, + sym__persist = 171, + sym__teleport = 172, + sym__volt = 173, + sym_alpine_js = 174, + aux_sym__directive_body = 175, + sym__directive_body_with_parameter = 176, + sym__if_statement_directive_body = 177, + sym__if_statement_directive_body_with_optional_parameter = 178, + aux_sym__if_statement_directive_body_with_no_parameter = 179, + sym_parameter = 180, + sym__text_with_parenthesis = 181, + sym__directive_parameter = 182, + sym__section_parameter = 183, + sym_php_only = 184, + sym_text = 185, + sym__text = 186, + aux_sym_blade_repeat1 = 187, + aux_sym_switch_repeat1 = 188, + aux_sym__before_repeat1 = 189, + aux_sym__if_statement_directive_body_repeat1 = 190, + aux_sym__text_with_parenthesis_repeat1 = 191, + aux_sym_php_only_repeat1 = 192, }; static const char * const ts_symbol_names[] = { @@ -317,6 +320,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_ATendteleport] = "directive_end", [anon_sym_ATvolt] = "directive_start", [anon_sym_ATendvolt] = "directive_end", + [aux_sym_alpine_js_token1] = "alpine_js_token1", + [aux_sym_alpine_js_token2] = "alpine_js_token2", [aux_sym_parameter_token1] = "parameter_token1", [anon_sym_LPAREN2] = "bracket_start", [anon_sym_RPAREN2] = "bracket_end", @@ -389,6 +394,7 @@ static const char * const ts_symbol_names[] = { [sym__persist] = "_persist", [sym__teleport] = "_teleport", [sym__volt] = "_volt", + [sym_alpine_js] = "alpine_js", [aux_sym__directive_body] = "_directive_body", [sym__directive_body_with_parameter] = "_directive_body_with_parameter", [sym__if_statement_directive_body] = "_if_statement_directive_body", @@ -510,6 +516,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_ATendteleport] = anon_sym_ATendphp, [anon_sym_ATvolt] = anon_sym_ATphp, [anon_sym_ATendvolt] = anon_sym_ATendphp, + [aux_sym_alpine_js_token1] = aux_sym_alpine_js_token1, + [aux_sym_alpine_js_token2] = aux_sym_alpine_js_token2, [aux_sym_parameter_token1] = aux_sym_parameter_token1, [anon_sym_LPAREN2] = anon_sym_LBRACE_LBRACE, [anon_sym_RPAREN2] = anon_sym_RBRACE_RBRACE, @@ -582,6 +590,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__persist] = sym__persist, [sym__teleport] = sym__teleport, [sym__volt] = sym__volt, + [sym_alpine_js] = sym_alpine_js, [aux_sym__directive_body] = aux_sym__directive_body, [sym__directive_body_with_parameter] = sym__directive_body_with_parameter, [sym__if_statement_directive_body] = sym__if_statement_directive_body, @@ -1003,6 +1012,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [aux_sym_alpine_js_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_alpine_js_token2] = { + .visible = false, + .named = false, + }, [aux_sym_parameter_token1] = { .visible = false, .named = false, @@ -1291,6 +1308,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym_alpine_js] = { + .visible = true, + .named = true, + }, [aux_sym__directive_body] = { .visible = false, .named = false, @@ -1457,8 +1478,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [54] = 2, [55] = 4, [56] = 2, - [57] = 4, - [58] = 2, + [57] = 2, + [58] = 4, [59] = 4, [60] = 2, [61] = 2, @@ -1475,77 +1496,77 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [72] = 72, [73] = 73, [74] = 74, - [75] = 72, + [75] = 74, [76] = 76, - [77] = 77, - [78] = 77, - [79] = 73, - [80] = 73, - [81] = 73, - [82] = 73, - [83] = 77, - [84] = 73, - [85] = 74, - [86] = 76, - [87] = 73, - [88] = 77, - [89] = 89, - [90] = 76, - [91] = 73, - [92] = 73, - [93] = 73, - [94] = 73, - [95] = 73, - [96] = 73, - [97] = 73, - [98] = 77, - [99] = 73, - [100] = 73, + [77] = 74, + [78] = 76, + [79] = 79, + [80] = 76, + [81] = 72, + [82] = 76, + [83] = 76, + [84] = 74, + [85] = 73, + [86] = 73, + [87] = 76, + [88] = 76, + [89] = 73, + [90] = 90, + [91] = 79, + [92] = 76, + [93] = 76, + [94] = 76, + [95] = 76, + [96] = 76, + [97] = 76, + [98] = 76, + [99] = 74, + [100] = 100, [101] = 76, - [102] = 102, - [103] = 74, - [104] = 73, + [102] = 73, + [103] = 79, + [104] = 90, [105] = 76, - [106] = 89, - [107] = 76, - [108] = 73, + [106] = 76, + [107] = 79, + [108] = 76, [109] = 74, - [110] = 73, - [111] = 73, - [112] = 74, - [113] = 73, - [114] = 77, - [115] = 77, - [116] = 73, - [117] = 74, - [118] = 74, - [119] = 77, + [110] = 76, + [111] = 76, + [112] = 76, + [113] = 74, + [114] = 76, + [115] = 79, + [116] = 76, + [117] = 73, + [118] = 73, + [119] = 79, [120] = 74, - [121] = 76, - [122] = 77, + [121] = 73, + [122] = 79, [123] = 74, - [124] = 76, - [125] = 76, - [126] = 76, - [127] = 73, - [128] = 73, - [129] = 76, - [130] = 74, - [131] = 77, - [132] = 73, - [133] = 73, - [134] = 73, - [135] = 73, - [136] = 76, - [137] = 74, + [124] = 73, + [125] = 79, + [126] = 79, + [127] = 76, + [128] = 79, + [129] = 79, + [130] = 79, + [131] = 73, + [132] = 74, + [133] = 76, + [134] = 76, + [135] = 76, + [136] = 79, + [137] = 76, [138] = 73, - [139] = 73, - [140] = 77, - [141] = 73, - [142] = 73, - [143] = 73, - [144] = 73, - [145] = 73, + [139] = 76, + [140] = 74, + [141] = 76, + [142] = 76, + [143] = 76, + [144] = 76, + [145] = 76, [146] = 76, [147] = 147, [148] = 147, @@ -1571,25 +1592,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [168] = 147, [169] = 147, [170] = 147, - [171] = 147, - [172] = 172, + [171] = 171, + [172] = 147, [173] = 147, [174] = 147, [175] = 147, [176] = 147, [177] = 147, [178] = 147, - [179] = 172, + [179] = 147, [180] = 147, [181] = 147, [182] = 147, - [183] = 147, + [183] = 171, [184] = 184, [185] = 185, [186] = 186, [187] = 187, - [188] = 184, - [189] = 189, + [188] = 188, + [189] = 184, [190] = 190, [191] = 191, [192] = 192, @@ -1600,41 +1621,41 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [197] = 197, [198] = 186, [199] = 187, - [200] = 184, - [201] = 189, + [200] = 188, + [201] = 184, [202] = 190, [203] = 191, - [204] = 193, - [205] = 192, - [206] = 193, - [207] = 185, - [208] = 192, - [209] = 195, - [210] = 196, - [211] = 191, - [212] = 197, - [213] = 190, - [214] = 186, - [215] = 187, - [216] = 184, - [217] = 189, + [204] = 192, + [205] = 193, + [206] = 185, + [207] = 193, + [208] = 195, + [209] = 196, + [210] = 192, + [211] = 197, + [212] = 186, + [213] = 187, + [214] = 191, + [215] = 188, + [216] = 190, + [217] = 184, [218] = 190, [219] = 191, [220] = 192, - [221] = 189, - [222] = 193, - [223] = 185, - [224] = 195, - [225] = 184, - [226] = 196, - [227] = 197, - [228] = 186, + [221] = 193, + [222] = 185, + [223] = 195, + [224] = 184, + [225] = 196, + [226] = 197, + [227] = 186, + [228] = 188, [229] = 187, - [230] = 186, + [230] = 188, [231] = 184, - [232] = 189, - [233] = 190, - [234] = 191, + [232] = 190, + [233] = 191, + [234] = 186, [235] = 192, [236] = 193, [237] = 185, @@ -1643,54 +1664,54 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [240] = 197, [241] = 186, [242] = 187, - [243] = 184, - [244] = 189, + [243] = 188, + [244] = 184, [245] = 190, - [246] = 246, - [247] = 191, - [248] = 192, - [249] = 193, - [250] = 246, - [251] = 185, - [252] = 195, - [253] = 196, + [246] = 191, + [247] = 192, + [248] = 193, + [249] = 185, + [250] = 250, + [251] = 195, + [252] = 196, + [253] = 253, [254] = 197, [255] = 186, [256] = 187, - [257] = 257, + [257] = 188, [258] = 184, - [259] = 189, - [260] = 190, - [261] = 191, + [259] = 190, + [260] = 191, + [261] = 261, [262] = 192, [263] = 193, [264] = 185, [265] = 195, - [266] = 266, - [267] = 187, - [268] = 268, - [269] = 196, - [270] = 197, - [271] = 186, - [272] = 187, - [273] = 184, - [274] = 189, + [266] = 187, + [267] = 196, + [268] = 197, + [269] = 186, + [270] = 253, + [271] = 187, + [272] = 272, + [273] = 188, + [274] = 184, [275] = 190, - [276] = 196, - [277] = 191, - [278] = 192, - [279] = 193, - [280] = 185, + [276] = 191, + [277] = 192, + [278] = 193, + [279] = 185, + [280] = 197, [281] = 195, - [282] = 185, - [283] = 195, - [284] = 185, - [285] = 196, - [286] = 197, - [287] = 186, + [282] = 196, + [283] = 196, + [284] = 197, + [285] = 186, + [286] = 195, + [287] = 185, [288] = 187, - [289] = 184, - [290] = 189, + [289] = 188, + [290] = 184, [291] = 190, [292] = 191, [293] = 192, @@ -1702,8 +1723,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [299] = 197, [300] = 186, [301] = 187, - [302] = 184, - [303] = 189, + [302] = 188, + [303] = 184, [304] = 190, [305] = 191, [306] = 192, @@ -1715,8 +1736,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [312] = 197, [313] = 186, [314] = 187, - [315] = 184, - [316] = 189, + [315] = 188, + [316] = 184, [317] = 190, [318] = 191, [319] = 192, @@ -1728,12 +1749,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [325] = 197, [326] = 186, [327] = 187, - [328] = 266, + [328] = 188, [329] = 184, - [330] = 189, - [331] = 190, - [332] = 191, - [333] = 192, + [330] = 190, + [331] = 191, + [332] = 192, + [333] = 250, [334] = 193, [335] = 185, [336] = 195, @@ -1742,322 +1763,322 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [339] = 197, [340] = 186, [341] = 187, - [342] = 184, - [343] = 189, + [342] = 188, + [343] = 184, [344] = 190, - [345] = 246, - [346] = 191, - [347] = 192, - [348] = 189, - [349] = 193, - [350] = 268, - [351] = 185, - [352] = 195, - [353] = 184, - [354] = 196, - [355] = 197, + [345] = 191, + [346] = 192, + [347] = 193, + [348] = 185, + [349] = 195, + [350] = 250, + [351] = 184, + [352] = 196, + [353] = 188, + [354] = 197, + [355] = 355, [356] = 186, [357] = 187, - [358] = 184, - [359] = 189, + [358] = 188, + [359] = 184, [360] = 190, [361] = 191, [362] = 192, [363] = 193, - [364] = 266, - [365] = 185, - [366] = 268, - [367] = 195, - [368] = 196, - [369] = 196, - [370] = 197, - [371] = 186, + [364] = 185, + [365] = 195, + [366] = 272, + [367] = 196, + [368] = 197, + [369] = 253, + [370] = 186, + [371] = 272, [372] = 187, - [373] = 186, - [374] = 197, - [375] = 189, - [376] = 190, - [377] = 191, - [378] = 192, - [379] = 193, - [380] = 196, - [381] = 185, - [382] = 195, - [383] = 195, - [384] = 196, - [385] = 197, + [373] = 188, + [374] = 272, + [375] = 190, + [376] = 191, + [377] = 192, + [378] = 193, + [379] = 186, + [380] = 185, + [381] = 195, + [382] = 197, + [383] = 196, + [384] = 197, + [385] = 196, [386] = 186, [387] = 187, - [388] = 184, - [389] = 189, + [388] = 188, + [389] = 184, [390] = 190, [391] = 191, [392] = 192, [393] = 193, [394] = 185, [395] = 195, - [396] = 185, + [396] = 195, [397] = 196, [398] = 197, [399] = 186, [400] = 187, - [401] = 184, - [402] = 189, + [401] = 188, + [402] = 184, [403] = 190, [404] = 191, [405] = 192, [406] = 193, [407] = 185, [408] = 195, - [409] = 193, + [409] = 185, [410] = 196, [411] = 197, [412] = 186, [413] = 187, - [414] = 184, - [415] = 189, + [414] = 188, + [415] = 184, [416] = 190, [417] = 191, [418] = 192, [419] = 193, [420] = 185, [421] = 195, - [422] = 268, - [423] = 423, - [424] = 192, - [425] = 196, - [426] = 197, - [427] = 186, - [428] = 187, - [429] = 184, - [430] = 189, - [431] = 266, - [432] = 190, - [433] = 191, - [434] = 192, - [435] = 193, - [436] = 185, - [437] = 195, - [438] = 191, - [439] = 246, - [440] = 196, - [441] = 197, - [442] = 190, - [443] = 186, - [444] = 246, - [445] = 187, - [446] = 184, - [447] = 189, - [448] = 190, - [449] = 191, - [450] = 192, + [422] = 193, + [423] = 196, + [424] = 197, + [425] = 186, + [426] = 187, + [427] = 188, + [428] = 253, + [429] = 272, + [430] = 184, + [431] = 190, + [432] = 191, + [433] = 192, + [434] = 193, + [435] = 185, + [436] = 195, + [437] = 250, + [438] = 192, + [439] = 196, + [440] = 197, + [441] = 186, + [442] = 187, + [443] = 188, + [444] = 184, + [445] = 250, + [446] = 190, + [447] = 191, + [448] = 191, + [449] = 192, + [450] = 197, [451] = 193, [452] = 185, [453] = 195, - [454] = 189, + [454] = 190, [455] = 196, [456] = 197, [457] = 186, - [458] = 266, - [459] = 187, - [460] = 268, - [461] = 184, - [462] = 189, - [463] = 190, - [464] = 191, - [465] = 192, - [466] = 193, - [467] = 197, - [468] = 184, - [469] = 195, - [470] = 187, - [471] = 196, - [472] = 197, - [473] = 186, - [474] = 186, - [475] = 187, + [458] = 187, + [459] = 188, + [460] = 184, + [461] = 190, + [462] = 191, + [463] = 192, + [464] = 253, + [465] = 193, + [466] = 272, + [467] = 185, + [468] = 195, + [469] = 184, + [470] = 196, + [471] = 197, + [472] = 186, + [473] = 187, + [474] = 188, + [475] = 188, [476] = 184, - [477] = 189, - [478] = 190, - [479] = 191, - [480] = 192, + [477] = 190, + [478] = 191, + [479] = 192, + [480] = 187, [481] = 193, [482] = 185, [483] = 195, - [484] = 197, + [484] = 186, [485] = 196, [486] = 197, [487] = 186, [488] = 187, - [489] = 184, - [490] = 189, + [489] = 188, + [490] = 184, [491] = 190, [492] = 191, [493] = 192, [494] = 193, [495] = 185, [496] = 195, - [497] = 195, + [497] = 193, [498] = 196, [499] = 197, [500] = 186, [501] = 187, - [502] = 184, - [503] = 189, + [502] = 188, + [503] = 184, [504] = 190, [505] = 191, [506] = 192, [507] = 193, [508] = 185, [509] = 195, - [510] = 268, + [510] = 197, [511] = 196, [512] = 197, [513] = 186, [514] = 187, - [515] = 184, - [516] = 246, - [517] = 197, - [518] = 189, - [519] = 190, - [520] = 191, - [521] = 192, - [522] = 193, - [523] = 185, - [524] = 195, - [525] = 266, - [526] = 195, - [527] = 196, - [528] = 197, - [529] = 186, - [530] = 187, + [515] = 188, + [516] = 184, + [517] = 190, + [518] = 191, + [519] = 192, + [520] = 193, + [521] = 185, + [522] = 195, + [523] = 250, + [524] = 196, + [525] = 196, + [526] = 196, + [527] = 197, + [528] = 186, + [529] = 187, + [530] = 188, [531] = 184, - [532] = 189, - [533] = 246, - [534] = 190, - [535] = 191, - [536] = 185, - [537] = 192, - [538] = 268, - [539] = 193, - [540] = 185, - [541] = 195, - [542] = 193, - [543] = 196, - [544] = 197, - [545] = 186, + [532] = 250, + [533] = 190, + [534] = 191, + [535] = 192, + [536] = 193, + [537] = 185, + [538] = 195, + [539] = 195, + [540] = 250, + [541] = 196, + [542] = 197, + [543] = 185, + [544] = 186, + [545] = 253, [546] = 187, - [547] = 184, - [548] = 189, + [547] = 188, + [548] = 184, [549] = 190, [550] = 191, [551] = 192, - [552] = 266, - [553] = 193, - [554] = 268, - [555] = 185, - [556] = 195, - [557] = 192, - [558] = 196, - [559] = 197, - [560] = 186, - [561] = 187, - [562] = 187, + [552] = 193, + [553] = 185, + [554] = 195, + [555] = 195, + [556] = 196, + [557] = 197, + [558] = 186, + [559] = 253, + [560] = 187, + [561] = 272, + [562] = 188, [563] = 184, - [564] = 189, - [565] = 190, - [566] = 191, - [567] = 192, - [568] = 266, - [569] = 193, - [570] = 185, - [571] = 195, - [572] = 191, - [573] = 196, - [574] = 197, - [575] = 186, + [564] = 190, + [565] = 191, + [566] = 192, + [567] = 193, + [568] = 185, + [569] = 253, + [570] = 195, + [571] = 188, + [572] = 196, + [573] = 197, + [574] = 186, + [575] = 192, [576] = 187, - [577] = 184, - [578] = 189, + [577] = 188, + [578] = 184, [579] = 190, [580] = 191, [581] = 192, [582] = 193, [583] = 185, [584] = 195, - [585] = 190, + [585] = 191, [586] = 196, [587] = 197, [588] = 186, [589] = 187, - [590] = 184, - [591] = 189, + [590] = 188, + [591] = 184, [592] = 190, [593] = 191, [594] = 192, [595] = 193, [596] = 185, [597] = 195, - [598] = 189, + [598] = 190, [599] = 196, [600] = 197, [601] = 186, [602] = 187, - [603] = 184, - [604] = 189, + [603] = 188, + [604] = 184, [605] = 190, [606] = 191, [607] = 192, [608] = 193, [609] = 185, - [610] = 196, - [611] = 246, - [612] = 195, - [613] = 184, - [614] = 196, - [615] = 197, - [616] = 186, - [617] = 187, + [610] = 195, + [611] = 184, + [612] = 196, + [613] = 197, + [614] = 186, + [615] = 187, + [616] = 272, + [617] = 188, [618] = 184, - [619] = 189, - [620] = 266, - [621] = 246, - [622] = 268, - [623] = 190, - [624] = 191, - [625] = 246, - [626] = 192, - [627] = 246, - [628] = 266, - [629] = 268, - [630] = 187, - [631] = 193, - [632] = 185, - [633] = 246, - [634] = 266, - [635] = 268, - [636] = 195, - [637] = 246, - [638] = 266, - [639] = 268, - [640] = 257, - [641] = 246, - [642] = 266, - [643] = 268, - [644] = 246, - [645] = 266, - [646] = 266, - [647] = 268, - [648] = 268, - [649] = 246, - [650] = 266, - [651] = 268, - [652] = 268, - [653] = 196, - [654] = 268, - [655] = 197, - [656] = 186, - [657] = 268, + [619] = 250, + [620] = 190, + [621] = 253, + [622] = 272, + [623] = 191, + [624] = 192, + [625] = 250, + [626] = 193, + [627] = 253, + [628] = 272, + [629] = 185, + [630] = 195, + [631] = 250, + [632] = 253, + [633] = 272, + [634] = 196, + [635] = 250, + [636] = 250, + [637] = 253, + [638] = 187, + [639] = 272, + [640] = 261, + [641] = 250, + [642] = 253, + [643] = 272, + [644] = 250, + [645] = 253, + [646] = 272, + [647] = 250, + [648] = 253, + [649] = 272, + [650] = 272, + [651] = 197, + [652] = 186, + [653] = 272, + [654] = 253, + [655] = 187, + [656] = 272, + [657] = 272, [658] = 658, [659] = 658, [660] = 658, @@ -2074,60 +2095,60 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [671] = 658, [672] = 672, [673] = 673, - [674] = 674, - [675] = 672, + [674] = 673, + [675] = 673, [676] = 672, - [677] = 674, + [677] = 673, [678] = 672, - [679] = 674, + [679] = 673, [680] = 672, - [681] = 674, + [681] = 673, [682] = 672, - [683] = 674, + [683] = 683, [684] = 684, - [685] = 673, - [686] = 674, + [685] = 672, + [686] = 673, [687] = 672, - [688] = 674, + [688] = 683, [689] = 684, - [690] = 673, - [691] = 673, - [692] = 674, + [690] = 684, + [691] = 672, + [692] = 673, [693] = 672, [694] = 684, - [695] = 684, + [695] = 683, [696] = 684, - [697] = 673, - [698] = 673, + [697] = 684, + [698] = 683, [699] = 672, - [700] = 672, - [701] = 684, - [702] = 672, - [703] = 672, + [700] = 673, + [701] = 673, + [702] = 683, + [703] = 683, [704] = 684, - [705] = 673, - [706] = 674, + [705] = 683, + [706] = 683, [707] = 673, - [708] = 673, - [709] = 684, - [710] = 674, - [711] = 684, - [712] = 674, - [713] = 672, + [708] = 683, + [709] = 673, + [710] = 672, + [711] = 672, + [712] = 684, + [713] = 683, [714] = 684, - [715] = 673, - [716] = 684, + [715] = 683, + [716] = 683, [717] = 684, - [718] = 684, - [719] = 684, - [720] = 674, - [721] = 673, - [722] = 674, - [723] = 673, - [724] = 673, - [725] = 674, - [726] = 672, - [727] = 673, + [718] = 683, + [719] = 673, + [720] = 672, + [721] = 684, + [722] = 672, + [723] = 683, + [724] = 684, + [725] = 684, + [726] = 673, + [727] = 684, [728] = 658, [729] = 658, [730] = 658, @@ -2151,25 +2172,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [748] = 658, [749] = 749, [750] = 750, - [751] = 672, - [752] = 674, + [751] = 673, + [752] = 672, [753] = 753, - [754] = 754, - [755] = 684, - [756] = 753, + [754] = 683, + [755] = 755, + [756] = 673, [757] = 672, - [758] = 674, - [759] = 754, - [760] = 753, + [758] = 753, + [759] = 755, + [760] = 673, [761] = 672, - [762] = 674, - [763] = 754, - [764] = 753, - [765] = 765, + [762] = 755, + [763] = 753, + [764] = 755, + [765] = 750, [766] = 766, [767] = 767, [768] = 768, - [769] = 749, + [769] = 769, [770] = 770, [771] = 771, [772] = 772, @@ -2180,11 +2201,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [777] = 777, [778] = 778, [779] = 779, - [780] = 754, + [780] = 753, [781] = 781, [782] = 782, [783] = 783, - [784] = 784, + [784] = 749, [785] = 785, [786] = 786, [787] = 787, @@ -2195,17 +2216,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [792] = 792, [793] = 793, [794] = 794, - [795] = 672, + [795] = 795, [796] = 796, [797] = 797, [798] = 798, [799] = 799, [800] = 800, - [801] = 750, + [801] = 801, [802] = 802, - [803] = 803, + [803] = 755, [804] = 804, - [805] = 753, + [805] = 673, [806] = 806, [807] = 807, [808] = 808, @@ -2215,7 +2236,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [812] = 812, [813] = 813, [814] = 814, - [815] = 754, + [815] = 815, [816] = 816, [817] = 817, [818] = 818, @@ -2225,7 +2246,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [822] = 822, [823] = 823, [824] = 824, - [825] = 825, + [825] = 753, [826] = 826, [827] = 827, [828] = 828, @@ -2244,5902 +2265,6044 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [841] = 841, [842] = 842, [843] = 843, - [844] = 753, - [845] = 765, - [846] = 766, - [847] = 767, - [848] = 768, - [849] = 790, - [850] = 749, + [844] = 844, + [845] = 845, + [846] = 846, + [847] = 766, + [848] = 767, + [849] = 768, + [850] = 769, [851] = 770, [852] = 771, [853] = 772, - [854] = 773, - [855] = 774, - [856] = 775, - [857] = 776, - [858] = 858, - [859] = 778, - [860] = 779, - [861] = 754, - [862] = 781, - [863] = 782, - [864] = 783, - [865] = 784, - [866] = 785, - [867] = 786, - [868] = 787, - [869] = 684, - [870] = 788, - [871] = 789, - [872] = 791, - [873] = 792, - [874] = 874, - [875] = 793, - [876] = 794, - [877] = 796, - [878] = 797, - [879] = 798, - [880] = 799, - [881] = 777, - [882] = 750, - [883] = 802, - [884] = 803, - [885] = 804, - [886] = 753, - [887] = 672, - [888] = 806, - [889] = 807, - [890] = 808, - [891] = 809, - [892] = 810, - [893] = 811, - [894] = 812, - [895] = 674, - [896] = 813, - [897] = 897, - [898] = 814, - [899] = 816, - [900] = 817, - [901] = 818, - [902] = 819, - [903] = 820, - [904] = 821, - [905] = 800, - [906] = 823, - [907] = 754, - [908] = 824, - [909] = 825, - [910] = 826, - [911] = 828, - [912] = 829, - [913] = 830, - [914] = 831, - [915] = 832, - [916] = 833, - [917] = 834, - [918] = 835, - [919] = 827, - [920] = 836, - [921] = 837, - [922] = 838, - [923] = 839, - [924] = 843, - [925] = 840, - [926] = 841, - [927] = 842, - [928] = 858, - [929] = 765, - [930] = 766, - [931] = 822, - [932] = 768, - [933] = 790, - [934] = 749, - [935] = 770, - [936] = 753, - [937] = 767, - [938] = 684, - [939] = 684, - [940] = 684, - [941] = 684, - [942] = 684, - [943] = 684, - [944] = 684, - [945] = 684, - [946] = 684, - [947] = 674, - [948] = 684, - [949] = 674, - [950] = 684, - [951] = 672, - [952] = 772, - [953] = 874, - [954] = 827, - [955] = 684, - [956] = 674, - [957] = 672, - [958] = 771, - [959] = 874, - [960] = 827, - [961] = 773, - [962] = 674, - [963] = 672, - [964] = 774, - [965] = 874, - [966] = 874, - [967] = 827, - [968] = 674, - [969] = 672, - [970] = 776, - [971] = 777, - [972] = 674, - [973] = 672, - [974] = 775, - [975] = 897, - [976] = 779, - [977] = 674, - [978] = 672, - [979] = 672, - [980] = 754, - [981] = 778, - [982] = 674, - [983] = 672, - [984] = 782, - [985] = 783, - [986] = 674, - [987] = 674, + [854] = 755, + [855] = 773, + [856] = 774, + [857] = 796, + [858] = 775, + [859] = 776, + [860] = 777, + [861] = 778, + [862] = 779, + [863] = 753, + [864] = 781, + [865] = 750, + [866] = 783, + [867] = 749, + [868] = 785, + [869] = 786, + [870] = 787, + [871] = 683, + [872] = 788, + [873] = 789, + [874] = 790, + [875] = 791, + [876] = 792, + [877] = 793, + [878] = 794, + [879] = 795, + [880] = 820, + [881] = 797, + [882] = 798, + [883] = 799, + [884] = 884, + [885] = 800, + [886] = 801, + [887] = 782, + [888] = 755, + [889] = 804, + [890] = 806, + [891] = 807, + [892] = 808, + [893] = 809, + [894] = 810, + [895] = 811, + [896] = 812, + [897] = 813, + [898] = 673, + [899] = 814, + [900] = 815, + [901] = 816, + [902] = 817, + [903] = 818, + [904] = 819, + [905] = 838, + [906] = 672, + [907] = 821, + [908] = 822, + [909] = 823, + [910] = 824, + [911] = 826, + [912] = 802, + [913] = 828, + [914] = 829, + [915] = 830, + [916] = 831, + [917] = 832, + [918] = 753, + [919] = 753, + [920] = 833, + [921] = 834, + [922] = 835, + [923] = 836, + [924] = 846, + [925] = 839, + [926] = 840, + [927] = 841, + [928] = 842, + [929] = 843, + [930] = 837, + [931] = 844, + [932] = 827, + [933] = 683, + [934] = 683, + [935] = 683, + [936] = 683, + [937] = 683, + [938] = 683, + [939] = 683, + [940] = 683, + [941] = 672, + [942] = 683, + [943] = 672, + [944] = 683, + [945] = 683, + [946] = 672, + [947] = 755, + [948] = 673, + [949] = 845, + [950] = 884, + [951] = 837, + [952] = 683, + [953] = 673, + [954] = 766, + [955] = 884, + [956] = 837, + [957] = 750, + [958] = 672, + [959] = 673, + [960] = 768, + [961] = 884, + [962] = 837, + [963] = 769, + [964] = 672, + [965] = 673, + [966] = 767, + [967] = 771, + [968] = 672, + [969] = 673, + [970] = 772, + [971] = 773, + [972] = 672, + [973] = 673, + [974] = 770, + [975] = 774, + [976] = 672, + [977] = 884, + [978] = 673, + [979] = 775, + [980] = 672, + [981] = 673, + [982] = 776, + [983] = 777, + [984] = 672, + [985] = 673, + [986] = 796, + [987] = 779, [988] = 672, - [989] = 781, - [990] = 785, - [991] = 674, - [992] = 672, - [993] = 786, - [994] = 787, - [995] = 674, - [996] = 672, - [997] = 784, - [998] = 754, - [999] = 754, - [1000] = 788, - [1001] = 674, - [1002] = 672, - [1003] = 684, - [1004] = 791, - [1005] = 672, - [1006] = 792, - [1007] = 858, - [1008] = 842, - [1009] = 841, - [1010] = 827, - [1011] = 840, - [1012] = 843, - [1013] = 839, - [1014] = 838, - [1015] = 837, - [1016] = 836, - [1017] = 835, - [1018] = 834, - [1019] = 833, - [1020] = 832, - [1021] = 831, - [1022] = 830, - [1023] = 829, - [1024] = 828, - [1025] = 826, - [1026] = 825, - [1027] = 753, - [1028] = 824, - [1029] = 823, - [1030] = 822, - [1031] = 821, - [1032] = 820, - [1033] = 819, - [1034] = 818, - [1035] = 817, - [1036] = 816, - [1037] = 814, - [1038] = 897, - [1039] = 813, - [1040] = 812, - [1041] = 811, - [1042] = 810, - [1043] = 809, - [1044] = 808, - [1045] = 807, - [1046] = 806, - [1047] = 804, - [1048] = 803, - [1049] = 802, - [1050] = 750, - [1051] = 800, - [1052] = 799, - [1053] = 798, - [1054] = 797, - [1055] = 796, - [1056] = 794, - [1057] = 874, - [1058] = 793, - [1059] = 792, - [1060] = 791, - [1061] = 789, - [1062] = 788, - [1063] = 793, - [1064] = 787, - [1065] = 786, - [1066] = 785, - [1067] = 784, - [1068] = 783, - [1069] = 782, - [1070] = 672, - [1071] = 781, - [1072] = 779, - [1073] = 778, - [1074] = 777, - [1075] = 776, - [1076] = 775, - [1077] = 774, - [1078] = 674, - [1079] = 773, - [1080] = 772, - [1081] = 794, - [1082] = 771, - [1083] = 770, - [1084] = 749, - [1085] = 790, - [1086] = 768, - [1087] = 767, - [1088] = 766, - [1089] = 754, - [1090] = 796, - [1091] = 789, - [1092] = 765, - [1093] = 858, - [1094] = 842, - [1095] = 841, - [1096] = 840, - [1097] = 843, - [1098] = 839, - [1099] = 838, - [1100] = 837, - [1101] = 827, - [1102] = 836, - [1103] = 835, - [1104] = 834, - [1105] = 833, - [1106] = 674, - [1107] = 832, - [1108] = 831, - [1109] = 830, - [1110] = 829, - [1111] = 828, - [1112] = 826, - [1113] = 825, - [1114] = 824, - [1115] = 823, - [1116] = 822, - [1117] = 821, - [1118] = 753, - [1119] = 820, - [1120] = 819, - [1121] = 818, - [1122] = 817, - [1123] = 816, - [1124] = 814, - [1125] = 897, - [1126] = 813, - [1127] = 812, - [1128] = 811, - [1129] = 810, - [1130] = 809, - [1131] = 808, - [1132] = 807, - [1133] = 806, + [989] = 673, + [990] = 778, + [991] = 673, + [992] = 781, + [993] = 672, + [994] = 673, + [995] = 753, + [996] = 783, + [997] = 749, + [998] = 673, + [999] = 672, + [1000] = 782, + [1001] = 845, + [1002] = 844, + [1003] = 843, + [1004] = 842, + [1005] = 841, + [1006] = 840, + [1007] = 839, + [1008] = 846, + [1009] = 836, + [1010] = 753, + [1011] = 835, + [1012] = 834, + [1013] = 833, + [1014] = 832, + [1015] = 831, + [1016] = 830, + [1017] = 829, + [1018] = 828, + [1019] = 827, + [1020] = 826, + [1021] = 824, + [1022] = 837, + [1023] = 823, + [1024] = 822, + [1025] = 672, + [1026] = 821, + [1027] = 838, + [1028] = 819, + [1029] = 818, + [1030] = 817, + [1031] = 816, + [1032] = 815, + [1033] = 814, + [1034] = 813, + [1035] = 843, + [1036] = 812, + [1037] = 811, + [1038] = 810, + [1039] = 755, + [1040] = 809, + [1041] = 808, + [1042] = 807, + [1043] = 806, + [1044] = 804, + [1045] = 802, + [1046] = 801, + [1047] = 800, + [1048] = 799, + [1049] = 798, + [1050] = 797, + [1051] = 820, + [1052] = 795, + [1053] = 794, + [1054] = 793, + [1055] = 792, + [1056] = 791, + [1057] = 790, + [1058] = 789, + [1059] = 788, + [1060] = 786, + [1061] = 787, + [1062] = 786, + [1063] = 785, + [1064] = 749, + [1065] = 783, + [1066] = 782, + [1067] = 781, + [1068] = 779, + [1069] = 884, + [1070] = 778, + [1071] = 777, + [1072] = 776, + [1073] = 775, + [1074] = 796, + [1075] = 774, + [1076] = 773, + [1077] = 787, + [1078] = 772, + [1079] = 771, + [1080] = 770, + [1081] = 769, + [1082] = 768, + [1083] = 673, + [1084] = 767, + [1085] = 766, + [1086] = 683, + [1087] = 785, + [1088] = 750, + [1089] = 845, + [1090] = 844, + [1091] = 672, + [1092] = 843, + [1093] = 842, + [1094] = 841, + [1095] = 840, + [1096] = 839, + [1097] = 846, + [1098] = 836, + [1099] = 835, + [1100] = 834, + [1101] = 833, + [1102] = 753, + [1103] = 832, + [1104] = 831, + [1105] = 830, + [1106] = 829, + [1107] = 828, + [1108] = 827, + [1109] = 826, + [1110] = 824, + [1111] = 823, + [1112] = 822, + [1113] = 821, + [1114] = 837, + [1115] = 838, + [1116] = 819, + [1117] = 673, + [1118] = 818, + [1119] = 817, + [1120] = 816, + [1121] = 815, + [1122] = 814, + [1123] = 813, + [1124] = 812, + [1125] = 811, + [1126] = 810, + [1127] = 845, + [1128] = 809, + [1129] = 808, + [1130] = 807, + [1131] = 755, + [1132] = 806, + [1133] = 844, [1134] = 804, - [1135] = 803, - [1136] = 802, - [1137] = 750, - [1138] = 800, - [1139] = 799, - [1140] = 798, - [1141] = 797, - [1142] = 796, + [1135] = 802, + [1136] = 801, + [1137] = 800, + [1138] = 799, + [1139] = 798, + [1140] = 797, + [1141] = 820, + [1142] = 795, [1143] = 794, [1144] = 793, [1145] = 792, [1146] = 791, - [1147] = 789, - [1148] = 874, + [1147] = 790, + [1148] = 789, [1149] = 788, - [1150] = 684, + [1150] = 683, [1151] = 787, [1152] = 786, [1153] = 785, - [1154] = 784, + [1154] = 749, [1155] = 783, [1156] = 782, [1157] = 781, [1158] = 779, [1159] = 778, [1160] = 777, - [1161] = 672, + [1161] = 884, [1162] = 776, [1163] = 775, - [1164] = 774, - [1165] = 773, - [1166] = 772, - [1167] = 798, - [1168] = 771, - [1169] = 674, + [1164] = 796, + [1165] = 774, + [1166] = 773, + [1167] = 789, + [1168] = 772, + [1169] = 771, [1170] = 770, - [1171] = 749, - [1172] = 790, - [1173] = 768, - [1174] = 767, - [1175] = 766, - [1176] = 799, - [1177] = 797, - [1178] = 765, - [1179] = 754, - [1180] = 858, - [1181] = 842, - [1182] = 841, - [1183] = 840, - [1184] = 843, - [1185] = 839, - [1186] = 838, - [1187] = 837, + [1171] = 769, + [1172] = 768, + [1173] = 767, + [1174] = 833, + [1175] = 673, + [1176] = 766, + [1177] = 790, + [1178] = 750, + [1179] = 845, + [1180] = 844, + [1181] = 843, + [1182] = 842, + [1183] = 672, + [1184] = 841, + [1185] = 840, + [1186] = 839, + [1187] = 846, [1188] = 836, [1189] = 835, - [1190] = 834, - [1191] = 833, - [1192] = 832, - [1193] = 838, - [1194] = 831, - [1195] = 830, - [1196] = 829, - [1197] = 828, - [1198] = 826, - [1199] = 825, - [1200] = 824, - [1201] = 823, - [1202] = 822, - [1203] = 821, - [1204] = 820, - [1205] = 819, - [1206] = 753, - [1207] = 818, - [1208] = 672, - [1209] = 817, - [1210] = 816, - [1211] = 814, - [1212] = 897, - [1213] = 813, - [1214] = 812, - [1215] = 811, - [1216] = 810, - [1217] = 809, - [1218] = 808, - [1219] = 807, - [1220] = 806, - [1221] = 804, - [1222] = 803, - [1223] = 802, - [1224] = 750, - [1225] = 800, - [1226] = 799, - [1227] = 798, - [1228] = 797, - [1229] = 796, - [1230] = 794, - [1231] = 793, - [1232] = 792, - [1233] = 791, - [1234] = 789, - [1235] = 788, - [1236] = 684, - [1237] = 787, - [1238] = 786, - [1239] = 785, - [1240] = 784, - [1241] = 783, - [1242] = 782, - [1243] = 781, - [1244] = 779, - [1245] = 778, - [1246] = 765, - [1247] = 777, - [1248] = 858, - [1249] = 766, - [1250] = 767, - [1251] = 768, - [1252] = 790, - [1253] = 749, - [1254] = 770, - [1255] = 771, - [1256] = 674, - [1257] = 772, - [1258] = 773, - [1259] = 774, - [1260] = 775, - [1261] = 776, - [1262] = 777, - [1263] = 842, - [1264] = 778, - [1265] = 779, - [1266] = 754, - [1267] = 841, - [1268] = 781, - [1269] = 782, - [1270] = 783, - [1271] = 784, - [1272] = 785, - [1273] = 786, - [1274] = 787, - [1275] = 776, - [1276] = 788, - [1277] = 789, - [1278] = 827, - [1279] = 791, - [1280] = 792, - [1281] = 840, - [1282] = 793, - [1283] = 843, - [1284] = 794, - [1285] = 796, - [1286] = 797, - [1287] = 798, - [1288] = 799, - [1289] = 800, - [1290] = 750, - [1291] = 802, - [1292] = 803, - [1293] = 804, - [1294] = 753, - [1295] = 806, - [1296] = 839, - [1297] = 807, - [1298] = 808, - [1299] = 809, - [1300] = 810, - [1301] = 811, - [1302] = 812, - [1303] = 813, - [1304] = 897, - [1305] = 814, - [1306] = 816, - [1307] = 817, - [1308] = 818, - [1309] = 819, - [1310] = 820, - [1311] = 821, - [1312] = 822, - [1313] = 823, - [1314] = 824, - [1315] = 825, - [1316] = 826, - [1317] = 828, - [1318] = 829, - [1319] = 830, - [1320] = 831, - [1321] = 832, - [1322] = 833, - [1323] = 834, - [1324] = 874, - [1325] = 835, - [1326] = 836, - [1327] = 837, - [1328] = 838, - [1329] = 839, - [1330] = 843, - [1331] = 840, - [1332] = 841, - [1333] = 842, - [1334] = 858, - [1335] = 765, - [1336] = 829, - [1337] = 837, - [1338] = 766, - [1339] = 767, - [1340] = 768, - [1341] = 790, - [1342] = 749, - [1343] = 770, - [1344] = 771, - [1345] = 836, - [1346] = 772, - [1347] = 773, - [1348] = 774, - [1349] = 775, - [1350] = 776, - [1351] = 777, - [1352] = 835, - [1353] = 778, - [1354] = 779, - [1355] = 754, - [1356] = 775, - [1357] = 781, - [1358] = 782, - [1359] = 783, - [1360] = 784, - [1361] = 785, - [1362] = 786, - [1363] = 787, - [1364] = 774, - [1365] = 788, - [1366] = 789, - [1367] = 827, - [1368] = 791, - [1369] = 792, - [1370] = 834, - [1371] = 793, - [1372] = 833, - [1373] = 794, - [1374] = 796, - [1375] = 797, - [1376] = 798, - [1377] = 799, - [1378] = 800, - [1379] = 750, - [1380] = 802, - [1381] = 803, - [1382] = 804, - [1383] = 753, - [1384] = 806, - [1385] = 807, - [1386] = 808, - [1387] = 809, - [1388] = 810, - [1389] = 811, - [1390] = 812, - [1391] = 813, - [1392] = 897, - [1393] = 814, - [1394] = 816, - [1395] = 817, - [1396] = 818, - [1397] = 819, - [1398] = 820, - [1399] = 821, - [1400] = 822, - [1401] = 823, - [1402] = 824, - [1403] = 825, - [1404] = 826, - [1405] = 828, - [1406] = 829, - [1407] = 830, - [1408] = 831, - [1409] = 832, - [1410] = 833, - [1411] = 834, - [1412] = 874, - [1413] = 835, - [1414] = 836, - [1415] = 837, - [1416] = 838, - [1417] = 839, - [1418] = 843, - [1419] = 840, - [1420] = 841, - [1421] = 842, - [1422] = 858, - [1423] = 765, - [1424] = 832, + [1190] = 842, + [1191] = 834, + [1192] = 833, + [1193] = 753, + [1194] = 841, + [1195] = 832, + [1196] = 831, + [1197] = 830, + [1198] = 829, + [1199] = 828, + [1200] = 827, + [1201] = 826, + [1202] = 824, + [1203] = 823, + [1204] = 822, + [1205] = 821, + [1206] = 838, + [1207] = 840, + [1208] = 819, + [1209] = 839, + [1210] = 818, + [1211] = 817, + [1212] = 816, + [1213] = 815, + [1214] = 814, + [1215] = 813, + [1216] = 812, + [1217] = 811, + [1218] = 810, + [1219] = 809, + [1220] = 755, + [1221] = 808, + [1222] = 846, + [1223] = 807, + [1224] = 806, + [1225] = 804, + [1226] = 802, + [1227] = 801, + [1228] = 800, + [1229] = 799, + [1230] = 798, + [1231] = 797, + [1232] = 820, + [1233] = 795, + [1234] = 794, + [1235] = 793, + [1236] = 792, + [1237] = 791, + [1238] = 790, + [1239] = 789, + [1240] = 788, + [1241] = 683, + [1242] = 787, + [1243] = 786, + [1244] = 785, + [1245] = 749, + [1246] = 783, + [1247] = 782, + [1248] = 781, + [1249] = 779, + [1250] = 778, + [1251] = 777, + [1252] = 776, + [1253] = 775, + [1254] = 796, + [1255] = 774, + [1256] = 773, + [1257] = 791, + [1258] = 772, + [1259] = 771, + [1260] = 770, + [1261] = 750, + [1262] = 836, + [1263] = 835, + [1264] = 766, + [1265] = 767, + [1266] = 768, + [1267] = 769, + [1268] = 770, + [1269] = 771, + [1270] = 772, + [1271] = 672, + [1272] = 773, + [1273] = 774, + [1274] = 796, + [1275] = 775, + [1276] = 776, + [1277] = 777, + [1278] = 834, + [1279] = 778, + [1280] = 779, + [1281] = 753, + [1282] = 769, + [1283] = 781, + [1284] = 782, + [1285] = 783, + [1286] = 749, + [1287] = 785, + [1288] = 786, + [1289] = 787, + [1290] = 768, + [1291] = 788, + [1292] = 789, + [1293] = 837, + [1294] = 790, + [1295] = 791, + [1296] = 822, + [1297] = 792, + [1298] = 832, + [1299] = 793, + [1300] = 794, + [1301] = 795, + [1302] = 820, + [1303] = 797, + [1304] = 798, + [1305] = 799, + [1306] = 800, + [1307] = 801, + [1308] = 802, + [1309] = 755, + [1310] = 804, + [1311] = 831, + [1312] = 806, + [1313] = 807, + [1314] = 808, + [1315] = 809, + [1316] = 810, + [1317] = 811, + [1318] = 812, + [1319] = 813, + [1320] = 814, + [1321] = 815, + [1322] = 816, + [1323] = 817, + [1324] = 818, + [1325] = 819, + [1326] = 838, + [1327] = 821, + [1328] = 822, + [1329] = 823, + [1330] = 824, + [1331] = 826, + [1332] = 827, + [1333] = 828, + [1334] = 829, + [1335] = 830, + [1336] = 831, + [1337] = 832, + [1338] = 833, + [1339] = 884, + [1340] = 834, + [1341] = 835, + [1342] = 836, + [1343] = 846, + [1344] = 839, + [1345] = 840, + [1346] = 841, + [1347] = 842, + [1348] = 843, + [1349] = 844, + [1350] = 845, + [1351] = 750, + [1352] = 830, + [1353] = 829, + [1354] = 766, + [1355] = 767, + [1356] = 768, + [1357] = 769, + [1358] = 770, + [1359] = 771, + [1360] = 772, + [1361] = 828, + [1362] = 773, + [1363] = 774, + [1364] = 796, + [1365] = 775, + [1366] = 776, + [1367] = 777, + [1368] = 827, + [1369] = 778, + [1370] = 779, + [1371] = 753, + [1372] = 826, + [1373] = 781, + [1374] = 782, + [1375] = 783, + [1376] = 749, + [1377] = 785, + [1378] = 786, + [1379] = 787, + [1380] = 767, + [1381] = 788, + [1382] = 789, + [1383] = 837, + [1384] = 790, + [1385] = 791, + [1386] = 824, + [1387] = 792, + [1388] = 823, + [1389] = 793, + [1390] = 794, + [1391] = 795, + [1392] = 820, + [1393] = 797, + [1394] = 798, + [1395] = 799, + [1396] = 800, + [1397] = 801, + [1398] = 802, + [1399] = 755, + [1400] = 804, + [1401] = 806, + [1402] = 807, + [1403] = 808, + [1404] = 809, + [1405] = 810, + [1406] = 811, + [1407] = 812, + [1408] = 813, + [1409] = 814, + [1410] = 815, + [1411] = 816, + [1412] = 817, + [1413] = 818, + [1414] = 819, + [1415] = 838, + [1416] = 821, + [1417] = 822, + [1418] = 823, + [1419] = 824, + [1420] = 826, + [1421] = 827, + [1422] = 828, + [1423] = 829, + [1424] = 830, [1425] = 831, - [1426] = 766, - [1427] = 767, - [1428] = 768, - [1429] = 790, - [1430] = 749, - [1431] = 770, - [1432] = 771, - [1433] = 830, - [1434] = 772, - [1435] = 773, - [1436] = 774, - [1437] = 775, - [1438] = 776, - [1439] = 777, - [1440] = 819, - [1441] = 778, - [1442] = 779, - [1443] = 781, - [1444] = 782, - [1445] = 783, - [1446] = 784, - [1447] = 785, - [1448] = 786, - [1449] = 787, - [1450] = 773, - [1451] = 788, - [1452] = 789, - [1453] = 827, - [1454] = 791, - [1455] = 792, - [1456] = 828, - [1457] = 793, - [1458] = 826, - [1459] = 794, - [1460] = 796, - [1461] = 797, - [1462] = 798, - [1463] = 799, - [1464] = 800, - [1465] = 750, - [1466] = 802, - [1467] = 803, - [1468] = 804, - [1469] = 806, - [1470] = 807, - [1471] = 808, - [1472] = 809, - [1473] = 810, - [1474] = 811, - [1475] = 812, - [1476] = 813, - [1477] = 897, - [1478] = 814, - [1479] = 816, - [1480] = 817, - [1481] = 818, - [1482] = 819, - [1483] = 820, - [1484] = 821, - [1485] = 822, - [1486] = 823, - [1487] = 824, - [1488] = 825, - [1489] = 826, - [1490] = 828, - [1491] = 829, - [1492] = 830, - [1493] = 831, - [1494] = 832, - [1495] = 833, - [1496] = 834, - [1497] = 874, - [1498] = 835, - [1499] = 836, - [1500] = 837, + [1426] = 832, + [1427] = 833, + [1428] = 884, + [1429] = 834, + [1430] = 835, + [1431] = 836, + [1432] = 846, + [1433] = 839, + [1434] = 840, + [1435] = 841, + [1436] = 842, + [1437] = 843, + [1438] = 844, + [1439] = 845, + [1440] = 750, + [1441] = 813, + [1442] = 821, + [1443] = 766, + [1444] = 767, + [1445] = 768, + [1446] = 769, + [1447] = 770, + [1448] = 771, + [1449] = 772, + [1450] = 838, + [1451] = 773, + [1452] = 774, + [1453] = 796, + [1454] = 775, + [1455] = 776, + [1456] = 777, + [1457] = 819, + [1458] = 778, + [1459] = 779, + [1460] = 781, + [1461] = 782, + [1462] = 783, + [1463] = 749, + [1464] = 785, + [1465] = 786, + [1466] = 787, + [1467] = 766, + [1468] = 788, + [1469] = 789, + [1470] = 837, + [1471] = 790, + [1472] = 791, + [1473] = 818, + [1474] = 792, + [1475] = 817, + [1476] = 793, + [1477] = 794, + [1478] = 795, + [1479] = 820, + [1480] = 797, + [1481] = 798, + [1482] = 799, + [1483] = 800, + [1484] = 801, + [1485] = 802, + [1486] = 804, + [1487] = 806, + [1488] = 807, + [1489] = 808, + [1490] = 809, + [1491] = 810, + [1492] = 811, + [1493] = 812, + [1494] = 813, + [1495] = 814, + [1496] = 815, + [1497] = 816, + [1498] = 817, + [1499] = 818, + [1500] = 819, [1501] = 838, - [1502] = 839, - [1503] = 843, - [1504] = 840, - [1505] = 841, - [1506] = 842, - [1507] = 858, - [1508] = 765, - [1509] = 825, - [1510] = 824, - [1511] = 766, - [1512] = 767, - [1513] = 768, - [1514] = 790, - [1515] = 749, - [1516] = 770, - [1517] = 771, - [1518] = 823, - [1519] = 772, - [1520] = 773, - [1521] = 774, - [1522] = 775, - [1523] = 776, - [1524] = 777, - [1525] = 822, - [1526] = 778, - [1527] = 779, - [1528] = 781, - [1529] = 782, - [1530] = 783, - [1531] = 784, - [1532] = 785, - [1533] = 786, - [1534] = 787, - [1535] = 684, - [1536] = 788, - [1537] = 789, - [1538] = 827, - [1539] = 791, - [1540] = 792, - [1541] = 821, - [1542] = 793, - [1543] = 820, - [1544] = 794, - [1545] = 796, - [1546] = 797, - [1547] = 798, - [1548] = 799, - [1549] = 800, - [1550] = 750, - [1551] = 802, - [1552] = 803, - [1553] = 804, - [1554] = 806, - [1555] = 807, - [1556] = 808, - [1557] = 809, - [1558] = 810, - [1559] = 811, - [1560] = 812, - [1561] = 813, - [1562] = 897, - [1563] = 814, - [1564] = 816, - [1565] = 817, - [1566] = 818, - [1567] = 819, - [1568] = 820, - [1569] = 821, - [1570] = 822, - [1571] = 823, - [1572] = 824, - [1573] = 825, - [1574] = 826, - [1575] = 828, - [1576] = 829, - [1577] = 830, - [1578] = 831, - [1579] = 832, - [1580] = 833, - [1581] = 834, - [1582] = 874, - [1583] = 835, - [1584] = 836, - [1585] = 837, - [1586] = 838, - [1587] = 839, - [1588] = 843, - [1589] = 840, - [1590] = 841, - [1591] = 842, - [1592] = 858, - [1593] = 765, - [1594] = 811, - [1595] = 818, - [1596] = 766, - [1597] = 767, - [1598] = 768, - [1599] = 790, - [1600] = 749, - [1601] = 770, - [1602] = 771, - [1603] = 817, - [1604] = 772, - [1605] = 773, - [1606] = 774, - [1607] = 775, - [1608] = 776, - [1609] = 777, - [1610] = 778, - [1611] = 779, - [1612] = 781, - [1613] = 782, - [1614] = 783, - [1615] = 784, - [1616] = 785, - [1617] = 786, - [1618] = 787, - [1619] = 772, - [1620] = 788, - [1621] = 789, - [1622] = 827, - [1623] = 791, - [1624] = 792, - [1625] = 793, - [1626] = 816, - [1627] = 794, - [1628] = 796, - [1629] = 797, - [1630] = 798, - [1631] = 799, - [1632] = 800, - [1633] = 750, - [1634] = 802, - [1635] = 803, - [1636] = 804, - [1637] = 806, - [1638] = 807, - [1639] = 808, - [1640] = 809, - [1641] = 810, - [1642] = 811, - [1643] = 812, - [1644] = 813, - [1645] = 897, - [1646] = 814, - [1647] = 816, - [1648] = 817, - [1649] = 818, - [1650] = 819, - [1651] = 820, - [1652] = 821, - [1653] = 822, - [1654] = 823, - [1655] = 824, - [1656] = 825, - [1657] = 826, - [1658] = 828, - [1659] = 829, - [1660] = 830, - [1661] = 831, - [1662] = 832, - [1663] = 833, - [1664] = 834, - [1665] = 874, - [1666] = 835, - [1667] = 836, - [1668] = 837, - [1669] = 838, - [1670] = 839, - [1671] = 843, - [1672] = 840, - [1673] = 841, - [1674] = 842, - [1675] = 858, - [1676] = 765, - [1677] = 814, - [1678] = 897, - [1679] = 766, - [1680] = 767, - [1681] = 768, - [1682] = 790, - [1683] = 813, - [1684] = 770, - [1685] = 771, - [1686] = 812, - [1687] = 772, - [1688] = 773, - [1689] = 774, - [1690] = 775, - [1691] = 776, - [1692] = 777, - [1693] = 778, - [1694] = 779, - [1695] = 781, - [1696] = 782, - [1697] = 783, - [1698] = 784, - [1699] = 785, - [1700] = 786, - [1701] = 787, - [1702] = 684, - [1703] = 788, - [1704] = 789, - [1705] = 827, - [1706] = 791, - [1707] = 792, - [1708] = 793, - [1709] = 806, - [1710] = 794, - [1711] = 796, - [1712] = 797, - [1713] = 798, - [1714] = 799, - [1715] = 800, - [1716] = 750, - [1717] = 802, - [1718] = 803, - [1719] = 804, - [1720] = 806, - [1721] = 807, - [1722] = 808, - [1723] = 809, - [1724] = 810, - [1725] = 811, - [1726] = 812, - [1727] = 813, - [1728] = 897, - [1729] = 814, - [1730] = 816, - [1731] = 817, - [1732] = 818, - [1733] = 819, - [1734] = 820, - [1735] = 821, - [1736] = 822, - [1737] = 823, - [1738] = 824, - [1739] = 825, - [1740] = 826, - [1741] = 828, - [1742] = 829, - [1743] = 830, - [1744] = 831, - [1745] = 832, - [1746] = 833, - [1747] = 834, - [1748] = 874, - [1749] = 835, - [1750] = 836, - [1751] = 837, - [1752] = 838, - [1753] = 839, - [1754] = 843, - [1755] = 840, - [1756] = 841, - [1757] = 842, - [1758] = 858, - [1759] = 765, - [1760] = 810, - [1761] = 809, - [1762] = 766, - [1763] = 767, - [1764] = 768, - [1765] = 790, - [1766] = 749, - [1767] = 770, - [1768] = 771, - [1769] = 808, - [1770] = 772, - [1771] = 773, - [1772] = 774, - [1773] = 775, - [1774] = 776, - [1775] = 777, - [1776] = 778, - [1777] = 779, - [1778] = 781, - [1779] = 782, - [1780] = 783, - [1781] = 784, - [1782] = 785, - [1783] = 786, - [1784] = 787, - [1785] = 684, - [1786] = 788, - [1787] = 789, - [1788] = 827, - [1789] = 791, - [1790] = 792, - [1791] = 793, - [1792] = 807, - [1793] = 794, - [1794] = 796, - [1795] = 797, - [1796] = 798, - [1797] = 799, - [1798] = 800, - [1799] = 750, - [1800] = 802, - [1801] = 803, - [1802] = 804, - [1803] = 806, - [1804] = 807, - [1805] = 808, - [1806] = 809, - [1807] = 810, - [1808] = 811, - [1809] = 812, - [1810] = 813, - [1811] = 897, - [1812] = 814, - [1813] = 816, - [1814] = 817, - [1815] = 818, - [1816] = 819, + [1502] = 821, + [1503] = 822, + [1504] = 823, + [1505] = 824, + [1506] = 826, + [1507] = 827, + [1508] = 828, + [1509] = 829, + [1510] = 830, + [1511] = 831, + [1512] = 832, + [1513] = 833, + [1514] = 884, + [1515] = 834, + [1516] = 835, + [1517] = 836, + [1518] = 846, + [1519] = 839, + [1520] = 840, + [1521] = 841, + [1522] = 842, + [1523] = 843, + [1524] = 844, + [1525] = 845, + [1526] = 750, + [1527] = 816, + [1528] = 815, + [1529] = 766, + [1530] = 767, + [1531] = 768, + [1532] = 769, + [1533] = 770, + [1534] = 771, + [1535] = 772, + [1536] = 814, + [1537] = 773, + [1538] = 774, + [1539] = 796, + [1540] = 775, + [1541] = 776, + [1542] = 777, + [1543] = 806, + [1544] = 778, + [1545] = 779, + [1546] = 781, + [1547] = 782, + [1548] = 783, + [1549] = 749, + [1550] = 785, + [1551] = 786, + [1552] = 787, + [1553] = 683, + [1554] = 788, + [1555] = 789, + [1556] = 837, + [1557] = 790, + [1558] = 791, + [1559] = 812, + [1560] = 792, + [1561] = 811, + [1562] = 793, + [1563] = 794, + [1564] = 795, + [1565] = 820, + [1566] = 797, + [1567] = 798, + [1568] = 799, + [1569] = 800, + [1570] = 801, + [1571] = 802, + [1572] = 804, + [1573] = 806, + [1574] = 807, + [1575] = 808, + [1576] = 809, + [1577] = 810, + [1578] = 811, + [1579] = 812, + [1580] = 813, + [1581] = 814, + [1582] = 815, + [1583] = 816, + [1584] = 817, + [1585] = 818, + [1586] = 819, + [1587] = 838, + [1588] = 821, + [1589] = 822, + [1590] = 823, + [1591] = 824, + [1592] = 826, + [1593] = 827, + [1594] = 828, + [1595] = 829, + [1596] = 830, + [1597] = 831, + [1598] = 832, + [1599] = 833, + [1600] = 884, + [1601] = 834, + [1602] = 835, + [1603] = 836, + [1604] = 846, + [1605] = 839, + [1606] = 840, + [1607] = 841, + [1608] = 842, + [1609] = 843, + [1610] = 844, + [1611] = 845, + [1612] = 750, + [1613] = 810, + [1614] = 809, + [1615] = 766, + [1616] = 767, + [1617] = 768, + [1618] = 769, + [1619] = 770, + [1620] = 771, + [1621] = 772, + [1622] = 808, + [1623] = 773, + [1624] = 774, + [1625] = 796, + [1626] = 775, + [1627] = 776, + [1628] = 777, + [1629] = 778, + [1630] = 779, + [1631] = 781, + [1632] = 782, + [1633] = 783, + [1634] = 749, + [1635] = 785, + [1636] = 786, + [1637] = 787, + [1638] = 792, + [1639] = 788, + [1640] = 789, + [1641] = 837, + [1642] = 790, + [1643] = 791, + [1644] = 792, + [1645] = 807, + [1646] = 793, + [1647] = 794, + [1648] = 795, + [1649] = 820, + [1650] = 797, + [1651] = 798, + [1652] = 799, + [1653] = 800, + [1654] = 801, + [1655] = 802, + [1656] = 804, + [1657] = 806, + [1658] = 807, + [1659] = 808, + [1660] = 809, + [1661] = 810, + [1662] = 811, + [1663] = 812, + [1664] = 813, + [1665] = 814, + [1666] = 815, + [1667] = 816, + [1668] = 817, + [1669] = 818, + [1670] = 819, + [1671] = 838, + [1672] = 821, + [1673] = 822, + [1674] = 823, + [1675] = 824, + [1676] = 826, + [1677] = 827, + [1678] = 828, + [1679] = 829, + [1680] = 830, + [1681] = 831, + [1682] = 832, + [1683] = 833, + [1684] = 884, + [1685] = 834, + [1686] = 835, + [1687] = 836, + [1688] = 846, + [1689] = 839, + [1690] = 840, + [1691] = 841, + [1692] = 842, + [1693] = 843, + [1694] = 844, + [1695] = 845, + [1696] = 750, + [1697] = 797, + [1698] = 804, + [1699] = 766, + [1700] = 767, + [1701] = 768, + [1702] = 769, + [1703] = 770, + [1704] = 771, + [1705] = 772, + [1706] = 755, + [1707] = 773, + [1708] = 774, + [1709] = 796, + [1710] = 775, + [1711] = 776, + [1712] = 777, + [1713] = 778, + [1714] = 779, + [1715] = 781, + [1716] = 782, + [1717] = 783, + [1718] = 802, + [1719] = 785, + [1720] = 786, + [1721] = 787, + [1722] = 683, + [1723] = 788, + [1724] = 789, + [1725] = 837, + [1726] = 790, + [1727] = 791, + [1728] = 792, + [1729] = 801, + [1730] = 793, + [1731] = 794, + [1732] = 795, + [1733] = 820, + [1734] = 797, + [1735] = 798, + [1736] = 799, + [1737] = 800, + [1738] = 801, + [1739] = 802, + [1740] = 804, + [1741] = 806, + [1742] = 807, + [1743] = 808, + [1744] = 809, + [1745] = 810, + [1746] = 811, + [1747] = 812, + [1748] = 813, + [1749] = 814, + [1750] = 815, + [1751] = 816, + [1752] = 817, + [1753] = 818, + [1754] = 819, + [1755] = 838, + [1756] = 821, + [1757] = 822, + [1758] = 823, + [1759] = 824, + [1760] = 826, + [1761] = 827, + [1762] = 828, + [1763] = 829, + [1764] = 830, + [1765] = 831, + [1766] = 832, + [1767] = 833, + [1768] = 884, + [1769] = 834, + [1770] = 835, + [1771] = 836, + [1772] = 846, + [1773] = 839, + [1774] = 840, + [1775] = 841, + [1776] = 842, + [1777] = 843, + [1778] = 844, + [1779] = 845, + [1780] = 750, + [1781] = 800, + [1782] = 799, + [1783] = 766, + [1784] = 767, + [1785] = 768, + [1786] = 769, + [1787] = 770, + [1788] = 771, + [1789] = 772, + [1790] = 798, + [1791] = 773, + [1792] = 774, + [1793] = 796, + [1794] = 775, + [1795] = 776, + [1796] = 777, + [1797] = 778, + [1798] = 779, + [1799] = 781, + [1800] = 782, + [1801] = 783, + [1802] = 749, + [1803] = 785, + [1804] = 786, + [1805] = 787, + [1806] = 683, + [1807] = 788, + [1808] = 789, + [1809] = 837, + [1810] = 790, + [1811] = 791, + [1812] = 792, + [1813] = 793, + [1814] = 793, + [1815] = 794, + [1816] = 795, [1817] = 820, - [1818] = 821, - [1819] = 822, - [1820] = 823, - [1821] = 824, - [1822] = 825, - [1823] = 826, - [1824] = 828, - [1825] = 829, - [1826] = 830, - [1827] = 831, - [1828] = 832, - [1829] = 833, - [1830] = 834, - [1831] = 874, - [1832] = 835, - [1833] = 836, - [1834] = 837, - [1835] = 838, - [1836] = 839, - [1837] = 843, - [1838] = 840, - [1839] = 841, - [1840] = 842, - [1841] = 858, - [1842] = 765, - [1843] = 800, - [1844] = 753, - [1845] = 766, - [1846] = 767, - [1847] = 768, - [1848] = 790, - [1849] = 749, - [1850] = 770, - [1851] = 771, - [1852] = 804, - [1853] = 772, - [1854] = 773, - [1855] = 774, - [1856] = 775, - [1857] = 776, - [1858] = 777, - [1859] = 778, - [1860] = 779, - [1861] = 781, - [1862] = 782, - [1863] = 783, - [1864] = 784, - [1865] = 785, - [1866] = 786, - [1867] = 787, - [1868] = 684, - [1869] = 788, - [1870] = 789, - [1871] = 791, - [1872] = 792, - [1873] = 793, + [1818] = 797, + [1819] = 798, + [1820] = 799, + [1821] = 800, + [1822] = 801, + [1823] = 802, + [1824] = 804, + [1825] = 806, + [1826] = 807, + [1827] = 808, + [1828] = 809, + [1829] = 810, + [1830] = 811, + [1831] = 812, + [1832] = 813, + [1833] = 814, + [1834] = 815, + [1835] = 816, + [1836] = 817, + [1837] = 818, + [1838] = 819, + [1839] = 838, + [1840] = 821, + [1841] = 822, + [1842] = 823, + [1843] = 824, + [1844] = 826, + [1845] = 827, + [1846] = 828, + [1847] = 829, + [1848] = 830, + [1849] = 831, + [1850] = 832, + [1851] = 833, + [1852] = 884, + [1853] = 834, + [1854] = 835, + [1855] = 836, + [1856] = 846, + [1857] = 839, + [1858] = 840, + [1859] = 841, + [1860] = 842, + [1861] = 843, + [1862] = 844, + [1863] = 845, + [1864] = 750, + [1865] = 820, + [1866] = 795, + [1867] = 766, + [1868] = 767, + [1869] = 768, + [1870] = 769, + [1871] = 770, + [1872] = 771, + [1873] = 772, [1874] = 794, - [1875] = 796, - [1876] = 797, - [1877] = 798, - [1878] = 799, - [1879] = 800, - [1880] = 750, - [1881] = 802, - [1882] = 803, - [1883] = 804, - [1884] = 806, - [1885] = 807, - [1886] = 808, - [1887] = 809, - [1888] = 810, - [1889] = 811, - [1890] = 812, - [1891] = 813, - [1892] = 897, - [1893] = 814, - [1894] = 816, - [1895] = 817, - [1896] = 818, - [1897] = 819, - [1898] = 820, - [1899] = 821, - [1900] = 822, - [1901] = 823, - [1902] = 824, - [1903] = 825, - [1904] = 826, - [1905] = 828, - [1906] = 829, - [1907] = 830, - [1908] = 831, - [1909] = 832, - [1910] = 833, - [1911] = 834, - [1912] = 835, - [1913] = 836, - [1914] = 837, - [1915] = 838, - [1916] = 839, - [1917] = 843, - [1918] = 840, - [1919] = 841, - [1920] = 842, - [1921] = 858, - [1922] = 765, - [1923] = 803, - [1924] = 802, - [1925] = 766, - [1926] = 767, - [1927] = 768, - [1928] = 790, - [1929] = 749, - [1930] = 770, - [1931] = 771, - [1932] = 827, - [1933] = 874, - [1934] = 789, - [1935] = 827, - [1936] = 765, - [1937] = 803, - [1938] = 766, - [1939] = 767, - [1940] = 768, - [1941] = 874, - [1942] = 839, - [1943] = 765, - [1944] = 858, - [1945] = 842, - [1946] = 841, - [1947] = 840, - [1948] = 843, - [1949] = 821, - [1950] = 838, - [1951] = 837, - [1952] = 836, - [1953] = 835, - [1954] = 834, - [1955] = 827, - [1956] = 833, - [1957] = 832, - [1958] = 831, - [1959] = 830, - [1960] = 829, - [1961] = 828, - [1962] = 826, - [1963] = 825, - [1964] = 824, - [1965] = 823, - [1966] = 822, - [1967] = 821, - [1968] = 820, - [1969] = 819, - [1970] = 818, - [1971] = 817, - [1972] = 816, - [1973] = 814, - [1974] = 897, - [1975] = 813, - [1976] = 812, - [1977] = 811, - [1978] = 810, - [1979] = 809, - [1980] = 808, - [1981] = 807, - [1982] = 806, - [1983] = 804, - [1984] = 803, - [1985] = 802, - [1986] = 750, - [1987] = 800, - [1988] = 799, - [1989] = 798, - [1990] = 797, - [1991] = 796, - [1992] = 794, - [1993] = 766, - [1994] = 793, - [1995] = 792, - [1996] = 791, - [1997] = 874, - [1998] = 789, - [1999] = 788, - [2000] = 790, - [2001] = 787, - [2002] = 786, - [2003] = 785, - [2004] = 784, - [2005] = 783, - [2006] = 782, - [2007] = 781, - [2008] = 768, - [2009] = 779, - [2010] = 778, - [2011] = 790, - [2012] = 777, - [2013] = 776, - [2014] = 775, - [2015] = 774, - [2016] = 773, - [2017] = 772, - [2018] = 771, - [2019] = 770, - [2020] = 749, - [2021] = 790, - [2022] = 768, - [2023] = 767, - [2024] = 766, - [2025] = 749, - [2026] = 765, - [2027] = 858, - [2028] = 842, - [2029] = 841, - [2030] = 840, - [2031] = 843, - [2032] = 839, - [2033] = 838, + [1875] = 773, + [1876] = 774, + [1877] = 796, + [1878] = 775, + [1879] = 776, + [1880] = 777, + [1881] = 778, + [1882] = 779, + [1883] = 781, + [1884] = 782, + [1885] = 783, + [1886] = 749, + [1887] = 785, + [1888] = 786, + [1889] = 787, + [1890] = 683, + [1891] = 788, + [1892] = 789, + [1893] = 788, + [1894] = 790, + [1895] = 791, + [1896] = 792, + [1897] = 793, + [1898] = 794, + [1899] = 795, + [1900] = 820, + [1901] = 797, + [1902] = 798, + [1903] = 799, + [1904] = 800, + [1905] = 801, + [1906] = 802, + [1907] = 804, + [1908] = 806, + [1909] = 807, + [1910] = 808, + [1911] = 809, + [1912] = 810, + [1913] = 811, + [1914] = 812, + [1915] = 813, + [1916] = 814, + [1917] = 815, + [1918] = 816, + [1919] = 817, + [1920] = 818, + [1921] = 819, + [1922] = 838, + [1923] = 821, + [1924] = 822, + [1925] = 823, + [1926] = 824, + [1927] = 826, + [1928] = 827, + [1929] = 828, + [1930] = 829, + [1931] = 830, + [1932] = 831, + [1933] = 832, + [1934] = 833, + [1935] = 834, + [1936] = 835, + [1937] = 836, + [1938] = 846, + [1939] = 839, + [1940] = 840, + [1941] = 841, + [1942] = 842, + [1943] = 843, + [1944] = 844, + [1945] = 845, + [1946] = 837, + [1947] = 884, + [1948] = 818, + [1949] = 786, + [1950] = 800, + [1951] = 820, + [1952] = 801, + [1953] = 884, + [1954] = 797, + [1955] = 802, + [1956] = 834, + [1957] = 845, + [1958] = 844, + [1959] = 843, + [1960] = 842, + [1961] = 841, + [1962] = 840, + [1963] = 839, + [1964] = 846, + [1965] = 836, + [1966] = 835, + [1967] = 834, + [1968] = 833, + [1969] = 832, + [1970] = 831, + [1971] = 830, + [1972] = 829, + [1973] = 828, + [1974] = 827, + [1975] = 826, + [1976] = 824, + [1977] = 823, + [1978] = 837, + [1979] = 822, + [1980] = 821, + [1981] = 838, + [1982] = 819, + [1983] = 818, + [1984] = 817, + [1985] = 816, + [1986] = 815, + [1987] = 814, + [1988] = 813, + [1989] = 812, + [1990] = 811, + [1991] = 810, + [1992] = 809, + [1993] = 808, + [1994] = 807, + [1995] = 806, + [1996] = 804, + [1997] = 802, + [1998] = 801, + [1999] = 800, + [2000] = 799, + [2001] = 798, + [2002] = 797, + [2003] = 820, + [2004] = 795, + [2005] = 794, + [2006] = 793, + [2007] = 792, + [2008] = 791, + [2009] = 790, + [2010] = 789, + [2011] = 788, + [2012] = 795, + [2013] = 787, + [2014] = 786, + [2015] = 785, + [2016] = 749, + [2017] = 783, + [2018] = 782, + [2019] = 781, + [2020] = 884, + [2021] = 779, + [2022] = 778, + [2023] = 777, + [2024] = 776, + [2025] = 775, + [2026] = 796, + [2027] = 774, + [2028] = 773, + [2029] = 772, + [2030] = 771, + [2031] = 770, + [2032] = 769, + [2033] = 768, [2034] = 837, - [2035] = 836, - [2036] = 835, - [2037] = 827, - [2038] = 834, - [2039] = 833, - [2040] = 832, - [2041] = 831, - [2042] = 830, - [2043] = 829, - [2044] = 828, - [2045] = 826, - [2046] = 825, - [2047] = 824, - [2048] = 823, - [2049] = 822, - [2050] = 794, - [2051] = 820, - [2052] = 819, - [2053] = 818, - [2054] = 817, - [2055] = 816, - [2056] = 814, - [2057] = 897, - [2058] = 813, - [2059] = 812, - [2060] = 811, - [2061] = 810, - [2062] = 809, - [2063] = 808, - [2064] = 807, - [2065] = 770, - [2066] = 806, - [2067] = 804, - [2068] = 803, - [2069] = 802, - [2070] = 771, - [2071] = 750, - [2072] = 800, - [2073] = 799, - [2074] = 798, - [2075] = 797, - [2076] = 796, - [2077] = 749, - [2078] = 793, - [2079] = 874, - [2080] = 772, - [2081] = 792, - [2082] = 791, - [2083] = 789, - [2084] = 788, - [2085] = 770, - [2086] = 787, - [2087] = 786, - [2088] = 785, - [2089] = 784, - [2090] = 783, - [2091] = 782, - [2092] = 781, - [2093] = 804, - [2094] = 773, - [2095] = 779, - [2096] = 778, - [2097] = 774, - [2098] = 777, - [2099] = 776, - [2100] = 775, - [2101] = 774, - [2102] = 773, - [2103] = 772, - [2104] = 771, - [2105] = 770, - [2106] = 749, - [2107] = 790, - [2108] = 768, - [2109] = 767, - [2110] = 766, - [2111] = 767, - [2112] = 765, - [2113] = 858, - [2114] = 842, - [2115] = 841, - [2116] = 840, - [2117] = 843, - [2118] = 839, - [2119] = 827, - [2120] = 838, - [2121] = 837, - [2122] = 836, - [2123] = 835, - [2124] = 834, - [2125] = 833, - [2126] = 832, - [2127] = 831, - [2128] = 830, - [2129] = 829, - [2130] = 828, - [2131] = 826, - [2132] = 825, - [2133] = 824, - [2134] = 823, - [2135] = 822, - [2136] = 821, - [2137] = 820, - [2138] = 819, - [2139] = 818, - [2140] = 817, - [2141] = 816, - [2142] = 814, - [2143] = 897, - [2144] = 813, - [2145] = 812, - [2146] = 811, - [2147] = 810, - [2148] = 809, - [2149] = 808, - [2150] = 807, - [2151] = 776, - [2152] = 806, - [2153] = 804, - [2154] = 803, - [2155] = 802, - [2156] = 777, - [2157] = 750, - [2158] = 800, - [2159] = 799, - [2160] = 798, - [2161] = 874, - [2162] = 797, - [2163] = 796, - [2164] = 794, - [2165] = 778, - [2166] = 793, - [2167] = 779, - [2168] = 792, - [2169] = 791, - [2170] = 789, - [2171] = 788, - [2172] = 765, - [2173] = 785, - [2174] = 787, - [2175] = 766, - [2176] = 767, - [2177] = 768, - [2178] = 790, - [2179] = 749, - [2180] = 770, - [2181] = 771, + [2035] = 767, + [2036] = 766, + [2037] = 750, + [2038] = 845, + [2039] = 844, + [2040] = 843, + [2041] = 842, + [2042] = 841, + [2043] = 840, + [2044] = 839, + [2045] = 846, + [2046] = 836, + [2047] = 835, + [2048] = 807, + [2049] = 833, + [2050] = 832, + [2051] = 831, + [2052] = 830, + [2053] = 829, + [2054] = 828, + [2055] = 827, + [2056] = 826, + [2057] = 824, + [2058] = 823, + [2059] = 822, + [2060] = 821, + [2061] = 837, + [2062] = 838, + [2063] = 819, + [2064] = 818, + [2065] = 817, + [2066] = 816, + [2067] = 815, + [2068] = 814, + [2069] = 813, + [2070] = 812, + [2071] = 811, + [2072] = 810, + [2073] = 809, + [2074] = 808, + [2075] = 791, + [2076] = 806, + [2077] = 804, + [2078] = 802, + [2079] = 801, + [2080] = 800, + [2081] = 799, + [2082] = 798, + [2083] = 797, + [2084] = 820, + [2085] = 795, + [2086] = 794, + [2087] = 793, + [2088] = 750, + [2089] = 792, + [2090] = 791, + [2091] = 790, + [2092] = 789, + [2093] = 788, + [2094] = 798, + [2095] = 787, + [2096] = 786, + [2097] = 785, + [2098] = 749, + [2099] = 783, + [2100] = 782, + [2101] = 781, + [2102] = 766, + [2103] = 884, + [2104] = 767, + [2105] = 779, + [2106] = 778, + [2107] = 768, + [2108] = 777, + [2109] = 776, + [2110] = 775, + [2111] = 796, + [2112] = 774, + [2113] = 773, + [2114] = 772, + [2115] = 771, + [2116] = 770, + [2117] = 769, + [2118] = 768, + [2119] = 767, + [2120] = 766, + [2121] = 769, + [2122] = 750, + [2123] = 845, + [2124] = 844, + [2125] = 843, + [2126] = 842, + [2127] = 841, + [2128] = 840, + [2129] = 839, + [2130] = 846, + [2131] = 836, + [2132] = 835, + [2133] = 834, + [2134] = 833, + [2135] = 832, + [2136] = 831, + [2137] = 830, + [2138] = 829, + [2139] = 828, + [2140] = 827, + [2141] = 826, + [2142] = 824, + [2143] = 823, + [2144] = 837, + [2145] = 822, + [2146] = 821, + [2147] = 838, + [2148] = 819, + [2149] = 818, + [2150] = 817, + [2151] = 816, + [2152] = 815, + [2153] = 814, + [2154] = 813, + [2155] = 799, + [2156] = 811, + [2157] = 810, + [2158] = 809, + [2159] = 808, + [2160] = 807, + [2161] = 806, + [2162] = 770, + [2163] = 804, + [2164] = 802, + [2165] = 801, + [2166] = 800, + [2167] = 799, + [2168] = 798, + [2169] = 797, + [2170] = 820, + [2171] = 795, + [2172] = 794, + [2173] = 793, + [2174] = 772, + [2175] = 792, + [2176] = 778, + [2177] = 790, + [2178] = 789, + [2179] = 788, + [2180] = 804, + [2181] = 787, [2182] = 786, - [2183] = 772, - [2184] = 773, - [2185] = 774, - [2186] = 775, - [2187] = 776, - [2188] = 777, - [2189] = 778, - [2190] = 779, - [2191] = 781, - [2192] = 782, - [2193] = 783, - [2194] = 784, - [2195] = 785, - [2196] = 786, - [2197] = 787, - [2198] = 827, - [2199] = 788, - [2200] = 789, - [2201] = 827, - [2202] = 791, - [2203] = 792, - [2204] = 793, - [2205] = 794, - [2206] = 796, - [2207] = 797, - [2208] = 798, - [2209] = 799, - [2210] = 800, - [2211] = 750, - [2212] = 802, - [2213] = 803, - [2214] = 804, - [2215] = 806, - [2216] = 807, - [2217] = 808, - [2218] = 809, - [2219] = 810, - [2220] = 811, - [2221] = 812, - [2222] = 813, - [2223] = 897, - [2224] = 814, - [2225] = 816, - [2226] = 817, - [2227] = 818, - [2228] = 819, - [2229] = 820, - [2230] = 821, - [2231] = 822, - [2232] = 823, - [2233] = 824, - [2234] = 825, - [2235] = 826, - [2236] = 828, - [2237] = 829, - [2238] = 830, - [2239] = 831, - [2240] = 832, - [2241] = 833, - [2242] = 834, - [2243] = 874, - [2244] = 835, - [2245] = 836, - [2246] = 837, - [2247] = 838, - [2248] = 839, - [2249] = 843, - [2250] = 840, - [2251] = 841, - [2252] = 842, - [2253] = 858, - [2254] = 765, - [2255] = 781, - [2256] = 784, - [2257] = 766, - [2258] = 767, - [2259] = 768, - [2260] = 790, - [2261] = 749, - [2262] = 770, - [2263] = 771, - [2264] = 783, - [2265] = 772, - [2266] = 773, - [2267] = 774, - [2268] = 775, - [2269] = 776, - [2270] = 777, - [2271] = 778, - [2272] = 779, - [2273] = 781, - [2274] = 782, - [2275] = 783, - [2276] = 784, - [2277] = 785, - [2278] = 786, - [2279] = 787, - [2280] = 782, - [2281] = 788, - [2282] = 789, - [2283] = 827, - [2284] = 791, - [2285] = 792, - [2286] = 793, - [2287] = 794, - [2288] = 796, - [2289] = 797, - [2290] = 798, - [2291] = 799, - [2292] = 800, - [2293] = 750, - [2294] = 802, - [2295] = 803, - [2296] = 804, - [2297] = 806, - [2298] = 807, - [2299] = 808, - [2300] = 809, - [2301] = 810, - [2302] = 811, - [2303] = 812, - [2304] = 813, - [2305] = 897, - [2306] = 814, - [2307] = 816, - [2308] = 817, - [2309] = 818, - [2310] = 819, - [2311] = 820, - [2312] = 821, - [2313] = 822, - [2314] = 823, - [2315] = 824, - [2316] = 825, - [2317] = 826, - [2318] = 828, - [2319] = 829, - [2320] = 830, - [2321] = 831, - [2322] = 832, - [2323] = 833, - [2324] = 834, - [2325] = 874, - [2326] = 835, - [2327] = 836, - [2328] = 837, - [2329] = 838, - [2330] = 839, - [2331] = 843, - [2332] = 840, - [2333] = 841, - [2334] = 842, - [2335] = 858, - [2336] = 765, - [2337] = 774, - [2338] = 781, - [2339] = 766, - [2340] = 767, - [2341] = 768, - [2342] = 790, - [2343] = 749, - [2344] = 770, - [2345] = 771, - [2346] = 779, - [2347] = 772, - [2348] = 773, - [2349] = 774, - [2350] = 775, - [2351] = 776, - [2352] = 777, - [2353] = 778, - [2354] = 779, - [2355] = 781, - [2356] = 782, - [2357] = 783, - [2358] = 784, - [2359] = 785, - [2360] = 786, - [2361] = 787, - [2362] = 778, - [2363] = 788, - [2364] = 789, - [2365] = 827, - [2366] = 791, - [2367] = 792, - [2368] = 793, - [2369] = 794, - [2370] = 796, - [2371] = 797, - [2372] = 798, - [2373] = 799, - [2374] = 800, - [2375] = 750, - [2376] = 802, - [2377] = 803, - [2378] = 804, - [2379] = 806, - [2380] = 807, - [2381] = 808, - [2382] = 809, - [2383] = 810, - [2384] = 811, - [2385] = 812, - [2386] = 813, - [2387] = 897, - [2388] = 814, - [2389] = 816, - [2390] = 817, - [2391] = 818, - [2392] = 819, - [2393] = 820, - [2394] = 821, - [2395] = 822, - [2396] = 823, - [2397] = 824, - [2398] = 825, - [2399] = 826, - [2400] = 828, - [2401] = 829, - [2402] = 830, - [2403] = 831, - [2404] = 832, - [2405] = 833, - [2406] = 834, - [2407] = 874, - [2408] = 835, - [2409] = 836, - [2410] = 837, - [2411] = 838, - [2412] = 839, - [2413] = 843, - [2414] = 840, - [2415] = 841, - [2416] = 842, - [2417] = 858, - [2418] = 765, - [2419] = 782, - [2420] = 777, - [2421] = 766, - [2422] = 767, - [2423] = 768, - [2424] = 790, - [2425] = 749, - [2426] = 770, - [2427] = 771, - [2428] = 776, - [2429] = 772, - [2430] = 773, - [2431] = 774, - [2432] = 775, - [2433] = 776, - [2434] = 777, - [2435] = 778, - [2436] = 779, - [2437] = 781, - [2438] = 782, - [2439] = 783, - [2440] = 784, - [2441] = 785, - [2442] = 786, - [2443] = 787, - [2444] = 775, - [2445] = 788, - [2446] = 789, - [2447] = 827, - [2448] = 791, - [2449] = 792, - [2450] = 793, - [2451] = 794, - [2452] = 796, - [2453] = 797, - [2454] = 798, - [2455] = 799, - [2456] = 800, - [2457] = 750, - [2458] = 802, - [2459] = 803, - [2460] = 804, - [2461] = 806, - [2462] = 807, - [2463] = 808, - [2464] = 809, - [2465] = 810, - [2466] = 811, - [2467] = 812, - [2468] = 813, - [2469] = 897, - [2470] = 814, - [2471] = 816, - [2472] = 817, - [2473] = 818, - [2474] = 819, - [2475] = 820, - [2476] = 821, - [2477] = 822, - [2478] = 823, - [2479] = 824, - [2480] = 825, - [2481] = 826, - [2482] = 828, - [2483] = 829, - [2484] = 830, - [2485] = 831, - [2486] = 832, - [2487] = 833, - [2488] = 834, - [2489] = 874, - [2490] = 835, - [2491] = 836, - [2492] = 837, - [2493] = 838, - [2494] = 839, - [2495] = 843, - [2496] = 840, - [2497] = 841, - [2498] = 842, - [2499] = 858, - [2500] = 765, - [2501] = 790, - [2502] = 773, - [2503] = 766, - [2504] = 767, - [2505] = 768, - [2506] = 790, - [2507] = 749, - [2508] = 770, - [2509] = 771, - [2510] = 772, - [2511] = 772, - [2512] = 773, - [2513] = 774, - [2514] = 775, - [2515] = 776, - [2516] = 777, - [2517] = 778, - [2518] = 779, - [2519] = 781, - [2520] = 782, - [2521] = 783, - [2522] = 784, - [2523] = 785, - [2524] = 786, - [2525] = 787, - [2526] = 771, - [2527] = 788, - [2528] = 789, - [2529] = 827, - [2530] = 791, - [2531] = 792, - [2532] = 793, - [2533] = 794, - [2534] = 796, - [2535] = 797, - [2536] = 798, - [2537] = 799, - [2538] = 800, - [2539] = 750, - [2540] = 802, - [2541] = 803, - [2542] = 804, - [2543] = 806, - [2544] = 807, - [2545] = 808, - [2546] = 809, - [2547] = 810, - [2548] = 811, - [2549] = 812, - [2550] = 813, - [2551] = 897, - [2552] = 814, - [2553] = 816, - [2554] = 817, - [2555] = 818, - [2556] = 819, - [2557] = 820, - [2558] = 821, - [2559] = 822, - [2560] = 823, - [2561] = 824, - [2562] = 825, - [2563] = 826, - [2564] = 828, - [2565] = 829, - [2566] = 830, - [2567] = 831, - [2568] = 832, - [2569] = 833, - [2570] = 834, - [2571] = 874, - [2572] = 835, - [2573] = 836, - [2574] = 837, - [2575] = 838, - [2576] = 839, - [2577] = 843, - [2578] = 840, - [2579] = 841, - [2580] = 842, - [2581] = 858, - [2582] = 765, - [2583] = 770, - [2584] = 749, - [2585] = 766, - [2586] = 767, - [2587] = 768, - [2588] = 790, - [2589] = 749, - [2590] = 770, - [2591] = 771, - [2592] = 842, - [2593] = 772, - [2594] = 773, - [2595] = 774, - [2596] = 775, - [2597] = 776, - [2598] = 777, - [2599] = 778, - [2600] = 779, - [2601] = 781, - [2602] = 782, - [2603] = 783, - [2604] = 784, - [2605] = 785, - [2606] = 786, - [2607] = 787, - [2608] = 768, - [2609] = 788, - [2610] = 789, - [2611] = 827, - [2612] = 791, - [2613] = 792, + [2183] = 785, + [2184] = 749, + [2185] = 783, + [2186] = 884, + [2187] = 782, + [2188] = 781, + [2189] = 773, + [2190] = 795, + [2191] = 779, + [2192] = 767, + [2193] = 774, + [2194] = 777, + [2195] = 776, + [2196] = 775, + [2197] = 796, + [2198] = 750, + [2199] = 774, + [2200] = 773, + [2201] = 766, + [2202] = 767, + [2203] = 768, + [2204] = 769, + [2205] = 770, + [2206] = 771, + [2207] = 772, + [2208] = 772, + [2209] = 773, + [2210] = 774, + [2211] = 796, + [2212] = 775, + [2213] = 776, + [2214] = 777, + [2215] = 778, + [2216] = 779, + [2217] = 781, + [2218] = 782, + [2219] = 783, + [2220] = 749, + [2221] = 785, + [2222] = 786, + [2223] = 787, + [2224] = 771, + [2225] = 788, + [2226] = 789, + [2227] = 837, + [2228] = 790, + [2229] = 791, + [2230] = 792, + [2231] = 793, + [2232] = 794, + [2233] = 795, + [2234] = 820, + [2235] = 797, + [2236] = 798, + [2237] = 799, + [2238] = 800, + [2239] = 801, + [2240] = 802, + [2241] = 804, + [2242] = 806, + [2243] = 807, + [2244] = 808, + [2245] = 809, + [2246] = 810, + [2247] = 811, + [2248] = 812, + [2249] = 813, + [2250] = 814, + [2251] = 815, + [2252] = 816, + [2253] = 817, + [2254] = 818, + [2255] = 819, + [2256] = 838, + [2257] = 821, + [2258] = 822, + [2259] = 823, + [2260] = 824, + [2261] = 826, + [2262] = 827, + [2263] = 828, + [2264] = 829, + [2265] = 830, + [2266] = 831, + [2267] = 832, + [2268] = 833, + [2269] = 884, + [2270] = 834, + [2271] = 835, + [2272] = 836, + [2273] = 846, + [2274] = 839, + [2275] = 840, + [2276] = 841, + [2277] = 842, + [2278] = 843, + [2279] = 844, + [2280] = 845, + [2281] = 750, + [2282] = 770, + [2283] = 769, + [2284] = 766, + [2285] = 767, + [2286] = 768, + [2287] = 769, + [2288] = 770, + [2289] = 771, + [2290] = 772, + [2291] = 768, + [2292] = 773, + [2293] = 774, + [2294] = 796, + [2295] = 775, + [2296] = 776, + [2297] = 777, + [2298] = 778, + [2299] = 779, + [2300] = 781, + [2301] = 782, + [2302] = 783, + [2303] = 749, + [2304] = 785, + [2305] = 786, + [2306] = 787, + [2307] = 844, + [2308] = 788, + [2309] = 789, + [2310] = 837, + [2311] = 790, + [2312] = 791, + [2313] = 792, + [2314] = 793, + [2315] = 794, + [2316] = 795, + [2317] = 820, + [2318] = 797, + [2319] = 798, + [2320] = 799, + [2321] = 800, + [2322] = 801, + [2323] = 802, + [2324] = 804, + [2325] = 806, + [2326] = 807, + [2327] = 808, + [2328] = 809, + [2329] = 810, + [2330] = 811, + [2331] = 812, + [2332] = 813, + [2333] = 814, + [2334] = 815, + [2335] = 816, + [2336] = 817, + [2337] = 818, + [2338] = 819, + [2339] = 838, + [2340] = 821, + [2341] = 822, + [2342] = 823, + [2343] = 824, + [2344] = 826, + [2345] = 827, + [2346] = 828, + [2347] = 829, + [2348] = 830, + [2349] = 831, + [2350] = 832, + [2351] = 833, + [2352] = 884, + [2353] = 834, + [2354] = 835, + [2355] = 836, + [2356] = 846, + [2357] = 839, + [2358] = 840, + [2359] = 841, + [2360] = 842, + [2361] = 843, + [2362] = 844, + [2363] = 845, + [2364] = 750, + [2365] = 766, + [2366] = 796, + [2367] = 766, + [2368] = 767, + [2369] = 768, + [2370] = 769, + [2371] = 770, + [2372] = 771, + [2373] = 772, + [2374] = 750, + [2375] = 773, + [2376] = 774, + [2377] = 796, + [2378] = 775, + [2379] = 776, + [2380] = 777, + [2381] = 778, + [2382] = 779, + [2383] = 781, + [2384] = 782, + [2385] = 783, + [2386] = 749, + [2387] = 785, + [2388] = 786, + [2389] = 787, + [2390] = 845, + [2391] = 788, + [2392] = 789, + [2393] = 837, + [2394] = 790, + [2395] = 791, + [2396] = 792, + [2397] = 793, + [2398] = 794, + [2399] = 795, + [2400] = 820, + [2401] = 797, + [2402] = 798, + [2403] = 799, + [2404] = 800, + [2405] = 801, + [2406] = 802, + [2407] = 804, + [2408] = 806, + [2409] = 807, + [2410] = 808, + [2411] = 809, + [2412] = 810, + [2413] = 811, + [2414] = 812, + [2415] = 813, + [2416] = 814, + [2417] = 815, + [2418] = 816, + [2419] = 817, + [2420] = 794, + [2421] = 819, + [2422] = 838, + [2423] = 821, + [2424] = 822, + [2425] = 823, + [2426] = 824, + [2427] = 826, + [2428] = 827, + [2429] = 828, + [2430] = 829, + [2431] = 830, + [2432] = 831, + [2433] = 832, + [2434] = 833, + [2435] = 884, + [2436] = 834, + [2437] = 835, + [2438] = 836, + [2439] = 846, + [2440] = 839, + [2441] = 840, + [2442] = 841, + [2443] = 842, + [2444] = 843, + [2445] = 844, + [2446] = 845, + [2447] = 750, + [2448] = 835, + [2449] = 843, + [2450] = 766, + [2451] = 767, + [2452] = 768, + [2453] = 769, + [2454] = 770, + [2455] = 771, + [2456] = 772, + [2457] = 842, + [2458] = 773, + [2459] = 774, + [2460] = 796, + [2461] = 775, + [2462] = 776, + [2463] = 777, + [2464] = 778, + [2465] = 779, + [2466] = 781, + [2467] = 782, + [2468] = 783, + [2469] = 749, + [2470] = 785, + [2471] = 786, + [2472] = 787, + [2473] = 841, + [2474] = 788, + [2475] = 789, + [2476] = 837, + [2477] = 790, + [2478] = 791, + [2479] = 792, + [2480] = 793, + [2481] = 794, + [2482] = 795, + [2483] = 820, + [2484] = 797, + [2485] = 798, + [2486] = 799, + [2487] = 800, + [2488] = 801, + [2489] = 802, + [2490] = 804, + [2491] = 806, + [2492] = 807, + [2493] = 808, + [2494] = 809, + [2495] = 810, + [2496] = 811, + [2497] = 812, + [2498] = 813, + [2499] = 814, + [2500] = 815, + [2501] = 816, + [2502] = 817, + [2503] = 818, + [2504] = 819, + [2505] = 838, + [2506] = 821, + [2507] = 822, + [2508] = 823, + [2509] = 824, + [2510] = 826, + [2511] = 827, + [2512] = 828, + [2513] = 829, + [2514] = 830, + [2515] = 831, + [2516] = 832, + [2517] = 833, + [2518] = 884, + [2519] = 834, + [2520] = 835, + [2521] = 836, + [2522] = 846, + [2523] = 839, + [2524] = 840, + [2525] = 841, + [2526] = 842, + [2527] = 843, + [2528] = 844, + [2529] = 845, + [2530] = 750, + [2531] = 840, + [2532] = 839, + [2533] = 766, + [2534] = 767, + [2535] = 768, + [2536] = 769, + [2537] = 770, + [2538] = 771, + [2539] = 772, + [2540] = 846, + [2541] = 773, + [2542] = 774, + [2543] = 796, + [2544] = 775, + [2545] = 776, + [2546] = 777, + [2547] = 778, + [2548] = 779, + [2549] = 781, + [2550] = 782, + [2551] = 783, + [2552] = 749, + [2553] = 785, + [2554] = 786, + [2555] = 787, + [2556] = 836, + [2557] = 788, + [2558] = 789, + [2559] = 837, + [2560] = 790, + [2561] = 791, + [2562] = 792, + [2563] = 793, + [2564] = 794, + [2565] = 795, + [2566] = 820, + [2567] = 797, + [2568] = 798, + [2569] = 799, + [2570] = 800, + [2571] = 801, + [2572] = 802, + [2573] = 804, + [2574] = 806, + [2575] = 807, + [2576] = 808, + [2577] = 809, + [2578] = 810, + [2579] = 811, + [2580] = 812, + [2581] = 813, + [2582] = 814, + [2583] = 815, + [2584] = 816, + [2585] = 817, + [2586] = 818, + [2587] = 819, + [2588] = 838, + [2589] = 821, + [2590] = 822, + [2591] = 823, + [2592] = 824, + [2593] = 826, + [2594] = 827, + [2595] = 828, + [2596] = 829, + [2597] = 830, + [2598] = 831, + [2599] = 832, + [2600] = 833, + [2601] = 884, + [2602] = 834, + [2603] = 835, + [2604] = 836, + [2605] = 846, + [2606] = 839, + [2607] = 840, + [2608] = 841, + [2609] = 842, + [2610] = 843, + [2611] = 844, + [2612] = 845, + [2613] = 750, [2614] = 793, - [2615] = 794, - [2616] = 796, - [2617] = 797, - [2618] = 798, - [2619] = 799, - [2620] = 800, - [2621] = 750, - [2622] = 802, - [2623] = 803, - [2624] = 804, - [2625] = 806, - [2626] = 807, - [2627] = 808, - [2628] = 809, - [2629] = 810, - [2630] = 811, - [2631] = 812, - [2632] = 813, - [2633] = 897, - [2634] = 814, - [2635] = 816, - [2636] = 817, - [2637] = 818, - [2638] = 819, - [2639] = 820, - [2640] = 821, - [2641] = 822, - [2642] = 823, - [2643] = 824, - [2644] = 825, - [2645] = 826, - [2646] = 828, - [2647] = 829, - [2648] = 830, - [2649] = 831, - [2650] = 832, - [2651] = 833, - [2652] = 834, - [2653] = 874, - [2654] = 835, - [2655] = 836, - [2656] = 837, - [2657] = 838, - [2658] = 839, - [2659] = 843, - [2660] = 840, - [2661] = 841, - [2662] = 842, - [2663] = 858, - [2664] = 765, - [2665] = 767, - [2666] = 766, - [2667] = 766, - [2668] = 767, - [2669] = 768, - [2670] = 790, - [2671] = 749, - [2672] = 770, - [2673] = 771, - [2674] = 783, - [2675] = 772, - [2676] = 773, - [2677] = 774, - [2678] = 775, - [2679] = 776, - [2680] = 777, - [2681] = 778, - [2682] = 779, - [2683] = 781, - [2684] = 782, - [2685] = 783, - [2686] = 784, - [2687] = 785, - [2688] = 786, - [2689] = 787, - [2690] = 765, - [2691] = 788, - [2692] = 858, - [2693] = 827, - [2694] = 791, - [2695] = 792, - [2696] = 793, - [2697] = 794, - [2698] = 796, - [2699] = 797, - [2700] = 798, - [2701] = 799, - [2702] = 800, - [2703] = 750, - [2704] = 802, - [2705] = 803, - [2706] = 804, - [2707] = 806, - [2708] = 807, - [2709] = 808, - [2710] = 809, - [2711] = 810, - [2712] = 772, - [2713] = 812, - [2714] = 813, - [2715] = 897, - [2716] = 814, - [2717] = 816, - [2718] = 817, - [2719] = 818, - [2720] = 819, - [2721] = 820, - [2722] = 821, - [2723] = 822, - [2724] = 823, - [2725] = 824, - [2726] = 825, - [2727] = 826, - [2728] = 828, - [2729] = 829, - [2730] = 830, - [2731] = 831, - [2732] = 832, - [2733] = 833, - [2734] = 834, - [2735] = 874, - [2736] = 835, - [2737] = 836, - [2738] = 837, - [2739] = 838, - [2740] = 839, - [2741] = 843, - [2742] = 840, - [2743] = 841, - [2744] = 842, - [2745] = 858, - [2746] = 765, - [2747] = 836, - [2748] = 841, - [2749] = 766, - [2750] = 767, - [2751] = 768, - [2752] = 790, - [2753] = 749, - [2754] = 770, - [2755] = 771, - [2756] = 840, - [2757] = 772, - [2758] = 773, - [2759] = 774, - [2760] = 775, - [2761] = 776, - [2762] = 777, - [2763] = 778, - [2764] = 779, - [2765] = 781, - [2766] = 782, - [2767] = 783, - [2768] = 784, - [2769] = 785, - [2770] = 786, - [2771] = 787, - [2772] = 843, - [2773] = 788, - [2774] = 789, - [2775] = 827, - [2776] = 791, - [2777] = 792, - [2778] = 793, - [2779] = 794, - [2780] = 796, - [2781] = 797, - [2782] = 798, - [2783] = 799, - [2784] = 800, - [2785] = 750, - [2786] = 802, - [2787] = 803, - [2788] = 804, - [2789] = 806, - [2790] = 807, - [2791] = 808, - [2792] = 809, - [2793] = 810, - [2794] = 811, - [2795] = 812, - [2796] = 813, - [2797] = 897, - [2798] = 814, - [2799] = 816, - [2800] = 817, - [2801] = 818, - [2802] = 819, - [2803] = 820, - [2804] = 821, - [2805] = 822, - [2806] = 823, - [2807] = 824, - [2808] = 825, - [2809] = 826, - [2810] = 828, - [2811] = 829, - [2812] = 830, - [2813] = 831, - [2814] = 832, - [2815] = 833, - [2816] = 834, - [2817] = 874, - [2818] = 835, - [2819] = 836, - [2820] = 837, - [2821] = 838, - [2822] = 839, - [2823] = 843, - [2824] = 840, - [2825] = 841, - [2826] = 842, - [2827] = 858, - [2828] = 765, - [2829] = 839, - [2830] = 838, - [2831] = 766, - [2832] = 767, - [2833] = 768, - [2834] = 790, - [2835] = 749, - [2836] = 770, - [2837] = 771, - [2838] = 837, - [2839] = 772, - [2840] = 773, - [2841] = 774, - [2842] = 775, - [2843] = 776, - [2844] = 777, - [2845] = 778, - [2846] = 779, - [2847] = 781, - [2848] = 782, - [2849] = 783, - [2850] = 784, - [2851] = 785, - [2852] = 786, - [2853] = 787, - [2854] = 773, - [2855] = 788, - [2856] = 789, - [2857] = 829, - [2858] = 791, - [2859] = 792, - [2860] = 793, - [2861] = 794, - [2862] = 796, - [2863] = 797, - [2864] = 798, - [2865] = 799, - [2866] = 800, - [2867] = 750, - [2868] = 802, - [2869] = 803, - [2870] = 804, - [2871] = 806, - [2872] = 807, - [2873] = 808, - [2874] = 809, - [2875] = 810, - [2876] = 811, - [2877] = 812, - [2878] = 813, - [2879] = 897, - [2880] = 814, - [2881] = 816, - [2882] = 817, - [2883] = 818, - [2884] = 819, - [2885] = 820, - [2886] = 821, - [2887] = 822, - [2888] = 823, - [2889] = 824, - [2890] = 825, - [2891] = 826, - [2892] = 828, - [2893] = 829, - [2894] = 830, - [2895] = 831, - [2896] = 832, - [2897] = 833, - [2898] = 834, - [2899] = 835, - [2900] = 835, - [2901] = 836, - [2902] = 837, - [2903] = 838, - [2904] = 839, - [2905] = 843, - [2906] = 840, - [2907] = 841, - [2908] = 842, - [2909] = 858, - [2910] = 765, - [2911] = 834, - [2912] = 833, - [2913] = 766, - [2914] = 767, - [2915] = 768, - [2916] = 790, - [2917] = 749, - [2918] = 770, - [2919] = 771, - [2920] = 832, - [2921] = 772, - [2922] = 773, - [2923] = 774, - [2924] = 775, - [2925] = 776, - [2926] = 777, - [2927] = 778, - [2928] = 779, - [2929] = 781, - [2930] = 782, - [2931] = 783, - [2932] = 784, - [2933] = 785, - [2934] = 786, - [2935] = 787, - [2936] = 831, - [2937] = 788, - [2938] = 789, - [2939] = 830, - [2940] = 791, - [2941] = 792, - [2942] = 793, - [2943] = 794, - [2944] = 796, - [2945] = 797, - [2946] = 798, - [2947] = 799, - [2948] = 800, - [2949] = 750, - [2950] = 802, - [2951] = 803, - [2952] = 804, - [2953] = 806, - [2954] = 807, - [2955] = 808, - [2956] = 809, - [2957] = 810, - [2958] = 811, - [2959] = 812, - [2960] = 813, - [2961] = 897, - [2962] = 814, - [2963] = 816, - [2964] = 817, - [2965] = 818, - [2966] = 819, - [2967] = 820, - [2968] = 821, - [2969] = 822, - [2970] = 823, - [2971] = 824, - [2972] = 825, - [2973] = 826, - [2974] = 828, - [2975] = 829, - [2976] = 830, - [2977] = 831, - [2978] = 832, - [2979] = 833, - [2980] = 834, - [2981] = 818, - [2982] = 835, - [2983] = 836, - [2984] = 837, - [2985] = 838, - [2986] = 839, - [2987] = 843, - [2988] = 840, - [2989] = 841, - [2990] = 842, - [2991] = 858, - [2992] = 765, - [2993] = 828, - [2994] = 826, - [2995] = 766, - [2996] = 767, - [2997] = 768, - [2998] = 790, - [2999] = 749, - [3000] = 770, - [3001] = 771, - [3002] = 825, - [3003] = 772, - [3004] = 773, - [3005] = 774, - [3006] = 775, - [3007] = 776, - [3008] = 777, - [3009] = 778, - [3010] = 779, - [3011] = 781, - [3012] = 782, - [3013] = 783, - [3014] = 784, - [3015] = 785, - [3016] = 786, - [3017] = 787, - [3018] = 824, - [3019] = 788, - [3020] = 789, - [3021] = 823, - [3022] = 791, - [3023] = 792, - [3024] = 793, - [3025] = 794, - [3026] = 796, - [3027] = 797, - [3028] = 798, - [3029] = 799, - [3030] = 800, - [3031] = 750, - [3032] = 802, - [3033] = 803, - [3034] = 804, - [3035] = 806, - [3036] = 807, - [3037] = 808, - [3038] = 809, - [3039] = 810, - [3040] = 811, - [3041] = 812, - [3042] = 813, - [3043] = 897, - [3044] = 814, - [3045] = 816, - [3046] = 817, - [3047] = 818, - [3048] = 819, - [3049] = 820, - [3050] = 821, - [3051] = 822, - [3052] = 823, - [3053] = 824, - [3054] = 825, - [3055] = 826, - [3056] = 828, - [3057] = 829, - [3058] = 830, - [3059] = 831, - [3060] = 832, - [3061] = 833, - [3062] = 834, - [3063] = 822, - [3064] = 835, - [3065] = 836, - [3066] = 837, - [3067] = 838, - [3068] = 839, - [3069] = 843, - [3070] = 840, - [3071] = 841, - [3072] = 842, - [3073] = 858, - [3074] = 765, - [3075] = 821, - [3076] = 820, - [3077] = 766, - [3078] = 767, - [3079] = 768, - [3080] = 790, - [3081] = 749, - [3082] = 770, - [3083] = 771, - [3084] = 774, - [3085] = 772, - [3086] = 773, - [3087] = 774, - [3088] = 775, - [3089] = 776, - [3090] = 777, - [3091] = 778, - [3092] = 779, - [3093] = 781, - [3094] = 782, - [3095] = 783, - [3096] = 784, - [3097] = 785, - [3098] = 786, - [3099] = 787, - [3100] = 819, - [3101] = 788, - [3102] = 789, - [3103] = 775, - [3104] = 791, - [3105] = 792, - [3106] = 793, - [3107] = 794, - [3108] = 796, - [3109] = 797, - [3110] = 798, - [3111] = 799, - [3112] = 800, - [3113] = 750, - [3114] = 802, - [3115] = 803, - [3116] = 804, - [3117] = 806, - [3118] = 807, - [3119] = 808, - [3120] = 809, - [3121] = 810, - [3122] = 811, - [3123] = 812, - [3124] = 813, - [3125] = 897, - [3126] = 814, - [3127] = 816, - [3128] = 817, - [3129] = 818, - [3130] = 819, - [3131] = 820, - [3132] = 821, - [3133] = 822, - [3134] = 823, - [3135] = 824, - [3136] = 825, - [3137] = 826, - [3138] = 828, - [3139] = 829, - [3140] = 830, - [3141] = 831, - [3142] = 832, - [3143] = 833, - [3144] = 834, - [3145] = 776, - [3146] = 835, - [3147] = 836, - [3148] = 837, - [3149] = 838, - [3150] = 839, - [3151] = 843, - [3152] = 840, - [3153] = 841, - [3154] = 842, - [3155] = 858, - [3156] = 775, - [3157] = 817, - [3158] = 771, - [3159] = 778, - [3160] = 816, - [3161] = 814, - [3162] = 779, - [3163] = 777, - [3164] = 897, - [3165] = 806, - [3166] = 781, - [3167] = 813, - [3168] = 782, - [3169] = 783, - [3170] = 812, - [3171] = 827, - [3172] = 874, - [3173] = 811, - [3174] = 827, - [3175] = 874, - [3176] = 810, - [3177] = 827, - [3178] = 874, - [3179] = 809, - [3180] = 784, - [3181] = 808, - [3182] = 807, - [3183] = 785, - [3184] = 786, - [3185] = 787, - [3186] = 807, - [3187] = 788, - [3188] = 784, - [3189] = 806, - [3190] = 789, - [3191] = 791, - [3192] = 792, - [3193] = 793, - [3194] = 794, - [3195] = 796, - [3196] = 797, - [3197] = 798, - [3198] = 799, - [3199] = 800, - [3200] = 750, - [3201] = 804, - [3202] = 803, - [3203] = 802, - [3204] = 803, - [3205] = 804, - [3206] = 808, - [3207] = 806, - [3208] = 807, - [3209] = 808, - [3210] = 809, - [3211] = 811, - [3212] = 812, - [3213] = 813, - [3214] = 802, - [3215] = 897, - [3216] = 814, - [3217] = 816, - [3218] = 817, - [3219] = 818, - [3220] = 819, - [3221] = 820, - [3222] = 821, - [3223] = 822, - [3224] = 823, - [3225] = 824, - [3226] = 825, - [3227] = 826, - [3228] = 828, - [3229] = 829, - [3230] = 830, - [3231] = 810, - [3232] = 832, - [3233] = 833, - [3234] = 834, - [3235] = 874, - [3236] = 835, - [3237] = 836, - [3238] = 837, - [3239] = 838, - [3240] = 839, - [3241] = 843, - [3242] = 827, - [3243] = 840, - [3244] = 831, - [3245] = 750, - [3246] = 841, - [3247] = 842, - [3248] = 800, - [3249] = 858, - [3250] = 799, - [3251] = 765, - [3252] = 798, - [3253] = 797, - [3254] = 810, - [3255] = 796, - [3256] = 766, - [3257] = 794, - [3258] = 767, - [3259] = 768, - [3260] = 790, - [3261] = 749, - [3262] = 770, - [3263] = 786, - [3264] = 793, - [3265] = 771, - [3266] = 811, - [3267] = 772, - [3268] = 773, - [3269] = 774, - [3270] = 775, - [3271] = 776, - [3272] = 777, - [3273] = 778, - [3274] = 779, - [3275] = 809, - [3276] = 787, - [3277] = 792, - [3278] = 781, - [3279] = 782, - [3280] = 784, - [3281] = 785, - [3282] = 786, - [3283] = 787, - [3284] = 783, - [3285] = 788, - [3286] = 789, - [3287] = 827, - [3288] = 791, - [3289] = 791, - [3290] = 792, - [3291] = 793, - [3292] = 794, - [3293] = 796, - [3294] = 797, - [3295] = 798, - [3296] = 800, - [3297] = 750, - [3298] = 802, - [3299] = 803, - [3300] = 804, - [3301] = 812, - [3302] = 806, - [3303] = 807, - [3304] = 808, - [3305] = 809, - [3306] = 810, - [3307] = 811, - [3308] = 812, - [3309] = 813, - [3310] = 897, - [3311] = 814, - [3312] = 816, - [3313] = 817, - [3314] = 818, - [3315] = 819, - [3316] = 820, - [3317] = 874, - [3318] = 799, - [3319] = 789, - [3320] = 822, - [3321] = 788, - [3322] = 823, - [3323] = 788, - [3324] = 824, - [3325] = 787, - [3326] = 786, - [3327] = 785, - [3328] = 825, - [3329] = 784, - [3330] = 826, - [3331] = 828, - [3332] = 829, - [3333] = 830, - [3334] = 831, - [3335] = 783, - [3336] = 782, - [3337] = 832, - [3338] = 833, - [3339] = 834, - [3340] = 874, - [3341] = 835, - [3342] = 836, - [3343] = 837, - [3344] = 838, - [3345] = 839, - [3346] = 843, - [3347] = 840, - [3348] = 781, - [3349] = 789, - [3350] = 821, - [3351] = 842, - [3352] = 858, - [3353] = 765, - [3354] = 897, - [3355] = 766, - [3356] = 767, - [3357] = 768, - [3358] = 790, - [3359] = 749, - [3360] = 770, + [2615] = 832, + [2616] = 766, + [2617] = 767, + [2618] = 768, + [2619] = 769, + [2620] = 770, + [2621] = 771, + [2622] = 772, + [2623] = 834, + [2624] = 773, + [2625] = 774, + [2626] = 796, + [2627] = 775, + [2628] = 776, + [2629] = 777, + [2630] = 778, + [2631] = 779, + [2632] = 781, + [2633] = 782, + [2634] = 783, + [2635] = 749, + [2636] = 785, + [2637] = 786, + [2638] = 787, + [2639] = 833, + [2640] = 788, + [2641] = 789, + [2642] = 837, + [2643] = 790, + [2644] = 791, + [2645] = 792, + [2646] = 793, + [2647] = 794, + [2648] = 795, + [2649] = 820, + [2650] = 797, + [2651] = 798, + [2652] = 799, + [2653] = 800, + [2654] = 801, + [2655] = 802, + [2656] = 804, + [2657] = 806, + [2658] = 807, + [2659] = 808, + [2660] = 809, + [2661] = 810, + [2662] = 811, + [2663] = 812, + [2664] = 813, + [2665] = 814, + [2666] = 815, + [2667] = 816, + [2668] = 817, + [2669] = 818, + [2670] = 819, + [2671] = 838, + [2672] = 821, + [2673] = 822, + [2674] = 823, + [2675] = 824, + [2676] = 826, + [2677] = 827, + [2678] = 828, + [2679] = 829, + [2680] = 830, + [2681] = 831, + [2682] = 832, + [2683] = 833, + [2684] = 884, + [2685] = 834, + [2686] = 835, + [2687] = 836, + [2688] = 846, + [2689] = 839, + [2690] = 840, + [2691] = 841, + [2692] = 842, + [2693] = 843, + [2694] = 844, + [2695] = 845, + [2696] = 750, + [2697] = 823, + [2698] = 831, + [2699] = 766, + [2700] = 767, + [2701] = 768, + [2702] = 769, + [2703] = 770, + [2704] = 771, + [2705] = 772, + [2706] = 830, + [2707] = 773, + [2708] = 774, + [2709] = 796, + [2710] = 775, + [2711] = 776, + [2712] = 777, + [2713] = 778, + [2714] = 779, + [2715] = 781, + [2716] = 782, + [2717] = 783, + [2718] = 749, + [2719] = 785, + [2720] = 786, + [2721] = 787, + [2722] = 829, + [2723] = 788, + [2724] = 789, + [2725] = 837, + [2726] = 790, + [2727] = 791, + [2728] = 792, + [2729] = 793, + [2730] = 794, + [2731] = 795, + [2732] = 820, + [2733] = 797, + [2734] = 798, + [2735] = 799, + [2736] = 800, + [2737] = 801, + [2738] = 802, + [2739] = 804, + [2740] = 806, + [2741] = 807, + [2742] = 808, + [2743] = 809, + [2744] = 810, + [2745] = 811, + [2746] = 812, + [2747] = 813, + [2748] = 814, + [2749] = 815, + [2750] = 816, + [2751] = 817, + [2752] = 818, + [2753] = 819, + [2754] = 838, + [2755] = 821, + [2756] = 822, + [2757] = 823, + [2758] = 824, + [2759] = 826, + [2760] = 827, + [2761] = 828, + [2762] = 829, + [2763] = 830, + [2764] = 831, + [2765] = 832, + [2766] = 833, + [2767] = 884, + [2768] = 834, + [2769] = 835, + [2770] = 836, + [2771] = 846, + [2772] = 839, + [2773] = 840, + [2774] = 841, + [2775] = 842, + [2776] = 843, + [2777] = 844, + [2778] = 845, + [2779] = 750, + [2780] = 828, + [2781] = 827, + [2782] = 766, + [2783] = 767, + [2784] = 768, + [2785] = 769, + [2786] = 770, + [2787] = 771, + [2788] = 772, + [2789] = 826, + [2790] = 773, + [2791] = 774, + [2792] = 796, + [2793] = 775, + [2794] = 776, + [2795] = 777, + [2796] = 778, + [2797] = 779, + [2798] = 781, + [2799] = 782, + [2800] = 783, + [2801] = 749, + [2802] = 785, + [2803] = 786, + [2804] = 787, + [2805] = 824, + [2806] = 788, + [2807] = 789, + [2808] = 837, + [2809] = 790, + [2810] = 791, + [2811] = 792, + [2812] = 793, + [2813] = 794, + [2814] = 795, + [2815] = 820, + [2816] = 797, + [2817] = 798, + [2818] = 799, + [2819] = 800, + [2820] = 801, + [2821] = 802, + [2822] = 804, + [2823] = 806, + [2824] = 807, + [2825] = 808, + [2826] = 809, + [2827] = 810, + [2828] = 811, + [2829] = 812, + [2830] = 813, + [2831] = 814, + [2832] = 815, + [2833] = 816, + [2834] = 817, + [2835] = 818, + [2836] = 819, + [2837] = 838, + [2838] = 821, + [2839] = 822, + [2840] = 823, + [2841] = 824, + [2842] = 826, + [2843] = 827, + [2844] = 828, + [2845] = 829, + [2846] = 830, + [2847] = 831, + [2848] = 832, + [2849] = 833, + [2850] = 884, + [2851] = 834, + [2852] = 835, + [2853] = 836, + [2854] = 846, + [2855] = 839, + [2856] = 840, + [2857] = 841, + [2858] = 842, + [2859] = 843, + [2860] = 844, + [2861] = 845, + [2862] = 750, + [2863] = 817, + [2864] = 822, + [2865] = 766, + [2866] = 767, + [2867] = 768, + [2868] = 769, + [2869] = 770, + [2870] = 771, + [2871] = 772, + [2872] = 821, + [2873] = 773, + [2874] = 774, + [2875] = 796, + [2876] = 775, + [2877] = 776, + [2878] = 777, + [2879] = 778, + [2880] = 779, + [2881] = 781, + [2882] = 782, + [2883] = 783, + [2884] = 749, + [2885] = 785, + [2886] = 786, + [2887] = 787, + [2888] = 838, + [2889] = 788, + [2890] = 789, + [2891] = 819, + [2892] = 790, + [2893] = 791, + [2894] = 792, + [2895] = 793, + [2896] = 794, + [2897] = 795, + [2898] = 820, + [2899] = 797, + [2900] = 798, + [2901] = 799, + [2902] = 800, + [2903] = 801, + [2904] = 802, + [2905] = 804, + [2906] = 806, + [2907] = 807, + [2908] = 808, + [2909] = 809, + [2910] = 810, + [2911] = 811, + [2912] = 812, + [2913] = 813, + [2914] = 814, + [2915] = 815, + [2916] = 816, + [2917] = 817, + [2918] = 818, + [2919] = 819, + [2920] = 838, + [2921] = 821, + [2922] = 822, + [2923] = 823, + [2924] = 824, + [2925] = 826, + [2926] = 827, + [2927] = 828, + [2928] = 829, + [2929] = 830, + [2930] = 831, + [2931] = 832, + [2932] = 833, + [2933] = 818, + [2934] = 834, + [2935] = 835, + [2936] = 836, + [2937] = 846, + [2938] = 839, + [2939] = 840, + [2940] = 841, + [2941] = 842, + [2942] = 843, + [2943] = 844, + [2944] = 845, + [2945] = 750, + [2946] = 807, + [2947] = 816, + [2948] = 766, + [2949] = 767, + [2950] = 768, + [2951] = 769, + [2952] = 770, + [2953] = 771, + [2954] = 772, + [2955] = 815, + [2956] = 773, + [2957] = 774, + [2958] = 796, + [2959] = 775, + [2960] = 776, + [2961] = 777, + [2962] = 778, + [2963] = 779, + [2964] = 781, + [2965] = 782, + [2966] = 783, + [2967] = 749, + [2968] = 785, + [2969] = 786, + [2970] = 787, + [2971] = 814, + [2972] = 788, + [2973] = 789, + [2974] = 813, + [2975] = 790, + [2976] = 791, + [2977] = 792, + [2978] = 793, + [2979] = 794, + [2980] = 795, + [2981] = 820, + [2982] = 797, + [2983] = 798, + [2984] = 799, + [2985] = 800, + [2986] = 801, + [2987] = 802, + [2988] = 804, + [2989] = 806, + [2990] = 807, + [2991] = 808, + [2992] = 809, + [2993] = 810, + [2994] = 811, + [2995] = 812, + [2996] = 813, + [2997] = 814, + [2998] = 815, + [2999] = 816, + [3000] = 817, + [3001] = 818, + [3002] = 819, + [3003] = 838, + [3004] = 821, + [3005] = 822, + [3006] = 823, + [3007] = 824, + [3008] = 826, + [3009] = 827, + [3010] = 828, + [3011] = 829, + [3012] = 830, + [3013] = 831, + [3014] = 832, + [3015] = 833, + [3016] = 812, + [3017] = 834, + [3018] = 835, + [3019] = 836, + [3020] = 846, + [3021] = 839, + [3022] = 840, + [3023] = 841, + [3024] = 842, + [3025] = 843, + [3026] = 844, + [3027] = 845, + [3028] = 750, + [3029] = 811, + [3030] = 810, + [3031] = 766, + [3032] = 767, + [3033] = 768, + [3034] = 769, + [3035] = 770, + [3036] = 771, + [3037] = 772, + [3038] = 806, + [3039] = 773, + [3040] = 774, + [3041] = 796, + [3042] = 775, + [3043] = 776, + [3044] = 777, + [3045] = 778, + [3046] = 779, + [3047] = 781, + [3048] = 782, + [3049] = 783, + [3050] = 749, + [3051] = 785, + [3052] = 786, + [3053] = 787, + [3054] = 809, + [3055] = 788, + [3056] = 789, + [3057] = 808, + [3058] = 790, + [3059] = 791, + [3060] = 792, + [3061] = 793, + [3062] = 794, + [3063] = 795, + [3064] = 820, + [3065] = 797, + [3066] = 798, + [3067] = 799, + [3068] = 800, + [3069] = 801, + [3070] = 802, + [3071] = 804, + [3072] = 806, + [3073] = 807, + [3074] = 808, + [3075] = 809, + [3076] = 810, + [3077] = 811, + [3078] = 812, + [3079] = 813, + [3080] = 814, + [3081] = 815, + [3082] = 816, + [3083] = 817, + [3084] = 818, + [3085] = 819, + [3086] = 838, + [3087] = 821, + [3088] = 822, + [3089] = 823, + [3090] = 824, + [3091] = 826, + [3092] = 827, + [3093] = 828, + [3094] = 829, + [3095] = 830, + [3096] = 831, + [3097] = 832, + [3098] = 833, + [3099] = 799, + [3100] = 834, + [3101] = 835, + [3102] = 836, + [3103] = 846, + [3104] = 839, + [3105] = 840, + [3106] = 841, + [3107] = 842, + [3108] = 843, + [3109] = 844, + [3110] = 845, + [3111] = 750, + [3112] = 806, + [3113] = 775, + [3114] = 766, + [3115] = 767, + [3116] = 768, + [3117] = 769, + [3118] = 770, + [3119] = 771, + [3120] = 772, + [3121] = 804, + [3122] = 773, + [3123] = 774, + [3124] = 796, + [3125] = 775, + [3126] = 776, + [3127] = 777, + [3128] = 778, + [3129] = 779, + [3130] = 781, + [3131] = 782, + [3132] = 783, + [3133] = 749, + [3134] = 785, + [3135] = 786, + [3136] = 787, + [3137] = 802, + [3138] = 788, + [3139] = 789, + [3140] = 807, + [3141] = 790, + [3142] = 791, + [3143] = 792, + [3144] = 793, + [3145] = 794, + [3146] = 795, + [3147] = 820, + [3148] = 797, + [3149] = 798, + [3150] = 799, + [3151] = 800, + [3152] = 801, + [3153] = 802, + [3154] = 804, + [3155] = 806, + [3156] = 807, + [3157] = 808, + [3158] = 809, + [3159] = 810, + [3160] = 811, + [3161] = 812, + [3162] = 813, + [3163] = 814, + [3164] = 815, + [3165] = 816, + [3166] = 817, + [3167] = 818, + [3168] = 819, + [3169] = 838, + [3170] = 821, + [3171] = 822, + [3172] = 823, + [3173] = 824, + [3174] = 826, + [3175] = 827, + [3176] = 828, + [3177] = 829, + [3178] = 830, + [3179] = 831, + [3180] = 832, + [3181] = 833, + [3182] = 792, + [3183] = 834, + [3184] = 835, + [3185] = 836, + [3186] = 846, + [3187] = 839, + [3188] = 840, + [3189] = 841, + [3190] = 842, + [3191] = 843, + [3192] = 844, + [3193] = 845, + [3194] = 808, + [3195] = 801, + [3196] = 809, + [3197] = 810, + [3198] = 800, + [3199] = 776, + [3200] = 811, + [3201] = 812, + [3202] = 771, + [3203] = 798, + [3204] = 813, + [3205] = 814, + [3206] = 797, + [3207] = 815, + [3208] = 791, + [3209] = 820, + [3210] = 837, + [3211] = 884, + [3212] = 795, + [3213] = 837, + [3214] = 884, + [3215] = 794, + [3216] = 837, + [3217] = 884, + [3218] = 790, + [3219] = 793, + [3220] = 837, + [3221] = 777, + [3222] = 792, + [3223] = 816, + [3224] = 789, + [3225] = 788, + [3226] = 817, + [3227] = 818, + [3228] = 778, + [3229] = 791, + [3230] = 819, + [3231] = 838, + [3232] = 821, + [3233] = 820, + [3234] = 823, + [3235] = 824, + [3236] = 826, + [3237] = 827, + [3238] = 787, + [3239] = 786, + [3240] = 828, + [3241] = 790, + [3242] = 789, + [3243] = 829, + [3244] = 830, + [3245] = 785, + [3246] = 749, + [3247] = 831, + [3248] = 832, + [3249] = 833, + [3250] = 884, + [3251] = 834, + [3252] = 835, + [3253] = 822, + [3254] = 788, + [3255] = 836, + [3256] = 846, + [3257] = 839, + [3258] = 840, + [3259] = 841, + [3260] = 783, + [3261] = 842, + [3262] = 843, + [3263] = 844, + [3264] = 845, + [3265] = 750, + [3266] = 797, + [3267] = 766, + [3268] = 767, + [3269] = 768, + [3270] = 769, + [3271] = 782, + [3272] = 771, + [3273] = 772, + [3274] = 799, + [3275] = 773, + [3276] = 774, + [3277] = 796, + [3278] = 775, + [3279] = 776, + [3280] = 777, + [3281] = 778, + [3282] = 779, + [3283] = 779, + [3284] = 798, + [3285] = 787, + [3286] = 781, + [3287] = 782, + [3288] = 783, + [3289] = 786, + [3290] = 749, + [3291] = 785, + [3292] = 770, + [3293] = 749, + [3294] = 783, + [3295] = 786, + [3296] = 884, + [3297] = 787, + [3298] = 782, + [3299] = 788, + [3300] = 789, + [3301] = 785, + [3302] = 790, + [3303] = 791, + [3304] = 781, + [3305] = 781, + [3306] = 792, + [3307] = 793, + [3308] = 794, + [3309] = 795, + [3310] = 820, + [3311] = 797, + [3312] = 798, + [3313] = 799, + [3314] = 800, + [3315] = 801, + [3316] = 802, + [3317] = 779, + [3318] = 778, + [3319] = 781, + [3320] = 800, + [3321] = 804, + [3322] = 806, + [3323] = 807, + [3324] = 808, + [3325] = 809, + [3326] = 810, + [3327] = 811, + [3328] = 812, + [3329] = 837, + [3330] = 840, + [3331] = 813, + [3332] = 814, + [3333] = 815, + [3334] = 816, + [3335] = 817, + [3336] = 818, + [3337] = 819, + [3338] = 838, + [3339] = 821, + [3340] = 822, + [3341] = 823, + [3342] = 824, + [3343] = 826, + [3344] = 827, + [3345] = 794, + [3346] = 828, + [3347] = 829, + [3348] = 830, + [3349] = 831, + [3350] = 833, + [3351] = 884, + [3352] = 834, + [3353] = 835, + [3354] = 836, + [3355] = 846, + [3356] = 776, + [3357] = 839, + [3358] = 777, + [3359] = 840, + [3360] = 776, [3361] = 841, - [3362] = 771, - [3363] = 814, - [3364] = 772, - [3365] = 773, - [3366] = 774, - [3367] = 775, - [3368] = 776, - [3369] = 777, - [3370] = 778, - [3371] = 779, - [3372] = 813, - [3373] = 781, - [3374] = 782, - [3375] = 841, - [3376] = 784, - [3377] = 785, - [3378] = 786, - [3379] = 787, - [3380] = 788, - [3381] = 789, - [3382] = 827, - [3383] = 791, - [3384] = 792, - [3385] = 793, - [3386] = 794, + [3362] = 842, + [3363] = 775, + [3364] = 843, + [3365] = 796, + [3366] = 844, + [3367] = 774, + [3368] = 845, + [3369] = 773, + [3370] = 750, + [3371] = 772, + [3372] = 801, + [3373] = 766, + [3374] = 767, + [3375] = 768, + [3376] = 769, + [3377] = 771, + [3378] = 770, + [3379] = 779, + [3380] = 778, + [3381] = 832, + [3382] = 771, + [3383] = 772, + [3384] = 804, + [3385] = 773, + [3386] = 774, [3387] = 796, - [3388] = 797, - [3389] = 779, - [3390] = 798, - [3391] = 778, - [3392] = 799, - [3393] = 791, - [3394] = 800, + [3388] = 775, + [3389] = 776, + [3390] = 769, + [3391] = 768, + [3392] = 777, + [3393] = 778, + [3394] = 779, [3395] = 777, - [3396] = 750, - [3397] = 776, - [3398] = 775, - [3399] = 774, - [3400] = 802, - [3401] = 773, - [3402] = 803, - [3403] = 804, - [3404] = 816, - [3405] = 806, - [3406] = 807, - [3407] = 808, - [3408] = 783, - [3409] = 810, - [3410] = 811, - [3411] = 809, - [3412] = 812, - [3413] = 813, - [3414] = 897, - [3415] = 814, - [3416] = 816, - [3417] = 817, - [3418] = 818, - [3419] = 819, - [3420] = 772, - [3421] = 820, - [3422] = 821, - [3423] = 822, - [3424] = 823, - [3425] = 824, - [3426] = 825, - [3427] = 828, - [3428] = 829, - [3429] = 830, - [3430] = 831, - [3431] = 832, - [3432] = 833, - [3433] = 771, - [3434] = 834, - [3435] = 874, - [3436] = 835, - [3437] = 836, - [3438] = 837, - [3439] = 838, - [3440] = 839, - [3441] = 843, - [3442] = 840, - [3443] = 841, - [3444] = 842, - [3445] = 858, - [3446] = 818, - [3447] = 819, - [3448] = 820, - [3449] = 817, - [3450] = 826, - [3451] = 822, + [3396] = 802, + [3397] = 781, + [3398] = 782, + [3399] = 783, + [3400] = 749, + [3401] = 785, + [3402] = 786, + [3403] = 767, + [3404] = 787, + [3405] = 788, + [3406] = 789, + [3407] = 770, + [3408] = 771, + [3409] = 775, + [3410] = 790, + [3411] = 791, + [3412] = 792, + [3413] = 793, + [3414] = 794, + [3415] = 795, + [3416] = 820, + [3417] = 797, + [3418] = 798, + [3419] = 799, + [3420] = 800, + [3421] = 801, + [3422] = 802, + [3423] = 796, + [3424] = 806, + [3425] = 804, + [3426] = 837, + [3427] = 807, + [3428] = 808, + [3429] = 809, + [3430] = 810, + [3431] = 766, + [3432] = 811, + [3433] = 812, + [3434] = 813, + [3435] = 806, + [3436] = 783, + [3437] = 774, + [3438] = 750, + [3439] = 815, + [3440] = 816, + [3441] = 845, + [3442] = 844, + [3443] = 817, + [3444] = 843, + [3445] = 818, + [3446] = 819, + [3447] = 838, + [3448] = 821, + [3449] = 822, + [3450] = 842, + [3451] = 841, [3452] = 823, [3453] = 824, - [3454] = 825, - [3455] = 826, + [3454] = 826, + [3455] = 827, [3456] = 828, - [3457] = 829, - [3458] = 830, - [3459] = 831, - [3460] = 832, - [3461] = 770, - [3462] = 833, - [3463] = 749, - [3464] = 834, - [3465] = 790, - [3466] = 874, - [3467] = 768, - [3468] = 835, - [3469] = 767, - [3470] = 766, - [3471] = 792, - [3472] = 836, - [3473] = 765, - [3474] = 837, - [3475] = 838, - [3476] = 839, - [3477] = 843, - [3478] = 840, - [3479] = 858, - [3480] = 842, - [3481] = 841, - [3482] = 821, - [3483] = 858, - [3484] = 765, - [3485] = 750, - [3486] = 766, - [3487] = 767, - [3488] = 768, - [3489] = 790, - [3490] = 749, - [3491] = 770, - [3492] = 839, - [3493] = 840, - [3494] = 771, - [3495] = 772, - [3496] = 773, - [3497] = 774, - [3498] = 775, - [3499] = 776, - [3500] = 777, - [3501] = 785, - [3502] = 778, - [3503] = 779, - [3504] = 842, - [3505] = 843, - [3506] = 827, - [3507] = 799, - [3508] = 781, - [3509] = 782, - [3510] = 783, - [3511] = 784, - [3512] = 785, - [3513] = 786, - [3514] = 787, - [3515] = 798, - [3516] = 788, - [3517] = 789, - [3518] = 791, - [3519] = 792, - [3520] = 797, - [3521] = 793, - [3522] = 796, - [3523] = 794, - [3524] = 796, - [3525] = 797, - [3526] = 874, - [3527] = 798, - [3528] = 799, - [3529] = 800, - [3530] = 750, - [3531] = 800, - [3532] = 820, - [3533] = 802, - [3534] = 838, - [3535] = 811, - [3536] = 837, - [3537] = 802, - [3538] = 836, - [3539] = 803, - [3540] = 835, - [3541] = 834, - [3542] = 827, - [3543] = 804, - [3544] = 833, - [3545] = 806, - [3546] = 793, - [3547] = 807, - [3548] = 808, - [3549] = 809, - [3550] = 832, - [3551] = 831, - [3552] = 810, - [3553] = 811, - [3554] = 812, - [3555] = 813, - [3556] = 897, - [3557] = 814, - [3558] = 816, - [3559] = 817, - [3560] = 818, - [3561] = 819, - [3562] = 794, - [3563] = 830, - [3564] = 829, - [3565] = 821, - [3566] = 822, - [3567] = 823, - [3568] = 824, - [3569] = 825, - [3570] = 826, - [3571] = 828, - [3572] = 3572, - [3573] = 3572, - [3574] = 3572, - [3575] = 3572, - [3576] = 3572, - [3577] = 3572, - [3578] = 3572, - [3579] = 3572, - [3580] = 3572, - [3581] = 3572, - [3582] = 3572, - [3583] = 3572, - [3584] = 3572, - [3585] = 3572, - [3586] = 3572, - [3587] = 3572, - [3588] = 3572, - [3589] = 3572, - [3590] = 3572, - [3591] = 3572, - [3592] = 3572, - [3593] = 3572, - [3594] = 3572, - [3595] = 3572, - [3596] = 3572, - [3597] = 3572, - [3598] = 3572, - [3599] = 3572, - [3600] = 3572, - [3601] = 3572, - [3602] = 3572, - [3603] = 3572, - [3604] = 3572, - [3605] = 3572, - [3606] = 3572, + [3457] = 773, + [3458] = 793, + [3459] = 772, + [3460] = 829, + [3461] = 830, + [3462] = 831, + [3463] = 829, + [3464] = 839, + [3465] = 832, + [3466] = 833, + [3467] = 884, + [3468] = 834, + [3469] = 835, + [3470] = 814, + [3471] = 750, + [3472] = 846, + [3473] = 839, + [3474] = 840, + [3475] = 841, + [3476] = 846, + [3477] = 770, + [3478] = 769, + [3479] = 842, + [3480] = 843, + [3481] = 844, + [3482] = 768, + [3483] = 767, + [3484] = 845, + [3485] = 808, + [3486] = 809, + [3487] = 766, + [3488] = 810, + [3489] = 811, + [3490] = 812, + [3491] = 813, + [3492] = 814, + [3493] = 815, + [3494] = 816, + [3495] = 817, + [3496] = 836, + [3497] = 818, + [3498] = 807, + [3499] = 838, + [3500] = 821, + [3501] = 822, + [3502] = 823, + [3503] = 824, + [3504] = 836, + [3505] = 826, + [3506] = 835, + [3507] = 827, + [3508] = 828, + [3509] = 834, + [3510] = 829, + [3511] = 833, + [3512] = 830, + [3513] = 832, + [3514] = 831, + [3515] = 830, + [3516] = 831, + [3517] = 819, + [3518] = 832, + [3519] = 833, + [3520] = 837, + [3521] = 884, + [3522] = 834, + [3523] = 828, + [3524] = 827, + [3525] = 835, + [3526] = 836, + [3527] = 846, + [3528] = 839, + [3529] = 840, + [3530] = 841, + [3531] = 819, + [3532] = 843, + [3533] = 844, + [3534] = 845, + [3535] = 750, + [3536] = 826, + [3537] = 824, + [3538] = 782, + [3539] = 766, + [3540] = 767, + [3541] = 768, + [3542] = 769, + [3543] = 770, + [3544] = 771, + [3545] = 772, + [3546] = 773, + [3547] = 774, + [3548] = 796, + [3549] = 837, + [3550] = 775, + [3551] = 776, + [3552] = 777, + [3553] = 842, + [3554] = 778, + [3555] = 779, + [3556] = 837, + [3557] = 791, + [3558] = 812, + [3559] = 789, + [3560] = 781, + [3561] = 782, + [3562] = 783, + [3563] = 749, + [3564] = 785, + [3565] = 786, + [3566] = 787, + [3567] = 788, + [3568] = 884, + [3569] = 792, + [3570] = 788, + [3571] = 789, + [3572] = 790, + [3573] = 791, + [3574] = 787, + [3575] = 792, + [3576] = 823, + [3577] = 793, + [3578] = 822, + [3579] = 794, + [3580] = 795, + [3581] = 821, + [3582] = 820, + [3583] = 838, + [3584] = 797, + [3585] = 798, + [3586] = 818, + [3587] = 817, + [3588] = 790, + [3589] = 816, + [3590] = 799, + [3591] = 785, + [3592] = 800, + [3593] = 801, + [3594] = 802, + [3595] = 815, + [3596] = 814, + [3597] = 804, + [3598] = 749, + [3599] = 806, + [3600] = 807, + [3601] = 808, + [3602] = 809, + [3603] = 810, + [3604] = 811, + [3605] = 812, + [3606] = 813, [3607] = 3607, - [3608] = 3608, - [3609] = 3609, - [3610] = 3608, - [3611] = 3611, - [3612] = 3612, - [3613] = 3613, - [3614] = 3614, - [3615] = 3615, + [3608] = 3607, + [3609] = 3607, + [3610] = 3607, + [3611] = 3607, + [3612] = 3607, + [3613] = 3607, + [3614] = 3607, + [3615] = 3607, [3616] = 3607, - [3617] = 3617, + [3617] = 3607, [3618] = 3607, - [3619] = 3614, - [3620] = 3620, - [3621] = 3615, - [3622] = 3612, - [3623] = 3609, - [3624] = 3617, + [3619] = 3607, + [3620] = 3607, + [3621] = 3607, + [3622] = 3607, + [3623] = 3607, + [3624] = 3607, [3625] = 3607, - [3626] = 3615, - [3627] = 3612, - [3628] = 3617, - [3629] = 3609, - [3630] = 3614, - [3631] = 3613, - [3632] = 3611, - [3633] = 3608, - [3634] = 3614, - [3635] = 3613, - [3636] = 3611, - [3637] = 3608, - [3638] = 3638, - [3639] = 3608, - [3640] = 3609, - [3641] = 3638, - [3642] = 3612, - [3643] = 3615, - [3644] = 3607, - [3645] = 3638, - [3646] = 3608, - [3647] = 3611, - [3648] = 3607, - [3649] = 3613, - [3650] = 3615, - [3651] = 3608, - [3652] = 3611, - [3653] = 3613, - [3654] = 3614, - [3655] = 3638, - [3656] = 3614, - [3657] = 3614, - [3658] = 3613, - [3659] = 3607, - [3660] = 3615, - [3661] = 3612, - [3662] = 3609, - [3663] = 3612, - [3664] = 3609, - [3665] = 3638, - [3666] = 3617, - [3667] = 3608, - [3668] = 3617, - [3669] = 3609, - [3670] = 3612, - [3671] = 3615, - [3672] = 3607, - [3673] = 3611, - [3674] = 3613, - [3675] = 3614, - [3676] = 3611, - [3677] = 3611, - [3678] = 3613, - [3679] = 3609, - [3680] = 3614, - [3681] = 3608, - [3682] = 3612, - [3683] = 3638, - [3684] = 3615, - [3685] = 3607, - [3686] = 3617, - [3687] = 3609, - [3688] = 3612, - [3689] = 3615, - [3690] = 3607, - [3691] = 3607, - [3692] = 3615, - [3693] = 3612, - [3694] = 3609, - [3695] = 3638, - [3696] = 3614, - [3697] = 3613, - [3698] = 3611, - [3699] = 3608, - [3700] = 3617, - [3701] = 3608, - [3702] = 3611, - [3703] = 3613, - [3704] = 3614, - [3705] = 3615, - [3706] = 3614, - [3707] = 3613, - [3708] = 3638, - [3709] = 3607, - [3710] = 3614, - [3711] = 3607, - [3712] = 3615, - [3713] = 3612, - [3714] = 3609, - [3715] = 3617, - [3716] = 3638, - [3717] = 3617, - [3718] = 3608, - [3719] = 3611, - [3720] = 3613, - [3721] = 3614, - [3722] = 3613, - [3723] = 3638, - [3724] = 3607, - [3725] = 3615, - [3726] = 3612, - [3727] = 3609, - [3728] = 3617, - [3729] = 3607, - [3730] = 3613, - [3731] = 3607, - [3732] = 3615, - [3733] = 3612, - [3734] = 3609, - [3735] = 3638, - [3736] = 3614, - [3737] = 3609, - [3738] = 3612, - [3739] = 3615, - [3740] = 3607, - [3741] = 3617, - [3742] = 3613, - [3743] = 3608, - [3744] = 3611, - [3745] = 3611, - [3746] = 3608, - [3747] = 3613, - [3748] = 3614, - [3749] = 3615, - [3750] = 3611, - [3751] = 3608, - [3752] = 3617, - [3753] = 3638, - [3754] = 3607, - [3755] = 3615, - [3756] = 3608, - [3757] = 3612, - [3758] = 3609, - [3759] = 3607, - [3760] = 3612, - [3761] = 3615, - [3762] = 3612, - [3763] = 3609, - [3764] = 3609, - [3765] = 3612, - [3766] = 3617, - [3767] = 3614, - [3768] = 3613, - [3769] = 3611, - [3770] = 3608, - [3771] = 3638, - [3772] = 3638, - [3773] = 3608, - [3774] = 3611, - [3775] = 3613, - [3776] = 3614, - [3777] = 3609, - [3778] = 3615, - [3779] = 3607, - [3780] = 3617, - [3781] = 3617, - [3782] = 3607, - [3783] = 3615, - [3784] = 3612, - [3785] = 3609, - [3786] = 3638, - [3787] = 3617, - [3788] = 3617, - [3789] = 3608, - [3790] = 3611, - [3791] = 3613, - [3792] = 3614, - [3793] = 3607, - [3794] = 3638, - [3795] = 3638, - [3796] = 3638, - [3797] = 3615, - [3798] = 3614, - [3799] = 3607, - [3800] = 3615, - [3801] = 3612, - [3802] = 3609, - [3803] = 3617, - [3804] = 3638, - [3805] = 3608, - [3806] = 3611, - [3807] = 3613, - [3808] = 3613, - [3809] = 3612, - [3810] = 3615, - [3811] = 3607, - [3812] = 3614, - [3813] = 3614, - [3814] = 3613, - [3815] = 3609, - [3816] = 3620, - [3817] = 3611, - [3818] = 3612, - [3819] = 3608, - [3820] = 3615, - [3821] = 3638, - [3822] = 3638, - [3823] = 3617, - [3824] = 3617, - [3825] = 3607, - [3826] = 3615, - [3827] = 3612, - [3828] = 3609, - [3829] = 3638, - [3830] = 3617, - [3831] = 3609, - [3832] = 3612, - [3833] = 3614, - [3834] = 3611, - [3835] = 3638, - [3836] = 3612, - [3837] = 3609, - [3838] = 3615, - [3839] = 3638, - [3840] = 3611, - [3841] = 3608, - [3842] = 3614, - [3843] = 3617, - [3844] = 3609, - [3845] = 3607, - [3846] = 3617, - [3847] = 3614, - [3848] = 3613, - [3849] = 3608, - [3850] = 3638, - [3851] = 3607, - [3852] = 3615, - [3853] = 3612, - [3854] = 3609, - [3855] = 3638, - [3856] = 3617, - [3857] = 3614, - [3858] = 3613, - [3859] = 3608, - [3860] = 3611, - [3861] = 3613, - [3862] = 3614, - [3863] = 3611, - [3864] = 3611, - [3865] = 3638, - [3866] = 3620, - [3867] = 3608, - [3868] = 3611, - [3869] = 3613, - [3870] = 3607, - [3871] = 3615, - [3872] = 3612, - [3873] = 3609, - [3874] = 3617, - [3875] = 3638, - [3876] = 3617, - [3877] = 3608, - [3878] = 3617, - [3879] = 3609, - [3880] = 3612, - [3881] = 3615, - [3882] = 3607, - [3883] = 3611, - [3884] = 3613, - [3885] = 3614, - [3886] = 3608, - [3887] = 3608, - [3888] = 3611, - [3889] = 3620, - [3890] = 3617, - [3891] = 3613, - [3892] = 3614, - [3893] = 3607, - [3894] = 3612, - [3895] = 3615, - [3896] = 3612, - [3897] = 3609, - [3898] = 3638, - [3899] = 3617, - [3900] = 3608, - [3901] = 3611, - [3902] = 3638, - [3903] = 3613, - [3904] = 3614, - [3905] = 3608, - [3906] = 3638, - [3907] = 3611, - [3908] = 3611, - [3909] = 3614, - [3910] = 3613, - [3911] = 3611, - [3912] = 3608, - [3913] = 3608, - [3914] = 3614, - [3915] = 3607, - [3916] = 3615, - [3917] = 3612, - [3918] = 3609, - [3919] = 3613, - [3920] = 3617, - [3921] = 3638, - [3922] = 3608, - [3923] = 3611, - [3924] = 3613, - [3925] = 3614, - [3926] = 3617, - [3927] = 3613, - [3928] = 3609, - [3929] = 3612, - [3930] = 3615, - [3931] = 3611, - [3932] = 3607, - [3933] = 3617, - [3934] = 3617, - [3935] = 3608, - [3936] = 3638, - [3937] = 3607, - [3938] = 3615, - [3939] = 3612, - [3940] = 3609, - [3941] = 3638, - [3942] = 3617, - [3943] = 3614, - [3944] = 3608, - [3945] = 3611, - [3946] = 3613, - [3947] = 3614, - [3948] = 3638, - [3949] = 3617, - [3950] = 3609, - [3951] = 3612, - [3952] = 3615, - [3953] = 3607, - [3954] = 3609, - [3955] = 3613, - [3956] = 3609, - [3957] = 3611, - [3958] = 3620, - [3959] = 3612, - [3960] = 3615, - [3961] = 3607, - [3962] = 3962, - [3963] = 3962, - [3964] = 3964, - [3965] = 3962, - [3966] = 3962, - [3967] = 3967, - [3968] = 3967, - [3969] = 3962, - [3970] = 3964, - [3971] = 3967, - [3972] = 3964, - [3973] = 3967, - [3974] = 3967, - [3975] = 3964, - [3976] = 3962, - [3977] = 3967, - [3978] = 3967, - [3979] = 3962, - [3980] = 3964, - [3981] = 3962, - [3982] = 3964, - [3983] = 3967, - [3984] = 3964, - [3985] = 3962, - [3986] = 3967, - [3987] = 3967, - [3988] = 3964, - [3989] = 3967, - [3990] = 3962, - [3991] = 3962, - [3992] = 3964, - [3993] = 3962, - [3994] = 3967, - [3995] = 3964, - [3996] = 3967, - [3997] = 3967, - [3998] = 3962, - [3999] = 3964, - [4000] = 3962, - [4001] = 3964, - [4002] = 3967, - [4003] = 3964, - [4004] = 3962, - [4005] = 3967, - [4006] = 3962, - [4007] = 3967, - [4008] = 3964, - [4009] = 3964, - [4010] = 3962, - [4011] = 3967, - [4012] = 3967, - [4013] = 3962, - [4014] = 3964, - [4015] = 3964, - [4016] = 3964, - [4017] = 3962, - [4018] = 3964, - [4019] = 3964, - [4020] = 3964, - [4021] = 3962, - [4022] = 3967, - [4023] = 3967, - [4024] = 3962, - [4025] = 3964, - [4026] = 3964, - [4027] = 3962, - [4028] = 3967, - [4029] = 3964, - [4030] = 3964, - [4031] = 3967, - [4032] = 3962, - [4033] = 3962, - [4034] = 3964, - [4035] = 3967, - [4036] = 3962, - [4037] = 3967, - [4038] = 3964, - [4039] = 3962, - [4040] = 3967, - [4041] = 3962, - [4042] = 3962, - [4043] = 3967, - [4044] = 3967, - [4045] = 3964, - [4046] = 3964, - [4047] = 3962, - [4048] = 3962, - [4049] = 3962, - [4050] = 3967, - [4051] = 3967, - [4052] = 3967, - [4053] = 3962, - [4054] = 3964, - [4055] = 3967, - [4056] = 3967, - [4057] = 3964, - [4058] = 3967, - [4059] = 3964, - [4060] = 3962, - [4061] = 3964, - [4062] = 3964, - [4063] = 3964, - [4064] = 3962, - [4065] = 3967, - [4066] = 3962, - [4067] = 674, - [4068] = 684, - [4069] = 4069, - [4070] = 4070, - [4071] = 684, - [4072] = 4069, - [4073] = 4070, - [4074] = 4074, - [4075] = 4069, - [4076] = 4069, - [4077] = 4077, - [4078] = 4070, - [4079] = 4077, - [4080] = 4077, - [4081] = 4070, - [4082] = 4069, - [4083] = 684, - [4084] = 4077, - [4085] = 4074, - [4086] = 4069, - [4087] = 4077, - [4088] = 4070, - [4089] = 4069, - [4090] = 4070, - [4091] = 4069, - [4092] = 4077, - [4093] = 4074, - [4094] = 684, - [4095] = 684, - [4096] = 684, - [4097] = 4070, - [4098] = 4070, - [4099] = 4077, - [4100] = 4077, - [4101] = 4077, - [4102] = 4070, - [4103] = 4069, - [4104] = 4069, - [4105] = 4070, - [4106] = 4069, - [4107] = 4070, - [4108] = 4069, - [4109] = 4074, - [4110] = 4077, - [4111] = 4070, - [4112] = 4074, - [4113] = 4069, - [4114] = 4070, - [4115] = 4069, - [4116] = 4069, - [4117] = 4070, - [4118] = 4070, - [4119] = 4077, - [4120] = 4077, - [4121] = 4077, - [4122] = 4077, - [4123] = 4069, - [4124] = 4077, - [4125] = 674, - [4126] = 4077, - [4127] = 4070, - [4128] = 4070, - [4129] = 4069, - [4130] = 4069, - [4131] = 4070, - [4132] = 4069, - [4133] = 4069, - [4134] = 4069, - [4135] = 4070, - [4136] = 4077, - [4137] = 4077, - [4138] = 4069, - [4139] = 684, - [4140] = 4070, - [4141] = 4077, - [4142] = 4077, - [4143] = 4069, - [4144] = 4077, - [4145] = 4077, - [4146] = 4077, - [4147] = 4069, - [4148] = 4070, - [4149] = 4070, - [4150] = 4077, - [4151] = 4069, - [4152] = 4070, - [4153] = 4069, - [4154] = 4077, - [4155] = 4077, - [4156] = 4069, - [4157] = 4070, - [4158] = 4070, - [4159] = 4069, - [4160] = 4070, - [4161] = 4069, - [4162] = 4069, - [4163] = 4070, - [4164] = 4069, - [4165] = 4077, - [4166] = 4070, - [4167] = 4070, - [4168] = 4077, - [4169] = 4077, - [4170] = 4077, - [4171] = 4077, - [4172] = 4070, - [4173] = 4069, - [4174] = 4070, - [4175] = 4077, - [4176] = 4069, - [4177] = 4077, - [4178] = 4070, - [4179] = 4070, - [4180] = 4077, - [4181] = 4077, - [4182] = 4070, - [4183] = 4069, - [4184] = 4069, - [4185] = 4070, - [4186] = 4074, - [4187] = 684, - [4188] = 4188, - [4189] = 684, - [4190] = 4188, - [4191] = 4074, - [4192] = 4074, - [4193] = 684, - [4194] = 684, - [4195] = 4074, - [4196] = 4196, - [4197] = 827, - [4198] = 874, - [4199] = 4199, - [4200] = 4200, - [4201] = 4196, - [4202] = 4202, - [4203] = 4196, - [4204] = 4196, - [4205] = 4196, - [4206] = 4202, - [4207] = 4196, - [4208] = 4196, - [4209] = 4199, - [4210] = 4200, - [4211] = 4202, - [4212] = 4199, - [4213] = 4199, - [4214] = 4202, - [4215] = 4196, - [4216] = 4199, - [4217] = 4217, - [4218] = 4199, - [4219] = 4200, - [4220] = 4202, - [4221] = 4200, - [4222] = 4196, - [4223] = 4200, - [4224] = 4199, - [4225] = 4200, - [4226] = 4202, - [4227] = 4199, - [4228] = 4199, - [4229] = 874, - [4230] = 4199, - [4231] = 4202, - [4232] = 4202, - [4233] = 4196, - [4234] = 4202, - [4235] = 4196, - [4236] = 4199, - [4237] = 4202, - [4238] = 4200, - [4239] = 4199, - [4240] = 4202, - [4241] = 4196, - [4242] = 4202, - [4243] = 4200, - [4244] = 4196, - [4245] = 4200, - [4246] = 827, - [4247] = 4202, - [4248] = 4196, - [4249] = 4199, - [4250] = 4196, - [4251] = 4199, - [4252] = 4199, - [4253] = 827, - [4254] = 4196, - [4255] = 4217, - [4256] = 4202, - [4257] = 4200, - [4258] = 4202, - [4259] = 4259, - [4260] = 4202, - [4261] = 4196, - [4262] = 4196, - [4263] = 4196, - [4264] = 4200, - [4265] = 4200, - [4266] = 4196, - [4267] = 4202, - [4268] = 4199, - [4269] = 4199, - [4270] = 4196, - [4271] = 874, - [4272] = 4199, - [4273] = 4202, - [4274] = 4196, - [4275] = 4196, - [4276] = 4196, - [4277] = 4202, - [4278] = 4199, - [4279] = 4202, - [4280] = 4200, - [4281] = 4199, - [4282] = 4200, - [4283] = 4202, - [4284] = 4200, - [4285] = 4200, - [4286] = 4202, - [4287] = 827, - [4288] = 4217, - [4289] = 4200, - [4290] = 874, - [4291] = 4202, - [4292] = 4199, - [4293] = 4199, - [4294] = 4199, - [4295] = 4202, - [4296] = 4200, - [4297] = 4199, - [4298] = 4202, - [4299] = 4196, - [4300] = 827, - [4301] = 4196, - [4302] = 4196, - [4303] = 4202, - [4304] = 4200, - [4305] = 4200, - [4306] = 4306, - [4307] = 4196, - [4308] = 4308, - [4309] = 4200, - [4310] = 4199, - [4311] = 4200, - [4312] = 4202, - [4313] = 4217, - [4314] = 4196, - [4315] = 4202, - [4316] = 4200, - [4317] = 4199, - [4318] = 4196, - [4319] = 4196, - [4320] = 4199, - [4321] = 4200, - [4322] = 4202, - [4323] = 4196, - [4324] = 4202, - [4325] = 4196, - [4326] = 4200, - [4327] = 4200, - [4328] = 4217, - [4329] = 4202, - [4330] = 4202, - [4331] = 4196, - [4332] = 4202, - [4333] = 4200, - [4334] = 4306, - [4335] = 4202, - [4336] = 4196, - [4337] = 4202, - [4338] = 4196, - [4339] = 4196, - [4340] = 4340, - [4341] = 4196, - [4342] = 874, - [4343] = 4199, - [4344] = 4202, - [4345] = 4200, - [4346] = 4200, - [4347] = 4202, - [4348] = 4259, - [4349] = 4199, - [4350] = 4199, - [4351] = 4199, - [4352] = 4202, - [4353] = 4200, - [4354] = 4196, - [4355] = 4200, - [4356] = 4308, - [4357] = 4200, - [4358] = 4202, - [4359] = 4196, - [4360] = 4202, - [4361] = 4199, - [4362] = 4200, - [4363] = 4196, - [4364] = 4200, - [4365] = 4196, - [4366] = 4202, - [4367] = 4200, - [4368] = 4199, - [4369] = 4202, - [4370] = 4199, - [4371] = 4199, - [4372] = 4372, - [4373] = 4373, - [4374] = 4374, - [4375] = 4375, - [4376] = 4372, - [4377] = 4377, - [4378] = 4378, - [4379] = 4373, - [4380] = 4380, - [4381] = 4381, - [4382] = 4382, - [4383] = 4383, - [4384] = 4384, - [4385] = 4385, - [4386] = 4386, - [4387] = 4387, - [4388] = 4388, - [4389] = 4381, - [4390] = 4390, - [4391] = 4382, - [4392] = 4378, - [4393] = 4386, - [4394] = 4394, - [4395] = 4387, - [4396] = 4375, - [4397] = 4397, - [4398] = 4398, - [4399] = 4385, - [4400] = 4387, - [4401] = 4375, - [4402] = 4384, - [4403] = 4403, - [4404] = 4383, - [4405] = 4403, - [4406] = 4382, - [4407] = 4381, - [4408] = 4380, - [4409] = 4409, - [4410] = 4388, - [4411] = 4411, - [4412] = 4388, - [4413] = 4413, - [4414] = 4394, - [4415] = 4415, - [4416] = 4373, - [4417] = 4417, - [4418] = 4418, - [4419] = 4403, - [4420] = 4381, - [4421] = 4409, - [4422] = 4398, - [4423] = 4397, - [4424] = 4424, - [4425] = 4374, - [4426] = 4372, - [4427] = 4377, - [4428] = 4418, - [4429] = 4378, - [4430] = 4373, - [4431] = 4417, - [4432] = 4380, - [4433] = 4394, - [4434] = 4381, - [4435] = 4382, - [4436] = 4383, - [4437] = 4384, - [4438] = 4385, - [4439] = 4413, - [4440] = 4386, - [4441] = 4390, - [4442] = 4411, - [4443] = 4387, - [4444] = 4375, - [4445] = 4403, - [4446] = 4388, - [4447] = 4377, - [4448] = 4372, - [4449] = 4374, - [4450] = 4424, - [4451] = 4411, - [4452] = 4413, - [4453] = 4394, - [4454] = 4388, - [4455] = 4417, - [4456] = 4397, - [4457] = 4418, - [4458] = 4403, - [4459] = 4388, - [4460] = 4398, - [4461] = 4409, - [4462] = 4411, - [4463] = 4375, - [4464] = 4418, - [4465] = 4417, - [4466] = 4409, - [4467] = 4398, - [4468] = 4387, - [4469] = 4411, - [4470] = 4394, - [4471] = 4413, - [4472] = 4413, - [4473] = 4383, - [4474] = 4397, - [4475] = 4413, - [4476] = 4417, - [4477] = 4411, - [4478] = 4388, - [4479] = 4403, - [4480] = 4375, - [4481] = 4424, - [4482] = 4374, - [4483] = 4390, - [4484] = 4372, - [4485] = 4377, - [4486] = 4378, - [4487] = 4373, - [4488] = 4418, - [4489] = 4380, - [4490] = 4381, - [4491] = 4382, - [4492] = 4383, - [4493] = 4384, - [4494] = 4385, - [4495] = 4386, - [4496] = 4390, - [4497] = 4386, - [4498] = 4385, - [4499] = 4387, - [4500] = 4375, - [4501] = 4403, - [4502] = 4388, - [4503] = 4411, - [4504] = 4387, - [4505] = 4413, - [4506] = 4394, - [4507] = 4417, - [4508] = 4418, - [4509] = 4390, - [4510] = 4384, - [4511] = 4383, - [4512] = 4409, - [4513] = 4398, - [4514] = 4397, - [4515] = 4424, - [4516] = 4374, - [4517] = 4372, - [4518] = 4384, - [4519] = 4390, - [4520] = 4386, - [4521] = 4385, - [4522] = 4377, - [4523] = 4378, - [4524] = 4373, - [4525] = 4373, - [4526] = 4394, - [4527] = 4382, - [4528] = 4380, - [4529] = 4409, - [4530] = 4381, - [4531] = 4381, - [4532] = 4382, - [4533] = 4384, - [4534] = 4383, - [4535] = 4384, - [4536] = 4385, - [4537] = 4386, - [4538] = 4390, - [4539] = 4380, - [4540] = 4386, - [4541] = 4383, - [4542] = 4417, - [4543] = 4398, - [4544] = 4397, - [4545] = 4424, - [4546] = 4382, - [4547] = 4374, - [4548] = 4403, - [4549] = 4418, - [4550] = 4373, - [4551] = 4378, - [4552] = 4377, - [4553] = 4372, - [4554] = 4374, - [4555] = 4387, - [4556] = 4375, - [4557] = 4424, - [4558] = 4397, - [4559] = 4403, - [4560] = 4388, - [4561] = 4411, - [4562] = 4413, - [4563] = 4394, - [4564] = 4417, - [4565] = 4418, - [4566] = 4398, - [4567] = 4409, - [4568] = 4409, - [4569] = 4398, - [4570] = 4397, - [4571] = 4424, - [4572] = 4374, - [4573] = 4372, - [4574] = 4377, - [4575] = 4380, - [4576] = 4378, - [4577] = 4373, - [4578] = 4372, - [4579] = 4380, - [4580] = 4381, - [4581] = 4385, - [4582] = 4382, - [4583] = 4383, - [4584] = 4384, - [4585] = 4385, - [4586] = 4386, - [4587] = 4390, - [4588] = 4418, - [4589] = 4417, - [4590] = 4373, - [4591] = 4378, - [4592] = 4394, - [4593] = 4413, - [4594] = 4387, - [4595] = 4375, - [4596] = 4411, - [4597] = 4403, - [4598] = 4377, - [4599] = 4388, - [4600] = 4388, - [4601] = 4411, - [4602] = 4413, - [4603] = 4394, - [4604] = 4372, - [4605] = 4417, - [4606] = 4418, - [4607] = 4403, - [4608] = 4374, - [4609] = 4409, - [4610] = 4375, - [4611] = 4387, - [4612] = 4409, - [4613] = 4390, - [4614] = 874, - [4615] = 4398, - [4616] = 4397, - [4617] = 4424, - [4618] = 4386, - [4619] = 4385, - [4620] = 4397, - [4621] = 4398, - [4622] = 4409, - [4623] = 4424, - [4624] = 4374, - [4625] = 4384, - [4626] = 4372, - [4627] = 4377, - [4628] = 4378, - [4629] = 4373, - [4630] = 4383, - [4631] = 4380, - [4632] = 4381, - [4633] = 4382, - [4634] = 4383, - [4635] = 4384, - [4636] = 4385, - [4637] = 4386, - [4638] = 4390, - [4639] = 4382, - [4640] = 4381, - [4641] = 4387, - [4642] = 4375, - [4643] = 4403, - [4644] = 4388, - [4645] = 4411, - [4646] = 4418, - [4647] = 4413, - [4648] = 4394, - [4649] = 4417, - [4650] = 4418, - [4651] = 4409, - [4652] = 4387, - [4653] = 4417, - [4654] = 4409, - [4655] = 4398, - [4656] = 4397, - [4657] = 4424, - [4658] = 4374, - [4659] = 4372, - [4660] = 4394, - [4661] = 4413, - [4662] = 4411, - [4663] = 4378, - [4664] = 4377, - [4665] = 4378, - [4666] = 4373, - [4667] = 4377, - [4668] = 4398, - [4669] = 4388, - [4670] = 4378, - [4671] = 4373, - [4672] = 4380, - [4673] = 4381, - [4674] = 4384, - [4675] = 4380, - [4676] = 4382, - [4677] = 4372, - [4678] = 4383, - [4679] = 4385, - [4680] = 4388, - [4681] = 4380, - [4682] = 4374, - [4683] = 4387, - [4684] = 4397, - [4685] = 4424, - [4686] = 4385, - [4687] = 4383, - [4688] = 4386, - [4689] = 4382, - [4690] = 4390, - [4691] = 4390, - [4692] = 4386, - [4693] = 4385, - [4694] = 4385, - [4695] = 4386, - [4696] = 4381, - [4697] = 4390, - [4698] = 4424, - [4699] = 4384, - [4700] = 4383, - [4701] = 4387, - [4702] = 4375, - [4703] = 4403, - [4704] = 4388, - [4705] = 4411, - [4706] = 4413, - [4707] = 4394, - [4708] = 4417, - [4709] = 4418, - [4710] = 4374, - [4711] = 4382, - [4712] = 4397, - [4713] = 4409, - [4714] = 4398, - [4715] = 4397, - [4716] = 4424, - [4717] = 4381, - [4718] = 4374, - [4719] = 4372, - [4720] = 4377, - [4721] = 4378, - [4722] = 4373, - [4723] = 4398, - [4724] = 4409, - [4725] = 4380, - [4726] = 4381, - [4727] = 4382, - [4728] = 4383, - [4729] = 4384, - [4730] = 4385, - [4731] = 4380, - [4732] = 4382, - [4733] = 4373, - [4734] = 4378, - [4735] = 4386, - [4736] = 4390, - [4737] = 4387, - [4738] = 4383, - [4739] = 4377, - [4740] = 4375, - [4741] = 4741, - [4742] = 4418, - [4743] = 4372, - [4744] = 4375, - [4745] = 4374, - [4746] = 4424, - [4747] = 4417, - [4748] = 4384, - [4749] = 4403, - [4750] = 4388, - [4751] = 4397, - [4752] = 4394, - [4753] = 4413, - [4754] = 4398, - [4755] = 4380, - [4756] = 4411, - [4757] = 4411, - [4758] = 4388, - [4759] = 4409, - [4760] = 4385, - [4761] = 4386, - [4762] = 4377, - [4763] = 4390, - [4764] = 4418, - [4765] = 4413, - [4766] = 4394, - [4767] = 4403, - [4768] = 4417, - [4769] = 4418, - [4770] = 4378, - [4771] = 4375, - [4772] = 4373, - [4773] = 4380, - [4774] = 4409, - [4775] = 4398, - [4776] = 4397, - [4777] = 4424, - [4778] = 4374, - [4779] = 4372, - [4780] = 4377, - [4781] = 4378, - [4782] = 4373, - [4783] = 4413, - [4784] = 4380, - [4785] = 4381, - [4786] = 4382, - [4787] = 4383, - [4788] = 4398, - [4789] = 4384, - [4790] = 4384, - [4791] = 4386, - [4792] = 4390, - [4793] = 4397, - [4794] = 4381, - [4795] = 4387, - [4796] = 4375, - [4797] = 4403, - [4798] = 4388, - [4799] = 4411, - [4800] = 4413, - [4801] = 4394, - [4802] = 4417, - [4803] = 4418, - [4804] = 4394, - [4805] = 4413, - [4806] = 4417, - [4807] = 4418, - [4808] = 4381, - [4809] = 4390, - [4810] = 4411, - [4811] = 4388, - [4812] = 4409, - [4813] = 4386, - [4814] = 4385, - [4815] = 4398, - [4816] = 4403, - [4817] = 4375, - [4818] = 4384, - [4819] = 4387, - [4820] = 4387, - [4821] = 4397, - [4822] = 4424, - [4823] = 4383, - [4824] = 4382, - [4825] = 4373, - [4826] = 4382, - [4827] = 4381, - [4828] = 4380, - [4829] = 4374, - [4830] = 4375, - [4831] = 4424, - [4832] = 4403, - [4833] = 4390, - [4834] = 4386, - [4835] = 4385, - [4836] = 4372, - [4837] = 4377, - [4838] = 4378, - [4839] = 4378, - [4840] = 4373, - [4841] = 4383, - [4842] = 4380, - [4843] = 4381, - [4844] = 4382, - [4845] = 4383, - [4846] = 4384, - [4847] = 4385, - [4848] = 4386, - [4849] = 4390, - [4850] = 4377, - [4851] = 4387, - [4852] = 4375, - [4853] = 4403, - [4854] = 4388, - [4855] = 4411, - [4856] = 4413, - [4857] = 4394, - [4858] = 4417, - [4859] = 4384, - [4860] = 4418, - [4861] = 4384, - [4862] = 4383, - [4863] = 4409, - [4864] = 4398, - [4865] = 4372, - [4866] = 4397, - [4867] = 4424, - [4868] = 4374, - [4869] = 4372, - [4870] = 4377, - [4871] = 4378, - [4872] = 4373, - [4873] = 4382, - [4874] = 4381, - [4875] = 4380, - [4876] = 4374, - [4877] = 4385, - [4878] = 4380, - [4879] = 4381, - [4880] = 4424, - [4881] = 4382, - [4882] = 4397, - [4883] = 4383, - [4884] = 4398, - [4885] = 4409, - [4886] = 4384, - [4887] = 4385, - [4888] = 4373, - [4889] = 4386, - [4890] = 4390, - [4891] = 4387, - [4892] = 4375, - [4893] = 4403, - [4894] = 4387, - [4895] = 4380, - [4896] = 4378, - [4897] = 4418, - [4898] = 4417, - [4899] = 4394, - [4900] = 4377, - [4901] = 4372, - [4902] = 4373, - [4903] = 4374, - [4904] = 4424, - [4905] = 4397, - [4906] = 4398, - [4907] = 4388, - [4908] = 4411, - [4909] = 4411, - [4910] = 4413, - [4911] = 4394, - [4912] = 4417, - [4913] = 4378, - [4914] = 4418, - [4915] = 4388, - [4916] = 4409, - [4917] = 4409, - [4918] = 4398, - [4919] = 4397, - [4920] = 4424, - [4921] = 4374, - [4922] = 4372, - [4923] = 4377, - [4924] = 4378, - [4925] = 4373, - [4926] = 4926, - [4927] = 4380, - [4928] = 4381, - [4929] = 4382, - [4930] = 4403, - [4931] = 4383, - [4932] = 4384, - [4933] = 4385, - [4934] = 4386, - [4935] = 4390, - [4936] = 4375, - [4937] = 4403, - [4938] = 4388, - [4939] = 4387, - [4940] = 4375, - [4941] = 4403, - [4942] = 4388, - [4943] = 4411, - [4944] = 4378, - [4945] = 4417, - [4946] = 4394, - [4947] = 4413, - [4948] = 4413, - [4949] = 4394, - [4950] = 4417, - [4951] = 4411, - [4952] = 4418, - [4953] = 4411, - [4954] = 4413, - [4955] = 4375, - [4956] = 4388, - [4957] = 4409, - [4958] = 4378, - [4959] = 4403, - [4960] = 4398, - [4961] = 4741, - [4962] = 4397, - [4963] = 4424, - [4964] = 4374, - [4965] = 4377, - [4966] = 4387, - [4967] = 4375, - [4968] = 4380, - [4969] = 4390, - [4970] = 4372, - [4971] = 4377, - [4972] = 4387, - [4973] = 4394, - [4974] = 827, - [4975] = 4411, - [4976] = 4413, - [4977] = 4390, - [4978] = 4378, - [4979] = 4373, - [4980] = 4386, - [4981] = 4386, - [4982] = 4380, - [4983] = 4381, - [4984] = 4382, - [4985] = 4383, - [4986] = 4384, - [4987] = 4385, - [4988] = 4386, - [4989] = 4390, - [4990] = 4385, - [4991] = 4387, - [4992] = 4375, - [4993] = 4403, - [4994] = 4388, - [4995] = 4411, - [4996] = 4413, - [4997] = 4394, - [4998] = 4417, - [4999] = 4418, - [5000] = 4390, - [5001] = 4386, - [5002] = 4385, - [5003] = 4409, - [5004] = 4398, - [5005] = 4397, - [5006] = 4424, - [5007] = 4384, - [5008] = 4374, - [5009] = 4372, - [5010] = 4377, - [5011] = 4378, - [5012] = 4373, - [5013] = 4372, - [5014] = 4380, - [5015] = 4383, - [5016] = 4384, - [5017] = 4418, - [5018] = 4382, - [5019] = 4381, - [5020] = 4382, - [5021] = 4383, - [5022] = 4381, - [5023] = 4380, - [5024] = 4417, - [5025] = 4384, - [5026] = 4377, - [5027] = 4385, - [5028] = 4386, - [5029] = 4390, - [5030] = 4374, - [5031] = 4387, - [5032] = 4373, - [5033] = 4375, - [5034] = 4403, - [5035] = 4388, - [5036] = 4398, - [5037] = 4377, - [5038] = 4383, - [5039] = 4372, - [5040] = 4374, - [5041] = 4382, - [5042] = 4381, - [5043] = 4380, - [5044] = 4424, - [5045] = 4397, - [5046] = 4398, - [5047] = 4409, - [5048] = 4390, - [5049] = 4411, - [5050] = 4413, - [5051] = 4418, - [5052] = 4394, - [5053] = 4417, - [5054] = 4417, - [5055] = 4394, - [5056] = 4418, - [5057] = 4413, - [5058] = 4373, - [5059] = 4409, - [5060] = 4398, - [5061] = 4397, - [5062] = 4424, - [5063] = 4374, - [5064] = 4372, - [5065] = 4377, - [5066] = 4378, - [5067] = 4411, - [5068] = 4373, - [5069] = 4388, - [5070] = 4380, - [5071] = 4381, - [5072] = 4377, - [5073] = 4382, - [5074] = 4383, - [5075] = 4384, - [5076] = 4385, - [5077] = 4386, - [5078] = 4403, - [5079] = 4390, - [5080] = 4375, - [5081] = 4387, - [5082] = 4387, - [5083] = 4375, - [5084] = 4403, - [5085] = 4388, - [5086] = 4372, - [5087] = 4374, - [5088] = 4424, - [5089] = 4397, - [5090] = 4411, - [5091] = 4413, - [5092] = 4394, - [5093] = 4424, - [5094] = 4374, - [5095] = 4398, - [5096] = 4409, - [5097] = 4390, - [5098] = 4386, - [5099] = 4417, - [5100] = 4375, - [5101] = 4385, - [5102] = 4384, - [5103] = 4383, - [5104] = 4382, - [5105] = 4418, - [5106] = 4418, - [5107] = 4381, - [5108] = 4380, - [5109] = 4418, - [5110] = 4417, - [5111] = 4424, - [5112] = 4373, - [5113] = 4417, - [5114] = 4394, - [5115] = 4397, - [5116] = 4413, - [5117] = 4411, - [5118] = 4388, - [5119] = 4403, - [5120] = 4375, - [5121] = 4409, - [5122] = 4409, - [5123] = 4398, - [5124] = 4397, - [5125] = 4424, - [5126] = 4378, - [5127] = 4374, - [5128] = 4372, - [5129] = 4377, - [5130] = 4378, - [5131] = 4373, - [5132] = 4394, - [5133] = 4380, - [5134] = 4381, - [5135] = 4382, - [5136] = 4383, - [5137] = 4384, - [5138] = 4377, - [5139] = 4385, - [5140] = 4386, - [5141] = 4390, - [5142] = 4387, - [5143] = 4387, - [5144] = 4375, - [5145] = 4403, - [5146] = 4388, - [5147] = 4411, - [5148] = 4413, - [5149] = 4398, - [5150] = 4394, - [5151] = 4417, - [5152] = 4418, - [5153] = 4403, - [5154] = 4394, - [5155] = 4409, - [5156] = 4398, - [5157] = 4417, - [5158] = 4390, - [5159] = 4386, - [5160] = 4385, - [5161] = 4397, - [5162] = 4424, - [5163] = 4374, - [5164] = 4381, - [5165] = 4372, - [5166] = 4384, - [5167] = 5167, - [5168] = 4397, - [5169] = 4383, - [5170] = 4372, - [5171] = 4377, - [5172] = 4382, - [5173] = 4424, - [5174] = 4413, - [5175] = 4378, - [5176] = 4373, - [5177] = 4374, - [5178] = 4374, - [5179] = 4424, - [5180] = 4381, - [5181] = 4411, - [5182] = 4388, - [5183] = 4397, - [5184] = 4403, - [5185] = 4380, - [5186] = 4372, - [5187] = 4377, - [5188] = 4373, - [5189] = 4378, - [5190] = 4398, - [5191] = 4380, - [5192] = 4381, - [5193] = 4409, - [5194] = 4382, - [5195] = 4383, - [5196] = 4377, - [5197] = 4384, - [5198] = 4385, - [5199] = 4386, - [5200] = 4390, - [5201] = 4378, - [5202] = 4387, - [5203] = 4375, - [5204] = 4403, - [5205] = 4388, - [5206] = 4411, - [5207] = 4413, - [5208] = 4394, - [5209] = 4417, - [5210] = 4418, - [5211] = 4387, - [5212] = 4409, - [5213] = 4372, - [5214] = 4398, - [5215] = 4397, - [5216] = 4424, - [5217] = 4374, - [5218] = 4372, - [5219] = 4373, - [5220] = 4377, - [5221] = 4378, - [5222] = 4373, - [5223] = 4380, - [5224] = 4381, - [5225] = 4382, - [5226] = 4409, - [5227] = 4418, - [5228] = 4418, - [5229] = 4383, - [5230] = 4384, - [5231] = 4385, - [5232] = 4417, - [5233] = 4394, - [5234] = 4413, - [5235] = 5235, - [5236] = 4386, - [5237] = 4390, - [5238] = 4411, - [5239] = 4374, - [5240] = 4388, - [5241] = 4403, - [5242] = 4375, - [5243] = 4387, - [5244] = 4372, - [5245] = 4377, - [5246] = 4424, - [5247] = 4378, - [5248] = 4390, - [5249] = 4386, - [5250] = 4397, - [5251] = 4398, - [5252] = 4409, - [5253] = 4387, - [5254] = 4375, - [5255] = 4385, - [5256] = 4403, - [5257] = 4388, - [5258] = 4411, - [5259] = 4413, - [5260] = 4394, - [5261] = 4417, - [5262] = 4418, - [5263] = 4409, - [5264] = 4398, - [5265] = 4397, - [5266] = 4424, - [5267] = 4374, - [5268] = 4372, - [5269] = 4377, - [5270] = 4378, - [5271] = 4373, - [5272] = 4380, - [5273] = 4418, - [5274] = 4381, - [5275] = 4382, - [5276] = 4383, - [5277] = 4384, - [5278] = 4385, - [5279] = 4384, - [5280] = 4386, - [5281] = 4390, - [5282] = 4417, - [5283] = 4383, - [5284] = 4394, - [5285] = 4387, - [5286] = 4375, - [5287] = 4413, - [5288] = 4411, - [5289] = 4382, - [5290] = 5290, - [5291] = 5291, - [5292] = 5292, - [5293] = 5290, - [5294] = 5292, - [5295] = 5291, - [5296] = 5296, - [5297] = 5296, - [5298] = 5290, - [5299] = 5296, - [5300] = 5300, - [5301] = 5292, - [5302] = 5290, - [5303] = 5291, - [5304] = 5304, - [5305] = 5292, - [5306] = 5290, - [5307] = 5291, - [5308] = 5308, - [5309] = 5296, - [5310] = 5290, - [5311] = 5292, - [5312] = 5290, - [5313] = 5296, - [5314] = 5296, - [5315] = 5296, - [5316] = 5292, - [5317] = 5291, - [5318] = 5291, - [5319] = 5296, - [5320] = 5291, - [5321] = 5292, - [5322] = 5296, - [5323] = 5290, - [5324] = 5292, - [5325] = 5290, - [5326] = 5326, - [5327] = 5290, - [5328] = 5292, - [5329] = 5292, - [5330] = 5290, - [5331] = 5291, - [5332] = 5296, - [5333] = 5291, - [5334] = 5292, - [5335] = 5290, - [5336] = 5336, - [5337] = 5296, - [5338] = 5338, - [5339] = 5296, - [5340] = 5291, - [5341] = 5296, - [5342] = 5338, - [5343] = 5292, - [5344] = 5290, - [5345] = 5291, - [5346] = 5291, - [5347] = 5292, - [5348] = 5291, - [5349] = 5292, - [5350] = 5290, - [5351] = 5290, - [5352] = 5296, - [5353] = 5291, - [5354] = 5291, - [5355] = 5290, - [5356] = 5296, - [5357] = 5292, - [5358] = 5296, - [5359] = 5292, - [5360] = 5292, - [5361] = 5290, - [5362] = 5296, - [5363] = 5291, - [5364] = 5291, - [5365] = 5296, - [5366] = 5292, - [5367] = 5290, - [5368] = 5304, - [5369] = 5291, - [5370] = 5326, - [5371] = 5296, - [5372] = 5296, - [5373] = 5292, - [5374] = 5291, - [5375] = 5290, - [5376] = 5292, - [5377] = 5292, - [5378] = 5290, - [5379] = 5290, - [5380] = 5338, - [5381] = 5291, - [5382] = 5291, - [5383] = 5291, - [5384] = 5296, - [5385] = 5296, - [5386] = 5338, - [5387] = 5290, - [5388] = 5292, - [5389] = 5292, - [5390] = 5290, - [5391] = 5291, - [5392] = 5296, - [5393] = 5296, - [5394] = 5290, - [5395] = 5292, - [5396] = 5292, - [5397] = 5290, - [5398] = 5296, - [5399] = 5296, - [5400] = 5291, - [5401] = 5296, - [5402] = 5291, - [5403] = 5292, - [5404] = 5290, - [5405] = 5296, - [5406] = 5290, - [5407] = 5292, - [5408] = 5291, - [5409] = 5336, - [5410] = 5291, - [5411] = 5290, - [5412] = 5292, - [5413] = 5292, - [5414] = 5290, - [5415] = 5296, - [5416] = 5291, - [5417] = 5296, - [5418] = 5291, - [5419] = 5291, - [5420] = 5292, - [5421] = 5290, - [5422] = 5296, - [5423] = 5291, - [5424] = 5291, - [5425] = 5291, - [5426] = 5296, - [5427] = 5338, - [5428] = 5292, - [5429] = 5290, - [5430] = 5292, - [5431] = 5290, - [5432] = 5291, - [5433] = 5296, - [5434] = 5291, - [5435] = 5290, - [5436] = 5292, - [5437] = 5296, - [5438] = 5292, - [5439] = 5290, - [5440] = 5292, - [5441] = 5290, - [5442] = 5296, - [5443] = 5443, - [5444] = 5444, - [5445] = 5445, - [5446] = 5446, - [5447] = 5447, - [5448] = 5448, - [5449] = 5449, - [5450] = 5450, - [5451] = 5451, - [5452] = 5452, - [5453] = 5453, - [5454] = 5454, - [5455] = 5455, - [5456] = 5456, - [5457] = 5457, - [5458] = 5458, - [5459] = 5459, - [5460] = 5460, - [5461] = 5461, - [5462] = 5462, - [5463] = 5463, - [5464] = 5464, - [5465] = 5443, - [5466] = 5466, - [5467] = 5467, - [5468] = 5468, - [5469] = 5469, - [5470] = 5470, - [5471] = 5462, - [5472] = 5472, - [5473] = 5473, - [5474] = 5474, - [5475] = 5475, - [5476] = 5468, - [5477] = 5477, - [5478] = 5461, - [5479] = 5459, - [5480] = 5475, - [5481] = 5481, - [5482] = 5458, - [5483] = 5457, - [5484] = 5455, - [5485] = 5453, - [5486] = 5451, - [5487] = 5449, - [5488] = 5477, - [5489] = 5489, - [5490] = 5490, - [5491] = 5491, - [5492] = 5481, - [5493] = 5491, - [5494] = 5474, - [5495] = 5473, - [5496] = 5472, - [5497] = 5450, - [5498] = 5490, - [5499] = 5467, - [5500] = 5469, - [5501] = 5470, - [5502] = 5444, - [5503] = 5448, - [5504] = 5489, - [5505] = 5452, - [5506] = 5456, - [5507] = 5462, - [5508] = 5463, - [5509] = 5464, - [5510] = 5443, - [5511] = 5466, - [5512] = 5477, - [5513] = 5449, - [5514] = 5451, - [5515] = 5453, - [5516] = 5445, - [5517] = 5446, - [5518] = 5447, - [5519] = 5455, - [5520] = 5457, - [5521] = 5458, - [5522] = 5489, - [5523] = 5459, - [5524] = 5461, - [5525] = 5454, - [5526] = 5468, - [5527] = 5475, - [5528] = 5490, - [5529] = 5491, - [5530] = 5460, - [5531] = 5460, - [5532] = 5481, - [5533] = 5474, - [5534] = 5473, - [5535] = 5454, - [5536] = 5472, - [5537] = 5450, - [5538] = 5447, - [5539] = 5446, - [5540] = 5445, - [5541] = 5466, - [5542] = 5443, - [5543] = 5464, - [5544] = 5463, - [5545] = 5448, - [5546] = 5475, - [5547] = 5468, - [5548] = 5456, - [5549] = 5461, - [5550] = 5459, - [5551] = 5452, - [5552] = 5464, - [5553] = 5458, - [5554] = 5457, - [5555] = 5455, - [5556] = 5453, - [5557] = 5451, - [5558] = 5449, - [5559] = 5477, - [5560] = 5489, - [5561] = 5490, - [5562] = 5491, - [5563] = 5481, - [5564] = 5454, - [5565] = 5474, - [5566] = 5473, - [5567] = 5472, - [5568] = 5450, - [5569] = 5444, - [5570] = 5467, - [5571] = 5469, - [5572] = 5470, - [5573] = 5444, - [5574] = 5448, - [5575] = 5470, - [5576] = 5452, - [5577] = 5456, - [5578] = 5462, - [5579] = 5463, - [5580] = 5464, - [5581] = 5443, - [5582] = 5466, - [5583] = 5469, - [5584] = 5467, - [5585] = 5450, - [5586] = 5472, - [5587] = 5445, - [5588] = 5446, - [5589] = 5447, - [5590] = 5473, - [5591] = 5474, - [5592] = 5481, - [5593] = 5447, - [5594] = 5491, - [5595] = 5446, - [5596] = 5454, - [5597] = 5445, - [5598] = 5490, - [5599] = 5489, - [5600] = 5477, - [5601] = 5449, - [5602] = 5460, - [5603] = 5451, - [5604] = 5453, - [5605] = 5455, - [5606] = 5457, - [5607] = 5458, - [5608] = 5459, - [5609] = 5461, - [5610] = 5468, - [5611] = 5475, - [5612] = 5467, - [5613] = 5469, - [5614] = 5470, - [5615] = 5460, - [5616] = 5444, - [5617] = 5448, - [5618] = 5452, - [5619] = 5454, - [5620] = 5456, - [5621] = 5462, - [5622] = 5463, - [5623] = 5447, - [5624] = 5446, - [5625] = 5445, - [5626] = 5466, - [5627] = 5443, - [5628] = 5464, - [5629] = 5463, - [5630] = 5462, - [5631] = 5456, - [5632] = 5452, - [5633] = 5448, - [5634] = 5444, - [5635] = 5470, - [5636] = 5469, - [5637] = 5467, - [5638] = 5450, - [5639] = 5472, - [5640] = 5473, - [5641] = 5474, - [5642] = 5464, - [5643] = 5481, - [5644] = 5491, - [5645] = 5490, - [5646] = 5489, - [5647] = 5477, - [5648] = 5449, - [5649] = 5451, - [5650] = 5453, - [5651] = 5455, - [5652] = 5457, - [5653] = 5458, - [5654] = 5443, - [5655] = 5466, - [5656] = 5459, - [5657] = 5461, - [5658] = 5468, - [5659] = 5475, - [5660] = 5466, - [5661] = 5443, - [5662] = 5460, - [5663] = 5454, - [5664] = 5473, - [5665] = 5447, - [5666] = 5446, - [5667] = 5445, - [5668] = 5466, - [5669] = 5443, - [5670] = 5464, - [5671] = 5463, - [5672] = 5462, - [5673] = 5456, - [5674] = 5452, - [5675] = 5448, - [5676] = 5444, - [5677] = 5470, - [5678] = 5469, - [5679] = 5467, - [5680] = 5450, - [5681] = 5472, - [5682] = 5475, - [5683] = 5474, - [5684] = 5445, - [5685] = 5481, - [5686] = 5491, - [5687] = 5490, - [5688] = 5489, - [5689] = 5477, - [5690] = 5449, - [5691] = 5467, - [5692] = 5451, - [5693] = 5463, - [5694] = 5453, - [5695] = 5455, - [5696] = 5457, - [5697] = 5458, - [5698] = 5698, - [5699] = 5459, - [5700] = 5461, - [5701] = 5468, - [5702] = 5475, - [5703] = 5446, - [5704] = 5460, - [5705] = 5447, - [5706] = 5460, - [5707] = 5454, - [5708] = 5447, - [5709] = 5446, - [5710] = 5445, - [5711] = 5466, - [5712] = 5489, - [5713] = 5464, - [5714] = 5463, - [5715] = 5462, - [5716] = 5456, - [5717] = 5452, - [5718] = 5448, - [5719] = 5444, - [5720] = 5470, - [5721] = 5469, - [5722] = 5467, - [5723] = 5462, - [5724] = 5456, - [5725] = 5452, - [5726] = 5450, - [5727] = 5472, - [5728] = 5473, - [5729] = 5474, - [5730] = 5481, - [5731] = 5491, - [5732] = 5490, - [5733] = 5489, - [5734] = 5477, - [5735] = 5449, - [5736] = 5451, - [5737] = 5453, - [5738] = 5455, - [5739] = 5457, - [5740] = 5458, - [5741] = 5454, - [5742] = 5459, - [5743] = 5461, - [5744] = 5468, - [5745] = 5450, - [5746] = 5460, - [5747] = 5460, - [5748] = 5454, - [5749] = 5447, - [5750] = 5446, - [5751] = 5445, - [5752] = 5466, - [5753] = 5443, - [5754] = 5464, - [5755] = 5463, - [5756] = 5462, - [5757] = 5448, - [5758] = 5456, - [5759] = 5452, - [5760] = 5448, - [5761] = 5444, - [5762] = 5470, - [5763] = 5469, - [5764] = 5467, - [5765] = 5450, - [5766] = 5472, - [5767] = 5473, - [5768] = 5474, - [5769] = 5481, - [5770] = 5491, - [5771] = 5490, - [5772] = 5489, - [5773] = 5477, - [5774] = 5449, - [5775] = 5451, - [5776] = 5453, - [5777] = 5455, - [5778] = 5457, - [5779] = 5458, - [5780] = 5459, - [5781] = 5461, - [5782] = 5468, - [5783] = 5475, - [5784] = 5475, - [5785] = 5460, - [5786] = 5468, - [5787] = 5444, - [5788] = 5470, - [5789] = 5469, - [5790] = 5461, - [5791] = 5459, - [5792] = 5454, - [5793] = 5458, - [5794] = 5457, - [5795] = 5447, - [5796] = 5446, - [5797] = 5445, - [5798] = 5466, - [5799] = 5443, - [5800] = 5464, - [5801] = 5463, - [5802] = 5462, - [5803] = 5456, - [5804] = 5452, - [5805] = 5448, - [5806] = 5444, - [5807] = 5470, - [5808] = 5469, - [5809] = 5467, - [5810] = 5461, - [5811] = 5472, - [5812] = 5473, - [5813] = 5474, - [5814] = 5455, - [5815] = 5481, - [5816] = 5491, - [5817] = 5490, - [5818] = 5489, - [5819] = 5489, - [5820] = 5477, - [5821] = 5450, - [5822] = 5449, - [5823] = 5451, - [5824] = 5453, - [5825] = 5455, - [5826] = 5457, - [5827] = 5458, - [5828] = 5453, - [5829] = 5451, - [5830] = 5459, - [5831] = 5481, - [5832] = 5468, - [5833] = 5475, - [5834] = 5449, - [5835] = 5477, - [5836] = 5489, - [5837] = 5460, - [5838] = 5490, - [5839] = 5491, - [5840] = 5454, - [5841] = 5481, - [5842] = 5474, - [5843] = 5473, - [5844] = 5447, - [5845] = 5446, - [5846] = 5445, - [5847] = 5466, - [5848] = 5443, - [5849] = 5464, - [5850] = 5463, - [5851] = 5462, - [5852] = 5456, - [5853] = 5472, - [5854] = 5452, - [5855] = 5448, - [5856] = 5444, - [5857] = 5470, - [5858] = 5469, - [5859] = 5467, - [5860] = 5450, - [5861] = 5472, - [5862] = 5473, - [5863] = 5474, - [5864] = 5472, - [5865] = 5481, - [5866] = 5491, - [5867] = 5490, - [5868] = 5489, - [5869] = 5477, - [5870] = 5449, - [5871] = 5451, - [5872] = 5453, - [5873] = 5455, - [5874] = 5457, - [5875] = 5458, - [5876] = 5450, - [5877] = 5459, - [5878] = 5461, - [5879] = 5468, - [5880] = 5475, - [5881] = 5467, - [5882] = 5460, - [5883] = 5473, - [5884] = 5474, - [5885] = 5481, - [5886] = 5469, - [5887] = 5470, - [5888] = 5444, - [5889] = 5448, - [5890] = 5454, - [5891] = 5452, - [5892] = 5456, - [5893] = 5447, - [5894] = 5446, - [5895] = 5445, - [5896] = 5466, - [5897] = 5443, - [5898] = 5464, - [5899] = 5463, - [5900] = 5462, - [5901] = 5456, - [5902] = 5452, - [5903] = 5448, - [5904] = 5444, - [5905] = 5470, - [5906] = 5469, - [5907] = 5467, - [5908] = 5450, - [5909] = 5472, - [5910] = 5473, - [5911] = 5474, - [5912] = 5462, - [5913] = 5447, - [5914] = 5491, - [5915] = 5491, - [5916] = 5490, - [5917] = 5490, - [5918] = 5489, - [5919] = 5477, - [5920] = 5449, - [5921] = 5451, - [5922] = 5453, - [5923] = 5455, - [5924] = 5457, - [5925] = 5458, - [5926] = 5463, - [5927] = 5464, - [5928] = 5459, - [5929] = 5461, - [5930] = 5468, - [5931] = 5475, - [5932] = 5443, - [5933] = 5466, - [5934] = 5460, - [5935] = 5454, - [5936] = 5445, - [5937] = 5446, - [5938] = 5456, - [5939] = 5446, - [5940] = 5445, - [5941] = 5466, - [5942] = 5443, - [5943] = 5464, - [5944] = 5463, - [5945] = 5462, - [5946] = 5456, - [5947] = 5452, - [5948] = 5477, - [5949] = 5449, - [5950] = 5448, - [5951] = 5444, - [5952] = 5470, - [5953] = 5469, - [5954] = 5467, - [5955] = 5450, - [5956] = 5472, - [5957] = 5473, - [5958] = 5474, - [5959] = 5447, - [5960] = 5481, - [5961] = 5491, - [5962] = 5490, - [5963] = 5489, - [5964] = 5477, - [5965] = 5449, - [5966] = 5451, - [5967] = 5453, - [5968] = 5455, - [5969] = 5457, - [5970] = 5458, - [5971] = 5459, - [5972] = 5461, - [5973] = 5468, - [5974] = 5475, - [5975] = 5454, - [5976] = 5460, - [5977] = 5460, - [5978] = 5454, - [5979] = 5451, - [5980] = 5453, - [5981] = 5455, - [5982] = 5447, - [5983] = 5446, - [5984] = 5445, - [5985] = 5466, - [5986] = 5443, - [5987] = 5464, - [5988] = 5463, - [5989] = 5462, - [5990] = 5477, - [5991] = 5452, - [5992] = 5448, - [5993] = 5444, - [5994] = 5470, - [5995] = 5469, - [5996] = 5467, - [5997] = 5450, - [5998] = 5472, - [5999] = 5473, - [6000] = 5474, - [6001] = 5481, - [6002] = 5491, - [6003] = 5490, - [6004] = 5489, - [6005] = 5477, - [6006] = 5449, - [6007] = 5451, - [6008] = 5453, - [6009] = 5455, - [6010] = 5457, - [6011] = 5457, - [6012] = 5458, - [6013] = 5458, - [6014] = 5459, - [6015] = 5461, - [6016] = 5468, - [6017] = 5475, - [6018] = 5460, - [6019] = 5475, - [6020] = 5468, - [6021] = 5454, - [6022] = 5461, - [6023] = 5459, - [6024] = 5447, - [6025] = 5446, - [6026] = 5445, - [6027] = 5466, - [6028] = 5443, - [6029] = 5464, - [6030] = 5463, - [6031] = 5462, - [6032] = 5456, - [6033] = 5452, - [6034] = 5448, - [6035] = 5444, - [6036] = 5470, - [6037] = 5469, - [6038] = 5467, - [6039] = 5450, - [6040] = 5472, - [6041] = 5473, - [6042] = 5474, - [6043] = 5458, - [6044] = 5481, - [6045] = 5459, - [6046] = 5491, - [6047] = 5490, - [6048] = 5489, - [6049] = 5477, - [6050] = 5449, - [6051] = 5451, - [6052] = 5453, - [6053] = 5455, - [6054] = 5457, - [6055] = 5458, - [6056] = 5457, - [6057] = 5455, - [6058] = 5459, - [6059] = 5461, - [6060] = 5468, - [6061] = 5475, - [6062] = 5453, - [6063] = 5451, - [6064] = 5449, - [6065] = 5460, - [6066] = 5473, - [6067] = 5489, - [6068] = 5490, - [6069] = 5491, - [6070] = 5454, - [6071] = 5481, - [6072] = 5474, - [6073] = 5443, - [6074] = 5447, - [6075] = 5446, - [6076] = 5445, - [6077] = 5461, - [6078] = 5466, - [6079] = 5443, - [6080] = 5464, - [6081] = 5463, - [6082] = 5462, - [6083] = 5456, - [6084] = 5452, - [6085] = 5448, - [6086] = 5444, - [6087] = 5470, - [6088] = 5469, - [6089] = 5467, - [6090] = 5450, - [6091] = 5472, - [6092] = 5473, - [6093] = 5474, - [6094] = 5472, - [6095] = 5481, - [6096] = 5491, - [6097] = 5490, - [6098] = 5489, - [6099] = 5477, - [6100] = 5449, - [6101] = 5451, - [6102] = 5453, - [6103] = 5455, - [6104] = 5457, - [6105] = 5458, - [6106] = 5459, - [6107] = 5461, - [6108] = 5468, - [6109] = 5475, - [6110] = 5450, - [6111] = 5467, - [6112] = 5460, - [6113] = 5469, - [6114] = 5470, - [6115] = 5444, - [6116] = 5448, - [6117] = 5454, - [6118] = 5452, - [6119] = 5456, - [6120] = 5447, - [6121] = 5446, - [6122] = 5445, - [6123] = 5466, - [6124] = 5443, - [6125] = 5464, - [6126] = 5463, - [6127] = 5462, - [6128] = 5456, - [6129] = 5452, - [6130] = 5448, - [6131] = 5444, - [6132] = 5470, - [6133] = 5469, - [6134] = 5467, - [6135] = 5450, - [6136] = 5472, - [6137] = 5473, - [6138] = 5474, - [6139] = 5468, - [6140] = 5462, - [6141] = 5481, - [6142] = 5491, - [6143] = 5490, - [6144] = 5489, - [6145] = 5477, - [6146] = 5449, - [6147] = 5451, - [6148] = 5453, - [6149] = 5455, - [6150] = 5457, - [6151] = 5458, - [6152] = 5463, - [6153] = 5464, - [6154] = 5459, - [6155] = 5461, - [6156] = 5468, - [6157] = 5475, - [6158] = 5455, - [6159] = 5466, - [6160] = 5460, - [6161] = 5454, - [6162] = 5445, - [6163] = 5446, - [6164] = 5447, - [6165] = 5447, - [6166] = 5446, - [6167] = 5445, - [6168] = 5466, - [6169] = 5443, - [6170] = 5464, - [6171] = 5475, - [6172] = 5447, - [6173] = 5463, - [6174] = 5462, - [6175] = 5456, - [6176] = 5452, - [6177] = 5448, - [6178] = 5444, - [6179] = 5470, - [6180] = 5469, - [6181] = 5467, - [6182] = 5450, - [6183] = 5472, - [6184] = 5473, - [6185] = 5474, - [6186] = 5481, - [6187] = 5491, - [6188] = 5490, - [6189] = 5489, - [6190] = 5477, - [6191] = 5449, - [6192] = 5451, - [6193] = 5453, - [6194] = 5461, - [6195] = 5457, - [6196] = 5458, - [6197] = 5459, - [6198] = 5461, - [6199] = 5468, - [6200] = 5475, - [6201] = 5454, - [6202] = 5460, - [6203] = 5460, - [6204] = 5454, - [6205] = 5447, - [6206] = 5446, - [6207] = 5445, - [6208] = 5466, - [6209] = 5443, - [6210] = 5464, - [6211] = 5463, - [6212] = 5462, - [6213] = 5456, - [6214] = 5452, - [6215] = 5448, - [6216] = 5444, - [6217] = 5470, - [6218] = 5469, - [6219] = 5467, - [6220] = 5450, - [6221] = 5472, - [6222] = 5473, - [6223] = 5474, - [6224] = 5481, - [6225] = 5491, - [6226] = 5490, - [6227] = 5489, - [6228] = 5477, - [6229] = 5449, - [6230] = 5451, - [6231] = 5453, - [6232] = 5455, - [6233] = 5457, - [6234] = 5458, - [6235] = 5459, - [6236] = 5491, - [6237] = 5468, - [6238] = 5475, - [6239] = 5460, - [6240] = 5475, - [6241] = 5468, - [6242] = 5454, - [6243] = 5461, - [6244] = 5459, - [6245] = 5447, - [6246] = 5446, - [6247] = 5445, - [6248] = 5466, - [6249] = 5443, - [6250] = 5464, - [6251] = 5463, - [6252] = 5462, - [6253] = 5456, - [6254] = 5452, - [6255] = 5448, - [6256] = 5444, - [6257] = 5470, - [6258] = 5469, - [6259] = 5467, - [6260] = 5450, - [6261] = 5472, - [6262] = 5473, - [6263] = 5474, - [6264] = 5458, - [6265] = 5481, - [6266] = 5491, - [6267] = 5490, - [6268] = 6268, - [6269] = 5489, - [6270] = 5477, - [6271] = 5449, - [6272] = 5451, - [6273] = 5453, - [6274] = 5455, - [6275] = 5457, - [6276] = 5458, - [6277] = 5457, - [6278] = 5455, - [6279] = 5459, - [6280] = 5461, - [6281] = 5468, - [6282] = 5475, - [6283] = 5453, - [6284] = 5451, - [6285] = 5460, - [6286] = 5449, - [6287] = 5477, - [6288] = 5489, - [6289] = 5490, - [6290] = 5454, - [6291] = 5491, - [6292] = 5481, - [6293] = 5474, - [6294] = 5447, - [6295] = 5446, - [6296] = 5445, - [6297] = 5466, - [6298] = 5443, - [6299] = 5464, - [6300] = 5463, - [6301] = 5462, - [6302] = 5456, - [6303] = 5452, - [6304] = 5448, - [6305] = 5444, - [6306] = 5470, - [6307] = 5469, - [6308] = 5467, - [6309] = 5450, - [6310] = 5472, - [6311] = 5473, - [6312] = 5474, - [6313] = 5473, - [6314] = 5481, - [6315] = 5455, - [6316] = 5490, - [6317] = 5489, - [6318] = 5477, - [6319] = 5449, - [6320] = 5451, - [6321] = 5453, - [6322] = 5452, - [6323] = 5457, - [6324] = 5458, - [6325] = 5472, - [6326] = 5459, - [6327] = 5461, - [6328] = 5468, - [6329] = 5475, - [6330] = 5450, - [6331] = 5467, - [6332] = 5460, - [6333] = 5469, - [6334] = 5470, - [6335] = 5444, - [6336] = 5448, - [6337] = 5454, - [6338] = 5452, - [6339] = 5456, - [6340] = 5447, - [6341] = 5446, - [6342] = 5445, - [6343] = 5466, - [6344] = 5443, - [6345] = 5464, - [6346] = 5463, - [6347] = 5462, - [6348] = 5456, - [6349] = 5452, - [6350] = 5448, - [6351] = 5444, - [6352] = 5470, - [6353] = 5469, - [6354] = 5467, - [6355] = 5450, - [6356] = 5472, - [6357] = 5473, - [6358] = 5474, - [6359] = 5462, - [6360] = 5481, - [6361] = 5491, - [6362] = 5490, - [6363] = 5489, - [6364] = 5477, - [6365] = 5449, - [6366] = 5451, - [6367] = 5453, - [6368] = 5455, - [6369] = 5457, - [6370] = 5458, - [6371] = 5463, - [6372] = 5464, - [6373] = 5459, - [6374] = 5461, - [6375] = 5468, - [6376] = 5475, - [6377] = 5443, - [6378] = 5466, - [6379] = 5460, - [6380] = 5454, - [6381] = 5445, - [6382] = 5446, - [6383] = 5447, - [6384] = 5447, - [6385] = 5446, - [6386] = 5445, - [6387] = 5466, - [6388] = 5443, - [6389] = 5464, - [6390] = 5463, - [6391] = 5462, - [6392] = 5456, - [6393] = 5457, - [6394] = 5448, - [6395] = 5444, - [6396] = 5470, - [6397] = 5469, - [6398] = 5467, - [6399] = 5450, - [6400] = 5472, - [6401] = 5473, - [6402] = 5474, - [6403] = 5481, - [6404] = 5491, - [6405] = 5490, - [6406] = 5489, - [6407] = 5477, - [6408] = 5449, - [6409] = 5451, - [6410] = 5453, - [6411] = 5455, - [6412] = 5457, - [6413] = 5458, - [6414] = 5459, - [6415] = 5461, - [6416] = 5468, - [6417] = 5475, - [6418] = 5454, - [6419] = 5460, - [6420] = 5460, - [6421] = 5454, - [6422] = 5447, - [6423] = 5446, - [6424] = 5445, - [6425] = 5466, - [6426] = 5443, - [6427] = 5464, - [6428] = 5463, - [6429] = 5462, - [6430] = 5456, - [6431] = 5452, - [6432] = 5448, - [6433] = 5444, - [6434] = 5470, - [6435] = 5469, - [6436] = 5467, - [6437] = 5450, - [6438] = 5472, - [6439] = 5473, - [6440] = 5474, - [6441] = 5481, - [6442] = 5491, - [6443] = 5490, - [6444] = 5489, - [6445] = 5477, - [6446] = 5449, - [6447] = 5451, - [6448] = 5453, - [6449] = 5455, - [6450] = 5457, - [6451] = 5458, - [6452] = 5459, - [6453] = 5461, - [6454] = 5468, - [6455] = 5475, - [6456] = 5475, - [6457] = 5460, - [6458] = 5468, - [6459] = 5461, - [6460] = 5459, - [6461] = 5454, - [6462] = 5458, - [6463] = 5467, - [6464] = 5447, - [6465] = 5446, - [6466] = 5445, - [6467] = 5466, - [6468] = 5443, - [6469] = 5464, - [6470] = 5463, - [6471] = 5462, - [6472] = 5456, - [6473] = 5452, - [6474] = 5448, - [6475] = 5444, - [6476] = 5470, - [6477] = 5469, - [6478] = 5467, - [6479] = 5450, - [6480] = 5472, - [6481] = 5473, - [6482] = 5474, - [6483] = 5481, - [6484] = 5491, - [6485] = 5490, - [6486] = 5489, - [6487] = 5477, - [6488] = 5449, - [6489] = 5451, - [6490] = 5453, - [6491] = 5455, - [6492] = 5457, - [6493] = 5458, - [6494] = 5455, - [6495] = 5453, - [6496] = 5459, - [6497] = 5461, - [6498] = 5468, - [6499] = 5475, - [6500] = 5451, - [6501] = 5449, - [6502] = 5477, - [6503] = 5460, - [6504] = 5489, - [6505] = 5490, - [6506] = 5491, - [6507] = 5454, - [6508] = 5481, - [6509] = 5474, - [6510] = 5447, - [6511] = 5446, - [6512] = 5445, - [6513] = 5466, - [6514] = 5443, - [6515] = 5464, - [6516] = 5463, - [6517] = 5462, - [6518] = 5456, - [6519] = 5452, - [6520] = 5448, - [6521] = 5444, - [6522] = 5470, - [6523] = 5469, - [6524] = 5467, - [6525] = 5450, - [6526] = 5472, - [6527] = 5473, - [6528] = 5474, - [6529] = 5473, - [6530] = 5481, - [6531] = 5491, - [6532] = 5490, - [6533] = 5489, - [6534] = 5477, - [6535] = 5449, - [6536] = 5451, - [6537] = 5453, - [6538] = 5455, - [6539] = 5457, - [6540] = 5458, - [6541] = 5472, - [6542] = 5450, - [6543] = 5459, - [6544] = 5461, - [6545] = 5468, - [6546] = 5475, - [6547] = 5491, - [6548] = 5469, - [6549] = 5460, - [6550] = 5470, - [6551] = 5444, - [6552] = 5448, - [6553] = 5454, - [6554] = 5452, - [6555] = 5456, - [6556] = 5462, - [6557] = 5447, - [6558] = 5446, - [6559] = 5445, - [6560] = 5466, - [6561] = 5443, - [6562] = 5464, - [6563] = 5463, - [6564] = 5462, - [6565] = 5456, - [6566] = 5452, - [6567] = 5448, - [6568] = 5444, - [6569] = 5470, - [6570] = 5469, - [6571] = 5467, - [6572] = 5450, - [6573] = 5472, - [6574] = 5473, - [6575] = 5474, - [6576] = 5463, - [6577] = 5481, - [6578] = 5468, - [6579] = 5490, - [6580] = 5489, - [6581] = 5477, - [6582] = 5449, - [6583] = 5451, - [6584] = 5453, - [6585] = 5455, - [6586] = 5457, - [6587] = 5458, - [6588] = 5464, - [6589] = 5443, - [6590] = 5459, - [6591] = 5461, - [6592] = 5468, - [6593] = 5475, - [6594] = 5466, - [6595] = 5460, - [6596] = 5445, - [6597] = 5446, - [6598] = 5454, - [6599] = 5447, - [6600] = 5446, - [6601] = 5445, - [6602] = 5466, - [6603] = 5443, - [6604] = 5464, - [6605] = 5463, - [6606] = 5462, - [6607] = 5456, - [6608] = 5452, - [6609] = 5448, - [6610] = 5444, - [6611] = 5470, - [6612] = 5469, - [6613] = 5467, - [6614] = 5450, - [6615] = 5472, - [6616] = 5473, - [6617] = 5474, - [6618] = 5454, - [6619] = 5481, - [6620] = 5491, - [6621] = 6621, - [6622] = 5490, - [6623] = 5489, - [6624] = 5477, - [6625] = 5449, - [6626] = 5451, - [6627] = 5453, - [6628] = 5455, - [6629] = 5457, - [6630] = 5458, - [6631] = 5460, - [6632] = 5459, - [6633] = 5461, - [6634] = 5490, - [6635] = 5475, - [6636] = 5460, - [6637] = 5454, - [6638] = 5447, - [6639] = 5446, - [6640] = 5445, - [6641] = 5466, - [6642] = 5443, - [6643] = 5464, - [6644] = 5463, - [6645] = 5462, - [6646] = 5456, - [6647] = 5452, - [6648] = 5448, - [6649] = 5444, - [6650] = 5470, - [6651] = 5469, - [6652] = 5467, - [6653] = 5450, - [6654] = 5472, - [6655] = 5473, - [6656] = 5474, - [6657] = 5481, - [6658] = 5491, - [6659] = 5490, - [6660] = 5489, - [6661] = 5477, - [6662] = 5449, - [6663] = 5451, - [6664] = 5453, - [6665] = 5455, - [6666] = 5457, - [6667] = 5458, - [6668] = 5475, - [6669] = 5459, - [6670] = 5461, - [6671] = 5468, - [6672] = 5475, - [6673] = 5468, - [6674] = 5461, - [6675] = 5460, - [6676] = 5459, - [6677] = 5458, - [6678] = 5457, - [6679] = 5455, - [6680] = 5454, - [6681] = 5453, - [6682] = 5451, - [6683] = 5449, - [6684] = 5447, - [6685] = 5446, - [6686] = 5445, - [6687] = 5466, - [6688] = 5443, - [6689] = 5464, - [6690] = 5463, - [6691] = 5462, - [6692] = 5456, - [6693] = 5452, - [6694] = 5448, - [6695] = 5444, - [6696] = 5470, - [6697] = 5469, - [6698] = 5467, - [6699] = 5450, - [6700] = 5472, - [6701] = 5473, - [6702] = 5474, - [6703] = 5477, - [6704] = 5481, - [6705] = 5491, - [6706] = 6621, - [6707] = 6621, - [6708] = 6621, - [6709] = 6621, - [6710] = 6621, - [6711] = 6621, - [6712] = 6621, - [6713] = 6621, - [6714] = 6621, - [6715] = 6621, - [6716] = 6621, - [6717] = 6621, - [6718] = 6621, - [6719] = 6621, - [6720] = 6621, - [6721] = 6621, - [6722] = 6621, - [6723] = 6621, - [6724] = 6621, - [6725] = 6621, - [6726] = 6621, - [6727] = 6621, - [6728] = 6621, - [6729] = 6621, - [6730] = 6621, - [6731] = 6621, - [6732] = 6621, - [6733] = 6621, - [6734] = 6621, - [6735] = 6621, - [6736] = 6621, - [6737] = 6621, - [6738] = 6621, - [6739] = 6621, + [3626] = 3607, + [3627] = 3607, + [3628] = 3607, + [3629] = 3607, + [3630] = 3607, + [3631] = 3607, + [3632] = 3607, + [3633] = 3607, + [3634] = 3607, + [3635] = 3607, + [3636] = 3607, + [3637] = 3607, + [3638] = 3607, + [3639] = 3607, + [3640] = 3607, + [3641] = 3607, + [3642] = 3642, + [3643] = 3643, + [3644] = 3644, + [3645] = 3645, + [3646] = 3646, + [3647] = 3647, + [3648] = 3648, + [3649] = 3647, + [3650] = 3650, + [3651] = 3643, + [3652] = 3652, + [3653] = 3653, + [3654] = 3646, + [3655] = 3645, + [3656] = 3644, + [3657] = 3644, + [3658] = 3645, + [3659] = 3647, + [3660] = 3646, + [3661] = 3646, + [3662] = 3647, + [3663] = 3645, + [3664] = 3642, + [3665] = 3644, + [3666] = 3646, + [3667] = 3648, + [3668] = 3650, + [3669] = 3643, + [3670] = 3652, + [3671] = 3653, + [3672] = 3653, + [3673] = 3650, + [3674] = 3652, + [3675] = 3675, + [3676] = 3643, + [3677] = 3644, + [3678] = 3645, + [3679] = 3646, + [3680] = 3647, + [3681] = 3643, + [3682] = 3652, + [3683] = 3650, + [3684] = 3653, + [3685] = 3653, + [3686] = 3675, + [3687] = 3675, + [3688] = 3652, + [3689] = 3643, + [3690] = 3650, + [3691] = 3644, + [3692] = 3645, + [3693] = 3642, + [3694] = 3646, + [3695] = 3648, + [3696] = 3647, + [3697] = 3642, + [3698] = 3653, + [3699] = 3652, + [3700] = 3643, + [3701] = 3648, + [3702] = 3648, + [3703] = 3648, + [3704] = 3642, + [3705] = 3650, + [3706] = 3650, + [3707] = 3644, + [3708] = 3645, + [3709] = 3646, + [3710] = 3647, + [3711] = 3643, + [3712] = 3652, + [3713] = 3648, + [3714] = 3650, + [3715] = 3643, + [3716] = 3650, + [3717] = 3643, + [3718] = 3652, + [3719] = 3653, + [3720] = 3652, + [3721] = 3647, + [3722] = 3646, + [3723] = 3645, + [3724] = 3644, + [3725] = 3653, + [3726] = 3642, + [3727] = 3642, + [3728] = 3648, + [3729] = 3647, + [3730] = 3644, + [3731] = 3645, + [3732] = 3644, + [3733] = 3653, + [3734] = 3653, + [3735] = 3644, + [3736] = 3642, + [3737] = 3644, + [3738] = 3645, + [3739] = 3645, + [3740] = 3646, + [3741] = 3647, + [3742] = 3646, + [3743] = 3644, + [3744] = 3647, + [3745] = 3646, + [3746] = 3647, + [3747] = 3647, + [3748] = 3647, + [3749] = 3648, + [3750] = 3648, + [3751] = 3653, + [3752] = 3642, + [3753] = 3653, + [3754] = 3653, + [3755] = 3650, + [3756] = 3642, + [3757] = 3652, + [3758] = 3643, + [3759] = 3650, + [3760] = 3652, + [3761] = 3642, + [3762] = 3643, + [3763] = 3648, + [3764] = 3650, + [3765] = 3652, + [3766] = 3647, + [3767] = 3646, + [3768] = 3645, + [3769] = 3644, + [3770] = 3648, + [3771] = 3643, + [3772] = 3646, + [3773] = 3652, + [3774] = 3653, + [3775] = 3653, + [3776] = 3652, + [3777] = 3643, + [3778] = 3653, + [3779] = 3643, + [3780] = 3652, + [3781] = 3643, + [3782] = 3650, + [3783] = 3642, + [3784] = 3650, + [3785] = 3648, + [3786] = 3652, + [3787] = 3653, + [3788] = 3650, + [3789] = 3648, + [3790] = 3645, + [3791] = 3647, + [3792] = 3650, + [3793] = 3644, + [3794] = 3646, + [3795] = 3645, + [3796] = 3644, + [3797] = 3645, + [3798] = 3646, + [3799] = 3646, + [3800] = 3647, + [3801] = 3650, + [3802] = 3648, + [3803] = 3642, + [3804] = 3650, + [3805] = 3653, + [3806] = 3648, + [3807] = 3643, + [3808] = 3642, + [3809] = 3652, + [3810] = 3643, + [3811] = 3650, + [3812] = 3642, + [3813] = 3648, + [3814] = 3652, + [3815] = 3646, + [3816] = 3653, + [3817] = 3648, + [3818] = 3644, + [3819] = 3644, + [3820] = 3645, + [3821] = 3648, + [3822] = 3642, + [3823] = 3647, + [3824] = 3646, + [3825] = 3645, + [3826] = 3644, + [3827] = 3646, + [3828] = 3647, + [3829] = 3642, + [3830] = 3644, + [3831] = 3650, + [3832] = 3645, + [3833] = 3646, + [3834] = 3647, + [3835] = 3645, + [3836] = 3642, + [3837] = 3648, + [3838] = 3644, + [3839] = 3647, + [3840] = 3653, + [3841] = 3652, + [3842] = 3648, + [3843] = 3643, + [3844] = 3650, + [3845] = 3648, + [3846] = 3642, + [3847] = 3646, + [3848] = 3647, + [3849] = 3646, + [3850] = 3645, + [3851] = 3644, + [3852] = 3645, + [3853] = 3648, + [3854] = 3650, + [3855] = 3643, + [3856] = 3650, + [3857] = 3643, + [3858] = 3652, + [3859] = 3653, + [3860] = 3644, + [3861] = 3648, + [3862] = 3643, + [3863] = 3652, + [3864] = 3642, + [3865] = 3652, + [3866] = 3653, + [3867] = 3652, + [3868] = 3642, + [3869] = 3653, + [3870] = 3642, + [3871] = 3648, + [3872] = 3650, + [3873] = 3643, + [3874] = 3652, + [3875] = 3653, + [3876] = 3653, + [3877] = 3652, + [3878] = 3653, + [3879] = 3652, + [3880] = 3643, + [3881] = 3643, + [3882] = 3650, + [3883] = 3675, + [3884] = 3650, + [3885] = 3642, + [3886] = 3650, + [3887] = 3644, + [3888] = 3645, + [3889] = 3646, + [3890] = 3647, + [3891] = 3648, + [3892] = 3647, + [3893] = 3642, + [3894] = 3645, + [3895] = 3646, + [3896] = 3647, + [3897] = 3646, + [3898] = 3645, + [3899] = 3644, + [3900] = 3642, + [3901] = 3645, + [3902] = 3642, + [3903] = 3647, + [3904] = 3648, + [3905] = 3642, + [3906] = 3648, + [3907] = 3650, + [3908] = 3643, + [3909] = 3652, + [3910] = 3653, + [3911] = 3642, + [3912] = 3653, + [3913] = 3647, + [3914] = 3648, + [3915] = 3653, + [3916] = 3652, + [3917] = 3643, + [3918] = 3650, + [3919] = 3648, + [3920] = 3642, + [3921] = 3652, + [3922] = 3647, + [3923] = 3646, + [3924] = 3645, + [3925] = 3644, + [3926] = 3643, + [3927] = 3650, + [3928] = 3650, + [3929] = 3643, + [3930] = 3652, + [3931] = 3653, + [3932] = 3642, + [3933] = 3643, + [3934] = 3652, + [3935] = 3675, + [3936] = 3653, + [3937] = 3644, + [3938] = 3647, + [3939] = 3646, + [3940] = 3644, + [3941] = 3645, + [3942] = 3646, + [3943] = 3647, + [3944] = 3645, + [3945] = 3644, + [3946] = 3646, + [3947] = 3653, + [3948] = 3652, + [3949] = 3643, + [3950] = 3645, + [3951] = 3646, + [3952] = 3647, + [3953] = 3650, + [3954] = 3642, + [3955] = 3642, + [3956] = 3648, + [3957] = 3645, + [3958] = 3644, + [3959] = 3644, + [3960] = 3645, + [3961] = 3646, + [3962] = 3647, + [3963] = 3647, + [3964] = 3646, + [3965] = 3645, + [3966] = 3644, + [3967] = 3648, + [3968] = 3650, + [3969] = 3647, + [3970] = 3650, + [3971] = 3643, + [3972] = 3644, + [3973] = 3645, + [3974] = 3652, + [3975] = 3653, + [3976] = 3652, + [3977] = 3643, + [3978] = 3650, + [3979] = 3644, + [3980] = 3645, + [3981] = 3646, + [3982] = 3642, + [3983] = 3653, + [3984] = 3648, + [3985] = 3647, + [3986] = 3648, + [3987] = 3646, + [3988] = 3645, + [3989] = 3644, + [3990] = 3653, + [3991] = 3643, + [3992] = 3648, + [3993] = 3652, + [3994] = 3643, + [3995] = 3642, + [3996] = 3642, + [3997] = 3997, + [3998] = 3997, + [3999] = 3999, + [4000] = 3997, + [4001] = 3999, + [4002] = 3999, + [4003] = 3997, + [4004] = 4004, + [4005] = 4004, + [4006] = 4004, + [4007] = 3999, + [4008] = 4004, + [4009] = 4004, + [4010] = 3997, + [4011] = 3997, + [4012] = 3997, + [4013] = 4004, + [4014] = 3997, + [4015] = 3997, + [4016] = 3999, + [4017] = 3999, + [4018] = 3999, + [4019] = 3997, + [4020] = 3999, + [4021] = 4004, + [4022] = 3997, + [4023] = 4004, + [4024] = 3997, + [4025] = 3997, + [4026] = 3999, + [4027] = 4004, + [4028] = 3997, + [4029] = 4004, + [4030] = 3999, + [4031] = 4004, + [4032] = 3999, + [4033] = 3999, + [4034] = 4004, + [4035] = 3997, + [4036] = 4004, + [4037] = 4004, + [4038] = 3999, + [4039] = 3997, + [4040] = 3997, + [4041] = 3999, + [4042] = 3997, + [4043] = 3997, + [4044] = 4004, + [4045] = 3999, + [4046] = 4004, + [4047] = 3999, + [4048] = 3999, + [4049] = 3997, + [4050] = 3997, + [4051] = 4004, + [4052] = 4004, + [4053] = 3997, + [4054] = 3999, + [4055] = 3999, + [4056] = 4004, + [4057] = 3999, + [4058] = 3997, + [4059] = 3997, + [4060] = 4004, + [4061] = 4004, + [4062] = 3997, + [4063] = 4004, + [4064] = 3999, + [4065] = 3999, + [4066] = 4004, + [4067] = 4004, + [4068] = 3997, + [4069] = 3999, + [4070] = 3999, + [4071] = 4004, + [4072] = 3997, + [4073] = 3999, + [4074] = 3999, + [4075] = 3997, + [4076] = 3999, + [4077] = 4004, + [4078] = 3999, + [4079] = 4004, + [4080] = 3997, + [4081] = 4004, + [4082] = 3999, + [4083] = 4004, + [4084] = 3999, + [4085] = 4004, + [4086] = 3999, + [4087] = 4004, + [4088] = 3999, + [4089] = 3999, + [4090] = 4004, + [4091] = 3997, + [4092] = 3997, + [4093] = 3997, + [4094] = 3997, + [4095] = 3999, + [4096] = 4004, + [4097] = 4004, + [4098] = 3997, + [4099] = 3999, + [4100] = 3997, + [4101] = 4004, + [4102] = 683, + [4103] = 672, + [4104] = 4104, + [4105] = 4105, + [4106] = 4104, + [4107] = 4105, + [4108] = 4108, + [4109] = 4104, + [4110] = 4105, + [4111] = 4108, + [4112] = 4105, + [4113] = 683, + [4114] = 4105, + [4115] = 4108, + [4116] = 4104, + [4117] = 4104, + [4118] = 4105, + [4119] = 4108, + [4120] = 4105, + [4121] = 4108, + [4122] = 4104, + [4123] = 683, + [4124] = 683, + [4125] = 4125, + [4126] = 4105, + [4127] = 683, + [4128] = 4105, + [4129] = 4108, + [4130] = 4108, + [4131] = 4104, + [4132] = 4104, + [4133] = 4104, + [4134] = 4108, + [4135] = 4104, + [4136] = 4108, + [4137] = 4125, + [4138] = 4104, + [4139] = 4105, + [4140] = 4105, + [4141] = 4104, + [4142] = 4104, + [4143] = 4108, + [4144] = 4125, + [4145] = 4104, + [4146] = 4108, + [4147] = 4105, + [4148] = 4104, + [4149] = 4104, + [4150] = 683, + [4151] = 4108, + [4152] = 4104, + [4153] = 4125, + [4154] = 4108, + [4155] = 4108, + [4156] = 4105, + [4157] = 4105, + [4158] = 4125, + [4159] = 4105, + [4160] = 4105, + [4161] = 4108, + [4162] = 4108, + [4163] = 4105, + [4164] = 4105, + [4165] = 4104, + [4166] = 4104, + [4167] = 4108, + [4168] = 4108, + [4169] = 4105, + [4170] = 4105, + [4171] = 4105, + [4172] = 4108, + [4173] = 4104, + [4174] = 4105, + [4175] = 4105, + [4176] = 4104, + [4177] = 4108, + [4178] = 4104, + [4179] = 4104, + [4180] = 4108, + [4181] = 4108, + [4182] = 4104, + [4183] = 4104, + [4184] = 4108, + [4185] = 4108, + [4186] = 4105, + [4187] = 4105, + [4188] = 4105, + [4189] = 4105, + [4190] = 672, + [4191] = 4105, + [4192] = 4105, + [4193] = 4105, + [4194] = 4108, + [4195] = 4108, + [4196] = 4104, + [4197] = 4104, + [4198] = 4108, + [4199] = 4105, + [4200] = 4104, + [4201] = 683, + [4202] = 4108, + [4203] = 4108, + [4204] = 4104, + [4205] = 4104, + [4206] = 4105, + [4207] = 4108, + [4208] = 4105, + [4209] = 4108, + [4210] = 4104, + [4211] = 4108, + [4212] = 4108, + [4213] = 4104, + [4214] = 4105, + [4215] = 4108, + [4216] = 4104, + [4217] = 4104, + [4218] = 4105, + [4219] = 4104, + [4220] = 4108, + [4221] = 4221, + [4222] = 4221, + [4223] = 4223, + [4224] = 4221, + [4225] = 4221, + [4226] = 4125, + [4227] = 683, + [4228] = 4221, + [4229] = 4221, + [4230] = 4125, + [4231] = 4221, + [4232] = 4221, + [4233] = 4221, + [4234] = 4221, + [4235] = 4221, + [4236] = 4221, + [4237] = 4221, + [4238] = 4221, + [4239] = 672, + [4240] = 4221, + [4241] = 4221, + [4242] = 4221, + [4243] = 4125, + [4244] = 4221, + [4245] = 683, + [4246] = 4221, + [4247] = 4221, + [4248] = 4221, + [4249] = 4223, + [4250] = 683, + [4251] = 4221, + [4252] = 4221, + [4253] = 4221, + [4254] = 4221, + [4255] = 4221, + [4256] = 4221, + [4257] = 683, + [4258] = 4221, + [4259] = 4221, + [4260] = 4221, + [4261] = 4221, + [4262] = 683, + [4263] = 4221, + [4264] = 4221, + [4265] = 4221, + [4266] = 4125, + [4267] = 4221, + [4268] = 4268, + [4269] = 4269, + [4270] = 4270, + [4271] = 4268, + [4272] = 4269, + [4273] = 4273, + [4274] = 4270, + [4275] = 4269, + [4276] = 4270, + [4277] = 837, + [4278] = 884, + [4279] = 4270, + [4280] = 4269, + [4281] = 4269, + [4282] = 4273, + [4283] = 4268, + [4284] = 837, + [4285] = 884, + [4286] = 4286, + [4287] = 837, + [4288] = 884, + [4289] = 837, + [4290] = 4270, + [4291] = 4268, + [4292] = 884, + [4293] = 837, + [4294] = 4273, + [4295] = 4273, + [4296] = 4273, + [4297] = 4268, + [4298] = 884, + [4299] = 4268, + [4300] = 4269, + [4301] = 4273, + [4302] = 4269, + [4303] = 4270, + [4304] = 4269, + [4305] = 4270, + [4306] = 4273, + [4307] = 4268, + [4308] = 4268, + [4309] = 4268, + [4310] = 4273, + [4311] = 4273, + [4312] = 4270, + [4313] = 4268, + [4314] = 4273, + [4315] = 4268, + [4316] = 4270, + [4317] = 4270, + [4318] = 4273, + [4319] = 4270, + [4320] = 4269, + [4321] = 4273, + [4322] = 4270, + [4323] = 4273, + [4324] = 4270, + [4325] = 4270, + [4326] = 4273, + [4327] = 4270, + [4328] = 4273, + [4329] = 4286, + [4330] = 4270, + [4331] = 4273, + [4332] = 4270, + [4333] = 4273, + [4334] = 4270, + [4335] = 4269, + [4336] = 4336, + [4337] = 4337, + [4338] = 4268, + [4339] = 4273, + [4340] = 4269, + [4341] = 4270, + [4342] = 4268, + [4343] = 4343, + [4344] = 4344, + [4345] = 4268, + [4346] = 4273, + [4347] = 4269, + [4348] = 4269, + [4349] = 4270, + [4350] = 4270, + [4351] = 4270, + [4352] = 4269, + [4353] = 4268, + [4354] = 4269, + [4355] = 4268, + [4356] = 4273, + [4357] = 4269, + [4358] = 4273, + [4359] = 4269, + [4360] = 4270, + [4361] = 4273, + [4362] = 4273, + [4363] = 4268, + [4364] = 4273, + [4365] = 4273, + [4366] = 4269, + [4367] = 4273, + [4368] = 4269, + [4369] = 4270, + [4370] = 4268, + [4371] = 4268, + [4372] = 4268, + [4373] = 4270, + [4374] = 4286, + [4375] = 4336, + [4376] = 4344, + [4377] = 4268, + [4378] = 4286, + [4379] = 4273, + [4380] = 4273, + [4381] = 4268, + [4382] = 4269, + [4383] = 4269, + [4384] = 4270, + [4385] = 4273, + [4386] = 4268, + [4387] = 4268, + [4388] = 4270, + [4389] = 4269, + [4390] = 4273, + [4391] = 4269, + [4392] = 4270, + [4393] = 4270, + [4394] = 4270, + [4395] = 4286, + [4396] = 4268, + [4397] = 4270, + [4398] = 4273, + [4399] = 4269, + [4400] = 4270, + [4401] = 4269, + [4402] = 4268, + [4403] = 4273, + [4404] = 4273, + [4405] = 4268, + [4406] = 4269, + [4407] = 4270, + [4408] = 4270, + [4409] = 4269, + [4410] = 4337, + [4411] = 4268, + [4412] = 4273, + [4413] = 4269, + [4414] = 4273, + [4415] = 4268, + [4416] = 4270, + [4417] = 4269, + [4418] = 4273, + [4419] = 4268, + [4420] = 4268, + [4421] = 4270, + [4422] = 4273, + [4423] = 4273, + [4424] = 4269, + [4425] = 4269, + [4426] = 4270, + [4427] = 4270, + [4428] = 4270, + [4429] = 4268, + [4430] = 4273, + [4431] = 4269, + [4432] = 4269, + [4433] = 4270, + [4434] = 4270, + [4435] = 4273, + [4436] = 4270, + [4437] = 4269, + [4438] = 4273, + [4439] = 4273, + [4440] = 4269, + [4441] = 4268, + [4442] = 4268, + [4443] = 4268, + [4444] = 4444, + [4445] = 4445, + [4446] = 4446, + [4447] = 4447, + [4448] = 4448, + [4449] = 4449, + [4450] = 4450, + [4451] = 4451, + [4452] = 4452, + [4453] = 4453, + [4454] = 4454, + [4455] = 4454, + [4456] = 4453, + [4457] = 4457, + [4458] = 4458, + [4459] = 4459, + [4460] = 4457, + [4461] = 4452, + [4462] = 4458, + [4463] = 4445, + [4464] = 837, + [4465] = 4451, + [4466] = 4466, + [4467] = 4459, + [4468] = 4466, + [4469] = 4449, + [4470] = 4448, + [4471] = 4471, + [4472] = 4453, + [4473] = 4450, + [4474] = 4474, + [4475] = 4475, + [4476] = 4447, + [4477] = 4446, + [4478] = 4448, + [4479] = 4471, + [4480] = 4480, + [4481] = 4446, + [4482] = 4482, + [4483] = 4483, + [4484] = 4484, + [4485] = 4444, + [4486] = 4486, + [4487] = 4487, + [4488] = 4488, + [4489] = 4489, + [4490] = 4449, + [4491] = 4454, + [4492] = 4451, + [4493] = 4445, + [4494] = 4458, + [4495] = 4452, + [4496] = 4457, + [4497] = 4451, + [4498] = 4449, + [4499] = 4448, + [4500] = 4446, + [4501] = 4459, + [4502] = 4466, + [4503] = 4459, + [4504] = 4449, + [4505] = 4489, + [4506] = 4453, + [4507] = 4454, + [4508] = 4474, + [4509] = 4488, + [4510] = 4475, + [4511] = 4452, + [4512] = 4450, + [4513] = 4474, + [4514] = 4480, + [4515] = 4447, + [4516] = 4457, + [4517] = 4475, + [4518] = 4458, + [4519] = 4447, + [4520] = 4487, + [4521] = 4445, + [4522] = 4446, + [4523] = 4459, + [4524] = 4471, + [4525] = 4489, + [4526] = 4486, + [4527] = 4444, + [4528] = 4484, + [4529] = 4466, + [4530] = 4488, + [4531] = 4488, + [4532] = 4487, + [4533] = 4483, + [4534] = 4482, + [4535] = 4453, + [4536] = 4480, + [4537] = 4471, + [4538] = 4447, + [4539] = 4480, + [4540] = 4454, + [4541] = 4451, + [4542] = 4482, + [4543] = 4483, + [4544] = 4486, + [4545] = 4444, + [4546] = 4484, + [4547] = 4444, + [4548] = 4486, + [4549] = 4487, + [4550] = 4488, + [4551] = 4489, + [4552] = 4484, + [4553] = 4466, + [4554] = 4445, + [4555] = 4458, + [4556] = 4457, + [4557] = 4483, + [4558] = 4451, + [4559] = 4449, + [4560] = 4448, + [4561] = 4446, + [4562] = 4475, + [4563] = 4459, + [4564] = 4466, + [4565] = 4452, + [4566] = 4474, + [4567] = 4450, + [4568] = 4450, + [4569] = 4453, + [4570] = 4454, + [4571] = 4452, + [4572] = 4450, + [4573] = 4474, + [4574] = 4475, + [4575] = 4447, + [4576] = 4452, + [4577] = 4454, + [4578] = 4453, + [4579] = 4474, + [4580] = 4471, + [4581] = 4480, + [4582] = 4475, + [4583] = 4466, + [4584] = 4482, + [4585] = 4466, + [4586] = 4447, + [4587] = 4459, + [4588] = 4482, + [4589] = 4480, + [4590] = 4483, + [4591] = 4471, + [4592] = 4459, + [4593] = 4446, + [4594] = 4447, + [4595] = 4446, + [4596] = 4484, + [4597] = 4475, + [4598] = 4448, + [4599] = 4444, + [4600] = 4451, + [4601] = 4471, + [4602] = 4480, + [4603] = 4457, + [4604] = 4458, + [4605] = 4445, + [4606] = 4453, + [4607] = 4489, + [4608] = 4471, + [4609] = 4488, + [4610] = 4487, + [4611] = 4444, + [4612] = 4486, + [4613] = 4448, + [4614] = 4487, + [4615] = 4488, + [4616] = 4449, + [4617] = 4486, + [4618] = 4489, + [4619] = 4444, + [4620] = 4482, + [4621] = 4445, + [4622] = 4458, + [4623] = 4457, + [4624] = 4451, + [4625] = 4449, + [4626] = 4448, + [4627] = 4446, + [4628] = 4459, + [4629] = 4482, + [4630] = 4466, + [4631] = 4483, + [4632] = 4484, + [4633] = 4484, + [4634] = 4480, + [4635] = 4453, + [4636] = 4454, + [4637] = 4452, + [4638] = 4450, + [4639] = 4474, + [4640] = 4483, + [4641] = 4475, + [4642] = 4447, + [4643] = 4471, + [4644] = 4480, + [4645] = 4483, + [4646] = 4482, + [4647] = 4483, + [4648] = 4444, + [4649] = 4482, + [4650] = 4457, + [4651] = 4483, + [4652] = 4484, + [4653] = 4444, + [4654] = 4486, + [4655] = 4458, + [4656] = 4486, + [4657] = 4482, + [4658] = 4445, + [4659] = 4445, + [4660] = 4487, + [4661] = 4453, + [4662] = 4488, + [4663] = 4483, + [4664] = 4489, + [4665] = 4474, + [4666] = 4484, + [4667] = 4480, + [4668] = 4489, + [4669] = 4450, + [4670] = 4471, + [4671] = 4447, + [4672] = 4475, + [4673] = 4444, + [4674] = 4674, + [4675] = 4486, + [4676] = 4452, + [4677] = 4474, + [4678] = 4450, + [4679] = 4452, + [4680] = 4454, + [4681] = 4453, + [4682] = 4446, + [4683] = 4445, + [4684] = 4458, + [4685] = 4488, + [4686] = 4457, + [4687] = 4451, + [4688] = 4487, + [4689] = 4487, + [4690] = 4449, + [4691] = 4448, + [4692] = 4446, + [4693] = 4459, + [4694] = 4466, + [4695] = 4487, + [4696] = 4466, + [4697] = 4459, + [4698] = 4453, + [4699] = 4454, + [4700] = 4452, + [4701] = 884, + [4702] = 4450, + [4703] = 4474, + [4704] = 4475, + [4705] = 4447, + [4706] = 4446, + [4707] = 4471, + [4708] = 4480, + [4709] = 4488, + [4710] = 4482, + [4711] = 4483, + [4712] = 4486, + [4713] = 4484, + [4714] = 4444, + [4715] = 4486, + [4716] = 4487, + [4717] = 4488, + [4718] = 4489, + [4719] = 4454, + [4720] = 4448, + [4721] = 4449, + [4722] = 4451, + [4723] = 4484, + [4724] = 4445, + [4725] = 4458, + [4726] = 4457, + [4727] = 4454, + [4728] = 4489, + [4729] = 4457, + [4730] = 4453, + [4731] = 4444, + [4732] = 4451, + [4733] = 4458, + [4734] = 4449, + [4735] = 4445, + [4736] = 4454, + [4737] = 4452, + [4738] = 4484, + [4739] = 4489, + [4740] = 4448, + [4741] = 4488, + [4742] = 4487, + [4743] = 4486, + [4744] = 4444, + [4745] = 4488, + [4746] = 4489, + [4747] = 4454, + [4748] = 4484, + [4749] = 4483, + [4750] = 4482, + [4751] = 4482, + [4752] = 4489, + [4753] = 4486, + [4754] = 4444, + [4755] = 4446, + [4756] = 4459, + [4757] = 4483, + [4758] = 4466, + [4759] = 4445, + [4760] = 4482, + [4761] = 4466, + [4762] = 4480, + [4763] = 4449, + [4764] = 4453, + [4765] = 4454, + [4766] = 4452, + [4767] = 4450, + [4768] = 4474, + [4769] = 4475, + [4770] = 4447, + [4771] = 4471, + [4772] = 4480, + [4773] = 4459, + [4774] = 4448, + [4775] = 4482, + [4776] = 4483, + [4777] = 4484, + [4778] = 4444, + [4779] = 4444, + [4780] = 4486, + [4781] = 4487, + [4782] = 4488, + [4783] = 4489, + [4784] = 4480, + [4785] = 4446, + [4786] = 4445, + [4787] = 4458, + [4788] = 4457, + [4789] = 4451, + [4790] = 4449, + [4791] = 4448, + [4792] = 4471, + [4793] = 4447, + [4794] = 4471, + [4795] = 4447, + [4796] = 4446, + [4797] = 4459, + [4798] = 4466, + [4799] = 4475, + [4800] = 4448, + [4801] = 4475, + [4802] = 4449, + [4803] = 4474, + [4804] = 4458, + [4805] = 4450, + [4806] = 4474, + [4807] = 4451, + [4808] = 4450, + [4809] = 4457, + [4810] = 4458, + [4811] = 4445, + [4812] = 4452, + [4813] = 4466, + [4814] = 4454, + [4815] = 4453, + [4816] = 4457, + [4817] = 4484, + [4818] = 4446, + [4819] = 4466, + [4820] = 4445, + [4821] = 4444, + [4822] = 4459, + [4823] = 4446, + [4824] = 4448, + [4825] = 4449, + [4826] = 4451, + [4827] = 4453, + [4828] = 4454, + [4829] = 4452, + [4830] = 4452, + [4831] = 4450, + [4832] = 4458, + [4833] = 4451, + [4834] = 4474, + [4835] = 4475, + [4836] = 4447, + [4837] = 4471, + [4838] = 4480, + [4839] = 4457, + [4840] = 4482, + [4841] = 4483, + [4842] = 4484, + [4843] = 4444, + [4844] = 4486, + [4845] = 4489, + [4846] = 4487, + [4847] = 4488, + [4848] = 4489, + [4849] = 4445, + [4850] = 4457, + [4851] = 4458, + [4852] = 4457, + [4853] = 4451, + [4854] = 4449, + [4855] = 4448, + [4856] = 4450, + [4857] = 4446, + [4858] = 4459, + [4859] = 4466, + [4860] = 4459, + [4861] = 4458, + [4862] = 4445, + [4863] = 4453, + [4864] = 4482, + [4865] = 4489, + [4866] = 4488, + [4867] = 4487, + [4868] = 4454, + [4869] = 4452, + [4870] = 4450, + [4871] = 4452, + [4872] = 4488, + [4873] = 4486, + [4874] = 4487, + [4875] = 4484, + [4876] = 4474, + [4877] = 4486, + [4878] = 4475, + [4879] = 4444, + [4880] = 4451, + [4881] = 4453, + [4882] = 4484, + [4883] = 4483, + [4884] = 4447, + [4885] = 4482, + [4886] = 4484, + [4887] = 4483, + [4888] = 4482, + [4889] = 4449, + [4890] = 4466, + [4891] = 4448, + [4892] = 4480, + [4893] = 4446, + [4894] = 4486, + [4895] = 4480, + [4896] = 4471, + [4897] = 4474, + [4898] = 4447, + [4899] = 4471, + [4900] = 4480, + [4901] = 4475, + [4902] = 4459, + [4903] = 4482, + [4904] = 4471, + [4905] = 4447, + [4906] = 4483, + [4907] = 4484, + [4908] = 4444, + [4909] = 4486, + [4910] = 4487, + [4911] = 4488, + [4912] = 4489, + [4913] = 4475, + [4914] = 4445, + [4915] = 4458, + [4916] = 4457, + [4917] = 4474, + [4918] = 4451, + [4919] = 4449, + [4920] = 4448, + [4921] = 4446, + [4922] = 4475, + [4923] = 4459, + [4924] = 4466, + [4925] = 4466, + [4926] = 4487, + [4927] = 4447, + [4928] = 4471, + [4929] = 4453, + [4930] = 4454, + [4931] = 4452, + [4932] = 4450, + [4933] = 4474, + [4934] = 4475, + [4935] = 4447, + [4936] = 4453, + [4937] = 4454, + [4938] = 4488, + [4939] = 4474, + [4940] = 4471, + [4941] = 4480, + [4942] = 4451, + [4943] = 4480, + [4944] = 4450, + [4945] = 4489, + [4946] = 4452, + [4947] = 4474, + [4948] = 4482, + [4949] = 4452, + [4950] = 4483, + [4951] = 4454, + [4952] = 4457, + [4953] = 4458, + [4954] = 4445, + [4955] = 4450, + [4956] = 4484, + [4957] = 4445, + [4958] = 4452, + [4959] = 4475, + [4960] = 4458, + [4961] = 4450, + [4962] = 4457, + [4963] = 4457, + [4964] = 4449, + [4965] = 4454, + [4966] = 4453, + [4967] = 4474, + [4968] = 4466, + [4969] = 4459, + [4970] = 4446, + [4971] = 4444, + [4972] = 4486, + [4973] = 4475, + [4974] = 4487, + [4975] = 4488, + [4976] = 4447, + [4977] = 4471, + [4978] = 4489, + [4979] = 4480, + [4980] = 4459, + [4981] = 4458, + [4982] = 4457, + [4983] = 4451, + [4984] = 4449, + [4985] = 4448, + [4986] = 4446, + [4987] = 4459, + [4988] = 4466, + [4989] = 4989, + [4990] = 4482, + [4991] = 4448, + [4992] = 4449, + [4993] = 4453, + [4994] = 4482, + [4995] = 4454, + [4996] = 4452, + [4997] = 4450, + [4998] = 4474, + [4999] = 4475, + [5000] = 4483, + [5001] = 4447, + [5002] = 4471, + [5003] = 4480, + [5004] = 4483, + [5005] = 4482, + [5006] = 4483, + [5007] = 4484, + [5008] = 4449, + [5009] = 4457, + [5010] = 4458, + [5011] = 4445, + [5012] = 4444, + [5013] = 4486, + [5014] = 4487, + [5015] = 4447, + [5016] = 4450, + [5017] = 4474, + [5018] = 4989, + [5019] = 4444, + [5020] = 4488, + [5021] = 4489, + [5022] = 4489, + [5023] = 4488, + [5024] = 4451, + [5025] = 4487, + [5026] = 4453, + [5027] = 4486, + [5028] = 4445, + [5029] = 4486, + [5030] = 4444, + [5031] = 4484, + [5032] = 4483, + [5033] = 4484, + [5034] = 4451, + [5035] = 4482, + [5036] = 4487, + [5037] = 4444, + [5038] = 4480, + [5039] = 4471, + [5040] = 4447, + [5041] = 4475, + [5042] = 4488, + [5043] = 4458, + [5044] = 4457, + [5045] = 4486, + [5046] = 4451, + [5047] = 4449, + [5048] = 4449, + [5049] = 4489, + [5050] = 4448, + [5051] = 4446, + [5052] = 4459, + [5053] = 4466, + [5054] = 4487, + [5055] = 4474, + [5056] = 4450, + [5057] = 4453, + [5058] = 4454, + [5059] = 4452, + [5060] = 4450, + [5061] = 4466, + [5062] = 4474, + [5063] = 4475, + [5064] = 4447, + [5065] = 4471, + [5066] = 4452, + [5067] = 4480, + [5068] = 4453, + [5069] = 4482, + [5070] = 4483, + [5071] = 4484, + [5072] = 4448, + [5073] = 4444, + [5074] = 4486, + [5075] = 4487, + [5076] = 4488, + [5077] = 4489, + [5078] = 4471, + [5079] = 4445, + [5080] = 4454, + [5081] = 4488, + [5082] = 4489, + [5083] = 4448, + [5084] = 4458, + [5085] = 4457, + [5086] = 4451, + [5087] = 4459, + [5088] = 4453, + [5089] = 4446, + [5090] = 4446, + [5091] = 4448, + [5092] = 4449, + [5093] = 4484, + [5094] = 4448, + [5095] = 4466, + [5096] = 4459, + [5097] = 4459, + [5098] = 4466, + [5099] = 4454, + [5100] = 4446, + [5101] = 4447, + [5102] = 4450, + [5103] = 4483, + [5104] = 4466, + [5105] = 4451, + [5106] = 4445, + [5107] = 4459, + [5108] = 4446, + [5109] = 4448, + [5110] = 4449, + [5111] = 4451, + [5112] = 4457, + [5113] = 4458, + [5114] = 4445, + [5115] = 4459, + [5116] = 4466, + [5117] = 4451, + [5118] = 4458, + [5119] = 4457, + [5120] = 4446, + [5121] = 4448, + [5122] = 4475, + [5123] = 4453, + [5124] = 4454, + [5125] = 4452, + [5126] = 4450, + [5127] = 4474, + [5128] = 4475, + [5129] = 4447, + [5130] = 4471, + [5131] = 4480, + [5132] = 4489, + [5133] = 4448, + [5134] = 4482, + [5135] = 4483, + [5136] = 4484, + [5137] = 4444, + [5138] = 4457, + [5139] = 4486, + [5140] = 4487, + [5141] = 4488, + [5142] = 4489, + [5143] = 4449, + [5144] = 4451, + [5145] = 4445, + [5146] = 4458, + [5147] = 4457, + [5148] = 4451, + [5149] = 4449, + [5150] = 4448, + [5151] = 4446, + [5152] = 4471, + [5153] = 4489, + [5154] = 4488, + [5155] = 4487, + [5156] = 4459, + [5157] = 4466, + [5158] = 4488, + [5159] = 4457, + [5160] = 4451, + [5161] = 4486, + [5162] = 4457, + [5163] = 4458, + [5164] = 4444, + [5165] = 4458, + [5166] = 4484, + [5167] = 4445, + [5168] = 4483, + [5169] = 4445, + [5170] = 4482, + [5171] = 5171, + [5172] = 4453, + [5173] = 4480, + [5174] = 4471, + [5175] = 4447, + [5176] = 4475, + [5177] = 4452, + [5178] = 4451, + [5179] = 4489, + [5180] = 4487, + [5181] = 4474, + [5182] = 4450, + [5183] = 4452, + [5184] = 4454, + [5185] = 4453, + [5186] = 4454, + [5187] = 4454, + [5188] = 4452, + [5189] = 4480, + [5190] = 4450, + [5191] = 4474, + [5192] = 5192, + [5193] = 4488, + [5194] = 4475, + [5195] = 4447, + [5196] = 4471, + [5197] = 4480, + [5198] = 4450, + [5199] = 4482, + [5200] = 4483, + [5201] = 4484, + [5202] = 4489, + [5203] = 4486, + [5204] = 4487, + [5205] = 4488, + [5206] = 4489, + [5207] = 4453, + [5208] = 4488, + [5209] = 4445, + [5210] = 4449, + [5211] = 4458, + [5212] = 4457, + [5213] = 4451, + [5214] = 4449, + [5215] = 4448, + [5216] = 4487, + [5217] = 4446, + [5218] = 4459, + [5219] = 4466, + [5220] = 4475, + [5221] = 4452, + [5222] = 4450, + [5223] = 4453, + [5224] = 4474, + [5225] = 4486, + [5226] = 4487, + [5227] = 4486, + [5228] = 4454, + [5229] = 4452, + [5230] = 4450, + [5231] = 4444, + [5232] = 4487, + [5233] = 4475, + [5234] = 4444, + [5235] = 4458, + [5236] = 4474, + [5237] = 4448, + [5238] = 4475, + [5239] = 4486, + [5240] = 4466, + [5241] = 4484, + [5242] = 4449, + [5243] = 4444, + [5244] = 4447, + [5245] = 4483, + [5246] = 4447, + [5247] = 4471, + [5248] = 4480, + [5249] = 4446, + [5250] = 4459, + [5251] = 4471, + [5252] = 4484, + [5253] = 4466, + [5254] = 4459, + [5255] = 4482, + [5256] = 4446, + [5257] = 4482, + [5258] = 4483, + [5259] = 4480, + [5260] = 4486, + [5261] = 4474, + [5262] = 4482, + [5263] = 4483, + [5264] = 4483, + [5265] = 4487, + [5266] = 4484, + [5267] = 4444, + [5268] = 4486, + [5269] = 4487, + [5270] = 4488, + [5271] = 4489, + [5272] = 4445, + [5273] = 4458, + [5274] = 4457, + [5275] = 4451, + [5276] = 4449, + [5277] = 5277, + [5278] = 4448, + [5279] = 4446, + [5280] = 4459, + [5281] = 4466, + [5282] = 4448, + [5283] = 4484, + [5284] = 4449, + [5285] = 4451, + [5286] = 4453, + [5287] = 4454, + [5288] = 4445, + [5289] = 4452, + [5290] = 4450, + [5291] = 4474, + [5292] = 4475, + [5293] = 4447, + [5294] = 4471, + [5295] = 4480, + [5296] = 4457, + [5297] = 4458, + [5298] = 4445, + [5299] = 4480, + [5300] = 4453, + [5301] = 4482, + [5302] = 4483, + [5303] = 4480, + [5304] = 4484, + [5305] = 4454, + [5306] = 4482, + [5307] = 4471, + [5308] = 4444, + [5309] = 4452, + [5310] = 4486, + [5311] = 4447, + [5312] = 4489, + [5313] = 4480, + [5314] = 4475, + [5315] = 4487, + [5316] = 4488, + [5317] = 4471, + [5318] = 4474, + [5319] = 4488, + [5320] = 4487, + [5321] = 4450, + [5322] = 4474, + [5323] = 4447, + [5324] = 4475, + [5325] = 4486, + [5326] = 4444, + [5327] = 4484, + [5328] = 4483, + [5329] = 4482, + [5330] = 4475, + [5331] = 4489, + [5332] = 4474, + [5333] = 4450, + [5334] = 4480, + [5335] = 4450, + [5336] = 4452, + [5337] = 4454, + [5338] = 4445, + [5339] = 4458, + [5340] = 4457, + [5341] = 4451, + [5342] = 4449, + [5343] = 4448, + [5344] = 4446, + [5345] = 4459, + [5346] = 4466, + [5347] = 4452, + [5348] = 4454, + [5349] = 4453, + [5350] = 4453, + [5351] = 4445, + [5352] = 4449, + [5353] = 4447, + [5354] = 4471, + [5355] = 4488, + [5356] = 4466, + [5357] = 4459, + [5358] = 4446, + [5359] = 4448, + [5360] = 4489, + [5361] = 4458, + [5362] = 5362, + [5363] = 5363, + [5364] = 5363, + [5365] = 5363, + [5366] = 5362, + [5367] = 5362, + [5368] = 5368, + [5369] = 5363, + [5370] = 5363, + [5371] = 5363, + [5372] = 5372, + [5373] = 5372, + [5374] = 5368, + [5375] = 5363, + [5376] = 5363, + [5377] = 5362, + [5378] = 5372, + [5379] = 5362, + [5380] = 5372, + [5381] = 5368, + [5382] = 5382, + [5383] = 5383, + [5384] = 5384, + [5385] = 5368, + [5386] = 5362, + [5387] = 5362, + [5388] = 5372, + [5389] = 5372, + [5390] = 5363, + [5391] = 5391, + [5392] = 5362, + [5393] = 5368, + [5394] = 5362, + [5395] = 5368, + [5396] = 5363, + [5397] = 5372, + [5398] = 5363, + [5399] = 5399, + [5400] = 5363, + [5401] = 5368, + [5402] = 5372, + [5403] = 5362, + [5404] = 5368, + [5405] = 5362, + [5406] = 5372, + [5407] = 5372, + [5408] = 5362, + [5409] = 5368, + [5410] = 5372, + [5411] = 5368, + [5412] = 5362, + [5413] = 5372, + [5414] = 5372, + [5415] = 5372, + [5416] = 5363, + [5417] = 5362, + [5418] = 5368, + [5419] = 5363, + [5420] = 5372, + [5421] = 5363, + [5422] = 5422, + [5423] = 5362, + [5424] = 5368, + [5425] = 5383, + [5426] = 5368, + [5427] = 5362, + [5428] = 5368, + [5429] = 5372, + [5430] = 5422, + [5431] = 5362, + [5432] = 5362, + [5433] = 5368, + [5434] = 5363, + [5435] = 5363, + [5436] = 5368, + [5437] = 5372, + [5438] = 5372, + [5439] = 5368, + [5440] = 5368, + [5441] = 5363, + [5442] = 5363, + [5443] = 5363, + [5444] = 5372, + [5445] = 5362, + [5446] = 5368, + [5447] = 5372, + [5448] = 5363, + [5449] = 5368, + [5450] = 5383, + [5451] = 5362, + [5452] = 5362, + [5453] = 5368, + [5454] = 5372, + [5455] = 5372, + [5456] = 5368, + [5457] = 5362, + [5458] = 5363, + [5459] = 5368, + [5460] = 5362, + [5461] = 5372, + [5462] = 5362, + [5463] = 5368, + [5464] = 5372, + [5465] = 5368, + [5466] = 5362, + [5467] = 5363, + [5468] = 5368, + [5469] = 5362, + [5470] = 5363, + [5471] = 5362, + [5472] = 5368, + [5473] = 5382, + [5474] = 5363, + [5475] = 5372, + [5476] = 5372, + [5477] = 5391, + [5478] = 5362, + [5479] = 5368, + [5480] = 5363, + [5481] = 5368, + [5482] = 5363, + [5483] = 5363, + [5484] = 5368, + [5485] = 5372, + [5486] = 5362, + [5487] = 5363, + [5488] = 5362, + [5489] = 5362, + [5490] = 5368, + [5491] = 5363, + [5492] = 5362, + [5493] = 5363, + [5494] = 5368, + [5495] = 5372, + [5496] = 5372, + [5497] = 5372, + [5498] = 5363, + [5499] = 5363, + [5500] = 5362, + [5501] = 5372, + [5502] = 5363, + [5503] = 5368, + [5504] = 5383, + [5505] = 5372, + [5506] = 5363, + [5507] = 5368, + [5508] = 5362, + [5509] = 5372, + [5510] = 5362, + [5511] = 5368, + [5512] = 5372, + [5513] = 5383, + [5514] = 5372, + [5515] = 5515, + [5516] = 5516, + [5517] = 5517, + [5518] = 5518, + [5519] = 5519, + [5520] = 5520, + [5521] = 5521, + [5522] = 5522, + [5523] = 5523, + [5524] = 5524, + [5525] = 5525, + [5526] = 5526, + [5527] = 5527, + [5528] = 5528, + [5529] = 5529, + [5530] = 5530, + [5531] = 5531, + [5532] = 5532, + [5533] = 5533, + [5534] = 5534, + [5535] = 5535, + [5536] = 5536, + [5537] = 5515, + [5538] = 5538, + [5539] = 5539, + [5540] = 5540, + [5541] = 5541, + [5542] = 5542, + [5543] = 5543, + [5544] = 5544, + [5545] = 5545, + [5546] = 5546, + [5547] = 5547, + [5548] = 5548, + [5549] = 5534, + [5550] = 5550, + [5551] = 5551, + [5552] = 5552, + [5553] = 5553, + [5554] = 5553, + [5555] = 5552, + [5556] = 5534, + [5557] = 5546, + [5558] = 5545, + [5559] = 5544, + [5560] = 5543, + [5561] = 5542, + [5562] = 5541, + [5563] = 5540, + [5564] = 5539, + [5565] = 5551, + [5566] = 5538, + [5567] = 5515, + [5568] = 5536, + [5569] = 5535, + [5570] = 5550, + [5571] = 5516, + [5572] = 5517, + [5573] = 5518, + [5574] = 5519, + [5575] = 5520, + [5576] = 5548, + [5577] = 5521, + [5578] = 5522, + [5579] = 5523, + [5580] = 5524, + [5581] = 5525, + [5582] = 5526, + [5583] = 5527, + [5584] = 5547, + [5585] = 5533, + [5586] = 5532, + [5587] = 5531, + [5588] = 5528, + [5589] = 5529, + [5590] = 5530, + [5591] = 5530, + [5592] = 5529, + [5593] = 5528, + [5594] = 5527, + [5595] = 5526, + [5596] = 5531, + [5597] = 5525, + [5598] = 5532, + [5599] = 5524, + [5600] = 5523, + [5601] = 5522, + [5602] = 5521, + [5603] = 5520, + [5604] = 5533, + [5605] = 5519, + [5606] = 5518, + [5607] = 5517, + [5608] = 5516, + [5609] = 5535, + [5610] = 5536, + [5611] = 5515, + [5612] = 5538, + [5613] = 5539, + [5614] = 5540, + [5615] = 5541, + [5616] = 5542, + [5617] = 5543, + [5618] = 5544, + [5619] = 5547, + [5620] = 5548, + [5621] = 5545, + [5622] = 5550, + [5623] = 5551, + [5624] = 5546, + [5625] = 5530, + [5626] = 5553, + [5627] = 5552, + [5628] = 5534, + [5629] = 5546, + [5630] = 5545, + [5631] = 5544, + [5632] = 5543, + [5633] = 5542, + [5634] = 5541, + [5635] = 5540, + [5636] = 5539, + [5637] = 5533, + [5638] = 5538, + [5639] = 5515, + [5640] = 5536, + [5641] = 5535, + [5642] = 5552, + [5643] = 5516, + [5644] = 5517, + [5645] = 5518, + [5646] = 5519, + [5647] = 5520, + [5648] = 5553, + [5649] = 5521, + [5650] = 5522, + [5651] = 5523, + [5652] = 5524, + [5653] = 5525, + [5654] = 5526, + [5655] = 5527, + [5656] = 5551, + [5657] = 5550, + [5658] = 5548, + [5659] = 5547, + [5660] = 5528, + [5661] = 5529, + [5662] = 5530, + [5663] = 5517, + [5664] = 5523, + [5665] = 5532, + [5666] = 5529, + [5667] = 5531, + [5668] = 5531, + [5669] = 5528, + [5670] = 5532, + [5671] = 5530, + [5672] = 5529, + [5673] = 5528, + [5674] = 5527, + [5675] = 5526, + [5676] = 5533, + [5677] = 5525, + [5678] = 5524, + [5679] = 5523, + [5680] = 5522, + [5681] = 5521, + [5682] = 5520, + [5683] = 5519, + [5684] = 5518, + [5685] = 5517, + [5686] = 5516, + [5687] = 5535, + [5688] = 5536, + [5689] = 5515, + [5690] = 5538, + [5691] = 5539, + [5692] = 5540, + [5693] = 5541, + [5694] = 5542, + [5695] = 5543, + [5696] = 5544, + [5697] = 5545, + [5698] = 5546, + [5699] = 5534, + [5700] = 5552, + [5701] = 5553, + [5702] = 5551, + [5703] = 5550, + [5704] = 5548, + [5705] = 5547, + [5706] = 5533, + [5707] = 5531, + [5708] = 5532, + [5709] = 5531, + [5710] = 5532, + [5711] = 5530, + [5712] = 5529, + [5713] = 5528, + [5714] = 5527, + [5715] = 5526, + [5716] = 5525, + [5717] = 5524, + [5718] = 5523, + [5719] = 5522, + [5720] = 5521, + [5721] = 5520, + [5722] = 5519, + [5723] = 5518, + [5724] = 5531, + [5725] = 5516, + [5726] = 5535, + [5727] = 5536, + [5728] = 5515, + [5729] = 5538, + [5730] = 5539, + [5731] = 5540, + [5732] = 5541, + [5733] = 5542, + [5734] = 5527, + [5735] = 5526, + [5736] = 5525, + [5737] = 5543, + [5738] = 5544, + [5739] = 5545, + [5740] = 5546, + [5741] = 5534, + [5742] = 5552, + [5743] = 5553, + [5744] = 5551, + [5745] = 5550, + [5746] = 5548, + [5747] = 5547, + [5748] = 5748, + [5749] = 5533, + [5750] = 5532, + [5751] = 5531, + [5752] = 5530, + [5753] = 5529, + [5754] = 5528, + [5755] = 5527, + [5756] = 5526, + [5757] = 5525, + [5758] = 5524, + [5759] = 5523, + [5760] = 5522, + [5761] = 5521, + [5762] = 5520, + [5763] = 5519, + [5764] = 5518, + [5765] = 5517, + [5766] = 5516, + [5767] = 5535, + [5768] = 5524, + [5769] = 5536, + [5770] = 5515, + [5771] = 5538, + [5772] = 5533, + [5773] = 5539, + [5774] = 5540, + [5775] = 5541, + [5776] = 5542, + [5777] = 5543, + [5778] = 5544, + [5779] = 5545, + [5780] = 5546, + [5781] = 5534, + [5782] = 5552, + [5783] = 5553, + [5784] = 5551, + [5785] = 5550, + [5786] = 5548, + [5787] = 5547, + [5788] = 5533, + [5789] = 5532, + [5790] = 5528, + [5791] = 5530, + [5792] = 5529, + [5793] = 5533, + [5794] = 5527, + [5795] = 5526, + [5796] = 5525, + [5797] = 5524, + [5798] = 5523, + [5799] = 5522, + [5800] = 5522, + [5801] = 5521, + [5802] = 5521, + [5803] = 5520, + [5804] = 5519, + [5805] = 5518, + [5806] = 5517, + [5807] = 5516, + [5808] = 5535, + [5809] = 5536, + [5810] = 5515, + [5811] = 5538, + [5812] = 5539, + [5813] = 5540, + [5814] = 5541, + [5815] = 5542, + [5816] = 5543, + [5817] = 5544, + [5818] = 5545, + [5819] = 5546, + [5820] = 5534, + [5821] = 5552, + [5822] = 5553, + [5823] = 5551, + [5824] = 5550, + [5825] = 5548, + [5826] = 5547, + [5827] = 5533, + [5828] = 5532, + [5829] = 5531, + [5830] = 5530, + [5831] = 5529, + [5832] = 5528, + [5833] = 5527, + [5834] = 5520, + [5835] = 5519, + [5836] = 5526, + [5837] = 5525, + [5838] = 5524, + [5839] = 5523, + [5840] = 5522, + [5841] = 5521, + [5842] = 5520, + [5843] = 5519, + [5844] = 5518, + [5845] = 5517, + [5846] = 5516, + [5847] = 5535, + [5848] = 5536, + [5849] = 5515, + [5850] = 5538, + [5851] = 5539, + [5852] = 5540, + [5853] = 5541, + [5854] = 5542, + [5855] = 5543, + [5856] = 5544, + [5857] = 5545, + [5858] = 5546, + [5859] = 5534, + [5860] = 5552, + [5861] = 5553, + [5862] = 5551, + [5863] = 5550, + [5864] = 5548, + [5865] = 5547, + [5866] = 5518, + [5867] = 5517, + [5868] = 5516, + [5869] = 5523, + [5870] = 5532, + [5871] = 5531, + [5872] = 5530, + [5873] = 5529, + [5874] = 5528, + [5875] = 5527, + [5876] = 5526, + [5877] = 5525, + [5878] = 5524, + [5879] = 5523, + [5880] = 5522, + [5881] = 5521, + [5882] = 5520, + [5883] = 5519, + [5884] = 5518, + [5885] = 5517, + [5886] = 5516, + [5887] = 5535, + [5888] = 5536, + [5889] = 5515, + [5890] = 5538, + [5891] = 5539, + [5892] = 5540, + [5893] = 5541, + [5894] = 5542, + [5895] = 5543, + [5896] = 5544, + [5897] = 5545, + [5898] = 5546, + [5899] = 5543, + [5900] = 5535, + [5901] = 5534, + [5902] = 5552, + [5903] = 5553, + [5904] = 5551, + [5905] = 5550, + [5906] = 5548, + [5907] = 5547, + [5908] = 5533, + [5909] = 5532, + [5910] = 5531, + [5911] = 5530, + [5912] = 5529, + [5913] = 5528, + [5914] = 5527, + [5915] = 5526, + [5916] = 5525, + [5917] = 5524, + [5918] = 5548, + [5919] = 5522, + [5920] = 5521, + [5921] = 5520, + [5922] = 5519, + [5923] = 5518, + [5924] = 5517, + [5925] = 5516, + [5926] = 5535, + [5927] = 5536, + [5928] = 5515, + [5929] = 5538, + [5930] = 5539, + [5931] = 5540, + [5932] = 5541, + [5933] = 5536, + [5934] = 5515, + [5935] = 5542, + [5936] = 5543, + [5937] = 5544, + [5938] = 5545, + [5939] = 5546, + [5940] = 5534, + [5941] = 5552, + [5942] = 5553, + [5943] = 5551, + [5944] = 5550, + [5945] = 5539, + [5946] = 5547, + [5947] = 5533, + [5948] = 5532, + [5949] = 5531, + [5950] = 5530, + [5951] = 5529, + [5952] = 5528, + [5953] = 5527, + [5954] = 5526, + [5955] = 5525, + [5956] = 5524, + [5957] = 5523, + [5958] = 5522, + [5959] = 5521, + [5960] = 5520, + [5961] = 5519, + [5962] = 5518, + [5963] = 5517, + [5964] = 5516, + [5965] = 5538, + [5966] = 5539, + [5967] = 5540, + [5968] = 5535, + [5969] = 5536, + [5970] = 5515, + [5971] = 5538, + [5972] = 5539, + [5973] = 5540, + [5974] = 5541, + [5975] = 5542, + [5976] = 5543, + [5977] = 5544, + [5978] = 5545, + [5979] = 5546, + [5980] = 5534, + [5981] = 5552, + [5982] = 5553, + [5983] = 5551, + [5984] = 5550, + [5985] = 5548, + [5986] = 5547, + [5987] = 5533, + [5988] = 5532, + [5989] = 5531, + [5990] = 5530, + [5991] = 5529, + [5992] = 5528, + [5993] = 5527, + [5994] = 5526, + [5995] = 5525, + [5996] = 5524, + [5997] = 5523, + [5998] = 5522, + [5999] = 5541, + [6000] = 5542, + [6001] = 5521, + [6002] = 5520, + [6003] = 5519, + [6004] = 5518, + [6005] = 5517, + [6006] = 5516, + [6007] = 5535, + [6008] = 5536, + [6009] = 5515, + [6010] = 5538, + [6011] = 5535, + [6012] = 5540, + [6013] = 5541, + [6014] = 5542, + [6015] = 5543, + [6016] = 5544, + [6017] = 5545, + [6018] = 5546, + [6019] = 5534, + [6020] = 5552, + [6021] = 5553, + [6022] = 5551, + [6023] = 5550, + [6024] = 5548, + [6025] = 5547, + [6026] = 5533, + [6027] = 5532, + [6028] = 5531, + [6029] = 5530, + [6030] = 5529, + [6031] = 5528, + [6032] = 5544, + [6033] = 5545, + [6034] = 5527, + [6035] = 5526, + [6036] = 5525, + [6037] = 5524, + [6038] = 5523, + [6039] = 5522, + [6040] = 5521, + [6041] = 5520, + [6042] = 5519, + [6043] = 5518, + [6044] = 5517, + [6045] = 5516, + [6046] = 5524, + [6047] = 5536, + [6048] = 5515, + [6049] = 5538, + [6050] = 5539, + [6051] = 5540, + [6052] = 5541, + [6053] = 5542, + [6054] = 5543, + [6055] = 5544, + [6056] = 5545, + [6057] = 5546, + [6058] = 5534, + [6059] = 5552, + [6060] = 5553, + [6061] = 5551, + [6062] = 5550, + [6063] = 5548, + [6064] = 5546, + [6065] = 5534, + [6066] = 5552, + [6067] = 5547, + [6068] = 5533, + [6069] = 5532, + [6070] = 5531, + [6071] = 5530, + [6072] = 5529, + [6073] = 5528, + [6074] = 5527, + [6075] = 5526, + [6076] = 5525, + [6077] = 5531, + [6078] = 5523, + [6079] = 5522, + [6080] = 5521, + [6081] = 5520, + [6082] = 5519, + [6083] = 5518, + [6084] = 5517, + [6085] = 5516, + [6086] = 5535, + [6087] = 5536, + [6088] = 5515, + [6089] = 5538, + [6090] = 5539, + [6091] = 5540, + [6092] = 5541, + [6093] = 5542, + [6094] = 5543, + [6095] = 5544, + [6096] = 5545, + [6097] = 5553, + [6098] = 5546, + [6099] = 5534, + [6100] = 5552, + [6101] = 5553, + [6102] = 5551, + [6103] = 5550, + [6104] = 5548, + [6105] = 5547, + [6106] = 5533, + [6107] = 5532, + [6108] = 5531, + [6109] = 5530, + [6110] = 5529, + [6111] = 5528, + [6112] = 5527, + [6113] = 5526, + [6114] = 5525, + [6115] = 5524, + [6116] = 5523, + [6117] = 5522, + [6118] = 5521, + [6119] = 5520, + [6120] = 5519, + [6121] = 5518, + [6122] = 5517, + [6123] = 5516, + [6124] = 5535, + [6125] = 5536, + [6126] = 5515, + [6127] = 5538, + [6128] = 5539, + [6129] = 5540, + [6130] = 5541, + [6131] = 5551, + [6132] = 5542, + [6133] = 5543, + [6134] = 5544, + [6135] = 5545, + [6136] = 5546, + [6137] = 5534, + [6138] = 5552, + [6139] = 5553, + [6140] = 5551, + [6141] = 5550, + [6142] = 5548, + [6143] = 5547, + [6144] = 5533, + [6145] = 5532, + [6146] = 5546, + [6147] = 5530, + [6148] = 5529, + [6149] = 5528, + [6150] = 5527, + [6151] = 5526, + [6152] = 5525, + [6153] = 5524, + [6154] = 5523, + [6155] = 5522, + [6156] = 5521, + [6157] = 5520, + [6158] = 5519, + [6159] = 5518, + [6160] = 5517, + [6161] = 5516, + [6162] = 5535, + [6163] = 5536, + [6164] = 5550, + [6165] = 5515, + [6166] = 5538, + [6167] = 5539, + [6168] = 5540, + [6169] = 5541, + [6170] = 5542, + [6171] = 5543, + [6172] = 5544, + [6173] = 5545, + [6174] = 5547, + [6175] = 5534, + [6176] = 5552, + [6177] = 5553, + [6178] = 5551, + [6179] = 5550, + [6180] = 5548, + [6181] = 5547, + [6182] = 5533, + [6183] = 5532, + [6184] = 5531, + [6185] = 5530, + [6186] = 5529, + [6187] = 5528, + [6188] = 5527, + [6189] = 5526, + [6190] = 5525, + [6191] = 5524, + [6192] = 5523, + [6193] = 5522, + [6194] = 5521, + [6195] = 5520, + [6196] = 5519, + [6197] = 5518, + [6198] = 5548, + [6199] = 5517, + [6200] = 5516, + [6201] = 5535, + [6202] = 5536, + [6203] = 5538, + [6204] = 5539, + [6205] = 5540, + [6206] = 5541, + [6207] = 5542, + [6208] = 5543, + [6209] = 5544, + [6210] = 5545, + [6211] = 5546, + [6212] = 5534, + [6213] = 5552, + [6214] = 5553, + [6215] = 5551, + [6216] = 5550, + [6217] = 5548, + [6218] = 5534, + [6219] = 5533, + [6220] = 5532, + [6221] = 5531, + [6222] = 5530, + [6223] = 5529, + [6224] = 5528, + [6225] = 5527, + [6226] = 5526, + [6227] = 5525, + [6228] = 5524, + [6229] = 5523, + [6230] = 5522, + [6231] = 5547, + [6232] = 5521, + [6233] = 5520, + [6234] = 5519, + [6235] = 5518, + [6236] = 5517, + [6237] = 5516, + [6238] = 5535, + [6239] = 5536, + [6240] = 5515, + [6241] = 5538, + [6242] = 5539, + [6243] = 5540, + [6244] = 5541, + [6245] = 5542, + [6246] = 5543, + [6247] = 5544, + [6248] = 5545, + [6249] = 5546, + [6250] = 5534, + [6251] = 5552, + [6252] = 5553, + [6253] = 5551, + [6254] = 5550, + [6255] = 5548, + [6256] = 5547, + [6257] = 5533, + [6258] = 5532, + [6259] = 5531, + [6260] = 5530, + [6261] = 5529, + [6262] = 5528, + [6263] = 5527, + [6264] = 5526, + [6265] = 5525, + [6266] = 5524, + [6267] = 5523, + [6268] = 5522, + [6269] = 5521, + [6270] = 5520, + [6271] = 5519, + [6272] = 5518, + [6273] = 5517, + [6274] = 5516, + [6275] = 5535, + [6276] = 5536, + [6277] = 5515, + [6278] = 5538, + [6279] = 5539, + [6280] = 5540, + [6281] = 5541, + [6282] = 5542, + [6283] = 5543, + [6284] = 5544, + [6285] = 5545, + [6286] = 5546, + [6287] = 5525, + [6288] = 5552, + [6289] = 5553, + [6290] = 5551, + [6291] = 5550, + [6292] = 5548, + [6293] = 5547, + [6294] = 5533, + [6295] = 5532, + [6296] = 5531, + [6297] = 5530, + [6298] = 5529, + [6299] = 5528, + [6300] = 5527, + [6301] = 5526, + [6302] = 5517, + [6303] = 5524, + [6304] = 5523, + [6305] = 5522, + [6306] = 5521, + [6307] = 5520, + [6308] = 5519, + [6309] = 5518, + [6310] = 5517, + [6311] = 5516, + [6312] = 5535, + [6313] = 5536, + [6314] = 5515, + [6315] = 5538, + [6316] = 5539, + [6317] = 5540, + [6318] = 5541, + [6319] = 5542, + [6320] = 5543, + [6321] = 5544, + [6322] = 5545, + [6323] = 5546, + [6324] = 5534, + [6325] = 5552, + [6326] = 5553, + [6327] = 5551, + [6328] = 5550, + [6329] = 5548, + [6330] = 5547, + [6331] = 5533, + [6332] = 5532, + [6333] = 5531, + [6334] = 5530, + [6335] = 5529, + [6336] = 5528, + [6337] = 5527, + [6338] = 5526, + [6339] = 5525, + [6340] = 5524, + [6341] = 5523, + [6342] = 5522, + [6343] = 5521, + [6344] = 5520, + [6345] = 5519, + [6346] = 5518, + [6347] = 5528, + [6348] = 5516, + [6349] = 5535, + [6350] = 5536, + [6351] = 5515, + [6352] = 5538, + [6353] = 5539, + [6354] = 5540, + [6355] = 5541, + [6356] = 5542, + [6357] = 5543, + [6358] = 5544, + [6359] = 5545, + [6360] = 5546, + [6361] = 6361, + [6362] = 6362, + [6363] = 5534, + [6364] = 5552, + [6365] = 5553, + [6366] = 5551, + [6367] = 5550, + [6368] = 5548, + [6369] = 5547, + [6370] = 5533, + [6371] = 5532, + [6372] = 5531, + [6373] = 5530, + [6374] = 5529, + [6375] = 5528, + [6376] = 5527, + [6377] = 5526, + [6378] = 5525, + [6379] = 5524, + [6380] = 5523, + [6381] = 5522, + [6382] = 5521, + [6383] = 5520, + [6384] = 5519, + [6385] = 5518, + [6386] = 5517, + [6387] = 5516, + [6388] = 5535, + [6389] = 5536, + [6390] = 5515, + [6391] = 5538, + [6392] = 5539, + [6393] = 5540, + [6394] = 5541, + [6395] = 5542, + [6396] = 5543, + [6397] = 5544, + [6398] = 5545, + [6399] = 5546, + [6400] = 5534, + [6401] = 5552, + [6402] = 5553, + [6403] = 5551, + [6404] = 5550, + [6405] = 5548, + [6406] = 5547, + [6407] = 5533, + [6408] = 5532, + [6409] = 5531, + [6410] = 5530, + [6411] = 5529, + [6412] = 5540, + [6413] = 5527, + [6414] = 5526, + [6415] = 5525, + [6416] = 5524, + [6417] = 5523, + [6418] = 5522, + [6419] = 5521, + [6420] = 5520, + [6421] = 5519, + [6422] = 5518, + [6423] = 5517, + [6424] = 5516, + [6425] = 5535, + [6426] = 5536, + [6427] = 5515, + [6428] = 5538, + [6429] = 5539, + [6430] = 5533, + [6431] = 5541, + [6432] = 5542, + [6433] = 5543, + [6434] = 5544, + [6435] = 5545, + [6436] = 5546, + [6437] = 5534, + [6438] = 5552, + [6439] = 5553, + [6440] = 5551, + [6441] = 5550, + [6442] = 5548, + [6443] = 5547, + [6444] = 5533, + [6445] = 5532, + [6446] = 5531, + [6447] = 5530, + [6448] = 5529, + [6449] = 5528, + [6450] = 5527, + [6451] = 5526, + [6452] = 5525, + [6453] = 5524, + [6454] = 5523, + [6455] = 5522, + [6456] = 5521, + [6457] = 5520, + [6458] = 5519, + [6459] = 5518, + [6460] = 5517, + [6461] = 5516, + [6462] = 5535, + [6463] = 5536, + [6464] = 5515, + [6465] = 5538, + [6466] = 5539, + [6467] = 5540, + [6468] = 5541, + [6469] = 5542, + [6470] = 5543, + [6471] = 5544, + [6472] = 5545, + [6473] = 5546, + [6474] = 5534, + [6475] = 5552, + [6476] = 5553, + [6477] = 5551, + [6478] = 5550, + [6479] = 5548, + [6480] = 5547, + [6481] = 5548, + [6482] = 5532, + [6483] = 5531, + [6484] = 5530, + [6485] = 5529, + [6486] = 5528, + [6487] = 5527, + [6488] = 5526, + [6489] = 5525, + [6490] = 5524, + [6491] = 5523, + [6492] = 5522, + [6493] = 5521, + [6494] = 5520, + [6495] = 5519, + [6496] = 5518, + [6497] = 5517, + [6498] = 5516, + [6499] = 5535, + [6500] = 5536, + [6501] = 5515, + [6502] = 5538, + [6503] = 5539, + [6504] = 5540, + [6505] = 5541, + [6506] = 5542, + [6507] = 5543, + [6508] = 5544, + [6509] = 5545, + [6510] = 5546, + [6511] = 5534, + [6512] = 5552, + [6513] = 5553, + [6514] = 5551, + [6515] = 5550, + [6516] = 5548, + [6517] = 5547, + [6518] = 5533, + [6519] = 5532, + [6520] = 5531, + [6521] = 5530, + [6522] = 5529, + [6523] = 5528, + [6524] = 5527, + [6525] = 5526, + [6526] = 5525, + [6527] = 5524, + [6528] = 5523, + [6529] = 5522, + [6530] = 5521, + [6531] = 5520, + [6532] = 5519, + [6533] = 5518, + [6534] = 5517, + [6535] = 5516, + [6536] = 5535, + [6537] = 5536, + [6538] = 5515, + [6539] = 5538, + [6540] = 5539, + [6541] = 5540, + [6542] = 5541, + [6543] = 5542, + [6544] = 5543, + [6545] = 5544, + [6546] = 5545, + [6547] = 5546, + [6548] = 5534, + [6549] = 5552, + [6550] = 5553, + [6551] = 5551, + [6552] = 5550, + [6553] = 5530, + [6554] = 5547, + [6555] = 5533, + [6556] = 5532, + [6557] = 5531, + [6558] = 5539, + [6559] = 5529, + [6560] = 5528, + [6561] = 5527, + [6562] = 5526, + [6563] = 5525, + [6564] = 5524, + [6565] = 5523, + [6566] = 5522, + [6567] = 5521, + [6568] = 5520, + [6569] = 5519, + [6570] = 5518, + [6571] = 5517, + [6572] = 5516, + [6573] = 5535, + [6574] = 5536, + [6575] = 5515, + [6576] = 5538, + [6577] = 5539, + [6578] = 5540, + [6579] = 5541, + [6580] = 5542, + [6581] = 5543, + [6582] = 5544, + [6583] = 5545, + [6584] = 5546, + [6585] = 5534, + [6586] = 5552, + [6587] = 5553, + [6588] = 5551, + [6589] = 5550, + [6590] = 5548, + [6591] = 5547, + [6592] = 5533, + [6593] = 5532, + [6594] = 5531, + [6595] = 5530, + [6596] = 5529, + [6597] = 5528, + [6598] = 5527, + [6599] = 5526, + [6600] = 5525, + [6601] = 5524, + [6602] = 5523, + [6603] = 5522, + [6604] = 5521, + [6605] = 5520, + [6606] = 5519, + [6607] = 5518, + [6608] = 5517, + [6609] = 5516, + [6610] = 5535, + [6611] = 5536, + [6612] = 5515, + [6613] = 5538, + [6614] = 5524, + [6615] = 5540, + [6616] = 5541, + [6617] = 5542, + [6618] = 5543, + [6619] = 5544, + [6620] = 5545, + [6621] = 5546, + [6622] = 5534, + [6623] = 5552, + [6624] = 5553, + [6625] = 5551, + [6626] = 5550, + [6627] = 5548, + [6628] = 5547, + [6629] = 5533, + [6630] = 5532, + [6631] = 5531, + [6632] = 5530, + [6633] = 5529, + [6634] = 5528, + [6635] = 5527, + [6636] = 5526, + [6637] = 5525, + [6638] = 5524, + [6639] = 5523, + [6640] = 5522, + [6641] = 5521, + [6642] = 5520, + [6643] = 5519, + [6644] = 5518, + [6645] = 5517, + [6646] = 5516, + [6647] = 5535, + [6648] = 5536, + [6649] = 5515, + [6650] = 5538, + [6651] = 5539, + [6652] = 5540, + [6653] = 5541, + [6654] = 5542, + [6655] = 5543, + [6656] = 5544, + [6657] = 5545, + [6658] = 5546, + [6659] = 5534, + [6660] = 5552, + [6661] = 5553, + [6662] = 5551, + [6663] = 5550, + [6664] = 5548, + [6665] = 5547, + [6666] = 5533, + [6667] = 5532, + [6668] = 5531, + [6669] = 5530, + [6670] = 5529, + [6671] = 5528, + [6672] = 5527, + [6673] = 5526, + [6674] = 5525, + [6675] = 5515, + [6676] = 5523, + [6677] = 5522, + [6678] = 5521, + [6679] = 5520, + [6680] = 5519, + [6681] = 5518, + [6682] = 5517, + [6683] = 5516, + [6684] = 5535, + [6685] = 5536, + [6686] = 5532, + [6687] = 5538, + [6688] = 5539, + [6689] = 5540, + [6690] = 5541, + [6691] = 5542, + [6692] = 5543, + [6693] = 5544, + [6694] = 5545, + [6695] = 5546, + [6696] = 5534, + [6697] = 5552, + [6698] = 5553, + [6699] = 5551, + [6700] = 5550, + [6701] = 5548, + [6702] = 5547, + [6703] = 5533, + [6704] = 5532, + [6705] = 5531, + [6706] = 5530, + [6707] = 5529, + [6708] = 5528, + [6709] = 5527, + [6710] = 5526, + [6711] = 5525, + [6712] = 5524, + [6713] = 5523, + [6714] = 5522, + [6715] = 5521, + [6716] = 5520, + [6717] = 5519, + [6718] = 5518, + [6719] = 5517, + [6720] = 5516, + [6721] = 5535, + [6722] = 5536, + [6723] = 5515, + [6724] = 5538, + [6725] = 5539, + [6726] = 6726, + [6727] = 5540, + [6728] = 5541, + [6729] = 5542, + [6730] = 5543, + [6731] = 5544, + [6732] = 5545, + [6733] = 5546, + [6734] = 5534, + [6735] = 5552, + [6736] = 5553, + [6737] = 5551, + [6738] = 5550, + [6739] = 5548, + [6740] = 5547, + [6741] = 5533, + [6742] = 5547, + [6743] = 5531, + [6744] = 5530, + [6745] = 5529, + [6746] = 5528, + [6747] = 5527, + [6748] = 5526, + [6749] = 5525, + [6750] = 5524, + [6751] = 5523, + [6752] = 5522, + [6753] = 5521, + [6754] = 5520, + [6755] = 5519, + [6756] = 5518, + [6757] = 5517, + [6758] = 5516, + [6759] = 5535, + [6760] = 5536, + [6761] = 5515, + [6762] = 5538, + [6763] = 5539, + [6764] = 5540, + [6765] = 5541, + [6766] = 5542, + [6767] = 5543, + [6768] = 5544, + [6769] = 5545, + [6770] = 5546, + [6771] = 5534, + [6772] = 5552, + [6773] = 5553, + [6774] = 5551, + [6775] = 5550, + [6776] = 5548, + [6777] = 5547, + [6778] = 5533, + [6779] = 5532, + [6780] = 5531, + [6781] = 5530, + [6782] = 5529, + [6783] = 5528, + [6784] = 5527, + [6785] = 5526, + [6786] = 5525, + [6787] = 5524, + [6788] = 5523, + [6789] = 5522, + [6790] = 5521, + [6791] = 5520, + [6792] = 5519, + [6793] = 5518, + [6794] = 5517, + [6795] = 5516, + [6796] = 5535, + [6797] = 5536, + [6798] = 5515, + [6799] = 5538, + [6800] = 5539, + [6801] = 5540, + [6802] = 5541, + [6803] = 5542, + [6804] = 5543, + [6805] = 5544, + [6806] = 5545, + [6807] = 5546, + [6808] = 5534, + [6809] = 5552, + [6810] = 5553, + [6811] = 5551, + [6812] = 5550, + [6813] = 5548, + [6814] = 6726, + [6815] = 6362, + [6816] = 6726, + [6817] = 6362, + [6818] = 6726, + [6819] = 6362, + [6820] = 6726, + [6821] = 6362, + [6822] = 6726, + [6823] = 6362, + [6824] = 6726, + [6825] = 6362, + [6826] = 6726, + [6827] = 6362, + [6828] = 6726, + [6829] = 6362, + [6830] = 6726, + [6831] = 6362, + [6832] = 6726, + [6833] = 6362, + [6834] = 6726, + [6835] = 6362, + [6836] = 6726, + [6837] = 6362, + [6838] = 6726, + [6839] = 6362, + [6840] = 6726, + [6841] = 6362, + [6842] = 6726, + [6843] = 6362, + [6844] = 6726, + [6845] = 6362, + [6846] = 6726, + [6847] = 6362, + [6848] = 6726, + [6849] = 6362, + [6850] = 6726, + [6851] = 6362, + [6852] = 6726, + [6853] = 6362, + [6854] = 6726, + [6855] = 6362, + [6856] = 6726, + [6857] = 6362, + [6858] = 6726, + [6859] = 6362, + [6860] = 6726, + [6861] = 6362, + [6862] = 6726, + [6863] = 6362, + [6864] = 6726, + [6865] = 6362, + [6866] = 6726, + [6867] = 6362, + [6868] = 6726, + [6869] = 6362, + [6870] = 6726, + [6871] = 6362, + [6872] = 6726, + [6873] = 6362, + [6874] = 6726, + [6875] = 6362, + [6876] = 6726, + [6877] = 6362, + [6878] = 6726, + [6879] = 6362, + [6880] = 6726, + [6881] = 6362, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -8147,668 +8310,744 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(115); - if (lookahead == '!') ADVANCE(983); - if (lookahead == '(') ADVANCE(894); - if (lookahead == ')') ADVANCE(895); - if (lookahead == ',') ADVANCE(135); - if (lookahead == '-') ADVANCE(982); - if (lookahead == '?') ADVANCE(1031); - if (lookahead == '@') ADVANCE(985); - if (lookahead == '{') ADVANCE(984); - if (lookahead == '}') ADVANCE(1029); + if (eof) ADVANCE(118); + if (lookahead == '!') ADVANCE(988); + if (lookahead == '(') ADVANCE(899); + if (lookahead == ')') ADVANCE(900); + if (lookahead == ',') ADVANCE(138); + if (lookahead == '-') ADVANCE(987); + if (lookahead == '?') ADVANCE(1037); + if (lookahead == '@') ADVANCE(991); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); + if (lookahead == '}') ADVANCE(1035); if (lookahead == '"' || - lookahead == '\'') ADVANCE(896); + lookahead == '\'') ADVANCE(895); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) - if (lookahead != 0) ADVANCE(1031); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 1: - if (lookahead == '!') ADVANCE(983); - if (lookahead == '@') ADVANCE(1030); + if (lookahead == '!') ADVANCE(988); + if (lookahead == '@') ADVANCE(1036); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(1) - if (lookahead == '(' || - lookahead == ')' || + if (lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || + lookahead == 'x' || lookahead == '{' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 2: - if (lookahead == '!') ADVANCE(120); + if (lookahead == '!') ADVANCE(123); END_STATE(); case 3: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(1022); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1028); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(3) if (lookahead == '!' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || + lookahead == 'x' || lookahead == '{' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 4: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(1027); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1033); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(4) if (lookahead == '!' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || + lookahead == 'x' || lookahead == '{' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 5: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(988); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(994); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(5) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 6: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(990); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(996); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(6) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 7: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(989); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(995); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(7) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 8: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(995); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(997); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(8) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 9: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(991); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(992); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(9) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 10: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(993); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(998); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(10) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 11: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(997); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(999); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(11) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 12: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(986); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1000); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(12) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 13: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(992); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1001); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(13) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 14: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(999); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1002); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(14) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 15: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(994); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1003); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(15) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 16: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(1001); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1004); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(16) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 17: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(996); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1005); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(17) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 18: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(1003); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1006); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(18) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 19: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(998); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1007); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(19) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 20: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(1005); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1008); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(20) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 21: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(1000); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1009); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(21) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 22: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(1007); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1010); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(22) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 23: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(1002); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1011); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(23) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 24: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(1017); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1012); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(24) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 25: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(1004); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1013); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(25) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 26: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(1009); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1014); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(26) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 27: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(1006); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1023); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(27) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 28: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(1011); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1016); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(28) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 29: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(1008); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1015); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(29) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 30: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(1013); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1018); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(30) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 31: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(1010); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1017); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(31) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 32: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(1014); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1019); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(32) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 33: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(1012); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1020); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(33) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 34: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(1015); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1021); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(34) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 35: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(1016); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1022); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(35) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 36: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(1019); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1024); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(36) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 37: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(1018); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1025); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(37) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 38: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(1020); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1026); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(38) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 39: - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(1021); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(1027); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(39) - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 40: - if (lookahead == '(') ADVANCE(132); - if (lookahead == ')') ADVANCE(895); + if (lookahead == '(') ADVANCE(135); + if (lookahead == ')') ADVANCE(900); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(891); - if (lookahead != 0) ADVANCE(893); + lookahead == ' ') ADVANCE(896); + if (lookahead != 0) ADVANCE(898); END_STATE(); case 41: - if (lookahead == '(') ADVANCE(132); - if (lookahead == ')') ADVANCE(133); + if (lookahead == '(') ADVANCE(135); + if (lookahead == ')') ADVANCE(136); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(892); - if (lookahead != 0) ADVANCE(893); + lookahead == ' ') ADVANCE(897); + if (lookahead != 0) ADVANCE(898); END_STATE(); case 42: - if (lookahead == '(') ADVANCE(132); - if (lookahead == '@') ADVANCE(95); + if (lookahead == '(') ADVANCE(135); + if (lookahead == '@') ADVANCE(97); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(42) END_STATE(); case 43: - if (lookahead == ')') ADVANCE(133); - if (lookahead == ',') ADVANCE(135); - if (lookahead == '?') ADVANCE(1031); - if (lookahead == '@') ADVANCE(1030); + if (lookahead == ')') ADVANCE(136); + if (lookahead == ',') ADVANCE(138); + if (lookahead == '?') ADVANCE(1037); + if (lookahead == '@') ADVANCE(1036); if (lookahead == '"' || - lookahead == '\'') ADVANCE(896); + lookahead == '\'') ADVANCE(901); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8816,17 +9055,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '!' || lookahead == '(' || lookahead == '-' || + lookahead == 'x' || lookahead == '{' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 44: - if (lookahead == ')') ADVANCE(133); - if (lookahead == '@') ADVANCE(1030); + if (lookahead == ')') ADVANCE(136); + if (lookahead == '@') ADVANCE(1036); if (lookahead == '"' || - lookahead == '\'') ADVANCE(896); + lookahead == '\'') ADVANCE(901); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8834,28 +9074,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '!' || lookahead == '(' || lookahead == '-' || + lookahead == 'x' || lookahead == '{' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 45: if (lookahead == '-') ADVANCE(45); if (lookahead != 0 && lookahead != '!' && - lookahead != '(' && - lookahead != ')' && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && lookahead != ',' && lookahead != '?' && lookahead != '@' && + lookahead != 'x' && lookahead != '{' && - lookahead != '}') ADVANCE(1031); + lookahead != '}') ADVANCE(1037); END_STATE(); case 46: if (lookahead == '-') ADVANCE(48); END_STATE(); case 47: if (lookahead == '-') ADVANCE(47); - if (lookahead == '}') ADVANCE(112); + if (lookahead == '}') ADVANCE(114); if (lookahead != 0) ADVANCE(48); END_STATE(); case 48: @@ -8863,57 +9105,51 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(48); END_STATE(); case 49: - if (lookahead == '@') ADVANCE(1022); - if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(49) - if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || - lookahead == '-' || - lookahead == '{' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + if (lookahead == '=') ADVANCE(894); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 50: - if (lookahead == '@') ADVANCE(1030); - if (lookahead == '}') ADVANCE(1029); + if (lookahead == '@') ADVANCE(1028); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(50) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '{') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == 'x' || + lookahead == '{' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 51: - if (lookahead == '@') ADVANCE(1030); + if (lookahead == '@') ADVANCE(1036); + if (lookahead == '}') ADVANCE(1035); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(51) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '{' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == 'x' || + lookahead == '{') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 52: - if (lookahead == '@') ADVANCE(1027); + if (lookahead == '@') ADVANCE(1036); + if (lookahead == '"' || + lookahead == '\'') ADVANCE(895); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8922,9851 +9158,9945 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || + lookahead == 'x' || lookahead == '{' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 53: - if (lookahead == '@') ADVANCE(988); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(1036); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(53) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == 'x' || + lookahead == '{' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 54: - if (lookahead == '@') ADVANCE(990); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(1033); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(54) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == 'x' || + lookahead == '{' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 55: - if (lookahead == '@') ADVANCE(989); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(994); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(55) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 56: - if (lookahead == '@') ADVANCE(995); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(996); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(56) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 57: - if (lookahead == '@') ADVANCE(991); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(995); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(57) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 58: - if (lookahead == '@') ADVANCE(993); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(997); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(58) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 59: - if (lookahead == '@') ADVANCE(997); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(1029); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(59) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == 'x' || + lookahead == '{' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 60: - if (lookahead == '@') ADVANCE(1023); + if (lookahead == '@') ADVANCE(1034); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(60) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || + lookahead == 'x' || lookahead == '{' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 61: - if (lookahead == '@') ADVANCE(1028); + if (lookahead == '@') ADVANCE(992); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(61) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '{' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 62: - if (lookahead == '@') ADVANCE(986); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(998); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(62) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 63: - if (lookahead == '@') ADVANCE(992); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(999); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(63) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 64: - if (lookahead == '@') ADVANCE(999); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(1030); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(64) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == 'x' || + lookahead == '{' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 65: - if (lookahead == '@') ADVANCE(1024); + if (lookahead == '@') ADVANCE(1000); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(65) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '{' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 66: - if (lookahead == '@') ADVANCE(994); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(1001); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(66) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 67: - if (lookahead == '@') ADVANCE(1001); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(1031); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(67) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == 'x' || + lookahead == '{' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 68: - if (lookahead == '@') ADVANCE(1025); + if (lookahead == '@') ADVANCE(1002); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(68) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '{' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 69: - if (lookahead == '@') ADVANCE(996); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(1003); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(69) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 70: - if (lookahead == '@') ADVANCE(1003); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(1032); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(70) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == 'x' || + lookahead == '{' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 71: - if (lookahead == '@') ADVANCE(1026); + if (lookahead == '@') ADVANCE(1004); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(71) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '{' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 72: - if (lookahead == '@') ADVANCE(998); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(1005); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(72) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 73: - if (lookahead == '@') ADVANCE(1005); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(1006); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(73) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 74: - if (lookahead == '@') ADVANCE(1000); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(1007); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(74) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 75: - if (lookahead == '@') ADVANCE(1007); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(1008); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(75) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 76: - if (lookahead == '@') ADVANCE(1002); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(1009); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(76) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 77: - if (lookahead == '@') ADVANCE(1017); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(1010); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(77) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 78: - if (lookahead == '@') ADVANCE(1004); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(1011); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(78) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 79: - if (lookahead == '@') ADVANCE(1009); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(1012); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(79) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 80: - if (lookahead == '@') ADVANCE(1006); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(1013); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(80) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 81: - if (lookahead == '@') ADVANCE(1011); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(1014); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(81) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 82: - if (lookahead == '@') ADVANCE(1008); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(1023); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(82) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 83: - if (lookahead == '@') ADVANCE(1013); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(1016); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(83) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 84: - if (lookahead == '@') ADVANCE(1010); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(1015); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(84) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 85: - if (lookahead == '@') ADVANCE(1014); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(1018); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(85) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 86: - if (lookahead == '@') ADVANCE(1012); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(1017); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(86) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 87: - if (lookahead == '@') ADVANCE(1015); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(1019); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(87) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 88: - if (lookahead == '@') ADVANCE(1016); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(1020); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(88) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 89: - if (lookahead == '@') ADVANCE(1019); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(1021); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(89) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 90: - if (lookahead == '@') ADVANCE(1018); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(1022); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(90) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 91: - if (lookahead == '@') ADVANCE(1020); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(1024); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(91) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 92: - if (lookahead == '@') ADVANCE(1021); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '@') ADVANCE(1025); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(92) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 93: - if (lookahead == 'a') ADVANCE(106); + if (lookahead == '@') ADVANCE(1026); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); + if (lookahead == ',' || + lookahead == '?') ADVANCE(1037); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(93) + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 94: - if (lookahead == 'a') ADVANCE(109); + if (lookahead == '@') ADVANCE(1027); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); + if (lookahead == ',' || + lookahead == '?') ADVANCE(1037); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(94) + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); case 95: - if (lookahead == 'c') ADVANCE(93); - if (lookahead == 'd') ADVANCE(98); - if (lookahead == 'e') ADVANCE(104); + if (lookahead == 'a') ADVANCE(108); END_STATE(); case 96: - if (lookahead == 'c') ADVANCE(101); + if (lookahead == 'a') ADVANCE(111); END_STATE(); case 97: - if (lookahead == 'd') ADVANCE(105); + if (lookahead == 'c') ADVANCE(95); + if (lookahead == 'd') ADVANCE(100); + if (lookahead == 'e') ADVANCE(106); END_STATE(); case 98: - if (lookahead == 'e') ADVANCE(100); + if (lookahead == 'c') ADVANCE(103); END_STATE(); case 99: - if (lookahead == 'e') ADVANCE(859); + if (lookahead == 'd') ADVANCE(107); END_STATE(); case 100: - if (lookahead == 'f') ADVANCE(94); + if (lookahead == 'e') ADVANCE(102); END_STATE(); case 101: - if (lookahead == 'h') ADVANCE(858); + if (lookahead == 'e') ADVANCE(862); END_STATE(); case 102: - if (lookahead == 'i') ADVANCE(108); + if (lookahead == 'f') ADVANCE(96); END_STATE(); case 103: - if (lookahead == 'l') ADVANCE(107); + if (lookahead == 'h') ADVANCE(861); END_STATE(); case 104: - if (lookahead == 'n') ADVANCE(97); + if (lookahead == 'i') ADVANCE(110); END_STATE(); case 105: - if (lookahead == 's') ADVANCE(110); + if (lookahead == 'l') ADVANCE(109); END_STATE(); case 106: - if (lookahead == 's') ADVANCE(99); + if (lookahead == 'n') ADVANCE(99); END_STATE(); case 107: - if (lookahead == 't') ADVANCE(857); + if (lookahead == 's') ADVANCE(112); END_STATE(); case 108: - if (lookahead == 't') ADVANCE(96); + if (lookahead == 's') ADVANCE(101); END_STATE(); case 109: - if (lookahead == 'u') ADVANCE(103); + if (lookahead == 't') ADVANCE(860); END_STATE(); case 110: - if (lookahead == 'w') ADVANCE(102); + if (lookahead == 't') ADVANCE(98); END_STATE(); case 111: - if (lookahead == '}') ADVANCE(121); + if (lookahead == 'u') ADVANCE(105); END_STATE(); case 112: - if (lookahead == '}') ADVANCE(116); + if (lookahead == 'w') ADVANCE(104); END_STATE(); case 113: - if (eof) ADVANCE(115); - if (lookahead == '(') ADVANCE(894); - if (lookahead == '@') ADVANCE(987); - if (lookahead == '{') ADVANCE(984); + if (lookahead == '}') ADVANCE(124); + END_STATE(); + case 114: + if (lookahead == '}') ADVANCE(119); + END_STATE(); + case 115: + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); + END_STATE(); + case 116: + if (eof) ADVANCE(118); + if (lookahead == '(') ADVANCE(899); + if (lookahead == '@') ADVANCE(993); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(982); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(113) - if (lookahead != 0) ADVANCE(1031); + lookahead == ' ') SKIP(116) + if (lookahead == '!' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || + lookahead == '-' || + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); - case 114: - if (eof) ADVANCE(115); - if (lookahead == '@') ADVANCE(987); - if (lookahead == '{') ADVANCE(984); + case 117: + if (eof) ADVANCE(118); + if (lookahead == '@') ADVANCE(993); + if (lookahead == 'x') ADVANCE(990); + if (lookahead == '{') ADVANCE(989); if (lookahead == ',' || - lookahead == '?') ADVANCE(1031); + lookahead == '?') ADVANCE(1037); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(114) + lookahead == ' ') SKIP(117) if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || + lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')') || lookahead == '-' || - lookahead == '}') ADVANCE(982); - if (lookahead != 0) ADVANCE(1031); + lookahead == '}') ADVANCE(987); + if (lookahead != 0) ADVANCE(1037); END_STATE(); - case 115: + case 118: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 116: + case 119: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 117: + case 120: ACCEPT_TOKEN(aux_sym_keyword_token1); END_STATE(); - case 118: + case 121: ACCEPT_TOKEN(anon_sym_LBRACE_LBRACE); if (lookahead == '-') ADVANCE(46); END_STATE(); - case 119: + case 122: ACCEPT_TOKEN(anon_sym_RBRACE_RBRACE); END_STATE(); - case 120: + case 123: ACCEPT_TOKEN(anon_sym_LBRACE_BANG_BANG); END_STATE(); - case 121: + case 124: ACCEPT_TOKEN(anon_sym_BANG_BANG_RBRACE); END_STATE(); - case 122: + case 125: ACCEPT_TOKEN(anon_sym_ATphp); END_STATE(); - case 123: + case 126: ACCEPT_TOKEN(anon_sym_ATendphp); END_STATE(); - case 124: + case 127: ACCEPT_TOKEN(aux_sym_attribute_token1); END_STATE(); - case 125: + case 128: ACCEPT_TOKEN(aux_sym__inline_directive_token1); END_STATE(); - case 126: + case 129: ACCEPT_TOKEN(aux_sym__inline_directive_token1); - if (lookahead == 'F') ADVANCE(471); - if (lookahead == 'I') ADVANCE(419); - if (lookahead == 'U') ADVANCE(547); - if (lookahead == 'W') ADVANCE(453); + if (lookahead == 'F') ADVANCE(474); + if (lookahead == 'I') ADVANCE(422); + if (lookahead == 'U') ADVANCE(550); + if (lookahead == 'W') ADVANCE(456); END_STATE(); - case 127: + case 130: ACCEPT_TOKEN(aux_sym__inline_directive_token1); - if (lookahead == 'R') ADVANCE(398); + if (lookahead == 'R') ADVANCE(401); END_STATE(); - case 128: + case 131: ACCEPT_TOKEN(aux_sym__inline_directive_token1); - if (lookahead == 'S') ADVANCE(273); + if (lookahead == 'S') ADVANCE(276); END_STATE(); - case 129: + case 132: ACCEPT_TOKEN(anon_sym_ATfragment); END_STATE(); - case 130: + case 133: ACCEPT_TOKEN(anon_sym_ATendfragment); END_STATE(); - case 131: + case 134: ACCEPT_TOKEN(anon_sym_ATsection); - if (lookahead == 'M') ADVANCE(474); + if (lookahead == 'M') ADVANCE(477); END_STATE(); - case 132: + case 135: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 133: + case 136: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 134: + case 137: ACCEPT_TOKEN(aux_sym_section_token1); END_STATE(); - case 135: + case 138: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 136: + case 139: ACCEPT_TOKEN(anon_sym_ATonce); END_STATE(); - case 137: + case 140: ACCEPT_TOKEN(anon_sym_ATendonce); END_STATE(); - case 138: + case 141: ACCEPT_TOKEN(anon_sym_ATverbatim); END_STATE(); - case 139: + case 142: ACCEPT_TOKEN(anon_sym_ATendverbatim); END_STATE(); - case 140: + case 143: ACCEPT_TOKEN(anon_sym_ATpush); - if (lookahead == 'I') ADVANCE(420); - if (lookahead == 'O') ADVANCE(542); + if (lookahead == 'I') ADVANCE(423); + if (lookahead == 'O') ADVANCE(545); END_STATE(); - case 141: + case 144: ACCEPT_TOKEN(anon_sym_ATendpush); END_STATE(); - case 142: + case 145: ACCEPT_TOKEN(anon_sym_ATpushOnce); END_STATE(); - case 143: + case 146: ACCEPT_TOKEN(anon_sym_ATendPushOnce); END_STATE(); - case 144: + case 147: ACCEPT_TOKEN(anon_sym_ATpushIf); END_STATE(); - case 145: + case 148: ACCEPT_TOKEN(anon_sym_ATendPushIf); END_STATE(); - case 146: + case 149: ACCEPT_TOKEN(anon_sym_ATprepend); - if (lookahead == 'O') ADVANCE(543); + if (lookahead == 'O') ADVANCE(546); END_STATE(); - case 147: + case 150: ACCEPT_TOKEN(anon_sym_ATendprepend); END_STATE(); - case 148: + case 151: ACCEPT_TOKEN(anon_sym_ATprependOnce); END_STATE(); - case 149: + case 152: ACCEPT_TOKEN(anon_sym_ATendPrependOnce); END_STATE(); - case 150: + case 153: ACCEPT_TOKEN(anon_sym_ATelse); - if (lookahead == 'i') ADVANCE(151); + if (lookahead == 'i') ADVANCE(154); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(152); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); END_STATE(); - case 151: + case 154: ACCEPT_TOKEN(aux_sym_conditional_keyword_token1); - if (lookahead == 'f') ADVANCE(152); + if (lookahead == 'f') ADVANCE(155); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(152); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); END_STATE(); - case 152: + case 155: ACCEPT_TOKEN(aux_sym_conditional_keyword_token1); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(152); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); END_STATE(); - case 153: + case 156: ACCEPT_TOKEN(anon_sym_ATif); END_STATE(); - case 154: + case 157: ACCEPT_TOKEN(anon_sym_ATendif); END_STATE(); - case 155: + case 158: ACCEPT_TOKEN(anon_sym_ATunless); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); - END_STATE(); - case 156: - ACCEPT_TOKEN(anon_sym_ATendunless); - END_STATE(); - case 157: - ACCEPT_TOKEN(anon_sym_ATisset); - END_STATE(); - case 158: - ACCEPT_TOKEN(anon_sym_ATendisset); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_ATempty); + ACCEPT_TOKEN(anon_sym_ATendunless); END_STATE(); case 160: - ACCEPT_TOKEN(anon_sym_ATendempty); + ACCEPT_TOKEN(anon_sym_ATisset); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_ATauth); + ACCEPT_TOKEN(anon_sym_ATendisset); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_ATendauth); + ACCEPT_TOKEN(anon_sym_ATempty); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_ATguest); + ACCEPT_TOKEN(anon_sym_ATendempty); END_STATE(); case 164: - ACCEPT_TOKEN(anon_sym_ATendguest); + ACCEPT_TOKEN(anon_sym_ATauth); END_STATE(); case 165: - ACCEPT_TOKEN(anon_sym_ATproduction); + ACCEPT_TOKEN(anon_sym_ATendauth); END_STATE(); case 166: - ACCEPT_TOKEN(anon_sym_ATendproduction); + ACCEPT_TOKEN(anon_sym_ATguest); END_STATE(); case 167: - ACCEPT_TOKEN(anon_sym_ATenv); + ACCEPT_TOKEN(anon_sym_ATendguest); END_STATE(); case 168: - ACCEPT_TOKEN(anon_sym_ATendenv); + ACCEPT_TOKEN(anon_sym_ATproduction); END_STATE(); case 169: - ACCEPT_TOKEN(anon_sym_AThasSection); + ACCEPT_TOKEN(anon_sym_ATendproduction); END_STATE(); case 170: - ACCEPT_TOKEN(anon_sym_ATsectionMissing); + ACCEPT_TOKEN(anon_sym_ATenv); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_ATerror); + ACCEPT_TOKEN(anon_sym_ATendenv); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_ATenderror); + ACCEPT_TOKEN(anon_sym_AThasSection); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_ATcan); - if (lookahead == 'a') ADVANCE(525); - if (lookahead == 'n') ADVANCE(558); + ACCEPT_TOKEN(anon_sym_ATsectionMissing); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_ATendcan); + ACCEPT_TOKEN(anon_sym_ATerror); END_STATE(); case 175: - ACCEPT_TOKEN(anon_sym_ATcannot); + ACCEPT_TOKEN(anon_sym_ATenderror); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_ATendcannot); + ACCEPT_TOKEN(anon_sym_ATcan); + if (lookahead == 'a') ADVANCE(528); + if (lookahead == 'n') ADVANCE(561); END_STATE(); case 177: - ACCEPT_TOKEN(anon_sym_ATcanany); + ACCEPT_TOKEN(anon_sym_ATendcan); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_ATendcanany); + ACCEPT_TOKEN(anon_sym_ATcannot); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_ATfeature); + ACCEPT_TOKEN(anon_sym_ATendcannot); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_ATendfeature); + ACCEPT_TOKEN(anon_sym_ATcanany); END_STATE(); case 181: - ACCEPT_TOKEN(aux_sym__custom_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); + ACCEPT_TOKEN(anon_sym_ATendcanany); END_STATE(); case 182: - ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'C') ADVANCE(563); - if (lookahead == 's') ADVANCE(117); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); - if (lookahead != 0 && - lookahead != '(' && - lookahead != '-') ADVANCE(897); + ACCEPT_TOKEN(anon_sym_ATfeature); END_STATE(); case 183: - ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'I') ADVANCE(422); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); - if (lookahead != 0 && - lookahead != '(' && - lookahead != '-') ADVANCE(897); + ACCEPT_TOKEN(anon_sym_ATendfeature); END_STATE(); case 184: - ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'O') ADVANCE(545); + ACCEPT_TOKEN(aux_sym__custom_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); - if (lookahead != 0 && - lookahead != '(' && - lookahead != '-') ADVANCE(897); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); case 185: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'O') ADVANCE(546); + if (lookahead == 'C') ADVANCE(566); + if (lookahead == 's') ADVANCE(120); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 186: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'P') ADVANCE(827); - if (lookahead == 'a') ADVANCE(786); - if (lookahead == 'b') ADVANCE(768); - if (lookahead == 'c') ADVANCE(753); - if (lookahead == 'e') ADVANCE(805); - if (lookahead == 'f') ADVANCE(770); - if (lookahead == 'g') ADVANCE(850); - if (lookahead == 'i') ADVANCE(784); - if (lookahead == 'o') ADVANCE(808); - if (lookahead == 'p') ADVANCE(773); - if (lookahead == 's') ADVANCE(769); - if (lookahead == 't') ADVANCE(754); - if (lookahead == 'u') ADVANCE(813); - if (lookahead == 'v') ADVANCE(777); - if (lookahead == 'w') ADVANCE(791); + if (lookahead == 'I') ADVANCE(425); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 187: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'P') ADVANCE(618); + if (lookahead == 'O') ADVANCE(548); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 188: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'P') ADVANCE(723); + if (lookahead == 'O') ADVANCE(549); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 189: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'P') ADVANCE(724); + if (lookahead == 'P') ADVANCE(830); + if (lookahead == 'a') ADVANCE(789); + if (lookahead == 'b') ADVANCE(771); + if (lookahead == 'c') ADVANCE(756); + if (lookahead == 'e') ADVANCE(808); + if (lookahead == 'f') ADVANCE(773); + if (lookahead == 'g') ADVANCE(853); + if (lookahead == 'i') ADVANCE(787); + if (lookahead == 'o') ADVANCE(811); + if (lookahead == 'p') ADVANCE(776); + if (lookahead == 's') ADVANCE(772); + if (lookahead == 't') ADVANCE(757); + if (lookahead == 'u') ADVANCE(816); + if (lookahead == 'v') ADVANCE(780); + if (lookahead == 'w') ADVANCE(794); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(858); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 190: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'R') ADVANCE(374); + if (lookahead == 'P') ADVANCE(726); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 191: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'S') ADVANCE(386); + if (lookahead == 'P') ADVANCE(630); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 192: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'T') ADVANCE(380); + if (lookahead == 'P') ADVANCE(727); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 193: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'l') ADVANCE(643); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(291); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'R') ADVANCE(377); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 194: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'l') ADVANCE(643); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(314); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'S') ADVANCE(389); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 195: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'l') ADVANCE(643); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(730); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'T') ADVANCE(383); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 196: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'l') ADVANCE(643); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(305); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'l') ADVANCE(646); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(294); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 197: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'l') ADVANCE(643); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(313); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'l') ADVANCE(646); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(317); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 198: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'l') ADVANCE(643); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(303); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'l') ADVANCE(646); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(733); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 199: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'l') ADVANCE(643); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(308); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'l') ADVANCE(646); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(318); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 200: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'l') ADVANCE(643); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(315); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'l') ADVANCE(646); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(311); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 201: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'l') ADVANCE(643); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(321); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'l') ADVANCE(646); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(316); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 202: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'l') ADVANCE(643); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(310); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'l') ADVANCE(646); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(308); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 203: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'l') ADVANCE(643); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(328); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'l') ADVANCE(646); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(324); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 204: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'l') ADVANCE(643); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(319); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'l') ADVANCE(646); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(306); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 205: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'l') ADVANCE(643); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(299); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'l') ADVANCE(646); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(331); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 206: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'l') ADVANCE(643); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(320); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'l') ADVANCE(646); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(322); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 207: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'l') ADVANCE(643); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(330); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'l') ADVANCE(646); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(313); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 208: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'l') ADVANCE(643); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(332); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'l') ADVANCE(646); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(302); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 209: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(730); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'l') ADVANCE(646); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(323); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 210: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(316); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'l') ADVANCE(646); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(333); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 211: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(323); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'l') ADVANCE(646); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 212: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(311); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(733); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 213: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(326); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(329); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 214: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(329); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(319); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 215: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(297); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(326); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 216: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(300); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(314); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 217: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(322); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(310); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 218: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(301); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(332); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 219: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(318); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(300); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 220: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(327); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(325); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 221: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(325); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(312); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 222: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(302); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(303); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 223: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(307); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(304); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 224: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(309); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(321); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 225: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(324); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(330); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 226: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(333); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(327); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 227: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(331); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(328); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 228: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(334); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(305); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 229: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(433); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(336); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 230: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(306); - if (lookahead == 'q') ADVANCE(718); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(334); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 231: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(484); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(337); + if (lookahead == 'r') ADVANCE(623); + if (lookahead == 'x') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 232: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(260); - if (lookahead == 'c') ADVANCE(559); + if (lookahead == 'a') ADVANCE(436); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 233: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(260); + if (lookahead == 'a') ADVANCE(309); + if (lookahead == 'q') ADVANCE(721); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 234: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(506); + if (lookahead == 'a') ADVANCE(487); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 235: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(513); - if (lookahead == 'h') ADVANCE(370); - if (lookahead == 'l') ADVANCE(243); - if (lookahead == 'o') ADVANCE(526); - if (lookahead == 's') ADVANCE(598); + if (lookahead == 'a') ADVANCE(263); + if (lookahead == 'c') ADVANCE(562); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 236: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(631); + if (lookahead == 'a') ADVANCE(263); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 237: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(608); - if (lookahead == 'e') ADVANCE(603); - if (lookahead == 'h') ADVANCE(577); - if (lookahead == 'r') ADVANCE(368); - if (lookahead == 'u') ADVANCE(640); + if (lookahead == 'a') ADVANCE(509); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 238: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(509); + if (lookahead == 'a') ADVANCE(516); + if (lookahead == 'h') ADVANCE(373); + if (lookahead == 'l') ADVANCE(246); + if (lookahead == 'o') ADVANCE(529); + if (lookahead == 's') ADVANCE(601); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 239: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(632); - if (lookahead == 'e') ADVANCE(493); + if (lookahead == 'a') ADVANCE(634); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 240: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(632); - if (lookahead == 'e') ADVANCE(498); + if (lookahead == 'a') ADVANCE(611); + if (lookahead == 'e') ADVANCE(606); + if (lookahead == 'h') ADVANCE(580); + if (lookahead == 'r') ADVANCE(371); + if (lookahead == 'u') ADVANCE(643); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 241: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(486); + if (lookahead == 'a') ADVANCE(512); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 242: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(693); + if (lookahead == 'a') ADVANCE(635); + if (lookahead == 'e') ADVANCE(496); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 243: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(648); + if (lookahead == 'a') ADVANCE(635); + if (lookahead == 'e') ADVANCE(501); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 244: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'a') ADVANCE(489); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 245: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(720); + if (lookahead == 'a') ADVANCE(696); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 246: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(541); + if (lookahead == 'a') ADVANCE(651); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 247: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(528); + if (lookahead == 'a') ADVANCE(268); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 248: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(520); + if (lookahead == 'a') ADVANCE(723); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 249: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(642); + if (lookahead == 'a') ADVANCE(544); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 250: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(535); + if (lookahead == 'a') ADVANCE(531); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 251: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(610); + if (lookahead == 'a') ADVANCE(523); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 252: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(274); + if (lookahead == 'a') ADVANCE(538); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 253: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(267); - if (lookahead == 'l') ADVANCE(661); + if (lookahead == 'a') ADVANCE(645); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 254: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(700); + if (lookahead == 'a') ADVANCE(613); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 255: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(702); + if (lookahead == 'a') ADVANCE(277); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 256: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(272); + if (lookahead == 'a') ADVANCE(270); + if (lookahead == 'l') ADVANCE(664); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 257: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(710); + if (lookahead == 'a') ADVANCE(703); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 258: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(437); + if (lookahead == 'a') ADVANCE(705); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 259: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'b') ADVANCE(254); + if (lookahead == 'a') ADVANCE(275); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 260: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'b') ADVANCE(496); + if (lookahead == 'a') ADVANCE(713); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 261: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'b') ADVANCE(255); + if (lookahead == 'a') ADVANCE(440); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 262: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(440); + if (lookahead == 'b') ADVANCE(257); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 263: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(491); - if (lookahead == 'j') ADVANCE(379); + if (lookahead == 'b') ADVANCE(499); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 264: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(488); + if (lookahead == 'b') ADVANCE(258); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 265: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(485); + if (lookahead == 'c') ADVANCE(443); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 266: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(442); + if (lookahead == 'c') ADVANCE(494); + if (lookahead == 'j') ADVANCE(382); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 267: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(443); + if (lookahead == 'c') ADVANCE(491); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 268: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(345); + if (lookahead == 'c') ADVANCE(488); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 269: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'c') ADVANCE(445); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 270: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(246); + if (lookahead == 'c') ADVANCE(446); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 271: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(673); + if (lookahead == 'c') ADVANCE(348); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 272: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(447); + if (lookahead == 'c') ADVANCE(448); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 273: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(607); - if (lookahead == 't') ADVANCE(747); + if (lookahead == 'c') ADVANCE(249); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 274: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(683); + if (lookahead == 'c') ADVANCE(676); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 275: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(356); + if (lookahead == 'c') ADVANCE(450); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 276: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(357); + if (lookahead == 'c') ADVANCE(610); + if (lookahead == 't') ADVANCE(750); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 277: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(359); + if (lookahead == 'c') ADVANCE(686); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 278: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(360); + if (lookahead == 'c') ADVANCE(359); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 279: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(361); + if (lookahead == 'c') ADVANCE(360); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 280: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(600); + if (lookahead == 'c') ADVANCE(362); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 281: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(286); + if (lookahead == 'c') ADVANCE(363); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 282: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(698); - if (lookahead == 'l') ADVANCE(382); - if (lookahead == 'r') ADVANCE(734); - if (lookahead == 't') ADVANCE(717); + if (lookahead == 'c') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 283: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(248); + if (lookahead == 'c') ADVANCE(603); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 284: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(704); + if (lookahead == 'c') ADVANCE(289); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 285: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(250); + if (lookahead == 'c') ADVANCE(701); + if (lookahead == 'l') ADVANCE(385); + if (lookahead == 'r') ADVANCE(737); + if (lookahead == 't') ADVANCE(720); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 286: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(404); + if (lookahead == 'c') ADVANCE(251); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 287: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(711); + if (lookahead == 'c') ADVANCE(707); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 288: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(712); + if (lookahead == 'c') ADVANCE(252); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 289: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(713); + if (lookahead == 'c') ADVANCE(407); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 290: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'c') ADVANCE(714); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 291: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(186); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'c') ADVANCE(715); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 292: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(125); + if (lookahead == 'c') ADVANCE(716); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 293: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(124); + if (lookahead == 'c') ADVANCE(717); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 294: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(884); + if (lookahead == 'd') ADVANCE(189); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 295: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(146); + if (lookahead == 'd') ADVANCE(128); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 296: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(882); + if (lookahead == 'd') ADVANCE(127); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 297: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(188); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(887); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 298: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(147); + if (lookahead == 'd') ADVANCE(149); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 299: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(749); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(885); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 300: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(187); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(190); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 301: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(738); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(150); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 302: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(733); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(752); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 303: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(436); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(191); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 304: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(727); - if (lookahead == 'p') ADVANCE(634); + if (lookahead == 'd') ADVANCE(741); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 305: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(587); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(736); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 306: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(555); + if (lookahead == 'd') ADVANCE(439); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 307: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(580); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(730); + if (lookahead == 'p') ADVANCE(637); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 308: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(729); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(590); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 309: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(591); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 310: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(428); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(583); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 311: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(576); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 312: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(634); + if (lookahead == 'd') ADVANCE(593); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 313: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(270); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(431); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 314: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(245); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(579); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 315: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(463); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(637); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 316: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(665); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(273); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 317: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(353); + if (lookahead == 'd') ADVANCE(248); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 318: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(707); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(466); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 319: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(392); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(668); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 320: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(372); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(356); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 321: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(390); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(710); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 322: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(427); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(375); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 323: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(735); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(396); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 324: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(586); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(393); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 325: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(705); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(430); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 326: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(671); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(738); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 327: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(662); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(589); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 328: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(708); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 329: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(429); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(674); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 330: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(283); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(665); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 331: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(430); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(469); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 332: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(285); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(432); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 333: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(431); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(286); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 334: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(189); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'd') ADVANCE(433); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 335: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(185); + if (lookahead == 'd') ADVANCE(288); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 336: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(728); + if (lookahead == 'd') ADVANCE(434); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 337: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(423); - if (lookahead == 'r') ADVANCE(373); + if (lookahead == 'd') ADVANCE(192); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 338: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(423); - if (lookahead == 'r') ADVANCE(384); + if (lookahead == 'd') ADVANCE(188); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 339: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(230); + if (lookahead == 'd') ADVANCE(731); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 340: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(282); - if (lookahead == 'h') ADVANCE(549); - if (lookahead == 'l') ADVANCE(244); - if (lookahead == 't') ADVANCE(552); - if (lookahead == 'u') ADVANCE(281); - if (lookahead == 'w') ADVANCE(461); + if (lookahead == 'e') ADVANCE(426); + if (lookahead == 'r') ADVANCE(376); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 341: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(282); - if (lookahead == 'h') ADVANCE(549); - if (lookahead == 't') ADVANCE(552); - if (lookahead == 'u') ADVANCE(281); - if (lookahead == 'w') ADVANCE(461); + if (lookahead == 'e') ADVANCE(426); + if (lookahead == 'r') ADVANCE(387); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 342: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(282); - if (lookahead == 't') ADVANCE(552); - if (lookahead == 'u') ADVANCE(281); - if (lookahead == 'w') ADVANCE(461); + if (lookahead == 'e') ADVANCE(233); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 343: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(125); + if (lookahead == 'e') ADVANCE(285); + if (lookahead == 'h') ADVANCE(552); + if (lookahead == 'l') ADVANCE(247); + if (lookahead == 't') ADVANCE(555); + if (lookahead == 'u') ADVANCE(284); + if (lookahead == 'w') ADVANCE(464); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 344: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(150); + if (lookahead == 'e') ADVANCE(285); + if (lookahead == 'h') ADVANCE(552); + if (lookahead == 't') ADVANCE(555); + if (lookahead == 'u') ADVANCE(284); + if (lookahead == 'w') ADVANCE(464); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 345: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(136); + if (lookahead == 'e') ADVANCE(285); + if (lookahead == 't') ADVANCE(555); + if (lookahead == 'u') ADVANCE(284); + if (lookahead == 'w') ADVANCE(464); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 346: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(435); + if (lookahead == 'e') ADVANCE(128); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 347: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(127); + if (lookahead == 'e') ADVANCE(153); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 348: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(124); + if (lookahead == 'e') ADVANCE(139); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 349: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(868); + if (lookahead == 'e') ADVANCE(438); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 350: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(876); + if (lookahead == 'e') ADVANCE(130); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 351: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(179); + if (lookahead == 'e') ADVANCE(127); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 352: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(866); + if (lookahead == 'e') ADVANCE(871); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 353: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(126); + if (lookahead == 'e') ADVANCE(879); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 354: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(861); + if (lookahead == 'e') ADVANCE(182); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 355: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(128); + if (lookahead == 'e') ADVANCE(869); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 356: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(142); + if (lookahead == 'e') ADVANCE(129); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 357: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(148); + if (lookahead == 'e') ADVANCE(864); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 358: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(180); + if (lookahead == 'e') ADVANCE(131); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 359: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(137); + if (lookahead == 'e') ADVANCE(145); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 360: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(143); + if (lookahead == 'e') ADVANCE(151); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 361: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(149); + if (lookahead == 'e') ADVANCE(183); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 362: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(867); + if (lookahead == 'e') ADVANCE(140); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 363: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(869); + if (lookahead == 'e') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 364: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(737); + if (lookahead == 'e') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 365: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(242); - if (lookahead == 'i') ADVANCE(537); - if (lookahead == 'o') ADVANCE(592); - if (lookahead == 'r') ADVANCE(229); + if (lookahead == 'e') ADVANCE(870); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 366: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(694); - if (lookahead == 'i') ADVANCE(280); + if (lookahead == 'e') ADVANCE(872); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 367: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(694); + if (lookahead == 'e') ADVANCE(740); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 368: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(581); - if (lookahead == 'o') ADVANCE(304); + if (lookahead == 'e') ADVANCE(245); + if (lookahead == 'i') ADVANCE(540); + if (lookahead == 'o') ADVANCE(595); + if (lookahead == 'r') ADVANCE(232); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 369: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(489); + if (lookahead == 'e') ADVANCE(697); + if (lookahead == 'i') ADVANCE(283); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 370: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(264); + if (lookahead == 'e') ADVANCE(697); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 371: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(293); + if (lookahead == 'e') ADVANCE(584); + if (lookahead == 'o') ADVANCE(307); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 372: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(510); + if (lookahead == 'e') ADVANCE(492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 373: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(231); + if (lookahead == 'e') ADVANCE(267); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 374: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(425); + if (lookahead == 'e') ADVANCE(296); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 375: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(593); - if (lookahead == 'i') ADVANCE(703); - if (lookahead == 'o') ADVANCE(492); + if (lookahead == 'e') ADVANCE(513); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 376: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(502); + if (lookahead == 'e') ADVANCE(234); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 377: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(524); + if (lookahead == 'e') ADVANCE(428); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 378: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(647); + if (lookahead == 'e') ADVANCE(596); + if (lookahead == 'i') ADVANCE(706); + if (lookahead == 'o') ADVANCE(495); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 379: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(271); + if (lookahead == 'e') ADVANCE(505); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 380: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(238); + if (lookahead == 'e') ADVANCE(527); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 381: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(594); + if (lookahead == 'e') ADVANCE(650); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 382: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(284); + if (lookahead == 'e') ADVANCE(274); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 383: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(296); + if (lookahead == 'e') ADVANCE(241); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 384: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(241); + if (lookahead == 'e') ADVANCE(597); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 385: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(530); + if (lookahead == 'e') ADVANCE(287); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 386: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(287); + if (lookahead == 'e') ADVANCE(299); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 387: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(677); + if (lookahead == 'e') ADVANCE(244); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 388: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(256); + if (lookahead == 'e') ADVANCE(533); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 389: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(514); + if (lookahead == 'e') ADVANCE(290); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 390: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(625); + if (lookahead == 'e') ADVANCE(680); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 391: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(633); + if (lookahead == 'e') ADVANCE(259); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 392: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(523); + if (lookahead == 'e') ADVANCE(517); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 393: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(686); + if (lookahead == 'e') ADVANCE(628); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 394: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(531); + if (lookahead == 'e') ADVANCE(636); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 395: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(532); + if (lookahead == 'e') ADVANCE(690); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 396: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(533); + if (lookahead == 'e') ADVANCE(526); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 397: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(584); + if (lookahead == 'e') ADVANCE(534); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 398: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(252); + if (lookahead == 'e') ADVANCE(535); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 399: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(606); + if (lookahead == 'e') ADVANCE(536); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 400: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(653); + if (lookahead == 'e') ADVANCE(587); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 401: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(534); + if (lookahead == 'e') ADVANCE(255); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 402: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(646); + if (lookahead == 'e') ADVANCE(609); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 403: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(585); + if (lookahead == 'e') ADVANCE(656); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 404: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(654); + if (lookahead == 'e') ADVANCE(537); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 405: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(536); + if (lookahead == 'e') ADVANCE(649); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 406: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(660); + if (lookahead == 'e') ADVANCE(588); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 407: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(650); + if (lookahead == 'e') ADVANCE(657); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 408: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(659); + if (lookahead == 'e') ADVANCE(539); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 409: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(589); + if (lookahead == 'e') ADVANCE(663); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 410: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(590); + if (lookahead == 'e') ADVANCE(653); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 411: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(257); + if (lookahead == 'e') ADVANCE(662); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 412: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(626); + if (lookahead == 'e') ADVANCE(592); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 413: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(628); + if (lookahead == 'e') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 414: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(505); + if (lookahead == 'e') ADVANCE(260); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 415: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(290); + if (lookahead == 'e') ADVANCE(629); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 416: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(696); - if (lookahead == 'u') ADVANCE(692); - if (lookahead == 'w') ADVANCE(251); + if (lookahead == 'e') ADVANCE(631); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 417: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(153); - if (lookahead == 'm') ADVANCE(588); - if (lookahead == 'n') ADVANCE(263); - if (lookahead == 's') ADVANCE(645); + if (lookahead == 'e') ADVANCE(508); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 418: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(117); + if (lookahead == 'e') ADVANCE(293); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 419: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(125); + if (lookahead == 'f') ADVANCE(699); + if (lookahead == 'u') ADVANCE(695); + if (lookahead == 'w') ADVANCE(254); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 420: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(144); + if (lookahead == 'f') ADVANCE(156); + if (lookahead == 'm') ADVANCE(591); + if (lookahead == 'n') ADVANCE(266); + if (lookahead == 's') ADVANCE(648); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 421: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(154); + if (lookahead == 'f') ADVANCE(120); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 422: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(145); + if (lookahead == 'f') ADVANCE(128); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 423: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(573); + if (lookahead == 'f') ADVANCE(147); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 424: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(457); + if (lookahead == 'f') ADVANCE(157); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 425: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(622); + if (lookahead == 'f') ADVANCE(148); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 426: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(682); + if (lookahead == 'f') ADVANCE(576); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 427: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(629); + if (lookahead == 'f') ADVANCE(460); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 428: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(411); + if (lookahead == 'f') ADVANCE(625); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 429: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(566); + if (lookahead == 'f') ADVANCE(685); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 430: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(567); + if (lookahead == 'f') ADVANCE(632); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 431: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(575); + if (lookahead == 'f') ADVANCE(414); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 432: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'g') ADVANCE(117); + if (lookahead == 'f') ADVANCE(568); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 433: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'g') ADVANCE(511); + if (lookahead == 'f') ADVANCE(569); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 434: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'g') ADVANCE(170); + if (lookahead == 'f') ADVANCE(578); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 435: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'g') ADVANCE(602); - if (lookahead == 'p') ADVANCE(572); + if (lookahead == 'g') ADVANCE(120); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 436: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'g') ADVANCE(726); + if (lookahead == 'g') ADVANCE(514); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 437: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'g') ADVANCE(512); + if (lookahead == 'g') ADVANCE(173); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 438: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(161); + if (lookahead == 'g') ADVANCE(605); + if (lookahead == 'p') ADVANCE(575); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 439: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(117); + if (lookahead == 'g') ADVANCE(729); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 440: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(125); + if (lookahead == 'g') ADVANCE(515); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 441: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(140); + if (lookahead == 'h') ADVANCE(164); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 442: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(856); + if (lookahead == 'h') ADVANCE(120); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 443: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(864); + if (lookahead == 'h') ADVANCE(128); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 444: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(162); + if (lookahead == 'h') ADVANCE(143); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 445: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(858); + if (lookahead == 'h') ADVANCE(859); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 446: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(141); + if (lookahead == 'h') ADVANCE(867); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 447: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(865); + if (lookahead == 'h') ADVANCE(165); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 448: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(184); + if (lookahead == 'h') ADVANCE(861); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 449: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(183); + if (lookahead == 'h') ADVANCE(144); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 450: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(550); + if (lookahead == 'h') ADVANCE(868); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 451: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(473); + if (lookahead == 'h') ADVANCE(187); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 452: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(383); + if (lookahead == 'h') ADVANCE(186); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 453: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(389); + if (lookahead == 'h') ADVANCE(553); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 454: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(480); + if (lookahead == 'h') ADVANCE(476); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 455: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(630); + if (lookahead == 'h') ADVANCE(386); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 456: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(732); + if (lookahead == 'h') ADVANCE(392); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 457: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(432); + if (lookahead == 'h') ADVANCE(483); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 458: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(507); + if (lookahead == 'i') ADVANCE(633); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 459: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(369); + if (lookahead == 'i') ADVANCE(735); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 460: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(508); + if (lookahead == 'i') ADVANCE(435); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 461: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(706); + if (lookahead == 'i') ADVANCE(510); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 462: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(538); + if (lookahead == 'i') ADVANCE(372); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 463: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(421); + if (lookahead == 'i') ADVANCE(511); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 464: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(521); + if (lookahead == 'i') ADVANCE(709); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 465: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(649); + if (lookahead == 'i') ADVANCE(541); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 466: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(669); + if (lookahead == 'i') ADVANCE(424); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 467: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'i') ADVANCE(524); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 468: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(641); + if (lookahead == 'i') ADVANCE(652); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 469: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(557); + if (lookahead == 'i') ADVANCE(672); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 470: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(656); + if (lookahead == 'i') ADVANCE(585); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 471: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(621); + if (lookahead == 'i') ADVANCE(644); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 472: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(561); + if (lookahead == 'i') ADVANCE(560); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 473: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(495); + if (lookahead == 'i') ADVANCE(659); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 474: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(657); + if (lookahead == 'i') ADVANCE(624); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 475: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(562); + if (lookahead == 'i') ADVANCE(564); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 476: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(613); + if (lookahead == 'i') ADVANCE(498); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 477: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(615); + if (lookahead == 'i') ADVANCE(660); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 478: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'i') ADVANCE(565); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 479: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(663); + if (lookahead == 'i') ADVANCE(616); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 480: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(499); + if (lookahead == 'i') ADVANCE(618); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 481: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'i') ADVANCE(570); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 482: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(708); + if (lookahead == 'i') ADVANCE(666); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 483: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'k') ADVANCE(872); + if (lookahead == 'i') ADVANCE(502); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 484: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'k') ADVANCE(860); + if (lookahead == 'i') ADVANCE(573); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 485: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'k') ADVANCE(884); + if (lookahead == 'i') ADVANCE(711); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 486: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'k') ADVANCE(861); + if (lookahead == 'k') ADVANCE(875); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 487: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'k') ADVANCE(873); + if (lookahead == 'k') ADVANCE(863); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 488: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'k') ADVANCE(371); + if (lookahead == 'k') ADVANCE(887); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 489: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(292); + if (lookahead == 'k') ADVANCE(864); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 490: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(740); + if (lookahead == 'k') ADVANCE(876); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 491: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(716); + if (lookahead == 'k') ADVANCE(374); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 492: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(675); + if (lookahead == 'l') ADVANCE(295); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 493: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(346); + if (lookahead == 'l') ADVANCE(743); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 494: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(348); + if (lookahead == 'l') ADVANCE(719); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 495: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(349); + if (lookahead == 'l') ADVANCE(678); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 496: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(371); + if (lookahead == 'l') ADVANCE(349); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 497: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(691); + if (lookahead == 'l') ADVANCE(351); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 498: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(409); + if (lookahead == 'l') ADVANCE(352); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 499: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(363); + if (lookahead == 'l') ADVANCE(374); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 500: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(400); + if (lookahead == 'l') ADVANCE(694); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 501: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(391); + if (lookahead == 'l') ADVANCE(412); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 502: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(664); + if (lookahead == 'l') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 503: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(407); + if (lookahead == 'l') ADVANCE(403); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 504: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(408); + if (lookahead == 'l') ADVANCE(394); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 505: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(410); + if (lookahead == 'l') ADVANCE(667); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 506: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'm') ADVANCE(884); + if (lookahead == 'l') ADVANCE(410); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 507: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'm') ADVANCE(138); + if (lookahead == 'l') ADVANCE(411); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 508: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'm') ADVANCE(139); + if (lookahead == 'l') ADVANCE(413); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 509: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'm') ADVANCE(636); + if (lookahead == 'm') ADVANCE(887); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 510: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'm') ADVANCE(583); + if (lookahead == 'm') ADVANCE(141); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 511: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'm') ADVANCE(401); + if (lookahead == 'm') ADVANCE(142); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 512: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'm') ADVANCE(405); + if (lookahead == 'm') ADVANCE(639); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 513: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(173); + if (lookahead == 'm') ADVANCE(586); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 514: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(125); + if (lookahead == 'm') ADVANCE(404); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 515: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(134); + if (lookahead == 'm') ADVANCE(408); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 516: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(131); + if (lookahead == 'n') ADVANCE(176); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 517: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(169); + if (lookahead == 'n') ADVANCE(128); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 518: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(165); + if (lookahead == 'n') ADVANCE(137); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 519: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'n') ADVANCE(134); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 520: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(174); + if (lookahead == 'n') ADVANCE(172); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 521: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(434); + if (lookahead == 'n') ADVANCE(168); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 522: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(268); + if (lookahead == 'n') ADVANCE(169); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 523: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(731); + if (lookahead == 'n') ADVANCE(177); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 524: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(312); + if (lookahead == 'n') ADVANCE(437); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 525: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(743); + if (lookahead == 'n') ADVANCE(271); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 526: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(695); + if (lookahead == 'n') ADVANCE(734); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 527: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(490); + if (lookahead == 'n') ADVANCE(315); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 528: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(744); + if (lookahead == 'n') ADVANCE(746); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 529: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(424); + if (lookahead == 'n') ADVANCE(698); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 530: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(295); + if (lookahead == 'n') ADVANCE(493); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 531: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(335); + if (lookahead == 'n') ADVANCE(747); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 532: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(298); + if (lookahead == 'n') ADVANCE(427); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 533: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(672); + if (lookahead == 'n') ADVANCE(298); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 534: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(680); + if (lookahead == 'n') ADVANCE(301); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 535: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(540); + if (lookahead == 'n') ADVANCE(338); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 536: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(688); + if (lookahead == 'n') ADVANCE(675); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 537: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'n') ADVANCE(683); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 538: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(719); + if (lookahead == 'n') ADVANCE(543); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 539: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(500); + if (lookahead == 'n') ADVANCE(691); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 540: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(569); + if (lookahead == 'n') ADVANCE(471); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 541: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(247); + if (lookahead == 'n') ADVANCE(722); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 542: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(275); + if (lookahead == 'n') ADVANCE(503); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 543: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(276); + if (lookahead == 'n') ADVANCE(572); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 544: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(277); + if (lookahead == 'n') ADVANCE(250); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 545: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'n') ADVANCE(278); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 546: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'n') ADVANCE(279); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 547: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(503); + if (lookahead == 'n') ADVANCE(280); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 548: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(504); + if (lookahead == 'n') ADVANCE(281); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 549: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(736); + if (lookahead == 'n') ADVANCE(282); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 550: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(292); + if (lookahead == 'n') ADVANCE(506); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 551: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(426); + if (lookahead == 'n') ADVANCE(507); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 552: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(599); - if (lookahead == 'y') ADVANCE(494); + if (lookahead == 'o') ADVANCE(739); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 553: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(595); + if (lookahead == 'o') ADVANCE(295); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 554: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(336); + if (lookahead == 'o') ADVANCE(429); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 555: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(527); + if (lookahead == 'o') ADVANCE(602); + if (lookahead == 'y') ADVANCE(497); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 556: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(609); + if (lookahead == 'o') ADVANCE(598); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 557: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(516); + if (lookahead == 'o') ADVANCE(339); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 558: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(678); + if (lookahead == 'o') ADVANCE(530); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 559: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(601); + if (lookahead == 'o') ADVANCE(612); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 560: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(644); + if (lookahead == 'o') ADVANCE(519); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 561: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(517); + if (lookahead == 'o') ADVANCE(681); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 562: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(518); + if (lookahead == 'o') ADVANCE(604); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 563: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(529); + if (lookahead == 'o') ADVANCE(647); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 564: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(596); + if (lookahead == 'o') ADVANCE(520); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 565: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(519); + if (lookahead == 'o') ADVANCE(521); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 566: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(623); + if (lookahead == 'o') ADVANCE(532); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 567: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(597); + if (lookahead == 'o') ADVANCE(599); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 568: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(605); + if (lookahead == 'o') ADVANCE(600); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 569: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(687); + if (lookahead == 'o') ADVANCE(626); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 570: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(515); + if (lookahead == 'o') ADVANCE(522); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 571: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(497); + if (lookahead == 'o') ADVANCE(608); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 572: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(611); + if (lookahead == 'o') ADVANCE(689); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 573: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(612); + if (lookahead == 'o') ADVANCE(518); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 574: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(616); + if (lookahead == 'o') ADVANCE(500); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 575: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(619); + if (lookahead == 'o') ADVANCE(614); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 576: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(544); + if (lookahead == 'o') ADVANCE(615); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 577: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(122); + if (lookahead == 'o') ADVANCE(619); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 578: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(870); + if (lookahead == 'o') ADVANCE(622); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 579: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(674); + if (lookahead == 'o') ADVANCE(547); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 580: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(722); + if (lookahead == 'p') ADVANCE(125); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 581: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(385); + if (lookahead == 'p') ADVANCE(873); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 582: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(684); + if (lookahead == 'p') ADVANCE(677); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 583: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(697); + if (lookahead == 'p') ADVANCE(725); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 584: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(394); + if (lookahead == 'p') ADVANCE(388); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 585: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(395); + if (lookahead == 'p') ADVANCE(687); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 586: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(412); + if (lookahead == 'p') ADVANCE(700); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 587: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(604); + if (lookahead == 'p') ADVANCE(397); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 588: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(556); + if (lookahead == 'p') ADVANCE(398); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 589: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(572); + if (lookahead == 'p') ADVANCE(415); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 590: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(574); + if (lookahead == 'p') ADVANCE(607); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 591: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(627); + if (lookahead == 'p') ADVANCE(559); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 592: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(862); + if (lookahead == 'p') ADVANCE(575); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 593: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(259); + if (lookahead == 'p') ADVANCE(621); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 594: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(878); + if (lookahead == 'p') ADVANCE(577); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 595: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(171); + if (lookahead == 'r') ADVANCE(865); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 596: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(172); + if (lookahead == 'r') ADVANCE(262); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 597: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(863); + if (lookahead == 'r') ADVANCE(881); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 598: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(418); + if (lookahead == 'r') ADVANCE(174); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 599: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(742); + if (lookahead == 'r') ADVANCE(175); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 600: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(560); + if (lookahead == 'r') ADVANCE(866); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 601: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(294); + if (lookahead == 'r') ADVANCE(421); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 602: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(234); + if (lookahead == 'r') ADVANCE(745); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 603: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(668); + if (lookahead == 'r') ADVANCE(563); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 604: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(554); + if (lookahead == 'r') ADVANCE(297); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 605: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(746); + if (lookahead == 'r') ADVANCE(237); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 606: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(634); + if (lookahead == 'r') ADVANCE(671); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 607: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(467); + if (lookahead == 'r') ADVANCE(557); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 608: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(396); + if (lookahead == 'r') ADVANCE(749); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 609: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(673); + if (lookahead == 'r') ADVANCE(637); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 610: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(343); + if (lookahead == 'r') ADVANCE(470); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 611: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(681); + if (lookahead == 'r') ADVANCE(399); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 612: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(350); + if (lookahead == 'r') ADVANCE(676); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 613: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(371); + if (lookahead == 'r') ADVANCE(346); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 614: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(351); + if (lookahead == 'r') ADVANCE(684); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 615: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(355); + if (lookahead == 'r') ADVANCE(353); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 616: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(690); + if (lookahead == 'r') ADVANCE(374); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 617: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(358); + if (lookahead == 'r') ADVANCE(354); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 618: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(397); + if (lookahead == 'r') ADVANCE(358); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 619: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(376); + if (lookahead == 'r') ADVANCE(693); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 620: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(553); + if (lookahead == 'r') ADVANCE(361); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 621: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(652); + if (lookahead == 'r') ADVANCE(400); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 622: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(402); + if (lookahead == 'r') ADVANCE(379); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 623: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(388); + if (lookahead == 'r') ADVANCE(556); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 624: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(564); + if (lookahead == 'r') ADVANCE(655); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 625: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(624); + if (lookahead == 'r') ADVANCE(405); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 626: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(670); + if (lookahead == 'r') ADVANCE(391); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 627: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(403); + if (lookahead == 'r') ADVANCE(567); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 628: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(261); + if (lookahead == 'r') ADVANCE(627); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 629: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(258); + if (lookahead == 'r') ADVANCE(673); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 630: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(232); + if (lookahead == 'r') ADVANCE(406); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 631: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(191); + if (lookahead == 'r') ADVANCE(264); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 632: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(483); + if (lookahead == 'r') ADVANCE(261); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 633: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(117); + if (lookahead == 's') ADVANCE(235); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 634: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(125); + if (lookahead == 's') ADVANCE(194); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 635: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(124); + if (lookahead == 's') ADVANCE(486); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 636: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(884); + if (lookahead == 's') ADVANCE(120); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 637: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(155); + if (lookahead == 's') ADVANCE(128); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 638: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(880); + if (lookahead == 's') ADVANCE(127); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 639: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(156); + if (lookahead == 's') ADVANCE(887); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 640: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(441); + if (lookahead == 's') ADVANCE(158); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 641: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(452); + if (lookahead == 's') ADVANCE(883); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 642: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(487); + if (lookahead == 's') ADVANCE(159); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 643: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(344); + if (lookahead == 's') ADVANCE(444); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 644: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(551); + if (lookahead == 's') ADVANCE(455); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 645: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(387); + if (lookahead == 's') ADVANCE(490); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 646: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(439); + if (lookahead == 's') ADVANCE(347); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 647: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(676); + if (lookahead == 's') ADVANCE(554); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 648: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(635); + if (lookahead == 's') ADVANCE(390); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 649: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(233); + if (lookahead == 's') ADVANCE(442); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 650: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(634); + if (lookahead == 's') ADVANCE(679); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 651: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(446); + if (lookahead == 's') ADVANCE(638); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 652: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(673); + if (lookahead == 's') ADVANCE(236); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 653: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 's') ADVANCE(637); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 654: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(638); + if (lookahead == 's') ADVANCE(449); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 655: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(448); + if (lookahead == 's') ADVANCE(676); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 656: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(679); + if (lookahead == 's') ADVANCE(640); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 657: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(666); + if (lookahead == 's') ADVANCE(641); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 658: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(449); + if (lookahead == 's') ADVANCE(451); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 659: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(639); + if (lookahead == 's') ADVANCE(682); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 660: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(685); + if (lookahead == 's') ADVANCE(669); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 661: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(352); + if (lookahead == 's') ADVANCE(452); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 662: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(709); + if (lookahead == 's') ADVANCE(642); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 663: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(689); + if (lookahead == 's') ADVANCE(688); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 664: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(362); + if (lookahead == 's') ADVANCE(355); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 665: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(739); + if (lookahead == 's') ADVANCE(712); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 666: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(464); + if (lookahead == 's') ADVANCE(692); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 667: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(393); + if (lookahead == 's') ADVANCE(365); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 668: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(470); + if (lookahead == 's') ADVANCE(742); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 669: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(667); + if (lookahead == 's') ADVANCE(467); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 670: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(479); + if (lookahead == 's') ADVANCE(395); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 671: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(415); + if (lookahead == 's') ADVANCE(473); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 672: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(117); + if (lookahead == 's') ADVANCE(670); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 673: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(125); + if (lookahead == 's') ADVANCE(482); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 674: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(741); + if (lookahead == 's') ADVANCE(418); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 675: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(889); + if (lookahead == 't') ADVANCE(120); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 676: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(163); + if (lookahead == 't') ADVANCE(128); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 677: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(157); + if (lookahead == 't') ADVANCE(744); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 678: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(175); + if (lookahead == 't') ADVANCE(892); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 679: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(885); + if (lookahead == 't') ADVANCE(166); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 680: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(129); + if (lookahead == 't') ADVANCE(160); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 681: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(887); + if (lookahead == 't') ADVANCE(178); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 682: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(192); + if (lookahead == 't') ADVANCE(888); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 683: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(190); + if (lookahead == 't') ADVANCE(132); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 684: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(182); + if (lookahead == 't') ADVANCE(890); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 685: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(164); + if (lookahead == 't') ADVANCE(195); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 686: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(158); + if (lookahead == 't') ADVANCE(193); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 687: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(176); + if (lookahead == 't') ADVANCE(185); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 688: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(130); + if (lookahead == 't') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 689: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(886); + if (lookahead == 't') ADVANCE(179); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 690: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(888); + if (lookahead == 't') ADVANCE(161); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 691: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(890); + if (lookahead == 't') ADVANCE(133); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 692: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(438); + if (lookahead == 't') ADVANCE(889); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 693: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(721); + if (lookahead == 't') ADVANCE(891); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 694: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(450); + if (lookahead == 't') ADVANCE(893); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 695: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(462); + if (lookahead == 't') ADVANCE(441); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 696: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(381); + if (lookahead == 't') ADVANCE(724); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 697: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(745); + if (lookahead == 't') ADVANCE(453); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 698: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(469); + if (lookahead == 't') ADVANCE(465); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 699: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(377); + if (lookahead == 't') ADVANCE(384); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 700: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(458); + if (lookahead == 't') ADVANCE(748); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 701: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(444); + if (lookahead == 't') ADVANCE(472); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 702: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(460); + if (lookahead == 't') ADVANCE(380); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 703: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(347); + if (lookahead == 't') ADVANCE(461); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 704: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(371); + if (lookahead == 't') ADVANCE(447); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 705: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(414); + if (lookahead == 't') ADVANCE(463); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 706: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(266); + if (lookahead == 't') ADVANCE(350); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 707: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(249); + if (lookahead == 't') ADVANCE(374); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 708: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(269); + if (lookahead == 't') ADVANCE(417); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 709: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(568); + if (lookahead == 't') ADVANCE(269); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 710: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(725); + if (lookahead == 't') ADVANCE(253); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 711: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(472); + if (lookahead == 't') ADVANCE(272); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 712: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(475); + if (lookahead == 't') ADVANCE(571); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 713: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(478); + if (lookahead == 't') ADVANCE(728); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 714: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(481); + if (lookahead == 't') ADVANCE(475); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 715: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(378); + if (lookahead == 't') ADVANCE(478); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 716: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(317); + if (lookahead == 't') ADVANCE(481); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 717: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(578); + if (lookahead == 't') ADVANCE(484); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 718: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(476); + if (lookahead == 'u') ADVANCE(381); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 719: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(354); + if (lookahead == 'u') ADVANCE(320); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 720: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(701); + if (lookahead == 'u') ADVANCE(581); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 721: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(614); + if (lookahead == 'u') ADVANCE(479); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 722: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(651); + if (lookahead == 'u') ADVANCE(357); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 723: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(655); + if (lookahead == 'u') ADVANCE(704); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 724: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(658); + if (lookahead == 'u') ADVANCE(617); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 725: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(617); + if (lookahead == 'u') ADVANCE(654); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 726: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(406); + if (lookahead == 'u') ADVANCE(658); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 727: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(288); + if (lookahead == 'u') ADVANCE(661); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 728: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(289); + if (lookahead == 'u') ADVANCE(620); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 729: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(548); + if (lookahead == 'u') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 730: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'v') ADVANCE(167); + if (lookahead == 'u') ADVANCE(291); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 731: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'u') ADVANCE(292); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 732: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'v') ADVANCE(364); + if (lookahead == 'u') ADVANCE(551); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 733: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'v') ADVANCE(571); + if (lookahead == 'v') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 734: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'v') ADVANCE(399); + if (lookahead == 'v') ADVANCE(171); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 735: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'v') ADVANCE(413); + if (lookahead == 'v') ADVANCE(367); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 736: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'w') ADVANCE(134); + if (lookahead == 'v') ADVANCE(574); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 737: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'w') ADVANCE(477); + if (lookahead == 'v') ADVANCE(402); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 738: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'v') ADVANCE(416); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 739: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'w') ADVANCE(482); + if (lookahead == 'w') ADVANCE(137); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 740: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'y') ADVANCE(124); + if (lookahead == 'w') ADVANCE(480); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 741: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'y') ADVANCE(159); + if (lookahead == 'w') ADVANCE(457); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 742: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'y') ADVANCE(874); + if (lookahead == 'w') ADVANCE(485); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 743: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'y') ADVANCE(177); + if (lookahead == 'y') ADVANCE(127); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 744: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'y') ADVANCE(178); + if (lookahead == 'y') ADVANCE(162); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 745: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'y') ADVANCE(160); + if (lookahead == 'y') ADVANCE(877); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 746: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'y') ADVANCE(875); + if (lookahead == 'y') ADVANCE(180); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 747: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'y') ADVANCE(501); + if (lookahead == 'y') ADVANCE(181); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 748: ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'y') ADVANCE(163); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 749: ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'y') ADVANCE(878); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 750: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'I') ADVANCE(785); - if (lookahead == 'O') ADVANCE(808); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'y') ADVANCE(504); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(902); END_STATE(); case 751: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'O') ADVANCE(808); + ACCEPT_TOKEN(aux_sym__custom_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(751); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(902); END_STATE(); case 752: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'a') ADVANCE(788); + ACCEPT_TOKEN(aux_sym__custom_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(902); END_STATE(); case 753: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'a') ADVANCE(807); + if (lookahead == 'I') ADVANCE(788); + if (lookahead == 'O') ADVANCE(811); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 754: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'a') ADVANCE(833); - if (lookahead == 'e') ADVANCE(802); + if (lookahead == 'O') ADVANCE(811); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 755: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'a') ADVANCE(843); + if (lookahead == 'a') ADVANCE(791); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 756: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'a') ADVANCE(848); + if (lookahead == 'a') ADVANCE(810); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 757: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'b') ADVANCE(756); + if (lookahead == 'a') ADVANCE(836); + if (lookahead == 'e') ADVANCE(805); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 758: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'c') ADVANCE(789); + if (lookahead == 'a') ADVANCE(846); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 759: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'c') ADVANCE(847); - if (lookahead == 't') ADVANCE(849); + if (lookahead == 'a') ADVANCE(851); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 760: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'c') ADVANCE(847); + if (lookahead == 'b') ADVANCE(759); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 761: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'c') ADVANCE(767); + if (lookahead == 'c') ADVANCE(792); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 762: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'c') ADVANCE(763); + if (lookahead == 'c') ADVANCE(850); + if (lookahead == 't') ADVANCE(852); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 763: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'c') ADVANCE(780); + if (lookahead == 'c') ADVANCE(850); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 764: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'd') ADVANCE(855); + if (lookahead == 'c') ADVANCE(770); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 765: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'd') ADVANCE(751); + if (lookahead == 'c') ADVANCE(766); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 766: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'd') ADVANCE(851); + if (lookahead == 'c') ADVANCE(783); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 767: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(855); + if (lookahead == 'd') ADVANCE(858); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 768: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(787); + if (lookahead == 'd') ADVANCE(754); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 769: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(759); - if (lookahead == 't') ADVANCE(816); - if (lookahead == 'u') ADVANCE(762); - if (lookahead == 'w') ADVANCE(796); + if (lookahead == 'd') ADVANCE(854); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 770: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(755); - if (lookahead == 'i') ADVANCE(810); - if (lookahead == 'o') ADVANCE(824); - if (lookahead == 'r') ADVANCE(752); + if (lookahead == 'e') ADVANCE(858); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 771: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(824); + if (lookahead == 'e') ADVANCE(790); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 772: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(821); + if (lookahead == 'e') ADVANCE(762); + if (lookahead == 't') ADVANCE(819); + if (lookahead == 'u') ADVANCE(765); + if (lookahead == 'w') ADVANCE(799); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 773: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(828); - if (lookahead == 'h') ADVANCE(819); - if (lookahead == 'r') ADVANCE(783); - if (lookahead == 'u') ADVANCE(835); + if (lookahead == 'e') ADVANCE(758); + if (lookahead == 'i') ADVANCE(813); + if (lookahead == 'o') ADVANCE(827); + if (lookahead == 'r') ADVANCE(755); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 774: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(764); + if (lookahead == 'e') ADVANCE(827); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 775: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(840); + if (lookahead == 'e') ADVANCE(824); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 776: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(823); + if (lookahead == 'e') ADVANCE(831); + if (lookahead == 'h') ADVANCE(822); + if (lookahead == 'r') ADVANCE(786); + if (lookahead == 'u') ADVANCE(838); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 777: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(825); - if (lookahead == 'o') ADVANCE(801); + if (lookahead == 'e') ADVANCE(767); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 778: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(809); + if (lookahead == 'e') ADVANCE(843); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 779: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(811); + if (lookahead == 'e') ADVANCE(826); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 780: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(839); + if (lookahead == 'e') ADVANCE(828); + if (lookahead == 'o') ADVANCE(804); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 781: ACCEPT_TOKEN(aux_sym__custom_token3); if (lookahead == 'e') ADVANCE(812); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 782: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(841); + if (lookahead == 'e') ADVANCE(814); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 783: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(822); - if (lookahead == 'o') ADVANCE(766); + if (lookahead == 'e') ADVANCE(842); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 784: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'f') ADVANCE(855); - if (lookahead == 's') ADVANCE(838); + if (lookahead == 'e') ADVANCE(815); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 785: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'f') ADVANCE(855); + if (lookahead == 'e') ADVANCE(844); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 786: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'f') ADVANCE(846); - if (lookahead == 'u') ADVANCE(844); + if (lookahead == 'e') ADVANCE(825); + if (lookahead == 'o') ADVANCE(769); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 787: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'f') ADVANCE(817); + if (lookahead == 'f') ADVANCE(858); + if (lookahead == 's') ADVANCE(841); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 788: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'g') ADVANCE(806); + if (lookahead == 'f') ADVANCE(858); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 789: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'h') ADVANCE(855); + if (lookahead == 'f') ADVANCE(849); + if (lookahead == 'u') ADVANCE(847); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 790: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'h') ADVANCE(750); + if (lookahead == 'f') ADVANCE(820); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 791: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'h') ADVANCE(798); + if (lookahead == 'g') ADVANCE(809); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 792: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'h') ADVANCE(774); + if (lookahead == 'h') ADVANCE(858); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 793: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'i') ADVANCE(815); + if (lookahead == 'h') ADVANCE(753); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 794: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'i') ADVANCE(804); + if (lookahead == 'h') ADVANCE(801); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 795: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'i') ADVANCE(840); + if (lookahead == 'h') ADVANCE(777); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 796: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'i') ADVANCE(845); + if (lookahead == 'i') ADVANCE(818); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 797: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'i') ADVANCE(836); + if (lookahead == 'i') ADVANCE(807); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 798: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'i') ADVANCE(800); + if (lookahead == 'i') ADVANCE(843); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 799: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'k') ADVANCE(855); + if (lookahead == 'i') ADVANCE(848); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 800: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'l') ADVANCE(767); + if (lookahead == 'i') ADVANCE(839); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 801: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'l') ADVANCE(841); + if (lookahead == 'i') ADVANCE(803); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 802: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'l') ADVANCE(776); + if (lookahead == 'k') ADVANCE(858); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 803: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'l') ADVANCE(780); + if (lookahead == 'l') ADVANCE(770); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 804: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'm') ADVANCE(855); + if (lookahead == 'l') ADVANCE(844); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 805: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'm') ADVANCE(820); - if (lookahead == 'n') ADVANCE(853); - if (lookahead == 'r') ADVANCE(831); + if (lookahead == 'l') ADVANCE(779); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 806: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'm') ADVANCE(781); + if (lookahead == 'l') ADVANCE(783); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 807: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'n') ADVANCE(855); + if (lookahead == 'm') ADVANCE(858); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 808: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'n') ADVANCE(761); + if (lookahead == 'm') ADVANCE(823); + if (lookahead == 'n') ADVANCE(856); + if (lookahead == 'r') ADVANCE(834); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 809: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'n') ADVANCE(765); + if (lookahead == 'm') ADVANCE(784); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 810: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'n') ADVANCE(797); + if (lookahead == 'n') ADVANCE(858); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 811: ACCEPT_TOKEN(aux_sym__custom_token3); if (lookahead == 'n') ADVANCE(764); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 812: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'n') ADVANCE(841); + if (lookahead == 'n') ADVANCE(768); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 813: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'n') ADVANCE(803); + if (lookahead == 'n') ADVANCE(800); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 814: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'o') ADVANCE(824); + if (lookahead == 'n') ADVANCE(767); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 815: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'o') ADVANCE(807); + if (lookahead == 'n') ADVANCE(844); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 816: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'o') ADVANCE(826); + if (lookahead == 'n') ADVANCE(806); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 817: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'o') ADVANCE(829); + if (lookahead == 'o') ADVANCE(827); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 818: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'o') ADVANCE(830); + if (lookahead == 'o') ADVANCE(810); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 819: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'p') ADVANCE(855); + if (lookahead == 'o') ADVANCE(829); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 820: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'p') ADVANCE(842); + if (lookahead == 'o') ADVANCE(832); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 821: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'p') ADVANCE(778); + if (lookahead == 'o') ADVANCE(833); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 822: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'p') ADVANCE(779); + if (lookahead == 'p') ADVANCE(858); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 823: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'p') ADVANCE(818); + if (lookahead == 'p') ADVANCE(845); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 824: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'r') ADVANCE(855); + if (lookahead == 'p') ADVANCE(781); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 825: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'r') ADVANCE(757); + if (lookahead == 'p') ADVANCE(782); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 826: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'r') ADVANCE(854); + if (lookahead == 'p') ADVANCE(821); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 827: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'r') ADVANCE(772); - if (lookahead == 'u') ADVANCE(834); + if (lookahead == 'r') ADVANCE(858); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 828: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'r') ADVANCE(837); + if (lookahead == 'r') ADVANCE(760); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 829: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'r') ADVANCE(767); + if (lookahead == 'r') ADVANCE(857); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 830: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'r') ADVANCE(841); + if (lookahead == 'r') ADVANCE(775); + if (lookahead == 'u') ADVANCE(837); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 831: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'r') ADVANCE(814); + if (lookahead == 'r') ADVANCE(840); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 832: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(855); + if (lookahead == 'r') ADVANCE(770); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 833: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(799); + if (lookahead == 'r') ADVANCE(844); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 834: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(790); + if (lookahead == 'r') ADVANCE(817); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 835: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(789); + if (lookahead == 's') ADVANCE(858); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 836: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(792); + if (lookahead == 's') ADVANCE(802); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 837: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(795); + if (lookahead == 's') ADVANCE(793); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 838: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(782); + if (lookahead == 's') ADVANCE(792); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 839: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(832); + if (lookahead == 's') ADVANCE(795); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 840: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(841); + if (lookahead == 's') ADVANCE(798); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 841: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 't') ADVANCE(855); + if (lookahead == 's') ADVANCE(785); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 842: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 't') ADVANCE(854); + if (lookahead == 's') ADVANCE(835); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 843: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 't') ADVANCE(852); + if (lookahead == 's') ADVANCE(844); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 844: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 't') ADVANCE(789); + if (lookahead == 't') ADVANCE(858); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 845: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 't') ADVANCE(758); + if (lookahead == 't') ADVANCE(857); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 846: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 't') ADVANCE(771); + if (lookahead == 't') ADVANCE(855); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 847: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 't') ADVANCE(793); + if (lookahead == 't') ADVANCE(792); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 848: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 't') ADVANCE(794); + if (lookahead == 't') ADVANCE(761); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 849: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'u') ADVANCE(819); + if (lookahead == 't') ADVANCE(774); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 850: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'u') ADVANCE(775); + if (lookahead == 't') ADVANCE(796); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 851: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'u') ADVANCE(760); + if (lookahead == 't') ADVANCE(797); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 852: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'u') ADVANCE(829); + if (lookahead == 'u') ADVANCE(822); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 853: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'v') ADVANCE(855); + if (lookahead == 'u') ADVANCE(778); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 854: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'y') ADVANCE(855); + if (lookahead == 'u') ADVANCE(763); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 855: ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'u') ADVANCE(832); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 856: - ACCEPT_TOKEN(anon_sym_ATswitch); + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'v') ADVANCE(858); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 857: - ACCEPT_TOKEN(anon_sym_ATdefault); + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'y') ADVANCE(858); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 858: - ACCEPT_TOKEN(anon_sym_ATendswitch); + ACCEPT_TOKEN(aux_sym__custom_token3); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); END_STATE(); case 859: - ACCEPT_TOKEN(anon_sym_ATcase); + ACCEPT_TOKEN(anon_sym_ATswitch); END_STATE(); case 860: - ACCEPT_TOKEN(anon_sym_ATbreak); + ACCEPT_TOKEN(anon_sym_ATdefault); END_STATE(); case 861: - ACCEPT_TOKEN(aux_sym_loop_operator_token1); + ACCEPT_TOKEN(anon_sym_ATendswitch); END_STATE(); case 862: - ACCEPT_TOKEN(anon_sym_ATfor); - if (lookahead == 'e') ADVANCE(253); + ACCEPT_TOKEN(anon_sym_ATcase); END_STATE(); case 863: - ACCEPT_TOKEN(anon_sym_ATendfor); + ACCEPT_TOKEN(anon_sym_ATbreak); END_STATE(); case 864: - ACCEPT_TOKEN(anon_sym_ATforeach); + ACCEPT_TOKEN(aux_sym_loop_operator_token1); END_STATE(); case 865: - ACCEPT_TOKEN(anon_sym_ATendforeach); + ACCEPT_TOKEN(anon_sym_ATfor); + if (lookahead == 'e') ADVANCE(256); END_STATE(); case 866: - ACCEPT_TOKEN(anon_sym_ATforelse); + ACCEPT_TOKEN(anon_sym_ATendfor); END_STATE(); case 867: - ACCEPT_TOKEN(anon_sym_ATendforelse); + ACCEPT_TOKEN(anon_sym_ATforeach); END_STATE(); case 868: - ACCEPT_TOKEN(anon_sym_ATwhile); + ACCEPT_TOKEN(anon_sym_ATendforeach); END_STATE(); case 869: - ACCEPT_TOKEN(anon_sym_ATendwhile); + ACCEPT_TOKEN(anon_sym_ATforelse); END_STATE(); case 870: - ACCEPT_TOKEN(anon_sym_ATsetup); + ACCEPT_TOKEN(anon_sym_ATendforelse); END_STATE(); case 871: - ACCEPT_TOKEN(anon_sym_ATendsetup); + ACCEPT_TOKEN(anon_sym_ATwhile); END_STATE(); case 872: - ACCEPT_TOKEN(anon_sym_ATtask); + ACCEPT_TOKEN(anon_sym_ATendwhile); END_STATE(); case 873: - ACCEPT_TOKEN(anon_sym_ATendtask); + ACCEPT_TOKEN(anon_sym_ATsetup); END_STATE(); case 874: - ACCEPT_TOKEN(anon_sym_ATstory); + ACCEPT_TOKEN(anon_sym_ATendsetup); END_STATE(); case 875: - ACCEPT_TOKEN(anon_sym_ATendstory); + ACCEPT_TOKEN(anon_sym_ATtask); END_STATE(); case 876: - ACCEPT_TOKEN(anon_sym_ATbefore); + ACCEPT_TOKEN(anon_sym_ATendtask); END_STATE(); case 877: - ACCEPT_TOKEN(anon_sym_ATendbefore); + ACCEPT_TOKEN(anon_sym_ATstory); END_STATE(); case 878: - ACCEPT_TOKEN(anon_sym_ATafter); + ACCEPT_TOKEN(anon_sym_ATendstory); END_STATE(); case 879: - ACCEPT_TOKEN(anon_sym_ATendafter); + ACCEPT_TOKEN(anon_sym_ATbefore); END_STATE(); case 880: - ACCEPT_TOKEN(anon_sym_ATsuccess); + ACCEPT_TOKEN(anon_sym_ATendbefore); END_STATE(); case 881: - ACCEPT_TOKEN(anon_sym_ATendsuccess); + ACCEPT_TOKEN(anon_sym_ATafter); END_STATE(); case 882: - ACCEPT_TOKEN(anon_sym_ATfinished); + ACCEPT_TOKEN(anon_sym_ATendafter); END_STATE(); case 883: - ACCEPT_TOKEN(anon_sym_ATendfinished); + ACCEPT_TOKEN(anon_sym_ATsuccess); END_STATE(); case 884: - ACCEPT_TOKEN(aux_sym__notification_token1); + ACCEPT_TOKEN(anon_sym_ATendsuccess); END_STATE(); case 885: - ACCEPT_TOKEN(anon_sym_ATpersist); + ACCEPT_TOKEN(anon_sym_ATfinished); END_STATE(); case 886: - ACCEPT_TOKEN(anon_sym_ATendpersist); + ACCEPT_TOKEN(anon_sym_ATendfinished); END_STATE(); case 887: - ACCEPT_TOKEN(anon_sym_ATteleport); + ACCEPT_TOKEN(aux_sym__notification_token1); END_STATE(); case 888: - ACCEPT_TOKEN(anon_sym_ATendteleport); + ACCEPT_TOKEN(anon_sym_ATpersist); END_STATE(); case 889: - ACCEPT_TOKEN(anon_sym_ATvolt); + ACCEPT_TOKEN(anon_sym_ATendpersist); END_STATE(); case 890: - ACCEPT_TOKEN(anon_sym_ATendvolt); + ACCEPT_TOKEN(anon_sym_ATteleport); END_STATE(); case 891: - ACCEPT_TOKEN(aux_sym_parameter_token1); - if (lookahead == ')') ADVANCE(895); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(891); - if (lookahead != 0 && - lookahead != '(') ADVANCE(893); + ACCEPT_TOKEN(anon_sym_ATendteleport); END_STATE(); case 892: - ACCEPT_TOKEN(aux_sym_parameter_token1); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(892); - if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(893); + ACCEPT_TOKEN(anon_sym_ATvolt); END_STATE(); case 893: - ACCEPT_TOKEN(aux_sym_parameter_token1); - if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(893); + ACCEPT_TOKEN(anon_sym_ATendvolt); END_STATE(); case 894: - ACCEPT_TOKEN(anon_sym_LPAREN2); + ACCEPT_TOKEN(aux_sym_alpine_js_token1); END_STATE(); case 895: - ACCEPT_TOKEN(anon_sym_RPAREN2); + ACCEPT_TOKEN(aux_sym_alpine_js_token2); END_STATE(); case 896: - ACCEPT_TOKEN(aux_sym__section_parameter_token1); + ACCEPT_TOKEN(aux_sym_parameter_token1); + if (lookahead == ')') ADVANCE(900); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(896); + if (lookahead != 0 && + lookahead != '(') ADVANCE(898); END_STATE(); case 897: - ACCEPT_TOKEN(aux_sym__text_token1); + ACCEPT_TOKEN(aux_sym_parameter_token1); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(897); + if (lookahead != 0 && + lookahead != '(' && + lookahead != ')') ADVANCE(898); END_STATE(); case 898: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'T') ADVANCE(922); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ACCEPT_TOKEN(aux_sym_parameter_token1); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != ')') ADVANCE(898); END_STATE(); case 899: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'a') ADVANCE(942); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(981); - if (lookahead != 0 && - lookahead != '(' && - lookahead != '-') ADVANCE(897); + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); case 900: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'a') ADVANCE(943); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(981); - if (lookahead != 0 && - lookahead != '(' && - lookahead != '-') ADVANCE(897); + ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); case 901: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'a') ADVANCE(906); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(981); - if (lookahead != 0 && - lookahead != '(' && - lookahead != '-') ADVANCE(897); + ACCEPT_TOKEN(aux_sym__section_parameter_token1); END_STATE(); case 902: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'a') ADVANCE(929); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(981); - if (lookahead != 0 && - lookahead != '(' && - lookahead != '-') ADVANCE(897); END_STATE(); case 903: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'b') ADVANCE(923); + if (lookahead == 'T') ADVANCE(928); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 904: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'c') ADVANCE(964); + if (lookahead == 'a') ADVANCE(947); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 905: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'c') ADVANCE(954); + if (lookahead == 'a') ADVANCE(948); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 906: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'c') ADVANCE(939); + if (lookahead == 'a') ADVANCE(911); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 907: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'c') ADVANCE(908); + if (lookahead == 'a') ADVANCE(934); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 908: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'c') ADVANCE(926); + if (lookahead == 'b') ADVANCE(927); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 909: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'd') ADVANCE(884); + if (lookahead == 'c') ADVANCE(969); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 910: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'd') ADVANCE(883); + if (lookahead == 'c') ADVANCE(959); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 911: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'd') ADVANCE(903); + if (lookahead == 'c') ADVANCE(944); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 912: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'd') ADVANCE(959); + if (lookahead == 'c') ADVANCE(913); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 913: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'd') ADVANCE(921); + if (lookahead == 'c') ADVANCE(930); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 914: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'd') ADVANCE(930); + if (lookahead == 'd') ADVANCE(887); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 915: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'd') ADVANCE(902); + if (lookahead == 'd') ADVANCE(908); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 916: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'd') ADVANCE(970); + if (lookahead == 'd') ADVANCE(886); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 917: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'd') ADVANCE(975); + if (lookahead == 'd') ADVANCE(964); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 918: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'e') ADVANCE(932); + if (lookahead == 'd') ADVANCE(926); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 919: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'e') ADVANCE(877); + if (lookahead == 'd') ADVANCE(935); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 920: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'e') ADVANCE(941); + if (lookahead == 'd') ADVANCE(974); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 921: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'e') ADVANCE(966); + if (lookahead == 'd') ADVANCE(907); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 922: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'e') ADVANCE(900); + if (lookahead == 'd') ADVANCE(980); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 923: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'e') ADVANCE(931); + if (lookahead == 'e') ADVANCE(937); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 924: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'e') ADVANCE(977); + if (lookahead == 'e') ADVANCE(880); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 925: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'e') ADVANCE(910); + if (lookahead == 'e') ADVANCE(946); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 926: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'e') ADVANCE(974); + if (lookahead == 'e') ADVANCE(971); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 927: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'e') ADVANCE(961); + if (lookahead == 'e') ADVANCE(936); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 928: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'f') ADVANCE(976); + if (lookahead == 'e') ADVANCE(905); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 929: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'f') ADVANCE(978); + if (lookahead == 'e') ADVANCE(982); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 930: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'f') ADVANCE(937); + if (lookahead == 'e') ADVANCE(979); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 931: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'f') ADVANCE(956); + if (lookahead == 'e') ADVANCE(966); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 932: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'g') ADVANCE(963); + if (lookahead == 'e') ADVANCE(916); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 933: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'h') ADVANCE(957); + if (lookahead == 'f') ADVANCE(981); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 934: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'h') ADVANCE(925); + if (lookahead == 'f') ADVANCE(983); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 935: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'i') ADVANCE(972); + if (lookahead == 'f') ADVANCE(942); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 936: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'i') ADVANCE(904); + if (lookahead == 'f') ADVANCE(961); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 937: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'i') ADVANCE(951); + if (lookahead == 'g') ADVANCE(968); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 938: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'i') ADVANCE(969); + if (lookahead == 'h') ADVANCE(962); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 939: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'k') ADVANCE(884); + if (lookahead == 'h') ADVANCE(932); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 940: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'l') ADVANCE(901); + if (lookahead == 'i') ADVANCE(977); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 941: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'l') ADVANCE(918); + if (lookahead == 'i') ADVANCE(909); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 942: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'm') ADVANCE(884); + if (lookahead == 'i') ADVANCE(956); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 943: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'm') ADVANCE(968); + if (lookahead == 'i') ADVANCE(976); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 944: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'n') ADVANCE(913); + if (lookahead == 'k') ADVANCE(887); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 945: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'n') ADVANCE(914); + if (lookahead == 'l') ADVANCE(906); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 946: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'n') ADVANCE(911); + if (lookahead == 'l') ADVANCE(923); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 947: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'n') ADVANCE(916); + if (lookahead == 'm') ADVANCE(887); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 948: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'n') ADVANCE(915); + if (lookahead == 'm') ADVANCE(973); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 949: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'n') ADVANCE(912); + if (lookahead == 'n') ADVANCE(918); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 950: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'n') ADVANCE(917); + if (lookahead == 'n') ADVANCE(921); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 951: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'n') ADVANCE(938); + if (lookahead == 'n') ADVANCE(915); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 952: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'o') ADVANCE(928); + if (lookahead == 'n') ADVANCE(920); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 953: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'o') ADVANCE(973); + if (lookahead == 'n') ADVANCE(919); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 954: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'o') ADVANCE(962); + if (lookahead == 'n') ADVANCE(917); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 955: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'o') ADVANCE(960); + if (lookahead == 'n') ADVANCE(922); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 956: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'o') ADVANCE(965); + if (lookahead == 'n') ADVANCE(943); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 957: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'p') ADVANCE(123); + if (lookahead == 'o') ADVANCE(933); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 958: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'p') ADVANCE(871); + if (lookahead == 'o') ADVANCE(978); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 959: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'p') ADVANCE(933); + if (lookahead == 'o') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 960: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'r') ADVANCE(172); + if (lookahead == 'o') ADVANCE(965); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 961: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'r') ADVANCE(879); + if (lookahead == 'o') ADVANCE(970); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 962: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'r') ADVANCE(909); + if (lookahead == 'p') ADVANCE(126); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 963: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'r') ADVANCE(899); + if (lookahead == 'p') ADVANCE(874); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 964: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'r') ADVANCE(953); + if (lookahead == 'p') ADVANCE(938); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 965: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'r') ADVANCE(919); + if (lookahead == 'r') ADVANCE(175); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 966: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'r') ADVANCE(967); + if (lookahead == 'r') ADVANCE(882); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 967: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'r') ADVANCE(955); + if (lookahead == 'r') ADVANCE(914); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 968: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 's') ADVANCE(884); + if (lookahead == 'r') ADVANCE(904); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 969: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 's') ADVANCE(934); + if (lookahead == 'r') ADVANCE(958); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 970: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 's') ADVANCE(980); + if (lookahead == 'r') ADVANCE(924); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 971: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 's') ADVANCE(881); + if (lookahead == 'r') ADVANCE(972); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 972: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 's') ADVANCE(905); + if (lookahead == 'r') ADVANCE(960); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 973: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 's') ADVANCE(952); + if (lookahead == 's') ADVANCE(887); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 974: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 's') ADVANCE(971); + if (lookahead == 's') ADVANCE(985); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 975: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 's') ADVANCE(924); + if (lookahead == 's') ADVANCE(884); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 976: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 't') ADVANCE(898); + if (lookahead == 's') ADVANCE(939); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 977: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 't') ADVANCE(979); + if (lookahead == 's') ADVANCE(910); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 978: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 't') ADVANCE(927); + if (lookahead == 's') ADVANCE(957); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 979: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'u') ADVANCE(958); + if (lookahead == 's') ADVANCE(975); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 980: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'u') ADVANCE(907); + if (lookahead == 's') ADVANCE(929); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 981: ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == 't') ADVANCE(903); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 982: - ACCEPT_TOKEN(aux_sym__text_token2); + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == 't') ADVANCE(984); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(902); END_STATE(); case 983: - ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == '!') ADVANCE(111); + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == 't') ADVANCE(931); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(902); END_STATE(); case 984: - ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == '!') ADVANCE(2); - if (lookahead == '{') ADVANCE(118); + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == 'u') ADVANCE(963); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(902); END_STATE(); case 985: - ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(337); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(455); - if (lookahead == 'e') ADVANCE(193); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(366); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(340); - if (lookahead == 't') ADVANCE(239); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == 'u') ADVANCE(912); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 986: - ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(337); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'e') ADVANCE(209); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + ACCEPT_TOKEN(aux_sym__text_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 987: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'e') ADVANCE(209); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); - if (lookahead != 0 && - lookahead != '(' && - lookahead != '-') ADVANCE(897); END_STATE(); case 988: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'e') ADVANCE(195); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); - if (lookahead != 0 && - lookahead != '(' && - lookahead != '-') ADVANCE(897); + if (lookahead == '!') ADVANCE(113); END_STATE(); case 989: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'e') ADVANCE(210); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); - if (lookahead != 0 && - lookahead != '(' && - lookahead != '-') ADVANCE(897); + if (lookahead == '!') ADVANCE(2); + if (lookahead == '{') ADVANCE(121); END_STATE(); case 990: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'e') ADVANCE(194); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); - if (lookahead != 0 && - lookahead != '(' && - lookahead != '-') ADVANCE(897); + if (lookahead == '-') ADVANCE(115); END_STATE(); case 991: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'e') ADVANCE(211); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(340); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(458); + if (lookahead == 'e') ADVANCE(196); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(369); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(343); + if (lookahead == 't') ADVANCE(242); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 992: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'e') ADVANCE(196); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(340); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(212); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 993: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); if (lookahead == 'e') ADVANCE(212); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 994: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'e') ADVANCE(197); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(198); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 995: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); if (lookahead == 'e') ADVANCE(213); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(341); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(344); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 996: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'e') ADVANCE(198); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(197); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 997: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'e') ADVANCE(223); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(214); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 998: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); if (lookahead == 'e') ADVANCE(199); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 999: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'e') ADVANCE(214); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(215); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1000: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); if (lookahead == 'e') ADVANCE(200); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1001: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'e') ADVANCE(215); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(216); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1002: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); if (lookahead == 'e') ADVANCE(201); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1003: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'e') ADVANCE(216); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(217); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1004: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); if (lookahead == 'e') ADVANCE(202); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1005: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'e') ADVANCE(217); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(218); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1006: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); if (lookahead == 'e') ADVANCE(203); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1007: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'e') ADVANCE(224); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(219); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1008: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); if (lookahead == 'e') ADVANCE(204); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1009: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'e') ADVANCE(218); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(220); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1010: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'e') ADVANCE(206); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(205); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1011: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'e') ADVANCE(219); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(221); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1012: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'e') ADVANCE(205); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(206); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1013: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'e') ADVANCE(220); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(222); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1014: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'e') ADVANCE(225); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(209); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1015: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'e') ADVANCE(221); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(223); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1016: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'e') ADVANCE(222); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(207); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1017: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'e') ADVANCE(226); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(224); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1018: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'e') ADVANCE(207); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(208); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1019: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'e') ADVANCE(227); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(225); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1020: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'e') ADVANCE(228); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(226); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1021: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'e') ADVANCE(208); - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'g') ADVANCE(715); - if (lookahead == 'h') ADVANCE(236); - if (lookahead == 'i') ADVANCE(417); - if (lookahead == 'l') ADVANCE(456); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == 'p') ADVANCE(237); - if (lookahead == 'r') ADVANCE(339); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(539); - if (lookahead == 'v') ADVANCE(375); - if (lookahead == 'w') ADVANCE(451); - if (lookahead == 'y') ADVANCE(459); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(227); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1022: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'd') ADVANCE(935); - if (lookahead == 'e') ADVANCE(944); - if (lookahead == 'm') ADVANCE(936); - if (lookahead == 's') ADVANCE(940); - if (lookahead == 't') ADVANCE(920); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(228); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1023: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'd') ADVANCE(935); - if (lookahead == 'e') ADVANCE(945); - if (lookahead == 'm') ADVANCE(936); - if (lookahead == 's') ADVANCE(940); - if (lookahead == 't') ADVANCE(920); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(229); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1024: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'd') ADVANCE(935); - if (lookahead == 'e') ADVANCE(946); - if (lookahead == 'm') ADVANCE(936); - if (lookahead == 's') ADVANCE(940); - if (lookahead == 't') ADVANCE(920); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(210); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1025: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'd') ADVANCE(935); - if (lookahead == 'e') ADVANCE(947); - if (lookahead == 'm') ADVANCE(936); - if (lookahead == 's') ADVANCE(940); - if (lookahead == 't') ADVANCE(920); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(230); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1026: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'd') ADVANCE(935); - if (lookahead == 'e') ADVANCE(948); - if (lookahead == 'm') ADVANCE(936); - if (lookahead == 's') ADVANCE(940); - if (lookahead == 't') ADVANCE(920); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(231); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1027: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'e') ADVANCE(949); + if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(211); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(718); + if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(342); + if (lookahead == 's') ADVANCE(345); + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'v') ADVANCE(378); + if (lookahead == 'w') ADVANCE(454); + if (lookahead == 'y') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(751); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1028: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'e') ADVANCE(950); + if (lookahead == 'd') ADVANCE(940); + if (lookahead == 'e') ADVANCE(949); + if (lookahead == 'm') ADVANCE(941); + if (lookahead == 's') ADVANCE(945); + if (lookahead == 't') ADVANCE(925); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1029: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == '}') ADVANCE(119); + if (lookahead == 'd') ADVANCE(940); + if (lookahead == 'e') ADVANCE(950); + if (lookahead == 'm') ADVANCE(941); + if (lookahead == 's') ADVANCE(945); + if (lookahead == 't') ADVANCE(925); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(902); END_STATE(); case 1030: ACCEPT_TOKEN(aux_sym__text_token2); + if (lookahead == 'd') ADVANCE(940); + if (lookahead == 'e') ADVANCE(951); + if (lookahead == 'm') ADVANCE(941); + if (lookahead == 's') ADVANCE(945); + if (lookahead == 't') ADVANCE(925); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(897); + lookahead != '-') ADVANCE(902); END_STATE(); case 1031: + ACCEPT_TOKEN(aux_sym__text_token2); + if (lookahead == 'd') ADVANCE(940); + if (lookahead == 'e') ADVANCE(952); + if (lookahead == 'm') ADVANCE(941); + if (lookahead == 's') ADVANCE(945); + if (lookahead == 't') ADVANCE(925); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(902); + END_STATE(); + case 1032: + ACCEPT_TOKEN(aux_sym__text_token2); + if (lookahead == 'd') ADVANCE(940); + if (lookahead == 'e') ADVANCE(953); + if (lookahead == 'm') ADVANCE(941); + if (lookahead == 's') ADVANCE(945); + if (lookahead == 't') ADVANCE(925); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(902); + END_STATE(); + case 1033: + ACCEPT_TOKEN(aux_sym__text_token2); + if (lookahead == 'e') ADVANCE(954); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(902); + END_STATE(); + case 1034: + ACCEPT_TOKEN(aux_sym__text_token2); + if (lookahead == 'e') ADVANCE(955); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(902); + END_STATE(); + case 1035: + ACCEPT_TOKEN(aux_sym__text_token2); + if (lookahead == '}') ADVANCE(122); + END_STATE(); + case 1036: + ACCEPT_TOKEN(aux_sym__text_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(902); + END_STATE(); + case 1037: ACCEPT_TOKEN(aux_sym__text_token3); if (lookahead == '-') ADVANCE(45); if (lookahead != 0 && lookahead != '!' && - lookahead != '(' && - lookahead != ')' && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && lookahead != ',' && lookahead != '?' && lookahead != '@' && + lookahead != 'x' && lookahead != '{' && - lookahead != '}') ADVANCE(1031); + lookahead != '}') ADVANCE(1037); END_STATE(); default: return false; @@ -18775,7 +19105,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 114}, + [1] = {.lex_state = 117}, [2] = {.lex_state = 5}, [3] = {.lex_state = 5}, [4] = {.lex_state = 5}, @@ -18846,4378 +19176,4378 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [69] = {.lex_state = 5}, [70] = {.lex_state = 5}, [71] = {.lex_state = 5}, - [72] = {.lex_state = 54}, - [73] = {.lex_state = 63}, - [74] = {.lex_state = 66}, - [75] = {.lex_state = 69}, - [76] = {.lex_state = 90}, - [77] = {.lex_state = 66}, - [78] = {.lex_state = 72}, - [79] = {.lex_state = 63}, - [80] = {.lex_state = 63}, - [81] = {.lex_state = 63}, - [82] = {.lex_state = 63}, - [83] = {.lex_state = 74}, - [84] = {.lex_state = 63}, - [85] = {.lex_state = 72}, - [86] = {.lex_state = 76}, - [87] = {.lex_state = 63}, - [88] = {.lex_state = 78}, - [89] = {.lex_state = 69}, - [90] = {.lex_state = 69}, - [91] = {.lex_state = 63}, - [92] = {.lex_state = 63}, - [93] = {.lex_state = 63}, - [94] = {.lex_state = 63}, - [95] = {.lex_state = 63}, - [96] = {.lex_state = 63}, - [97] = {.lex_state = 63}, - [98] = {.lex_state = 80}, - [99] = {.lex_state = 63}, - [100] = {.lex_state = 63}, - [101] = {.lex_state = 82}, - [102] = {.lex_state = 63}, - [103] = {.lex_state = 80}, - [104] = {.lex_state = 63}, - [105] = {.lex_state = 54}, - [106] = {.lex_state = 54}, - [107] = {.lex_state = 74}, - [108] = {.lex_state = 63}, - [109] = {.lex_state = 92}, - [110] = {.lex_state = 63}, - [111] = {.lex_state = 63}, - [112] = {.lex_state = 74}, - [113] = {.lex_state = 63}, - [114] = {.lex_state = 84}, - [115] = {.lex_state = 92}, - [116] = {.lex_state = 63}, - [117] = {.lex_state = 90}, - [118] = {.lex_state = 84}, - [119] = {.lex_state = 90}, - [120] = {.lex_state = 78}, - [121] = {.lex_state = 92}, - [122] = {.lex_state = 86}, - [123] = {.lex_state = 86}, - [124] = {.lex_state = 66}, - [125] = {.lex_state = 78}, - [126] = {.lex_state = 86}, - [127] = {.lex_state = 63}, - [128] = {.lex_state = 63}, - [129] = {.lex_state = 84}, - [130] = {.lex_state = 76}, - [131] = {.lex_state = 76}, - [132] = {.lex_state = 63}, - [133] = {.lex_state = 63}, - [134] = {.lex_state = 63}, - [135] = {.lex_state = 63}, - [136] = {.lex_state = 80}, - [137] = {.lex_state = 82}, - [138] = {.lex_state = 63}, - [139] = {.lex_state = 63}, - [140] = {.lex_state = 82}, - [141] = {.lex_state = 63}, - [142] = {.lex_state = 63}, - [143] = {.lex_state = 63}, - [144] = {.lex_state = 63}, - [145] = {.lex_state = 63}, - [146] = {.lex_state = 72}, - [147] = {.lex_state = 53}, - [148] = {.lex_state = 53}, - [149] = {.lex_state = 53}, - [150] = {.lex_state = 53}, - [151] = {.lex_state = 53}, - [152] = {.lex_state = 53}, - [153] = {.lex_state = 53}, - [154] = {.lex_state = 53}, - [155] = {.lex_state = 53}, - [156] = {.lex_state = 53}, - [157] = {.lex_state = 53}, - [158] = {.lex_state = 53}, - [159] = {.lex_state = 53}, - [160] = {.lex_state = 53}, - [161] = {.lex_state = 53}, - [162] = {.lex_state = 53}, - [163] = {.lex_state = 53}, - [164] = {.lex_state = 53}, - [165] = {.lex_state = 53}, - [166] = {.lex_state = 53}, - [167] = {.lex_state = 53}, - [168] = {.lex_state = 53}, - [169] = {.lex_state = 53}, - [170] = {.lex_state = 53}, - [171] = {.lex_state = 53}, - [172] = {.lex_state = 53}, - [173] = {.lex_state = 53}, - [174] = {.lex_state = 53}, - [175] = {.lex_state = 53}, - [176] = {.lex_state = 53}, - [177] = {.lex_state = 53}, - [178] = {.lex_state = 53}, - [179] = {.lex_state = 53}, - [180] = {.lex_state = 53}, - [181] = {.lex_state = 53}, - [182] = {.lex_state = 53}, - [183] = {.lex_state = 53}, - [184] = {.lex_state = 55}, - [185] = {.lex_state = 55}, - [186] = {.lex_state = 57}, - [187] = {.lex_state = 58}, - [188] = {.lex_state = 55}, - [189] = {.lex_state = 56}, - [190] = {.lex_state = 55}, - [191] = {.lex_state = 55}, - [192] = {.lex_state = 56}, - [193] = {.lex_state = 56}, - [194] = {.lex_state = 55}, - [195] = {.lex_state = 56}, - [196] = {.lex_state = 57}, - [197] = {.lex_state = 58}, - [198] = {.lex_state = 57}, - [199] = {.lex_state = 58}, - [200] = {.lex_state = 55}, - [201] = {.lex_state = 56}, - [202] = {.lex_state = 55}, - [203] = {.lex_state = 55}, - [204] = {.lex_state = 56}, - [205] = {.lex_state = 56}, - [206] = {.lex_state = 56}, - [207] = {.lex_state = 55}, - [208] = {.lex_state = 56}, - [209] = {.lex_state = 56}, + [72] = {.lex_state = 56}, + [73] = {.lex_state = 62}, + [74] = {.lex_state = 65}, + [75] = {.lex_state = 68}, + [76] = {.lex_state = 71}, + [77] = {.lex_state = 91}, + [78] = {.lex_state = 71}, + [79] = {.lex_state = 73}, + [80] = {.lex_state = 71}, + [81] = {.lex_state = 75}, + [82] = {.lex_state = 71}, + [83] = {.lex_state = 71}, + [84] = {.lex_state = 62}, + [85] = {.lex_state = 65}, + [86] = {.lex_state = 94}, + [87] = {.lex_state = 71}, + [88] = {.lex_state = 71}, + [89] = {.lex_state = 68}, + [90] = {.lex_state = 75}, + [91] = {.lex_state = 75}, + [92] = {.lex_state = 71}, + [93] = {.lex_state = 71}, + [94] = {.lex_state = 71}, + [95] = {.lex_state = 71}, + [96] = {.lex_state = 71}, + [97] = {.lex_state = 71}, + [98] = {.lex_state = 71}, + [99] = {.lex_state = 77}, + [100] = {.lex_state = 71}, + [101] = {.lex_state = 71}, + [102] = {.lex_state = 77}, + [103] = {.lex_state = 56}, + [104] = {.lex_state = 56}, + [105] = {.lex_state = 71}, + [106] = {.lex_state = 71}, + [107] = {.lex_state = 62}, + [108] = {.lex_state = 71}, + [109] = {.lex_state = 94}, + [110] = {.lex_state = 71}, + [111] = {.lex_state = 71}, + [112] = {.lex_state = 71}, + [113] = {.lex_state = 79}, + [114] = {.lex_state = 71}, + [115] = {.lex_state = 81}, + [116] = {.lex_state = 71}, + [117] = {.lex_state = 91}, + [118] = {.lex_state = 79}, + [119] = {.lex_state = 91}, + [120] = {.lex_state = 83}, + [121] = {.lex_state = 83}, + [122] = {.lex_state = 94}, + [123] = {.lex_state = 85}, + [124] = {.lex_state = 85}, + [125] = {.lex_state = 68}, + [126] = {.lex_state = 83}, + [127] = {.lex_state = 71}, + [128] = {.lex_state = 85}, + [129] = {.lex_state = 79}, + [130] = {.lex_state = 65}, + [131] = {.lex_state = 73}, + [132] = {.lex_state = 73}, + [133] = {.lex_state = 71}, + [134] = {.lex_state = 71}, + [135] = {.lex_state = 71}, + [136] = {.lex_state = 77}, + [137] = {.lex_state = 71}, + [138] = {.lex_state = 81}, + [139] = {.lex_state = 71}, + [140] = {.lex_state = 81}, + [141] = {.lex_state = 71}, + [142] = {.lex_state = 71}, + [143] = {.lex_state = 71}, + [144] = {.lex_state = 71}, + [145] = {.lex_state = 71}, + [146] = {.lex_state = 71}, + [147] = {.lex_state = 55}, + [148] = {.lex_state = 55}, + [149] = {.lex_state = 55}, + [150] = {.lex_state = 55}, + [151] = {.lex_state = 55}, + [152] = {.lex_state = 55}, + [153] = {.lex_state = 55}, + [154] = {.lex_state = 55}, + [155] = {.lex_state = 55}, + [156] = {.lex_state = 55}, + [157] = {.lex_state = 55}, + [158] = {.lex_state = 55}, + [159] = {.lex_state = 55}, + [160] = {.lex_state = 55}, + [161] = {.lex_state = 55}, + [162] = {.lex_state = 55}, + [163] = {.lex_state = 55}, + [164] = {.lex_state = 55}, + [165] = {.lex_state = 55}, + [166] = {.lex_state = 55}, + [167] = {.lex_state = 55}, + [168] = {.lex_state = 55}, + [169] = {.lex_state = 55}, + [170] = {.lex_state = 55}, + [171] = {.lex_state = 55}, + [172] = {.lex_state = 55}, + [173] = {.lex_state = 55}, + [174] = {.lex_state = 55}, + [175] = {.lex_state = 55}, + [176] = {.lex_state = 55}, + [177] = {.lex_state = 55}, + [178] = {.lex_state = 55}, + [179] = {.lex_state = 55}, + [180] = {.lex_state = 55}, + [181] = {.lex_state = 55}, + [182] = {.lex_state = 55}, + [183] = {.lex_state = 55}, + [184] = {.lex_state = 57}, + [185] = {.lex_state = 58}, + [186] = {.lex_state = 63}, + [187] = {.lex_state = 66}, + [188] = {.lex_state = 58}, + [189] = {.lex_state = 57}, + [190] = {.lex_state = 58}, + [191] = {.lex_state = 58}, + [192] = {.lex_state = 57}, + [193] = {.lex_state = 57}, + [194] = {.lex_state = 58}, + [195] = {.lex_state = 57}, + [196] = {.lex_state = 63}, + [197] = {.lex_state = 66}, + [198] = {.lex_state = 63}, + [199] = {.lex_state = 66}, + [200] = {.lex_state = 58}, + [201] = {.lex_state = 57}, + [202] = {.lex_state = 58}, + [203] = {.lex_state = 58}, + [204] = {.lex_state = 57}, + [205] = {.lex_state = 57}, + [206] = {.lex_state = 58}, + [207] = {.lex_state = 57}, + [208] = {.lex_state = 57}, + [209] = {.lex_state = 63}, [210] = {.lex_state = 57}, - [211] = {.lex_state = 55}, - [212] = {.lex_state = 58}, - [213] = {.lex_state = 55}, - [214] = {.lex_state = 57}, + [211] = {.lex_state = 66}, + [212] = {.lex_state = 63}, + [213] = {.lex_state = 66}, + [214] = {.lex_state = 58}, [215] = {.lex_state = 58}, - [216] = {.lex_state = 55}, - [217] = {.lex_state = 56}, - [218] = {.lex_state = 55}, - [219] = {.lex_state = 55}, - [220] = {.lex_state = 56}, - [221] = {.lex_state = 56}, - [222] = {.lex_state = 56}, - [223] = {.lex_state = 55}, - [224] = {.lex_state = 56}, - [225] = {.lex_state = 55}, - [226] = {.lex_state = 57}, - [227] = {.lex_state = 58}, - [228] = {.lex_state = 57}, - [229] = {.lex_state = 58}, - [230] = {.lex_state = 57}, - [231] = {.lex_state = 55}, - [232] = {.lex_state = 56}, - [233] = {.lex_state = 55}, - [234] = {.lex_state = 55}, - [235] = {.lex_state = 56}, - [236] = {.lex_state = 56}, - [237] = {.lex_state = 55}, - [238] = {.lex_state = 56}, - [239] = {.lex_state = 57}, - [240] = {.lex_state = 58}, - [241] = {.lex_state = 57}, - [242] = {.lex_state = 58}, - [243] = {.lex_state = 55}, - [244] = {.lex_state = 56}, - [245] = {.lex_state = 55}, - [246] = {.lex_state = 59}, - [247] = {.lex_state = 55}, - [248] = {.lex_state = 56}, - [249] = {.lex_state = 56}, - [250] = {.lex_state = 64}, - [251] = {.lex_state = 55}, - [252] = {.lex_state = 56}, - [253] = {.lex_state = 57}, - [254] = {.lex_state = 58}, - [255] = {.lex_state = 57}, - [256] = {.lex_state = 58}, - [257] = {.lex_state = 55}, - [258] = {.lex_state = 55}, - [259] = {.lex_state = 56}, - [260] = {.lex_state = 55}, - [261] = {.lex_state = 55}, - [262] = {.lex_state = 56}, - [263] = {.lex_state = 56}, - [264] = {.lex_state = 55}, - [265] = {.lex_state = 56}, - [266] = {.lex_state = 59}, - [267] = {.lex_state = 58}, - [268] = {.lex_state = 57}, - [269] = {.lex_state = 57}, - [270] = {.lex_state = 58}, - [271] = {.lex_state = 57}, - [272] = {.lex_state = 58}, - [273] = {.lex_state = 55}, - [274] = {.lex_state = 56}, - [275] = {.lex_state = 55}, - [276] = {.lex_state = 57}, - [277] = {.lex_state = 55}, - [278] = {.lex_state = 56}, - [279] = {.lex_state = 56}, - [280] = {.lex_state = 55}, - [281] = {.lex_state = 56}, - [282] = {.lex_state = 55}, - [283] = {.lex_state = 56}, - [284] = {.lex_state = 55}, - [285] = {.lex_state = 57}, - [286] = {.lex_state = 58}, - [287] = {.lex_state = 57}, - [288] = {.lex_state = 58}, - [289] = {.lex_state = 55}, - [290] = {.lex_state = 56}, - [291] = {.lex_state = 55}, - [292] = {.lex_state = 55}, - [293] = {.lex_state = 56}, - [294] = {.lex_state = 56}, - [295] = {.lex_state = 55}, - [296] = {.lex_state = 56}, - [297] = {.lex_state = 56}, - [298] = {.lex_state = 57}, - [299] = {.lex_state = 58}, - [300] = {.lex_state = 57}, - [301] = {.lex_state = 58}, - [302] = {.lex_state = 55}, - [303] = {.lex_state = 56}, - [304] = {.lex_state = 55}, - [305] = {.lex_state = 55}, - [306] = {.lex_state = 56}, - [307] = {.lex_state = 56}, - [308] = {.lex_state = 55}, - [309] = {.lex_state = 56}, - [310] = {.lex_state = 56}, - [311] = {.lex_state = 57}, - [312] = {.lex_state = 58}, - [313] = {.lex_state = 57}, - [314] = {.lex_state = 58}, - [315] = {.lex_state = 55}, - [316] = {.lex_state = 56}, - [317] = {.lex_state = 55}, - [318] = {.lex_state = 55}, - [319] = {.lex_state = 56}, - [320] = {.lex_state = 56}, - [321] = {.lex_state = 55}, - [322] = {.lex_state = 56}, - [323] = {.lex_state = 55}, - [324] = {.lex_state = 57}, - [325] = {.lex_state = 58}, - [326] = {.lex_state = 57}, - [327] = {.lex_state = 58}, - [328] = {.lex_state = 64}, - [329] = {.lex_state = 55}, - [330] = {.lex_state = 56}, - [331] = {.lex_state = 55}, - [332] = {.lex_state = 55}, - [333] = {.lex_state = 56}, - [334] = {.lex_state = 56}, - [335] = {.lex_state = 55}, - [336] = {.lex_state = 56}, - [337] = {.lex_state = 55}, - [338] = {.lex_state = 57}, - [339] = {.lex_state = 58}, - [340] = {.lex_state = 57}, - [341] = {.lex_state = 58}, - [342] = {.lex_state = 55}, - [343] = {.lex_state = 56}, - [344] = {.lex_state = 55}, - [345] = {.lex_state = 67}, - [346] = {.lex_state = 55}, - [347] = {.lex_state = 56}, - [348] = {.lex_state = 56}, - [349] = {.lex_state = 56}, - [350] = {.lex_state = 70}, - [351] = {.lex_state = 55}, - [352] = {.lex_state = 56}, - [353] = {.lex_state = 55}, - [354] = {.lex_state = 57}, - [355] = {.lex_state = 58}, - [356] = {.lex_state = 57}, - [357] = {.lex_state = 58}, - [358] = {.lex_state = 55}, - [359] = {.lex_state = 56}, - [360] = {.lex_state = 55}, - [361] = {.lex_state = 55}, - [362] = {.lex_state = 56}, - [363] = {.lex_state = 56}, - [364] = {.lex_state = 67}, - [365] = {.lex_state = 55}, - [366] = {.lex_state = 73}, - [367] = {.lex_state = 56}, - [368] = {.lex_state = 57}, - [369] = {.lex_state = 57}, - [370] = {.lex_state = 58}, - [371] = {.lex_state = 57}, - [372] = {.lex_state = 58}, - [373] = {.lex_state = 57}, - [374] = {.lex_state = 58}, - [375] = {.lex_state = 56}, - [376] = {.lex_state = 55}, - [377] = {.lex_state = 55}, - [378] = {.lex_state = 56}, - [379] = {.lex_state = 56}, - [380] = {.lex_state = 57}, - [381] = {.lex_state = 55}, - [382] = {.lex_state = 56}, - [383] = {.lex_state = 56}, - [384] = {.lex_state = 57}, - [385] = {.lex_state = 58}, - [386] = {.lex_state = 57}, - [387] = {.lex_state = 58}, - [388] = {.lex_state = 55}, - [389] = {.lex_state = 56}, - [390] = {.lex_state = 55}, - [391] = {.lex_state = 55}, - [392] = {.lex_state = 56}, - [393] = {.lex_state = 56}, - [394] = {.lex_state = 55}, - [395] = {.lex_state = 56}, - [396] = {.lex_state = 55}, - [397] = {.lex_state = 57}, - [398] = {.lex_state = 58}, - [399] = {.lex_state = 57}, - [400] = {.lex_state = 58}, - [401] = {.lex_state = 55}, - [402] = {.lex_state = 56}, - [403] = {.lex_state = 55}, - [404] = {.lex_state = 55}, - [405] = {.lex_state = 56}, - [406] = {.lex_state = 56}, - [407] = {.lex_state = 55}, - [408] = {.lex_state = 56}, - [409] = {.lex_state = 56}, - [410] = {.lex_state = 57}, - [411] = {.lex_state = 58}, - [412] = {.lex_state = 57}, - [413] = {.lex_state = 58}, - [414] = {.lex_state = 55}, - [415] = {.lex_state = 56}, - [416] = {.lex_state = 55}, - [417] = {.lex_state = 55}, - [418] = {.lex_state = 56}, - [419] = {.lex_state = 56}, - [420] = {.lex_state = 55}, - [421] = {.lex_state = 56}, - [422] = {.lex_state = 75}, - [423] = {.lex_state = 114}, - [424] = {.lex_state = 56}, - [425] = {.lex_state = 57}, - [426] = {.lex_state = 58}, - [427] = {.lex_state = 57}, - [428] = {.lex_state = 58}, - [429] = {.lex_state = 55}, - [430] = {.lex_state = 56}, - [431] = {.lex_state = 89}, - [432] = {.lex_state = 55}, - [433] = {.lex_state = 55}, - [434] = {.lex_state = 56}, - [435] = {.lex_state = 56}, - [436] = {.lex_state = 55}, - [437] = {.lex_state = 56}, - [438] = {.lex_state = 55}, - [439] = {.lex_state = 91}, - [440] = {.lex_state = 57}, - [441] = {.lex_state = 58}, - [442] = {.lex_state = 55}, - [443] = {.lex_state = 57}, - [444] = {.lex_state = 73}, - [445] = {.lex_state = 58}, - [446] = {.lex_state = 55}, - [447] = {.lex_state = 56}, - [448] = {.lex_state = 55}, - [449] = {.lex_state = 55}, - [450] = {.lex_state = 56}, - [451] = {.lex_state = 56}, - [452] = {.lex_state = 55}, - [453] = {.lex_state = 56}, - [454] = {.lex_state = 56}, - [455] = {.lex_state = 57}, - [456] = {.lex_state = 58}, - [457] = {.lex_state = 57}, - [458] = {.lex_state = 91}, + [216] = {.lex_state = 58}, + [217] = {.lex_state = 57}, + [218] = {.lex_state = 58}, + [219] = {.lex_state = 58}, + [220] = {.lex_state = 57}, + [221] = {.lex_state = 57}, + [222] = {.lex_state = 58}, + [223] = {.lex_state = 57}, + [224] = {.lex_state = 57}, + [225] = {.lex_state = 63}, + [226] = {.lex_state = 66}, + [227] = {.lex_state = 63}, + [228] = {.lex_state = 58}, + [229] = {.lex_state = 66}, + [230] = {.lex_state = 58}, + [231] = {.lex_state = 57}, + [232] = {.lex_state = 58}, + [233] = {.lex_state = 58}, + [234] = {.lex_state = 63}, + [235] = {.lex_state = 57}, + [236] = {.lex_state = 57}, + [237] = {.lex_state = 58}, + [238] = {.lex_state = 57}, + [239] = {.lex_state = 63}, + [240] = {.lex_state = 66}, + [241] = {.lex_state = 63}, + [242] = {.lex_state = 66}, + [243] = {.lex_state = 58}, + [244] = {.lex_state = 57}, + [245] = {.lex_state = 58}, + [246] = {.lex_state = 58}, + [247] = {.lex_state = 57}, + [248] = {.lex_state = 57}, + [249] = {.lex_state = 58}, + [250] = {.lex_state = 69}, + [251] = {.lex_state = 57}, + [252] = {.lex_state = 63}, + [253] = {.lex_state = 72}, + [254] = {.lex_state = 66}, + [255] = {.lex_state = 63}, + [256] = {.lex_state = 66}, + [257] = {.lex_state = 58}, + [258] = {.lex_state = 57}, + [259] = {.lex_state = 58}, + [260] = {.lex_state = 58}, + [261] = {.lex_state = 58}, + [262] = {.lex_state = 57}, + [263] = {.lex_state = 57}, + [264] = {.lex_state = 58}, + [265] = {.lex_state = 57}, + [266] = {.lex_state = 66}, + [267] = {.lex_state = 63}, + [268] = {.lex_state = 66}, + [269] = {.lex_state = 63}, + [270] = {.lex_state = 69}, + [271] = {.lex_state = 66}, + [272] = {.lex_state = 63}, + [273] = {.lex_state = 58}, + [274] = {.lex_state = 57}, + [275] = {.lex_state = 58}, + [276] = {.lex_state = 58}, + [277] = {.lex_state = 57}, + [278] = {.lex_state = 57}, + [279] = {.lex_state = 58}, + [280] = {.lex_state = 66}, + [281] = {.lex_state = 57}, + [282] = {.lex_state = 63}, + [283] = {.lex_state = 63}, + [284] = {.lex_state = 66}, + [285] = {.lex_state = 63}, + [286] = {.lex_state = 57}, + [287] = {.lex_state = 58}, + [288] = {.lex_state = 66}, + [289] = {.lex_state = 58}, + [290] = {.lex_state = 57}, + [291] = {.lex_state = 58}, + [292] = {.lex_state = 58}, + [293] = {.lex_state = 57}, + [294] = {.lex_state = 57}, + [295] = {.lex_state = 58}, + [296] = {.lex_state = 57}, + [297] = {.lex_state = 57}, + [298] = {.lex_state = 63}, + [299] = {.lex_state = 66}, + [300] = {.lex_state = 63}, + [301] = {.lex_state = 66}, + [302] = {.lex_state = 58}, + [303] = {.lex_state = 57}, + [304] = {.lex_state = 58}, + [305] = {.lex_state = 58}, + [306] = {.lex_state = 57}, + [307] = {.lex_state = 57}, + [308] = {.lex_state = 58}, + [309] = {.lex_state = 57}, + [310] = {.lex_state = 57}, + [311] = {.lex_state = 63}, + [312] = {.lex_state = 66}, + [313] = {.lex_state = 63}, + [314] = {.lex_state = 66}, + [315] = {.lex_state = 58}, + [316] = {.lex_state = 57}, + [317] = {.lex_state = 58}, + [318] = {.lex_state = 58}, + [319] = {.lex_state = 57}, + [320] = {.lex_state = 57}, + [321] = {.lex_state = 58}, + [322] = {.lex_state = 57}, + [323] = {.lex_state = 58}, + [324] = {.lex_state = 63}, + [325] = {.lex_state = 66}, + [326] = {.lex_state = 63}, + [327] = {.lex_state = 66}, + [328] = {.lex_state = 58}, + [329] = {.lex_state = 57}, + [330] = {.lex_state = 58}, + [331] = {.lex_state = 58}, + [332] = {.lex_state = 57}, + [333] = {.lex_state = 92}, + [334] = {.lex_state = 57}, + [335] = {.lex_state = 58}, + [336] = {.lex_state = 57}, + [337] = {.lex_state = 58}, + [338] = {.lex_state = 63}, + [339] = {.lex_state = 66}, + [340] = {.lex_state = 63}, + [341] = {.lex_state = 66}, + [342] = {.lex_state = 58}, + [343] = {.lex_state = 57}, + [344] = {.lex_state = 58}, + [345] = {.lex_state = 58}, + [346] = {.lex_state = 57}, + [347] = {.lex_state = 57}, + [348] = {.lex_state = 58}, + [349] = {.lex_state = 57}, + [350] = {.lex_state = 74}, + [351] = {.lex_state = 57}, + [352] = {.lex_state = 63}, + [353] = {.lex_state = 58}, + [354] = {.lex_state = 66}, + [355] = {.lex_state = 117}, + [356] = {.lex_state = 63}, + [357] = {.lex_state = 66}, + [358] = {.lex_state = 58}, + [359] = {.lex_state = 57}, + [360] = {.lex_state = 58}, + [361] = {.lex_state = 58}, + [362] = {.lex_state = 57}, + [363] = {.lex_state = 57}, + [364] = {.lex_state = 58}, + [365] = {.lex_state = 57}, + [366] = {.lex_state = 66}, + [367] = {.lex_state = 63}, + [368] = {.lex_state = 66}, + [369] = {.lex_state = 74}, + [370] = {.lex_state = 63}, + [371] = {.lex_state = 76}, + [372] = {.lex_state = 66}, + [373] = {.lex_state = 58}, + [374] = {.lex_state = 78}, + [375] = {.lex_state = 58}, + [376] = {.lex_state = 58}, + [377] = {.lex_state = 57}, + [378] = {.lex_state = 57}, + [379] = {.lex_state = 63}, + [380] = {.lex_state = 58}, + [381] = {.lex_state = 57}, + [382] = {.lex_state = 66}, + [383] = {.lex_state = 63}, + [384] = {.lex_state = 66}, + [385] = {.lex_state = 63}, + [386] = {.lex_state = 63}, + [387] = {.lex_state = 66}, + [388] = {.lex_state = 58}, + [389] = {.lex_state = 57}, + [390] = {.lex_state = 58}, + [391] = {.lex_state = 58}, + [392] = {.lex_state = 57}, + [393] = {.lex_state = 57}, + [394] = {.lex_state = 58}, + [395] = {.lex_state = 57}, + [396] = {.lex_state = 57}, + [397] = {.lex_state = 63}, + [398] = {.lex_state = 66}, + [399] = {.lex_state = 63}, + [400] = {.lex_state = 66}, + [401] = {.lex_state = 58}, + [402] = {.lex_state = 57}, + [403] = {.lex_state = 58}, + [404] = {.lex_state = 58}, + [405] = {.lex_state = 57}, + [406] = {.lex_state = 57}, + [407] = {.lex_state = 58}, + [408] = {.lex_state = 57}, + [409] = {.lex_state = 58}, + [410] = {.lex_state = 63}, + [411] = {.lex_state = 66}, + [412] = {.lex_state = 63}, + [413] = {.lex_state = 66}, + [414] = {.lex_state = 58}, + [415] = {.lex_state = 57}, + [416] = {.lex_state = 58}, + [417] = {.lex_state = 58}, + [418] = {.lex_state = 57}, + [419] = {.lex_state = 57}, + [420] = {.lex_state = 58}, + [421] = {.lex_state = 57}, + [422] = {.lex_state = 57}, + [423] = {.lex_state = 63}, + [424] = {.lex_state = 66}, + [425] = {.lex_state = 63}, + [426] = {.lex_state = 66}, + [427] = {.lex_state = 58}, + [428] = {.lex_state = 92}, + [429] = {.lex_state = 80}, + [430] = {.lex_state = 57}, + [431] = {.lex_state = 58}, + [432] = {.lex_state = 58}, + [433] = {.lex_state = 57}, + [434] = {.lex_state = 57}, + [435] = {.lex_state = 58}, + [436] = {.lex_state = 57}, + [437] = {.lex_state = 76}, + [438] = {.lex_state = 57}, + [439] = {.lex_state = 63}, + [440] = {.lex_state = 66}, + [441] = {.lex_state = 63}, + [442] = {.lex_state = 66}, + [443] = {.lex_state = 58}, + [444] = {.lex_state = 57}, + [445] = {.lex_state = 93}, + [446] = {.lex_state = 58}, + [447] = {.lex_state = 58}, + [448] = {.lex_state = 58}, + [449] = {.lex_state = 57}, + [450] = {.lex_state = 66}, + [451] = {.lex_state = 57}, + [452] = {.lex_state = 58}, + [453] = {.lex_state = 57}, + [454] = {.lex_state = 58}, + [455] = {.lex_state = 63}, + [456] = {.lex_state = 66}, + [457] = {.lex_state = 63}, + [458] = {.lex_state = 66}, [459] = {.lex_state = 58}, - [460] = {.lex_state = 59}, - [461] = {.lex_state = 55}, - [462] = {.lex_state = 56}, - [463] = {.lex_state = 55}, - [464] = {.lex_state = 55}, - [465] = {.lex_state = 56}, - [466] = {.lex_state = 56}, + [460] = {.lex_state = 57}, + [461] = {.lex_state = 58}, + [462] = {.lex_state = 58}, + [463] = {.lex_state = 57}, + [464] = {.lex_state = 93}, + [465] = {.lex_state = 57}, + [466] = {.lex_state = 69}, [467] = {.lex_state = 58}, - [468] = {.lex_state = 55}, - [469] = {.lex_state = 56}, - [470] = {.lex_state = 58}, - [471] = {.lex_state = 57}, - [472] = {.lex_state = 58}, - [473] = {.lex_state = 57}, - [474] = {.lex_state = 57}, + [468] = {.lex_state = 57}, + [469] = {.lex_state = 57}, + [470] = {.lex_state = 63}, + [471] = {.lex_state = 66}, + [472] = {.lex_state = 63}, + [473] = {.lex_state = 66}, + [474] = {.lex_state = 58}, [475] = {.lex_state = 58}, - [476] = {.lex_state = 55}, - [477] = {.lex_state = 56}, - [478] = {.lex_state = 55}, - [479] = {.lex_state = 55}, - [480] = {.lex_state = 56}, - [481] = {.lex_state = 56}, - [482] = {.lex_state = 55}, - [483] = {.lex_state = 56}, - [484] = {.lex_state = 58}, - [485] = {.lex_state = 57}, - [486] = {.lex_state = 58}, - [487] = {.lex_state = 57}, - [488] = {.lex_state = 58}, - [489] = {.lex_state = 55}, - [490] = {.lex_state = 56}, - [491] = {.lex_state = 55}, - [492] = {.lex_state = 55}, - [493] = {.lex_state = 56}, - [494] = {.lex_state = 56}, - [495] = {.lex_state = 55}, - [496] = {.lex_state = 56}, - [497] = {.lex_state = 56}, - [498] = {.lex_state = 57}, - [499] = {.lex_state = 58}, - [500] = {.lex_state = 57}, - [501] = {.lex_state = 58}, - [502] = {.lex_state = 55}, - [503] = {.lex_state = 56}, - [504] = {.lex_state = 55}, - [505] = {.lex_state = 55}, - [506] = {.lex_state = 56}, - [507] = {.lex_state = 56}, - [508] = {.lex_state = 55}, - [509] = {.lex_state = 56}, - [510] = {.lex_state = 58}, - [511] = {.lex_state = 57}, - [512] = {.lex_state = 58}, - [513] = {.lex_state = 57}, - [514] = {.lex_state = 58}, - [515] = {.lex_state = 55}, - [516] = {.lex_state = 77}, + [476] = {.lex_state = 57}, + [477] = {.lex_state = 58}, + [478] = {.lex_state = 58}, + [479] = {.lex_state = 57}, + [480] = {.lex_state = 66}, + [481] = {.lex_state = 57}, + [482] = {.lex_state = 58}, + [483] = {.lex_state = 57}, + [484] = {.lex_state = 63}, + [485] = {.lex_state = 63}, + [486] = {.lex_state = 66}, + [487] = {.lex_state = 63}, + [488] = {.lex_state = 66}, + [489] = {.lex_state = 58}, + [490] = {.lex_state = 57}, + [491] = {.lex_state = 58}, + [492] = {.lex_state = 58}, + [493] = {.lex_state = 57}, + [494] = {.lex_state = 57}, + [495] = {.lex_state = 58}, + [496] = {.lex_state = 57}, + [497] = {.lex_state = 57}, + [498] = {.lex_state = 63}, + [499] = {.lex_state = 66}, + [500] = {.lex_state = 63}, + [501] = {.lex_state = 66}, + [502] = {.lex_state = 58}, + [503] = {.lex_state = 57}, + [504] = {.lex_state = 58}, + [505] = {.lex_state = 58}, + [506] = {.lex_state = 57}, + [507] = {.lex_state = 57}, + [508] = {.lex_state = 58}, + [509] = {.lex_state = 57}, + [510] = {.lex_state = 66}, + [511] = {.lex_state = 63}, + [512] = {.lex_state = 66}, + [513] = {.lex_state = 63}, + [514] = {.lex_state = 66}, + [515] = {.lex_state = 58}, + [516] = {.lex_state = 57}, [517] = {.lex_state = 58}, - [518] = {.lex_state = 56}, - [519] = {.lex_state = 55}, - [520] = {.lex_state = 55}, - [521] = {.lex_state = 56}, - [522] = {.lex_state = 56}, - [523] = {.lex_state = 55}, - [524] = {.lex_state = 56}, - [525] = {.lex_state = 77}, - [526] = {.lex_state = 56}, - [527] = {.lex_state = 57}, - [528] = {.lex_state = 58}, - [529] = {.lex_state = 57}, + [518] = {.lex_state = 58}, + [519] = {.lex_state = 57}, + [520] = {.lex_state = 57}, + [521] = {.lex_state = 58}, + [522] = {.lex_state = 57}, + [523] = {.lex_state = 82}, + [524] = {.lex_state = 63}, + [525] = {.lex_state = 63}, + [526] = {.lex_state = 63}, + [527] = {.lex_state = 66}, + [528] = {.lex_state = 63}, + [529] = {.lex_state = 66}, [530] = {.lex_state = 58}, - [531] = {.lex_state = 55}, - [532] = {.lex_state = 56}, - [533] = {.lex_state = 75}, - [534] = {.lex_state = 55}, - [535] = {.lex_state = 55}, - [536] = {.lex_state = 55}, - [537] = {.lex_state = 56}, - [538] = {.lex_state = 89}, - [539] = {.lex_state = 56}, - [540] = {.lex_state = 55}, - [541] = {.lex_state = 56}, - [542] = {.lex_state = 56}, - [543] = {.lex_state = 57}, - [544] = {.lex_state = 58}, - [545] = {.lex_state = 57}, - [546] = {.lex_state = 58}, - [547] = {.lex_state = 55}, - [548] = {.lex_state = 56}, - [549] = {.lex_state = 55}, - [550] = {.lex_state = 55}, - [551] = {.lex_state = 56}, - [552] = {.lex_state = 75}, - [553] = {.lex_state = 56}, - [554] = {.lex_state = 67}, - [555] = {.lex_state = 55}, - [556] = {.lex_state = 56}, - [557] = {.lex_state = 56}, - [558] = {.lex_state = 57}, - [559] = {.lex_state = 58}, - [560] = {.lex_state = 57}, - [561] = {.lex_state = 58}, + [531] = {.lex_state = 57}, + [532] = {.lex_state = 72}, + [533] = {.lex_state = 58}, + [534] = {.lex_state = 58}, + [535] = {.lex_state = 57}, + [536] = {.lex_state = 57}, + [537] = {.lex_state = 58}, + [538] = {.lex_state = 57}, + [539] = {.lex_state = 57}, + [540] = {.lex_state = 78}, + [541] = {.lex_state = 63}, + [542] = {.lex_state = 66}, + [543] = {.lex_state = 58}, + [544] = {.lex_state = 63}, + [545] = {.lex_state = 82}, + [546] = {.lex_state = 66}, + [547] = {.lex_state = 58}, + [548] = {.lex_state = 57}, + [549] = {.lex_state = 58}, + [550] = {.lex_state = 58}, + [551] = {.lex_state = 57}, + [552] = {.lex_state = 57}, + [553] = {.lex_state = 58}, + [554] = {.lex_state = 57}, + [555] = {.lex_state = 57}, + [556] = {.lex_state = 63}, + [557] = {.lex_state = 66}, + [558] = {.lex_state = 63}, + [559] = {.lex_state = 78}, + [560] = {.lex_state = 66}, + [561] = {.lex_state = 74}, [562] = {.lex_state = 58}, - [563] = {.lex_state = 55}, - [564] = {.lex_state = 56}, - [565] = {.lex_state = 55}, - [566] = {.lex_state = 55}, - [567] = {.lex_state = 56}, - [568] = {.lex_state = 73}, - [569] = {.lex_state = 56}, - [570] = {.lex_state = 55}, - [571] = {.lex_state = 56}, - [572] = {.lex_state = 55}, - [573] = {.lex_state = 57}, - [574] = {.lex_state = 58}, + [563] = {.lex_state = 57}, + [564] = {.lex_state = 58}, + [565] = {.lex_state = 58}, + [566] = {.lex_state = 57}, + [567] = {.lex_state = 57}, + [568] = {.lex_state = 58}, + [569] = {.lex_state = 76}, + [570] = {.lex_state = 57}, + [571] = {.lex_state = 58}, + [572] = {.lex_state = 63}, + [573] = {.lex_state = 66}, + [574] = {.lex_state = 63}, [575] = {.lex_state = 57}, - [576] = {.lex_state = 58}, - [577] = {.lex_state = 55}, - [578] = {.lex_state = 56}, - [579] = {.lex_state = 55}, - [580] = {.lex_state = 55}, - [581] = {.lex_state = 56}, - [582] = {.lex_state = 56}, - [583] = {.lex_state = 55}, - [584] = {.lex_state = 56}, - [585] = {.lex_state = 55}, - [586] = {.lex_state = 57}, - [587] = {.lex_state = 58}, - [588] = {.lex_state = 57}, - [589] = {.lex_state = 58}, - [590] = {.lex_state = 55}, - [591] = {.lex_state = 56}, - [592] = {.lex_state = 55}, - [593] = {.lex_state = 55}, - [594] = {.lex_state = 56}, - [595] = {.lex_state = 56}, - [596] = {.lex_state = 55}, - [597] = {.lex_state = 56}, - [598] = {.lex_state = 56}, - [599] = {.lex_state = 57}, - [600] = {.lex_state = 58}, - [601] = {.lex_state = 57}, - [602] = {.lex_state = 58}, - [603] = {.lex_state = 55}, - [604] = {.lex_state = 56}, - [605] = {.lex_state = 55}, - [606] = {.lex_state = 55}, - [607] = {.lex_state = 56}, - [608] = {.lex_state = 56}, - [609] = {.lex_state = 55}, + [576] = {.lex_state = 66}, + [577] = {.lex_state = 58}, + [578] = {.lex_state = 57}, + [579] = {.lex_state = 58}, + [580] = {.lex_state = 58}, + [581] = {.lex_state = 57}, + [582] = {.lex_state = 57}, + [583] = {.lex_state = 58}, + [584] = {.lex_state = 57}, + [585] = {.lex_state = 58}, + [586] = {.lex_state = 63}, + [587] = {.lex_state = 66}, + [588] = {.lex_state = 63}, + [589] = {.lex_state = 66}, + [590] = {.lex_state = 58}, + [591] = {.lex_state = 57}, + [592] = {.lex_state = 58}, + [593] = {.lex_state = 58}, + [594] = {.lex_state = 57}, + [595] = {.lex_state = 57}, + [596] = {.lex_state = 58}, + [597] = {.lex_state = 57}, + [598] = {.lex_state = 58}, + [599] = {.lex_state = 63}, + [600] = {.lex_state = 66}, + [601] = {.lex_state = 63}, + [602] = {.lex_state = 66}, + [603] = {.lex_state = 58}, + [604] = {.lex_state = 57}, + [605] = {.lex_state = 58}, + [606] = {.lex_state = 58}, + [607] = {.lex_state = 57}, + [608] = {.lex_state = 57}, + [609] = {.lex_state = 58}, [610] = {.lex_state = 57}, - [611] = {.lex_state = 79}, - [612] = {.lex_state = 56}, - [613] = {.lex_state = 55}, - [614] = {.lex_state = 57}, - [615] = {.lex_state = 58}, - [616] = {.lex_state = 57}, + [611] = {.lex_state = 57}, + [612] = {.lex_state = 63}, + [613] = {.lex_state = 66}, + [614] = {.lex_state = 63}, + [615] = {.lex_state = 66}, + [616] = {.lex_state = 72}, [617] = {.lex_state = 58}, - [618] = {.lex_state = 55}, - [619] = {.lex_state = 56}, - [620] = {.lex_state = 79}, - [621] = {.lex_state = 89}, - [622] = {.lex_state = 64}, - [623] = {.lex_state = 55}, - [624] = {.lex_state = 55}, - [625] = {.lex_state = 81}, - [626] = {.lex_state = 56}, - [627] = {.lex_state = 70}, - [628] = {.lex_state = 81}, - [629] = {.lex_state = 77}, - [630] = {.lex_state = 58}, - [631] = {.lex_state = 56}, - [632] = {.lex_state = 55}, - [633] = {.lex_state = 83}, - [634] = {.lex_state = 83}, - [635] = {.lex_state = 79}, - [636] = {.lex_state = 56}, - [637] = {.lex_state = 85}, - [638] = {.lex_state = 85}, - [639] = {.lex_state = 81}, - [640] = {.lex_state = 114}, - [641] = {.lex_state = 87}, - [642] = {.lex_state = 87}, - [643] = {.lex_state = 83}, - [644] = {.lex_state = 88}, - [645] = {.lex_state = 88}, - [646] = {.lex_state = 70}, - [647] = {.lex_state = 85}, - [648] = {.lex_state = 91}, - [649] = {.lex_state = 62}, - [650] = {.lex_state = 62}, - [651] = {.lex_state = 87}, - [652] = {.lex_state = 88}, + [618] = {.lex_state = 57}, + [619] = {.lex_state = 84}, + [620] = {.lex_state = 58}, + [621] = {.lex_state = 84}, + [622] = {.lex_state = 92}, + [623] = {.lex_state = 58}, + [624] = {.lex_state = 57}, + [625] = {.lex_state = 86}, + [626] = {.lex_state = 57}, + [627] = {.lex_state = 86}, + [628] = {.lex_state = 82}, + [629] = {.lex_state = 58}, + [630] = {.lex_state = 57}, + [631] = {.lex_state = 87}, + [632] = {.lex_state = 87}, + [633] = {.lex_state = 84}, + [634] = {.lex_state = 63}, + [635] = {.lex_state = 80}, + [636] = {.lex_state = 88}, + [637] = {.lex_state = 88}, + [638] = {.lex_state = 66}, + [639] = {.lex_state = 86}, + [640] = {.lex_state = 117}, + [641] = {.lex_state = 89}, + [642] = {.lex_state = 89}, + [643] = {.lex_state = 87}, + [644] = {.lex_state = 90}, + [645] = {.lex_state = 90}, + [646] = {.lex_state = 88}, + [647] = {.lex_state = 61}, + [648] = {.lex_state = 61}, + [649] = {.lex_state = 89}, + [650] = {.lex_state = 90}, + [651] = {.lex_state = 66}, + [652] = {.lex_state = 63}, [653] = {.lex_state = 57}, - [654] = {.lex_state = 56}, - [655] = {.lex_state = 58}, - [656] = {.lex_state = 57}, - [657] = {.lex_state = 62}, - [658] = {.lex_state = 31}, - [659] = {.lex_state = 6}, - [660] = {.lex_state = 39}, - [661] = {.lex_state = 15}, - [662] = {.lex_state = 17}, - [663] = {.lex_state = 13}, - [664] = {.lex_state = 21}, - [665] = {.lex_state = 37}, - [666] = {.lex_state = 19}, - [667] = {.lex_state = 29}, - [668] = {.lex_state = 25}, - [669] = {.lex_state = 27}, - [670] = {.lex_state = 23}, - [671] = {.lex_state = 33}, - [672] = {.lex_state = 13}, - [673] = {.lex_state = 39}, - [674] = {.lex_state = 82}, - [675] = {.lex_state = 23}, - [676] = {.lex_state = 25}, - [677] = {.lex_state = 84}, - [678] = {.lex_state = 29}, - [679] = {.lex_state = 66}, - [680] = {.lex_state = 33}, - [681] = {.lex_state = 80}, - [682] = {.lex_state = 31}, - [683] = {.lex_state = 78}, - [684] = {.lex_state = 74}, - [685] = {.lex_state = 17}, - [686] = {.lex_state = 72}, - [687] = {.lex_state = 27}, - [688] = {.lex_state = 86}, - [689] = {.lex_state = 72}, - [690] = {.lex_state = 33}, - [691] = {.lex_state = 29}, - [692] = {.lex_state = 74}, - [693] = {.lex_state = 19}, - [694] = {.lex_state = 80}, - [695] = {.lex_state = 69}, - [696] = {.lex_state = 84}, - [697] = {.lex_state = 25}, - [698] = {.lex_state = 13}, - [699] = {.lex_state = 21}, - [700] = {.lex_state = 39}, - [701] = {.lex_state = 82}, - [702] = {.lex_state = 15}, - [703] = {.lex_state = 6}, - [704] = {.lex_state = 76}, - [705] = {.lex_state = 15}, - [706] = {.lex_state = 54}, - [707] = {.lex_state = 21}, - [708] = {.lex_state = 27}, - [709] = {.lex_state = 90}, - [710] = {.lex_state = 76}, - [711] = {.lex_state = 92}, - [712] = {.lex_state = 92}, - [713] = {.lex_state = 17}, - [714] = {.lex_state = 66}, - [715] = {.lex_state = 23}, - [716] = {.lex_state = 54}, - [717] = {.lex_state = 78}, - [718] = {.lex_state = 63}, - [719] = {.lex_state = 86}, - [720] = {.lex_state = 69}, - [721] = {.lex_state = 37}, - [722] = {.lex_state = 63}, - [723] = {.lex_state = 19}, - [724] = {.lex_state = 31}, - [725] = {.lex_state = 90}, - [726] = {.lex_state = 37}, - [727] = {.lex_state = 6}, - [728] = {.lex_state = 30}, - [729] = {.lex_state = 12}, - [730] = {.lex_state = 7}, + [654] = {.lex_state = 80}, + [655] = {.lex_state = 66}, + [656] = {.lex_state = 93}, + [657] = {.lex_state = 61}, + [658] = {.lex_state = 30}, + [659] = {.lex_state = 39}, + [660] = {.lex_state = 16}, + [661] = {.lex_state = 6}, + [662] = {.lex_state = 10}, + [663] = {.lex_state = 36}, + [664] = {.lex_state = 14}, + [665] = {.lex_state = 12}, + [666] = {.lex_state = 20}, + [667] = {.lex_state = 22}, + [668] = {.lex_state = 26}, + [669] = {.lex_state = 18}, + [670] = {.lex_state = 28}, + [671] = {.lex_state = 24}, + [672] = {.lex_state = 62}, + [673] = {.lex_state = 10}, + [674] = {.lex_state = 18}, + [675] = {.lex_state = 28}, + [676] = {.lex_state = 79}, + [677] = {.lex_state = 26}, + [678] = {.lex_state = 68}, + [679] = {.lex_state = 30}, + [680] = {.lex_state = 77}, + [681] = {.lex_state = 24}, + [682] = {.lex_state = 83}, + [683] = {.lex_state = 62}, + [684] = {.lex_state = 20}, + [685] = {.lex_state = 65}, + [686] = {.lex_state = 22}, + [687] = {.lex_state = 85}, + [688] = {.lex_state = 65}, + [689] = {.lex_state = 30}, + [690] = {.lex_state = 16}, + [691] = {.lex_state = 91}, + [692] = {.lex_state = 12}, + [693] = {.lex_state = 94}, + [694] = {.lex_state = 22}, + [695] = {.lex_state = 77}, + [696] = {.lex_state = 26}, + [697] = {.lex_state = 28}, + [698] = {.lex_state = 79}, + [699] = {.lex_state = 81}, + [700] = {.lex_state = 14}, + [701] = {.lex_state = 39}, + [702] = {.lex_state = 81}, + [703] = {.lex_state = 56}, + [704] = {.lex_state = 14}, + [705] = {.lex_state = 73}, + [706] = {.lex_state = 75}, + [707] = {.lex_state = 36}, + [708] = {.lex_state = 91}, + [709] = {.lex_state = 6}, + [710] = {.lex_state = 71}, + [711] = {.lex_state = 56}, + [712] = {.lex_state = 39}, + [713] = {.lex_state = 94}, + [714] = {.lex_state = 10}, + [715] = {.lex_state = 68}, + [716] = {.lex_state = 83}, + [717] = {.lex_state = 36}, + [718] = {.lex_state = 85}, + [719] = {.lex_state = 16}, + [720] = {.lex_state = 73}, + [721] = {.lex_state = 12}, + [722] = {.lex_state = 75}, + [723] = {.lex_state = 71}, + [724] = {.lex_state = 18}, + [725] = {.lex_state = 6}, + [726] = {.lex_state = 20}, + [727] = {.lex_state = 24}, + [728] = {.lex_state = 29}, + [729] = {.lex_state = 38}, + [730] = {.lex_state = 35}, [731] = {.lex_state = 8}, - [732] = {.lex_state = 35}, - [733] = {.lex_state = 22}, - [734] = {.lex_state = 34}, - [735] = {.lex_state = 32}, - [736] = {.lex_state = 16}, - [737] = {.lex_state = 18}, - [738] = {.lex_state = 38}, - [739] = {.lex_state = 28}, - [740] = {.lex_state = 20}, - [741] = {.lex_state = 26}, - [742] = {.lex_state = 9}, - [743] = {.lex_state = 24}, - [744] = {.lex_state = 14}, - [745] = {.lex_state = 113}, - [746] = {.lex_state = 36}, - [747] = {.lex_state = 11}, - [748] = {.lex_state = 10}, - [749] = {.lex_state = 76}, - [750] = {.lex_state = 63}, - [751] = {.lex_state = 113}, - [752] = {.lex_state = 114}, - [753] = {.lex_state = 84}, - [754] = {.lex_state = 54}, - [755] = {.lex_state = 114}, - [756] = {.lex_state = 54}, - [757] = {.lex_state = 10}, - [758] = {.lex_state = 58}, - [759] = {.lex_state = 69}, - [760] = {.lex_state = 69}, - [761] = {.lex_state = 9}, - [762] = {.lex_state = 57}, - [763] = {.lex_state = 63}, - [764] = {.lex_state = 63}, - [765] = {.lex_state = 54}, - [766] = {.lex_state = 54}, - [767] = {.lex_state = 54}, - [768] = {.lex_state = 54}, - [769] = {.lex_state = 54}, - [770] = {.lex_state = 54}, - [771] = {.lex_state = 54}, - [772] = {.lex_state = 54}, - [773] = {.lex_state = 54}, - [774] = {.lex_state = 54}, - [775] = {.lex_state = 54}, - [776] = {.lex_state = 54}, - [777] = {.lex_state = 54}, - [778] = {.lex_state = 54}, - [779] = {.lex_state = 54}, - [780] = {.lex_state = 74}, - [781] = {.lex_state = 54}, - [782] = {.lex_state = 54}, - [783] = {.lex_state = 54}, - [784] = {.lex_state = 54}, - [785] = {.lex_state = 54}, - [786] = {.lex_state = 54}, - [787] = {.lex_state = 54}, - [788] = {.lex_state = 54}, - [789] = {.lex_state = 54}, - [790] = {.lex_state = 54}, - [791] = {.lex_state = 54}, - [792] = {.lex_state = 54}, - [793] = {.lex_state = 54}, - [794] = {.lex_state = 54}, - [795] = {.lex_state = 11}, - [796] = {.lex_state = 54}, - [797] = {.lex_state = 54}, - [798] = {.lex_state = 54}, - [799] = {.lex_state = 54}, - [800] = {.lex_state = 54}, - [801] = {.lex_state = 54}, - [802] = {.lex_state = 54}, - [803] = {.lex_state = 54}, - [804] = {.lex_state = 54}, - [805] = {.lex_state = 74}, - [806] = {.lex_state = 54}, - [807] = {.lex_state = 54}, - [808] = {.lex_state = 54}, - [809] = {.lex_state = 54}, - [810] = {.lex_state = 54}, - [811] = {.lex_state = 54}, - [812] = {.lex_state = 54}, - [813] = {.lex_state = 54}, - [814] = {.lex_state = 54}, - [815] = {.lex_state = 82}, - [816] = {.lex_state = 54}, - [817] = {.lex_state = 54}, - [818] = {.lex_state = 54}, - [819] = {.lex_state = 54}, - [820] = {.lex_state = 54}, - [821] = {.lex_state = 54}, - [822] = {.lex_state = 54}, - [823] = {.lex_state = 54}, - [824] = {.lex_state = 54}, - [825] = {.lex_state = 54}, - [826] = {.lex_state = 54}, - [827] = {.lex_state = 74}, - [828] = {.lex_state = 54}, - [829] = {.lex_state = 54}, - [830] = {.lex_state = 54}, - [831] = {.lex_state = 54}, - [832] = {.lex_state = 54}, - [833] = {.lex_state = 54}, - [834] = {.lex_state = 54}, - [835] = {.lex_state = 54}, - [836] = {.lex_state = 54}, - [837] = {.lex_state = 54}, - [838] = {.lex_state = 54}, - [839] = {.lex_state = 54}, - [840] = {.lex_state = 54}, - [841] = {.lex_state = 54}, - [842] = {.lex_state = 54}, - [843] = {.lex_state = 54}, - [844] = {.lex_state = 82}, - [845] = {.lex_state = 69}, - [846] = {.lex_state = 69}, - [847] = {.lex_state = 69}, - [848] = {.lex_state = 69}, - [849] = {.lex_state = 69}, - [850] = {.lex_state = 69}, - [851] = {.lex_state = 69}, - [852] = {.lex_state = 69}, - [853] = {.lex_state = 69}, - [854] = {.lex_state = 69}, - [855] = {.lex_state = 69}, - [856] = {.lex_state = 69}, - [857] = {.lex_state = 69}, - [858] = {.lex_state = 54}, - [859] = {.lex_state = 69}, - [860] = {.lex_state = 69}, - [861] = {.lex_state = 72}, - [862] = {.lex_state = 69}, - [863] = {.lex_state = 69}, - [864] = {.lex_state = 69}, - [865] = {.lex_state = 69}, - [866] = {.lex_state = 69}, - [867] = {.lex_state = 69}, - [868] = {.lex_state = 69}, - [869] = {.lex_state = 58}, - [870] = {.lex_state = 69}, - [871] = {.lex_state = 69}, - [872] = {.lex_state = 69}, - [873] = {.lex_state = 69}, - [874] = {.lex_state = 74}, - [875] = {.lex_state = 69}, - [876] = {.lex_state = 69}, - [877] = {.lex_state = 69}, - [878] = {.lex_state = 69}, - [879] = {.lex_state = 69}, - [880] = {.lex_state = 69}, - [881] = {.lex_state = 69}, - [882] = {.lex_state = 69}, - [883] = {.lex_state = 69}, - [884] = {.lex_state = 69}, - [885] = {.lex_state = 69}, - [886] = {.lex_state = 72}, - [887] = {.lex_state = 16}, - [888] = {.lex_state = 69}, - [889] = {.lex_state = 69}, - [890] = {.lex_state = 69}, - [891] = {.lex_state = 69}, - [892] = {.lex_state = 69}, - [893] = {.lex_state = 69}, - [894] = {.lex_state = 69}, - [895] = {.lex_state = 59}, - [896] = {.lex_state = 69}, - [897] = {.lex_state = 69}, - [898] = {.lex_state = 69}, - [899] = {.lex_state = 69}, - [900] = {.lex_state = 69}, - [901] = {.lex_state = 69}, - [902] = {.lex_state = 69}, - [903] = {.lex_state = 69}, - [904] = {.lex_state = 69}, - [905] = {.lex_state = 69}, + [732] = {.lex_state = 9}, + [733] = {.lex_state = 23}, + [734] = {.lex_state = 7}, + [735] = {.lex_state = 19}, + [736] = {.lex_state = 17}, + [737] = {.lex_state = 34}, + [738] = {.lex_state = 21}, + [739] = {.lex_state = 33}, + [740] = {.lex_state = 32}, + [741] = {.lex_state = 25}, + [742] = {.lex_state = 31}, + [743] = {.lex_state = 27}, + [744] = {.lex_state = 11}, + [745] = {.lex_state = 15}, + [746] = {.lex_state = 116}, + [747] = {.lex_state = 37}, + [748] = {.lex_state = 13}, + [749] = {.lex_state = 73}, + [750] = {.lex_state = 68}, + [751] = {.lex_state = 116}, + [752] = {.lex_state = 117}, + [753] = {.lex_state = 56}, + [754] = {.lex_state = 117}, + [755] = {.lex_state = 56}, + [756] = {.lex_state = 13}, + [757] = {.lex_state = 66}, + [758] = {.lex_state = 75}, + [759] = {.lex_state = 75}, + [760] = {.lex_state = 11}, + [761] = {.lex_state = 63}, + [762] = {.lex_state = 79}, + [763] = {.lex_state = 71}, + [764] = {.lex_state = 71}, + [765] = {.lex_state = 56}, + [766] = {.lex_state = 56}, + [767] = {.lex_state = 56}, + [768] = {.lex_state = 56}, + [769] = {.lex_state = 56}, + [770] = {.lex_state = 56}, + [771] = {.lex_state = 56}, + [772] = {.lex_state = 56}, + [773] = {.lex_state = 56}, + [774] = {.lex_state = 56}, + [775] = {.lex_state = 56}, + [776] = {.lex_state = 56}, + [777] = {.lex_state = 56}, + [778] = {.lex_state = 56}, + [779] = {.lex_state = 56}, + [780] = {.lex_state = 62}, + [781] = {.lex_state = 56}, + [782] = {.lex_state = 56}, + [783] = {.lex_state = 56}, + [784] = {.lex_state = 56}, + [785] = {.lex_state = 56}, + [786] = {.lex_state = 56}, + [787] = {.lex_state = 56}, + [788] = {.lex_state = 56}, + [789] = {.lex_state = 56}, + [790] = {.lex_state = 56}, + [791] = {.lex_state = 56}, + [792] = {.lex_state = 56}, + [793] = {.lex_state = 56}, + [794] = {.lex_state = 56}, + [795] = {.lex_state = 56}, + [796] = {.lex_state = 56}, + [797] = {.lex_state = 56}, + [798] = {.lex_state = 56}, + [799] = {.lex_state = 56}, + [800] = {.lex_state = 56}, + [801] = {.lex_state = 56}, + [802] = {.lex_state = 56}, + [803] = {.lex_state = 62}, + [804] = {.lex_state = 56}, + [805] = {.lex_state = 15}, + [806] = {.lex_state = 56}, + [807] = {.lex_state = 56}, + [808] = {.lex_state = 56}, + [809] = {.lex_state = 56}, + [810] = {.lex_state = 56}, + [811] = {.lex_state = 56}, + [812] = {.lex_state = 56}, + [813] = {.lex_state = 56}, + [814] = {.lex_state = 56}, + [815] = {.lex_state = 56}, + [816] = {.lex_state = 56}, + [817] = {.lex_state = 56}, + [818] = {.lex_state = 56}, + [819] = {.lex_state = 56}, + [820] = {.lex_state = 56}, + [821] = {.lex_state = 56}, + [822] = {.lex_state = 56}, + [823] = {.lex_state = 56}, + [824] = {.lex_state = 56}, + [825] = {.lex_state = 81}, + [826] = {.lex_state = 56}, + [827] = {.lex_state = 56}, + [828] = {.lex_state = 56}, + [829] = {.lex_state = 56}, + [830] = {.lex_state = 56}, + [831] = {.lex_state = 56}, + [832] = {.lex_state = 56}, + [833] = {.lex_state = 56}, + [834] = {.lex_state = 56}, + [835] = {.lex_state = 56}, + [836] = {.lex_state = 56}, + [837] = {.lex_state = 62}, + [838] = {.lex_state = 56}, + [839] = {.lex_state = 56}, + [840] = {.lex_state = 56}, + [841] = {.lex_state = 56}, + [842] = {.lex_state = 56}, + [843] = {.lex_state = 56}, + [844] = {.lex_state = 56}, + [845] = {.lex_state = 56}, + [846] = {.lex_state = 56}, + [847] = {.lex_state = 75}, + [848] = {.lex_state = 75}, + [849] = {.lex_state = 75}, + [850] = {.lex_state = 75}, + [851] = {.lex_state = 75}, + [852] = {.lex_state = 75}, + [853] = {.lex_state = 75}, + [854] = {.lex_state = 81}, + [855] = {.lex_state = 75}, + [856] = {.lex_state = 75}, + [857] = {.lex_state = 75}, + [858] = {.lex_state = 75}, + [859] = {.lex_state = 75}, + [860] = {.lex_state = 75}, + [861] = {.lex_state = 75}, + [862] = {.lex_state = 75}, + [863] = {.lex_state = 65}, + [864] = {.lex_state = 75}, + [865] = {.lex_state = 75}, + [866] = {.lex_state = 75}, + [867] = {.lex_state = 75}, + [868] = {.lex_state = 75}, + [869] = {.lex_state = 75}, + [870] = {.lex_state = 75}, + [871] = {.lex_state = 66}, + [872] = {.lex_state = 75}, + [873] = {.lex_state = 75}, + [874] = {.lex_state = 75}, + [875] = {.lex_state = 75}, + [876] = {.lex_state = 75}, + [877] = {.lex_state = 75}, + [878] = {.lex_state = 75}, + [879] = {.lex_state = 75}, + [880] = {.lex_state = 75}, + [881] = {.lex_state = 75}, + [882] = {.lex_state = 75}, + [883] = {.lex_state = 75}, + [884] = {.lex_state = 62}, + [885] = {.lex_state = 75}, + [886] = {.lex_state = 75}, + [887] = {.lex_state = 75}, + [888] = {.lex_state = 65}, + [889] = {.lex_state = 75}, + [890] = {.lex_state = 75}, + [891] = {.lex_state = 75}, + [892] = {.lex_state = 75}, + [893] = {.lex_state = 75}, + [894] = {.lex_state = 75}, + [895] = {.lex_state = 75}, + [896] = {.lex_state = 75}, + [897] = {.lex_state = 75}, + [898] = {.lex_state = 19}, + [899] = {.lex_state = 75}, + [900] = {.lex_state = 75}, + [901] = {.lex_state = 75}, + [902] = {.lex_state = 75}, + [903] = {.lex_state = 75}, + [904] = {.lex_state = 75}, + [905] = {.lex_state = 75}, [906] = {.lex_state = 69}, - [907] = {.lex_state = 76}, - [908] = {.lex_state = 69}, - [909] = {.lex_state = 69}, - [910] = {.lex_state = 69}, - [911] = {.lex_state = 69}, - [912] = {.lex_state = 69}, - [913] = {.lex_state = 69}, - [914] = {.lex_state = 69}, - [915] = {.lex_state = 69}, - [916] = {.lex_state = 69}, - [917] = {.lex_state = 69}, - [918] = {.lex_state = 69}, - [919] = {.lex_state = 72}, - [920] = {.lex_state = 69}, - [921] = {.lex_state = 69}, - [922] = {.lex_state = 69}, - [923] = {.lex_state = 69}, - [924] = {.lex_state = 69}, - [925] = {.lex_state = 69}, - [926] = {.lex_state = 69}, - [927] = {.lex_state = 69}, - [928] = {.lex_state = 69}, - [929] = {.lex_state = 63}, - [930] = {.lex_state = 63}, - [931] = {.lex_state = 69}, - [932] = {.lex_state = 63}, - [933] = {.lex_state = 63}, - [934] = {.lex_state = 63}, - [935] = {.lex_state = 63}, - [936] = {.lex_state = 76}, - [937] = {.lex_state = 63}, - [938] = {.lex_state = 62}, - [939] = {.lex_state = 55}, - [940] = {.lex_state = 56}, - [941] = {.lex_state = 88}, - [942] = {.lex_state = 87}, - [943] = {.lex_state = 85}, - [944] = {.lex_state = 83}, - [945] = {.lex_state = 81}, - [946] = {.lex_state = 79}, - [947] = {.lex_state = 62}, - [948] = {.lex_state = 77}, - [949] = {.lex_state = 55}, - [950] = {.lex_state = 64}, - [951] = {.lex_state = 12}, - [952] = {.lex_state = 63}, - [953] = {.lex_state = 63}, - [954] = {.lex_state = 63}, - [955] = {.lex_state = 89}, - [956] = {.lex_state = 56}, - [957] = {.lex_state = 7}, - [958] = {.lex_state = 63}, - [959] = {.lex_state = 69}, - [960] = {.lex_state = 69}, - [961] = {.lex_state = 63}, - [962] = {.lex_state = 88}, - [963] = {.lex_state = 8}, - [964] = {.lex_state = 63}, - [965] = {.lex_state = 54}, - [966] = {.lex_state = 72}, - [967] = {.lex_state = 54}, - [968] = {.lex_state = 87}, - [969] = {.lex_state = 35}, - [970] = {.lex_state = 63}, - [971] = {.lex_state = 63}, - [972] = {.lex_state = 85}, - [973] = {.lex_state = 34}, - [974] = {.lex_state = 63}, - [975] = {.lex_state = 54}, - [976] = {.lex_state = 63}, - [977] = {.lex_state = 83}, + [907] = {.lex_state = 75}, + [908] = {.lex_state = 75}, + [909] = {.lex_state = 75}, + [910] = {.lex_state = 75}, + [911] = {.lex_state = 75}, + [912] = {.lex_state = 75}, + [913] = {.lex_state = 75}, + [914] = {.lex_state = 75}, + [915] = {.lex_state = 75}, + [916] = {.lex_state = 75}, + [917] = {.lex_state = 75}, + [918] = {.lex_state = 73}, + [919] = {.lex_state = 79}, + [920] = {.lex_state = 75}, + [921] = {.lex_state = 75}, + [922] = {.lex_state = 75}, + [923] = {.lex_state = 75}, + [924] = {.lex_state = 75}, + [925] = {.lex_state = 75}, + [926] = {.lex_state = 75}, + [927] = {.lex_state = 75}, + [928] = {.lex_state = 75}, + [929] = {.lex_state = 75}, + [930] = {.lex_state = 65}, + [931] = {.lex_state = 75}, + [932] = {.lex_state = 75}, + [933] = {.lex_state = 61}, + [934] = {.lex_state = 58}, + [935] = {.lex_state = 57}, + [936] = {.lex_state = 90}, + [937] = {.lex_state = 89}, + [938] = {.lex_state = 88}, + [939] = {.lex_state = 87}, + [940] = {.lex_state = 86}, + [941] = {.lex_state = 61}, + [942] = {.lex_state = 84}, + [943] = {.lex_state = 58}, + [944] = {.lex_state = 82}, + [945] = {.lex_state = 92}, + [946] = {.lex_state = 57}, + [947] = {.lex_state = 73}, + [948] = {.lex_state = 9}, + [949] = {.lex_state = 75}, + [950] = {.lex_state = 71}, + [951] = {.lex_state = 71}, + [952] = {.lex_state = 72}, + [953] = {.lex_state = 8}, + [954] = {.lex_state = 71}, + [955] = {.lex_state = 75}, + [956] = {.lex_state = 75}, + [957] = {.lex_state = 71}, + [958] = {.lex_state = 90}, + [959] = {.lex_state = 7}, + [960] = {.lex_state = 71}, + [961] = {.lex_state = 56}, + [962] = {.lex_state = 56}, + [963] = {.lex_state = 71}, + [964] = {.lex_state = 89}, + [965] = {.lex_state = 35}, + [966] = {.lex_state = 71}, + [967] = {.lex_state = 71}, + [968] = {.lex_state = 88}, + [969] = {.lex_state = 34}, + [970] = {.lex_state = 71}, + [971] = {.lex_state = 71}, + [972] = {.lex_state = 87}, + [973] = {.lex_state = 33}, + [974] = {.lex_state = 71}, + [975] = {.lex_state = 71}, + [976] = {.lex_state = 86}, + [977] = {.lex_state = 65}, [978] = {.lex_state = 32}, - [979] = {.lex_state = 38}, - [980] = {.lex_state = 80}, - [981] = {.lex_state = 63}, - [982] = {.lex_state = 81}, - [983] = {.lex_state = 30}, - [984] = {.lex_state = 63}, - [985] = {.lex_state = 63}, - [986] = {.lex_state = 79}, - [987] = {.lex_state = 67}, - [988] = {.lex_state = 28}, - [989] = {.lex_state = 63}, - [990] = {.lex_state = 63}, - [991] = {.lex_state = 77}, - [992] = {.lex_state = 26}, - [993] = {.lex_state = 63}, - [994] = {.lex_state = 63}, - [995] = {.lex_state = 64}, - [996] = {.lex_state = 24}, - [997] = {.lex_state = 63}, - [998] = {.lex_state = 90}, - [999] = {.lex_state = 84}, - [1000] = {.lex_state = 63}, - [1001] = {.lex_state = 89}, - [1002] = {.lex_state = 14}, - [1003] = {.lex_state = 57}, - [1004] = {.lex_state = 63}, - [1005] = {.lex_state = 36}, - [1006] = {.lex_state = 63}, - [1007] = {.lex_state = 86}, - [1008] = {.lex_state = 86}, - [1009] = {.lex_state = 86}, - [1010] = {.lex_state = 80}, - [1011] = {.lex_state = 86}, - [1012] = {.lex_state = 86}, - [1013] = {.lex_state = 86}, - [1014] = {.lex_state = 86}, - [1015] = {.lex_state = 86}, - [1016] = {.lex_state = 86}, - [1017] = {.lex_state = 86}, - [1018] = {.lex_state = 86}, - [1019] = {.lex_state = 86}, - [1020] = {.lex_state = 86}, - [1021] = {.lex_state = 86}, - [1022] = {.lex_state = 86}, - [1023] = {.lex_state = 86}, - [1024] = {.lex_state = 86}, - [1025] = {.lex_state = 86}, - [1026] = {.lex_state = 86}, - [1027] = {.lex_state = 90}, - [1028] = {.lex_state = 86}, - [1029] = {.lex_state = 86}, - [1030] = {.lex_state = 86}, - [1031] = {.lex_state = 86}, - [1032] = {.lex_state = 86}, - [1033] = {.lex_state = 86}, - [1034] = {.lex_state = 86}, - [1035] = {.lex_state = 86}, - [1036] = {.lex_state = 86}, - [1037] = {.lex_state = 86}, - [1038] = {.lex_state = 86}, - [1039] = {.lex_state = 86}, - [1040] = {.lex_state = 86}, - [1041] = {.lex_state = 86}, - [1042] = {.lex_state = 86}, - [1043] = {.lex_state = 86}, - [1044] = {.lex_state = 86}, - [1045] = {.lex_state = 86}, - [1046] = {.lex_state = 86}, - [1047] = {.lex_state = 86}, - [1048] = {.lex_state = 86}, - [1049] = {.lex_state = 86}, - [1050] = {.lex_state = 86}, - [1051] = {.lex_state = 86}, - [1052] = {.lex_state = 86}, - [1053] = {.lex_state = 86}, - [1054] = {.lex_state = 86}, - [1055] = {.lex_state = 86}, - [1056] = {.lex_state = 86}, - [1057] = {.lex_state = 80}, - [1058] = {.lex_state = 86}, - [1059] = {.lex_state = 86}, - [1060] = {.lex_state = 86}, - [1061] = {.lex_state = 86}, - [1062] = {.lex_state = 86}, - [1063] = {.lex_state = 63}, - [1064] = {.lex_state = 86}, - [1065] = {.lex_state = 86}, - [1066] = {.lex_state = 86}, - [1067] = {.lex_state = 86}, - [1068] = {.lex_state = 86}, - [1069] = {.lex_state = 86}, - [1070] = {.lex_state = 22}, - [1071] = {.lex_state = 86}, - [1072] = {.lex_state = 86}, - [1073] = {.lex_state = 86}, - [1074] = {.lex_state = 86}, - [1075] = {.lex_state = 86}, - [1076] = {.lex_state = 86}, - [1077] = {.lex_state = 86}, - [1078] = {.lex_state = 91}, - [1079] = {.lex_state = 86}, - [1080] = {.lex_state = 86}, - [1081] = {.lex_state = 63}, - [1082] = {.lex_state = 86}, - [1083] = {.lex_state = 86}, - [1084] = {.lex_state = 86}, - [1085] = {.lex_state = 86}, - [1086] = {.lex_state = 86}, - [1087] = {.lex_state = 86}, - [1088] = {.lex_state = 86}, - [1089] = {.lex_state = 92}, - [1090] = {.lex_state = 63}, - [1091] = {.lex_state = 63}, - [1092] = {.lex_state = 86}, - [1093] = {.lex_state = 78}, - [1094] = {.lex_state = 78}, - [1095] = {.lex_state = 78}, - [1096] = {.lex_state = 78}, - [1097] = {.lex_state = 78}, - [1098] = {.lex_state = 78}, - [1099] = {.lex_state = 78}, - [1100] = {.lex_state = 78}, - [1101] = {.lex_state = 84}, - [1102] = {.lex_state = 78}, - [1103] = {.lex_state = 78}, - [1104] = {.lex_state = 78}, - [1105] = {.lex_state = 78}, - [1106] = {.lex_state = 73}, - [1107] = {.lex_state = 78}, - [1108] = {.lex_state = 78}, - [1109] = {.lex_state = 78}, - [1110] = {.lex_state = 78}, - [1111] = {.lex_state = 78}, - [1112] = {.lex_state = 78}, - [1113] = {.lex_state = 78}, - [1114] = {.lex_state = 78}, - [1115] = {.lex_state = 78}, - [1116] = {.lex_state = 78}, - [1117] = {.lex_state = 78}, - [1118] = {.lex_state = 92}, - [1119] = {.lex_state = 78}, - [1120] = {.lex_state = 78}, - [1121] = {.lex_state = 78}, - [1122] = {.lex_state = 78}, - [1123] = {.lex_state = 78}, - [1124] = {.lex_state = 78}, - [1125] = {.lex_state = 78}, - [1126] = {.lex_state = 78}, - [1127] = {.lex_state = 78}, - [1128] = {.lex_state = 78}, - [1129] = {.lex_state = 78}, - [1130] = {.lex_state = 78}, - [1131] = {.lex_state = 78}, - [1132] = {.lex_state = 78}, - [1133] = {.lex_state = 78}, - [1134] = {.lex_state = 78}, - [1135] = {.lex_state = 78}, - [1136] = {.lex_state = 78}, - [1137] = {.lex_state = 78}, - [1138] = {.lex_state = 78}, - [1139] = {.lex_state = 78}, - [1140] = {.lex_state = 78}, - [1141] = {.lex_state = 78}, - [1142] = {.lex_state = 78}, - [1143] = {.lex_state = 78}, - [1144] = {.lex_state = 78}, - [1145] = {.lex_state = 78}, - [1146] = {.lex_state = 78}, - [1147] = {.lex_state = 78}, - [1148] = {.lex_state = 84}, - [1149] = {.lex_state = 78}, - [1150] = {.lex_state = 70}, - [1151] = {.lex_state = 78}, - [1152] = {.lex_state = 78}, - [1153] = {.lex_state = 78}, - [1154] = {.lex_state = 78}, - [1155] = {.lex_state = 78}, - [1156] = {.lex_state = 78}, - [1157] = {.lex_state = 78}, - [1158] = {.lex_state = 78}, - [1159] = {.lex_state = 78}, - [1160] = {.lex_state = 78}, - [1161] = {.lex_state = 18}, - [1162] = {.lex_state = 78}, - [1163] = {.lex_state = 78}, - [1164] = {.lex_state = 78}, - [1165] = {.lex_state = 78}, - [1166] = {.lex_state = 78}, - [1167] = {.lex_state = 63}, - [1168] = {.lex_state = 78}, - [1169] = {.lex_state = 75}, - [1170] = {.lex_state = 78}, - [1171] = {.lex_state = 78}, - [1172] = {.lex_state = 78}, - [1173] = {.lex_state = 78}, - [1174] = {.lex_state = 78}, - [1175] = {.lex_state = 78}, - [1176] = {.lex_state = 63}, - [1177] = {.lex_state = 63}, - [1178] = {.lex_state = 78}, - [1179] = {.lex_state = 66}, - [1180] = {.lex_state = 66}, - [1181] = {.lex_state = 66}, - [1182] = {.lex_state = 66}, - [1183] = {.lex_state = 66}, - [1184] = {.lex_state = 66}, - [1185] = {.lex_state = 66}, - [1186] = {.lex_state = 66}, - [1187] = {.lex_state = 66}, - [1188] = {.lex_state = 66}, - [1189] = {.lex_state = 66}, - [1190] = {.lex_state = 66}, - [1191] = {.lex_state = 66}, - [1192] = {.lex_state = 66}, - [1193] = {.lex_state = 63}, - [1194] = {.lex_state = 66}, - [1195] = {.lex_state = 66}, - [1196] = {.lex_state = 66}, - [1197] = {.lex_state = 66}, - [1198] = {.lex_state = 66}, - [1199] = {.lex_state = 66}, - [1200] = {.lex_state = 66}, - [1201] = {.lex_state = 66}, - [1202] = {.lex_state = 66}, - [1203] = {.lex_state = 66}, - [1204] = {.lex_state = 66}, - [1205] = {.lex_state = 66}, - [1206] = {.lex_state = 66}, - [1207] = {.lex_state = 66}, - [1208] = {.lex_state = 20}, - [1209] = {.lex_state = 66}, - [1210] = {.lex_state = 66}, - [1211] = {.lex_state = 66}, - [1212] = {.lex_state = 66}, - [1213] = {.lex_state = 66}, - [1214] = {.lex_state = 66}, - [1215] = {.lex_state = 66}, - [1216] = {.lex_state = 66}, - [1217] = {.lex_state = 66}, - [1218] = {.lex_state = 66}, - [1219] = {.lex_state = 66}, - [1220] = {.lex_state = 66}, - [1221] = {.lex_state = 66}, - [1222] = {.lex_state = 66}, - [1223] = {.lex_state = 66}, - [1224] = {.lex_state = 66}, - [1225] = {.lex_state = 66}, - [1226] = {.lex_state = 66}, - [1227] = {.lex_state = 66}, - [1228] = {.lex_state = 66}, - [1229] = {.lex_state = 66}, - [1230] = {.lex_state = 66}, - [1231] = {.lex_state = 66}, - [1232] = {.lex_state = 66}, - [1233] = {.lex_state = 66}, - [1234] = {.lex_state = 66}, - [1235] = {.lex_state = 66}, - [1236] = {.lex_state = 75}, - [1237] = {.lex_state = 66}, - [1238] = {.lex_state = 66}, - [1239] = {.lex_state = 66}, - [1240] = {.lex_state = 66}, - [1241] = {.lex_state = 66}, - [1242] = {.lex_state = 66}, - [1243] = {.lex_state = 66}, - [1244] = {.lex_state = 66}, - [1245] = {.lex_state = 66}, - [1246] = {.lex_state = 74}, - [1247] = {.lex_state = 66}, - [1248] = {.lex_state = 63}, - [1249] = {.lex_state = 74}, - [1250] = {.lex_state = 74}, - [1251] = {.lex_state = 74}, - [1252] = {.lex_state = 74}, - [1253] = {.lex_state = 74}, - [1254] = {.lex_state = 74}, - [1255] = {.lex_state = 74}, - [1256] = {.lex_state = 70}, - [1257] = {.lex_state = 74}, - [1258] = {.lex_state = 74}, - [1259] = {.lex_state = 74}, - [1260] = {.lex_state = 74}, - [1261] = {.lex_state = 74}, - [1262] = {.lex_state = 74}, - [1263] = {.lex_state = 63}, - [1264] = {.lex_state = 74}, - [1265] = {.lex_state = 74}, - [1266] = {.lex_state = 78}, - [1267] = {.lex_state = 63}, - [1268] = {.lex_state = 74}, - [1269] = {.lex_state = 74}, - [1270] = {.lex_state = 74}, - [1271] = {.lex_state = 74}, - [1272] = {.lex_state = 74}, - [1273] = {.lex_state = 74}, - [1274] = {.lex_state = 74}, - [1275] = {.lex_state = 66}, - [1276] = {.lex_state = 74}, - [1277] = {.lex_state = 74}, - [1278] = {.lex_state = 82}, - [1279] = {.lex_state = 74}, - [1280] = {.lex_state = 74}, - [1281] = {.lex_state = 63}, - [1282] = {.lex_state = 74}, - [1283] = {.lex_state = 63}, - [1284] = {.lex_state = 74}, - [1285] = {.lex_state = 74}, - [1286] = {.lex_state = 74}, - [1287] = {.lex_state = 74}, - [1288] = {.lex_state = 74}, - [1289] = {.lex_state = 74}, - [1290] = {.lex_state = 74}, - [1291] = {.lex_state = 74}, - [1292] = {.lex_state = 74}, - [1293] = {.lex_state = 74}, - [1294] = {.lex_state = 78}, - [1295] = {.lex_state = 74}, - [1296] = {.lex_state = 63}, - [1297] = {.lex_state = 74}, - [1298] = {.lex_state = 74}, - [1299] = {.lex_state = 74}, - [1300] = {.lex_state = 74}, - [1301] = {.lex_state = 74}, - [1302] = {.lex_state = 74}, - [1303] = {.lex_state = 74}, - [1304] = {.lex_state = 74}, - [1305] = {.lex_state = 74}, - [1306] = {.lex_state = 74}, - [1307] = {.lex_state = 74}, - [1308] = {.lex_state = 74}, - [1309] = {.lex_state = 74}, - [1310] = {.lex_state = 74}, - [1311] = {.lex_state = 74}, - [1312] = {.lex_state = 74}, - [1313] = {.lex_state = 74}, - [1314] = {.lex_state = 74}, - [1315] = {.lex_state = 74}, - [1316] = {.lex_state = 74}, - [1317] = {.lex_state = 74}, - [1318] = {.lex_state = 74}, - [1319] = {.lex_state = 74}, - [1320] = {.lex_state = 74}, - [1321] = {.lex_state = 74}, - [1322] = {.lex_state = 74}, - [1323] = {.lex_state = 74}, - [1324] = {.lex_state = 82}, - [1325] = {.lex_state = 74}, - [1326] = {.lex_state = 74}, - [1327] = {.lex_state = 74}, - [1328] = {.lex_state = 74}, - [1329] = {.lex_state = 74}, - [1330] = {.lex_state = 74}, - [1331] = {.lex_state = 74}, - [1332] = {.lex_state = 74}, - [1333] = {.lex_state = 74}, - [1334] = {.lex_state = 74}, - [1335] = {.lex_state = 72}, - [1336] = {.lex_state = 63}, - [1337] = {.lex_state = 63}, - [1338] = {.lex_state = 72}, - [1339] = {.lex_state = 72}, - [1340] = {.lex_state = 72}, - [1341] = {.lex_state = 72}, - [1342] = {.lex_state = 72}, - [1343] = {.lex_state = 72}, - [1344] = {.lex_state = 72}, - [1345] = {.lex_state = 63}, - [1346] = {.lex_state = 72}, - [1347] = {.lex_state = 72}, - [1348] = {.lex_state = 72}, - [1349] = {.lex_state = 72}, - [1350] = {.lex_state = 72}, - [1351] = {.lex_state = 72}, - [1352] = {.lex_state = 63}, - [1353] = {.lex_state = 72}, - [1354] = {.lex_state = 72}, - [1355] = {.lex_state = 86}, - [1356] = {.lex_state = 66}, - [1357] = {.lex_state = 72}, - [1358] = {.lex_state = 72}, - [1359] = {.lex_state = 72}, - [1360] = {.lex_state = 72}, - [1361] = {.lex_state = 72}, - [1362] = {.lex_state = 72}, - [1363] = {.lex_state = 72}, - [1364] = {.lex_state = 66}, - [1365] = {.lex_state = 72}, - [1366] = {.lex_state = 72}, - [1367] = {.lex_state = 76}, - [1368] = {.lex_state = 72}, - [1369] = {.lex_state = 72}, - [1370] = {.lex_state = 63}, - [1371] = {.lex_state = 72}, - [1372] = {.lex_state = 63}, - [1373] = {.lex_state = 72}, - [1374] = {.lex_state = 72}, - [1375] = {.lex_state = 72}, - [1376] = {.lex_state = 72}, - [1377] = {.lex_state = 72}, - [1378] = {.lex_state = 72}, - [1379] = {.lex_state = 72}, - [1380] = {.lex_state = 72}, - [1381] = {.lex_state = 72}, - [1382] = {.lex_state = 72}, - [1383] = {.lex_state = 86}, - [1384] = {.lex_state = 72}, - [1385] = {.lex_state = 72}, - [1386] = {.lex_state = 72}, - [1387] = {.lex_state = 72}, - [1388] = {.lex_state = 72}, - [1389] = {.lex_state = 72}, - [1390] = {.lex_state = 72}, - [1391] = {.lex_state = 72}, - [1392] = {.lex_state = 72}, - [1393] = {.lex_state = 72}, - [1394] = {.lex_state = 72}, - [1395] = {.lex_state = 72}, - [1396] = {.lex_state = 72}, - [1397] = {.lex_state = 72}, - [1398] = {.lex_state = 72}, - [1399] = {.lex_state = 72}, - [1400] = {.lex_state = 72}, - [1401] = {.lex_state = 72}, - [1402] = {.lex_state = 72}, - [1403] = {.lex_state = 72}, - [1404] = {.lex_state = 72}, - [1405] = {.lex_state = 72}, - [1406] = {.lex_state = 72}, - [1407] = {.lex_state = 72}, - [1408] = {.lex_state = 72}, - [1409] = {.lex_state = 72}, - [1410] = {.lex_state = 72}, - [1411] = {.lex_state = 72}, - [1412] = {.lex_state = 76}, - [1413] = {.lex_state = 72}, - [1414] = {.lex_state = 72}, - [1415] = {.lex_state = 72}, - [1416] = {.lex_state = 72}, - [1417] = {.lex_state = 72}, - [1418] = {.lex_state = 72}, - [1419] = {.lex_state = 72}, - [1420] = {.lex_state = 72}, - [1421] = {.lex_state = 72}, - [1422] = {.lex_state = 72}, - [1423] = {.lex_state = 80}, - [1424] = {.lex_state = 63}, - [1425] = {.lex_state = 63}, - [1426] = {.lex_state = 80}, - [1427] = {.lex_state = 80}, - [1428] = {.lex_state = 80}, - [1429] = {.lex_state = 80}, - [1430] = {.lex_state = 80}, - [1431] = {.lex_state = 80}, - [1432] = {.lex_state = 80}, - [1433] = {.lex_state = 63}, - [1434] = {.lex_state = 80}, - [1435] = {.lex_state = 80}, - [1436] = {.lex_state = 80}, - [1437] = {.lex_state = 80}, - [1438] = {.lex_state = 80}, - [1439] = {.lex_state = 80}, - [1440] = {.lex_state = 63}, - [1441] = {.lex_state = 80}, - [1442] = {.lex_state = 80}, - [1443] = {.lex_state = 80}, - [1444] = {.lex_state = 80}, - [1445] = {.lex_state = 80}, - [1446] = {.lex_state = 80}, - [1447] = {.lex_state = 80}, - [1448] = {.lex_state = 80}, - [1449] = {.lex_state = 80}, - [1450] = {.lex_state = 66}, - [1451] = {.lex_state = 80}, - [1452] = {.lex_state = 80}, - [1453] = {.lex_state = 90}, - [1454] = {.lex_state = 80}, - [1455] = {.lex_state = 80}, - [1456] = {.lex_state = 63}, - [1457] = {.lex_state = 80}, - [1458] = {.lex_state = 63}, - [1459] = {.lex_state = 80}, - [1460] = {.lex_state = 80}, - [1461] = {.lex_state = 80}, - [1462] = {.lex_state = 80}, - [1463] = {.lex_state = 80}, - [1464] = {.lex_state = 80}, - [1465] = {.lex_state = 80}, - [1466] = {.lex_state = 80}, - [1467] = {.lex_state = 80}, - [1468] = {.lex_state = 80}, - [1469] = {.lex_state = 80}, - [1470] = {.lex_state = 80}, - [1471] = {.lex_state = 80}, - [1472] = {.lex_state = 80}, - [1473] = {.lex_state = 80}, - [1474] = {.lex_state = 80}, - [1475] = {.lex_state = 80}, - [1476] = {.lex_state = 80}, - [1477] = {.lex_state = 80}, - [1478] = {.lex_state = 80}, - [1479] = {.lex_state = 80}, - [1480] = {.lex_state = 80}, - [1481] = {.lex_state = 80}, - [1482] = {.lex_state = 80}, - [1483] = {.lex_state = 80}, - [1484] = {.lex_state = 80}, - [1485] = {.lex_state = 80}, - [1486] = {.lex_state = 80}, - [1487] = {.lex_state = 80}, - [1488] = {.lex_state = 80}, - [1489] = {.lex_state = 80}, - [1490] = {.lex_state = 80}, - [1491] = {.lex_state = 80}, - [1492] = {.lex_state = 80}, - [1493] = {.lex_state = 80}, - [1494] = {.lex_state = 80}, - [1495] = {.lex_state = 80}, - [1496] = {.lex_state = 80}, - [1497] = {.lex_state = 90}, - [1498] = {.lex_state = 80}, - [1499] = {.lex_state = 80}, - [1500] = {.lex_state = 80}, - [1501] = {.lex_state = 80}, - [1502] = {.lex_state = 80}, - [1503] = {.lex_state = 80}, - [1504] = {.lex_state = 80}, - [1505] = {.lex_state = 80}, - [1506] = {.lex_state = 80}, - [1507] = {.lex_state = 80}, - [1508] = {.lex_state = 84}, - [1509] = {.lex_state = 63}, - [1510] = {.lex_state = 63}, - [1511] = {.lex_state = 84}, - [1512] = {.lex_state = 84}, - [1513] = {.lex_state = 84}, - [1514] = {.lex_state = 84}, - [1515] = {.lex_state = 84}, - [1516] = {.lex_state = 84}, - [1517] = {.lex_state = 84}, - [1518] = {.lex_state = 63}, - [1519] = {.lex_state = 84}, - [1520] = {.lex_state = 84}, - [1521] = {.lex_state = 84}, - [1522] = {.lex_state = 84}, - [1523] = {.lex_state = 84}, - [1524] = {.lex_state = 84}, - [1525] = {.lex_state = 63}, - [1526] = {.lex_state = 84}, - [1527] = {.lex_state = 84}, - [1528] = {.lex_state = 84}, - [1529] = {.lex_state = 84}, - [1530] = {.lex_state = 84}, - [1531] = {.lex_state = 84}, - [1532] = {.lex_state = 84}, - [1533] = {.lex_state = 84}, - [1534] = {.lex_state = 84}, - [1535] = {.lex_state = 73}, - [1536] = {.lex_state = 84}, - [1537] = {.lex_state = 84}, - [1538] = {.lex_state = 92}, - [1539] = {.lex_state = 84}, - [1540] = {.lex_state = 84}, - [1541] = {.lex_state = 63}, - [1542] = {.lex_state = 84}, - [1543] = {.lex_state = 63}, - [1544] = {.lex_state = 84}, - [1545] = {.lex_state = 84}, - [1546] = {.lex_state = 84}, - [1547] = {.lex_state = 84}, - [1548] = {.lex_state = 84}, - [1549] = {.lex_state = 84}, - [1550] = {.lex_state = 84}, - [1551] = {.lex_state = 84}, - [1552] = {.lex_state = 84}, - [1553] = {.lex_state = 84}, - [1554] = {.lex_state = 84}, - [1555] = {.lex_state = 84}, - [1556] = {.lex_state = 84}, - [1557] = {.lex_state = 84}, - [1558] = {.lex_state = 84}, - [1559] = {.lex_state = 84}, - [1560] = {.lex_state = 84}, - [1561] = {.lex_state = 84}, - [1562] = {.lex_state = 84}, - [1563] = {.lex_state = 84}, - [1564] = {.lex_state = 84}, - [1565] = {.lex_state = 84}, - [1566] = {.lex_state = 84}, - [1567] = {.lex_state = 84}, - [1568] = {.lex_state = 84}, - [1569] = {.lex_state = 84}, - [1570] = {.lex_state = 84}, - [1571] = {.lex_state = 84}, - [1572] = {.lex_state = 84}, - [1573] = {.lex_state = 84}, - [1574] = {.lex_state = 84}, - [1575] = {.lex_state = 84}, - [1576] = {.lex_state = 84}, - [1577] = {.lex_state = 84}, - [1578] = {.lex_state = 84}, - [1579] = {.lex_state = 84}, - [1580] = {.lex_state = 84}, - [1581] = {.lex_state = 84}, - [1582] = {.lex_state = 92}, - [1583] = {.lex_state = 84}, - [1584] = {.lex_state = 84}, - [1585] = {.lex_state = 84}, - [1586] = {.lex_state = 84}, - [1587] = {.lex_state = 84}, - [1588] = {.lex_state = 84}, - [1589] = {.lex_state = 84}, - [1590] = {.lex_state = 84}, - [1591] = {.lex_state = 84}, - [1592] = {.lex_state = 84}, - [1593] = {.lex_state = 82}, - [1594] = {.lex_state = 63}, - [1595] = {.lex_state = 63}, - [1596] = {.lex_state = 82}, - [1597] = {.lex_state = 82}, - [1598] = {.lex_state = 82}, - [1599] = {.lex_state = 82}, - [1600] = {.lex_state = 82}, - [1601] = {.lex_state = 82}, - [1602] = {.lex_state = 82}, - [1603] = {.lex_state = 63}, - [1604] = {.lex_state = 82}, - [1605] = {.lex_state = 82}, - [1606] = {.lex_state = 82}, - [1607] = {.lex_state = 82}, - [1608] = {.lex_state = 82}, - [1609] = {.lex_state = 82}, - [1610] = {.lex_state = 82}, - [1611] = {.lex_state = 82}, - [1612] = {.lex_state = 82}, - [1613] = {.lex_state = 82}, - [1614] = {.lex_state = 82}, - [1615] = {.lex_state = 82}, - [1616] = {.lex_state = 82}, - [1617] = {.lex_state = 82}, - [1618] = {.lex_state = 82}, - [1619] = {.lex_state = 66}, - [1620] = {.lex_state = 82}, - [1621] = {.lex_state = 82}, - [1622] = {.lex_state = 66}, - [1623] = {.lex_state = 82}, - [1624] = {.lex_state = 82}, - [1625] = {.lex_state = 82}, - [1626] = {.lex_state = 63}, - [1627] = {.lex_state = 82}, - [1628] = {.lex_state = 82}, - [1629] = {.lex_state = 82}, - [1630] = {.lex_state = 82}, - [1631] = {.lex_state = 82}, - [1632] = {.lex_state = 82}, - [1633] = {.lex_state = 82}, - [1634] = {.lex_state = 82}, - [1635] = {.lex_state = 82}, - [1636] = {.lex_state = 82}, - [1637] = {.lex_state = 82}, - [1638] = {.lex_state = 82}, - [1639] = {.lex_state = 82}, - [1640] = {.lex_state = 82}, - [1641] = {.lex_state = 82}, - [1642] = {.lex_state = 82}, - [1643] = {.lex_state = 82}, - [1644] = {.lex_state = 82}, - [1645] = {.lex_state = 82}, - [1646] = {.lex_state = 82}, - [1647] = {.lex_state = 82}, - [1648] = {.lex_state = 82}, - [1649] = {.lex_state = 82}, - [1650] = {.lex_state = 82}, - [1651] = {.lex_state = 82}, - [1652] = {.lex_state = 82}, - [1653] = {.lex_state = 82}, - [1654] = {.lex_state = 82}, - [1655] = {.lex_state = 82}, - [1656] = {.lex_state = 82}, - [1657] = {.lex_state = 82}, - [1658] = {.lex_state = 82}, - [1659] = {.lex_state = 82}, - [1660] = {.lex_state = 82}, - [1661] = {.lex_state = 82}, - [1662] = {.lex_state = 82}, - [1663] = {.lex_state = 82}, - [1664] = {.lex_state = 82}, - [1665] = {.lex_state = 66}, - [1666] = {.lex_state = 82}, - [1667] = {.lex_state = 82}, - [1668] = {.lex_state = 82}, - [1669] = {.lex_state = 82}, - [1670] = {.lex_state = 82}, - [1671] = {.lex_state = 82}, - [1672] = {.lex_state = 82}, - [1673] = {.lex_state = 82}, - [1674] = {.lex_state = 82}, - [1675] = {.lex_state = 82}, - [1676] = {.lex_state = 76}, - [1677] = {.lex_state = 63}, - [1678] = {.lex_state = 63}, - [1679] = {.lex_state = 76}, - [1680] = {.lex_state = 76}, - [1681] = {.lex_state = 76}, - [1682] = {.lex_state = 76}, - [1683] = {.lex_state = 63}, - [1684] = {.lex_state = 76}, - [1685] = {.lex_state = 76}, - [1686] = {.lex_state = 63}, - [1687] = {.lex_state = 76}, - [1688] = {.lex_state = 76}, - [1689] = {.lex_state = 76}, - [1690] = {.lex_state = 76}, - [1691] = {.lex_state = 76}, - [1692] = {.lex_state = 76}, - [1693] = {.lex_state = 76}, - [1694] = {.lex_state = 76}, - [1695] = {.lex_state = 76}, - [1696] = {.lex_state = 76}, - [1697] = {.lex_state = 76}, - [1698] = {.lex_state = 76}, - [1699] = {.lex_state = 76}, - [1700] = {.lex_state = 76}, - [1701] = {.lex_state = 76}, - [1702] = {.lex_state = 59}, - [1703] = {.lex_state = 76}, - [1704] = {.lex_state = 76}, - [1705] = {.lex_state = 78}, - [1706] = {.lex_state = 76}, - [1707] = {.lex_state = 76}, - [1708] = {.lex_state = 76}, - [1709] = {.lex_state = 63}, - [1710] = {.lex_state = 76}, - [1711] = {.lex_state = 76}, - [1712] = {.lex_state = 76}, - [1713] = {.lex_state = 76}, - [1714] = {.lex_state = 76}, - [1715] = {.lex_state = 76}, - [1716] = {.lex_state = 76}, - [1717] = {.lex_state = 76}, - [1718] = {.lex_state = 76}, - [1719] = {.lex_state = 76}, - [1720] = {.lex_state = 76}, - [1721] = {.lex_state = 76}, - [1722] = {.lex_state = 76}, - [1723] = {.lex_state = 76}, - [1724] = {.lex_state = 76}, - [1725] = {.lex_state = 76}, - [1726] = {.lex_state = 76}, - [1727] = {.lex_state = 76}, - [1728] = {.lex_state = 76}, - [1729] = {.lex_state = 76}, - [1730] = {.lex_state = 76}, - [1731] = {.lex_state = 76}, - [1732] = {.lex_state = 76}, - [1733] = {.lex_state = 76}, - [1734] = {.lex_state = 76}, - [1735] = {.lex_state = 76}, - [1736] = {.lex_state = 76}, - [1737] = {.lex_state = 76}, - [1738] = {.lex_state = 76}, - [1739] = {.lex_state = 76}, - [1740] = {.lex_state = 76}, - [1741] = {.lex_state = 76}, - [1742] = {.lex_state = 76}, - [1743] = {.lex_state = 76}, - [1744] = {.lex_state = 76}, - [1745] = {.lex_state = 76}, - [1746] = {.lex_state = 76}, - [1747] = {.lex_state = 76}, - [1748] = {.lex_state = 78}, - [1749] = {.lex_state = 76}, - [1750] = {.lex_state = 76}, - [1751] = {.lex_state = 76}, - [1752] = {.lex_state = 76}, - [1753] = {.lex_state = 76}, - [1754] = {.lex_state = 76}, - [1755] = {.lex_state = 76}, - [1756] = {.lex_state = 76}, - [1757] = {.lex_state = 76}, - [1758] = {.lex_state = 76}, - [1759] = {.lex_state = 90}, - [1760] = {.lex_state = 63}, - [1761] = {.lex_state = 63}, - [1762] = {.lex_state = 90}, - [1763] = {.lex_state = 90}, - [1764] = {.lex_state = 90}, - [1765] = {.lex_state = 90}, - [1766] = {.lex_state = 90}, - [1767] = {.lex_state = 90}, - [1768] = {.lex_state = 90}, - [1769] = {.lex_state = 63}, - [1770] = {.lex_state = 90}, - [1771] = {.lex_state = 90}, - [1772] = {.lex_state = 90}, - [1773] = {.lex_state = 90}, - [1774] = {.lex_state = 90}, - [1775] = {.lex_state = 90}, - [1776] = {.lex_state = 90}, - [1777] = {.lex_state = 90}, - [1778] = {.lex_state = 90}, - [1779] = {.lex_state = 90}, - [1780] = {.lex_state = 90}, - [1781] = {.lex_state = 90}, - [1782] = {.lex_state = 90}, - [1783] = {.lex_state = 90}, - [1784] = {.lex_state = 90}, - [1785] = {.lex_state = 67}, - [1786] = {.lex_state = 90}, - [1787] = {.lex_state = 90}, - [1788] = {.lex_state = 86}, - [1789] = {.lex_state = 90}, - [1790] = {.lex_state = 90}, - [1791] = {.lex_state = 90}, - [1792] = {.lex_state = 63}, - [1793] = {.lex_state = 90}, - [1794] = {.lex_state = 90}, - [1795] = {.lex_state = 90}, - [1796] = {.lex_state = 90}, - [1797] = {.lex_state = 90}, - [1798] = {.lex_state = 90}, - [1799] = {.lex_state = 90}, - [1800] = {.lex_state = 90}, - [1801] = {.lex_state = 90}, - [1802] = {.lex_state = 90}, - [1803] = {.lex_state = 90}, - [1804] = {.lex_state = 90}, - [1805] = {.lex_state = 90}, - [1806] = {.lex_state = 90}, - [1807] = {.lex_state = 90}, - [1808] = {.lex_state = 90}, - [1809] = {.lex_state = 90}, - [1810] = {.lex_state = 90}, - [1811] = {.lex_state = 90}, - [1812] = {.lex_state = 90}, - [1813] = {.lex_state = 90}, - [1814] = {.lex_state = 90}, - [1815] = {.lex_state = 90}, - [1816] = {.lex_state = 90}, - [1817] = {.lex_state = 90}, - [1818] = {.lex_state = 90}, - [1819] = {.lex_state = 90}, - [1820] = {.lex_state = 90}, - [1821] = {.lex_state = 90}, - [1822] = {.lex_state = 90}, - [1823] = {.lex_state = 90}, - [1824] = {.lex_state = 90}, - [1825] = {.lex_state = 90}, - [1826] = {.lex_state = 90}, - [1827] = {.lex_state = 90}, - [1828] = {.lex_state = 90}, - [1829] = {.lex_state = 90}, - [1830] = {.lex_state = 90}, - [1831] = {.lex_state = 86}, - [1832] = {.lex_state = 90}, - [1833] = {.lex_state = 90}, - [1834] = {.lex_state = 90}, - [1835] = {.lex_state = 90}, - [1836] = {.lex_state = 90}, - [1837] = {.lex_state = 90}, - [1838] = {.lex_state = 90}, - [1839] = {.lex_state = 90}, - [1840] = {.lex_state = 90}, - [1841] = {.lex_state = 90}, - [1842] = {.lex_state = 92}, - [1843] = {.lex_state = 63}, - [1844] = {.lex_state = 80}, - [1845] = {.lex_state = 92}, - [1846] = {.lex_state = 92}, - [1847] = {.lex_state = 92}, - [1848] = {.lex_state = 92}, - [1849] = {.lex_state = 92}, - [1850] = {.lex_state = 92}, - [1851] = {.lex_state = 92}, - [1852] = {.lex_state = 63}, - [1853] = {.lex_state = 92}, - [1854] = {.lex_state = 92}, - [1855] = {.lex_state = 92}, - [1856] = {.lex_state = 92}, - [1857] = {.lex_state = 92}, - [1858] = {.lex_state = 92}, - [1859] = {.lex_state = 92}, - [1860] = {.lex_state = 92}, - [1861] = {.lex_state = 92}, - [1862] = {.lex_state = 92}, - [1863] = {.lex_state = 92}, - [1864] = {.lex_state = 92}, - [1865] = {.lex_state = 92}, - [1866] = {.lex_state = 92}, - [1867] = {.lex_state = 92}, - [1868] = {.lex_state = 91}, - [1869] = {.lex_state = 92}, - [1870] = {.lex_state = 92}, - [1871] = {.lex_state = 92}, - [1872] = {.lex_state = 92}, - [1873] = {.lex_state = 92}, - [1874] = {.lex_state = 92}, - [1875] = {.lex_state = 92}, - [1876] = {.lex_state = 92}, - [1877] = {.lex_state = 92}, - [1878] = {.lex_state = 92}, - [1879] = {.lex_state = 92}, - [1880] = {.lex_state = 92}, - [1881] = {.lex_state = 92}, - [1882] = {.lex_state = 92}, - [1883] = {.lex_state = 92}, - [1884] = {.lex_state = 92}, - [1885] = {.lex_state = 92}, - [1886] = {.lex_state = 92}, - [1887] = {.lex_state = 92}, - [1888] = {.lex_state = 92}, - [1889] = {.lex_state = 92}, - [1890] = {.lex_state = 92}, - [1891] = {.lex_state = 92}, - [1892] = {.lex_state = 92}, - [1893] = {.lex_state = 92}, - [1894] = {.lex_state = 92}, - [1895] = {.lex_state = 92}, - [1896] = {.lex_state = 92}, - [1897] = {.lex_state = 92}, - [1898] = {.lex_state = 92}, - [1899] = {.lex_state = 92}, - [1900] = {.lex_state = 92}, - [1901] = {.lex_state = 92}, - [1902] = {.lex_state = 92}, - [1903] = {.lex_state = 92}, - [1904] = {.lex_state = 92}, - [1905] = {.lex_state = 92}, - [1906] = {.lex_state = 92}, - [1907] = {.lex_state = 92}, - [1908] = {.lex_state = 92}, - [1909] = {.lex_state = 92}, - [1910] = {.lex_state = 92}, - [1911] = {.lex_state = 92}, - [1912] = {.lex_state = 92}, - [1913] = {.lex_state = 92}, - [1914] = {.lex_state = 92}, - [1915] = {.lex_state = 92}, - [1916] = {.lex_state = 92}, - [1917] = {.lex_state = 92}, - [1918] = {.lex_state = 92}, - [1919] = {.lex_state = 92}, - [1920] = {.lex_state = 92}, - [1921] = {.lex_state = 92}, - [1922] = {.lex_state = 66}, - [1923] = {.lex_state = 63}, - [1924] = {.lex_state = 63}, - [1925] = {.lex_state = 66}, - [1926] = {.lex_state = 66}, - [1927] = {.lex_state = 66}, - [1928] = {.lex_state = 66}, - [1929] = {.lex_state = 66}, - [1930] = {.lex_state = 66}, - [1931] = {.lex_state = 66}, - [1932] = {.lex_state = 53}, - [1933] = {.lex_state = 53}, - [1934] = {.lex_state = 85}, - [1935] = {.lex_state = 114}, - [1936] = {.lex_state = 114}, - [1937] = {.lex_state = 73}, - [1938] = {.lex_state = 114}, - [1939] = {.lex_state = 114}, - [1940] = {.lex_state = 114}, - [1941] = {.lex_state = 75}, - [1942] = {.lex_state = 70}, - [1943] = {.lex_state = 73}, - [1944] = {.lex_state = 70}, - [1945] = {.lex_state = 70}, - [1946] = {.lex_state = 70}, - [1947] = {.lex_state = 70}, - [1948] = {.lex_state = 70}, - [1949] = {.lex_state = 75}, - [1950] = {.lex_state = 70}, - [1951] = {.lex_state = 70}, - [1952] = {.lex_state = 70}, - [1953] = {.lex_state = 70}, - [1954] = {.lex_state = 70}, - [1955] = {.lex_state = 89}, - [1956] = {.lex_state = 70}, - [1957] = {.lex_state = 70}, - [1958] = {.lex_state = 70}, - [1959] = {.lex_state = 70}, - [1960] = {.lex_state = 70}, - [1961] = {.lex_state = 70}, - [1962] = {.lex_state = 70}, - [1963] = {.lex_state = 70}, - [1964] = {.lex_state = 70}, - [1965] = {.lex_state = 70}, - [1966] = {.lex_state = 70}, - [1967] = {.lex_state = 70}, - [1968] = {.lex_state = 70}, - [1969] = {.lex_state = 70}, - [1970] = {.lex_state = 70}, - [1971] = {.lex_state = 70}, - [1972] = {.lex_state = 70}, - [1973] = {.lex_state = 70}, - [1974] = {.lex_state = 70}, - [1975] = {.lex_state = 70}, - [1976] = {.lex_state = 70}, - [1977] = {.lex_state = 70}, - [1978] = {.lex_state = 70}, - [1979] = {.lex_state = 70}, - [1980] = {.lex_state = 70}, - [1981] = {.lex_state = 70}, - [1982] = {.lex_state = 70}, - [1983] = {.lex_state = 70}, - [1984] = {.lex_state = 70}, - [1985] = {.lex_state = 70}, - [1986] = {.lex_state = 70}, - [1987] = {.lex_state = 70}, - [1988] = {.lex_state = 70}, - [1989] = {.lex_state = 70}, - [1990] = {.lex_state = 70}, - [1991] = {.lex_state = 70}, - [1992] = {.lex_state = 70}, - [1993] = {.lex_state = 73}, - [1994] = {.lex_state = 70}, - [1995] = {.lex_state = 70}, - [1996] = {.lex_state = 70}, - [1997] = {.lex_state = 89}, - [1998] = {.lex_state = 70}, - [1999] = {.lex_state = 70}, - [2000] = {.lex_state = 114}, - [2001] = {.lex_state = 70}, - [2002] = {.lex_state = 70}, - [2003] = {.lex_state = 70}, - [2004] = {.lex_state = 70}, - [2005] = {.lex_state = 70}, - [2006] = {.lex_state = 70}, - [2007] = {.lex_state = 70}, - [2008] = {.lex_state = 73}, - [2009] = {.lex_state = 70}, - [2010] = {.lex_state = 70}, - [2011] = {.lex_state = 73}, - [2012] = {.lex_state = 70}, - [2013] = {.lex_state = 70}, - [2014] = {.lex_state = 70}, - [2015] = {.lex_state = 70}, - [2016] = {.lex_state = 70}, - [2017] = {.lex_state = 70}, - [2018] = {.lex_state = 70}, - [2019] = {.lex_state = 70}, - [2020] = {.lex_state = 70}, - [2021] = {.lex_state = 70}, - [2022] = {.lex_state = 70}, - [2023] = {.lex_state = 70}, - [2024] = {.lex_state = 70}, - [2025] = {.lex_state = 73}, - [2026] = {.lex_state = 70}, - [2027] = {.lex_state = 75}, - [2028] = {.lex_state = 75}, - [2029] = {.lex_state = 75}, - [2030] = {.lex_state = 75}, - [2031] = {.lex_state = 75}, - [2032] = {.lex_state = 75}, - [2033] = {.lex_state = 75}, - [2034] = {.lex_state = 75}, - [2035] = {.lex_state = 75}, - [2036] = {.lex_state = 75}, - [2037] = {.lex_state = 64}, - [2038] = {.lex_state = 75}, - [2039] = {.lex_state = 75}, - [2040] = {.lex_state = 75}, - [2041] = {.lex_state = 75}, - [2042] = {.lex_state = 75}, - [2043] = {.lex_state = 75}, - [2044] = {.lex_state = 75}, - [2045] = {.lex_state = 75}, - [2046] = {.lex_state = 75}, - [2047] = {.lex_state = 75}, - [2048] = {.lex_state = 75}, - [2049] = {.lex_state = 75}, - [2050] = {.lex_state = 75}, - [2051] = {.lex_state = 75}, - [2052] = {.lex_state = 75}, - [2053] = {.lex_state = 75}, - [2054] = {.lex_state = 75}, - [2055] = {.lex_state = 75}, - [2056] = {.lex_state = 75}, - [2057] = {.lex_state = 75}, - [2058] = {.lex_state = 75}, - [2059] = {.lex_state = 75}, - [2060] = {.lex_state = 75}, - [2061] = {.lex_state = 75}, - [2062] = {.lex_state = 75}, - [2063] = {.lex_state = 75}, - [2064] = {.lex_state = 75}, - [2065] = {.lex_state = 73}, - [2066] = {.lex_state = 75}, - [2067] = {.lex_state = 75}, - [2068] = {.lex_state = 75}, - [2069] = {.lex_state = 75}, - [2070] = {.lex_state = 73}, - [2071] = {.lex_state = 75}, - [2072] = {.lex_state = 75}, - [2073] = {.lex_state = 75}, - [2074] = {.lex_state = 75}, - [2075] = {.lex_state = 75}, - [2076] = {.lex_state = 75}, - [2077] = {.lex_state = 114}, - [2078] = {.lex_state = 75}, - [2079] = {.lex_state = 64}, - [2080] = {.lex_state = 73}, - [2081] = {.lex_state = 75}, - [2082] = {.lex_state = 75}, - [2083] = {.lex_state = 75}, - [2084] = {.lex_state = 75}, - [2085] = {.lex_state = 114}, - [2086] = {.lex_state = 75}, - [2087] = {.lex_state = 75}, - [2088] = {.lex_state = 75}, - [2089] = {.lex_state = 75}, - [2090] = {.lex_state = 75}, - [2091] = {.lex_state = 75}, - [2092] = {.lex_state = 75}, - [2093] = {.lex_state = 73}, - [2094] = {.lex_state = 73}, - [2095] = {.lex_state = 75}, - [2096] = {.lex_state = 75}, - [2097] = {.lex_state = 73}, - [2098] = {.lex_state = 75}, - [2099] = {.lex_state = 75}, - [2100] = {.lex_state = 75}, - [2101] = {.lex_state = 75}, - [2102] = {.lex_state = 75}, - [2103] = {.lex_state = 75}, - [2104] = {.lex_state = 75}, - [2105] = {.lex_state = 75}, - [2106] = {.lex_state = 75}, - [2107] = {.lex_state = 75}, - [2108] = {.lex_state = 75}, - [2109] = {.lex_state = 75}, - [2110] = {.lex_state = 75}, - [2111] = {.lex_state = 73}, - [2112] = {.lex_state = 75}, - [2113] = {.lex_state = 91}, - [2114] = {.lex_state = 91}, - [2115] = {.lex_state = 91}, - [2116] = {.lex_state = 91}, - [2117] = {.lex_state = 91}, - [2118] = {.lex_state = 91}, - [2119] = {.lex_state = 77}, - [2120] = {.lex_state = 91}, - [2121] = {.lex_state = 91}, - [2122] = {.lex_state = 91}, - [2123] = {.lex_state = 91}, - [2124] = {.lex_state = 91}, - [2125] = {.lex_state = 91}, - [2126] = {.lex_state = 91}, - [2127] = {.lex_state = 91}, - [2128] = {.lex_state = 91}, - [2129] = {.lex_state = 91}, - [2130] = {.lex_state = 91}, - [2131] = {.lex_state = 91}, - [2132] = {.lex_state = 91}, - [2133] = {.lex_state = 91}, - [2134] = {.lex_state = 91}, - [2135] = {.lex_state = 91}, - [2136] = {.lex_state = 91}, - [2137] = {.lex_state = 91}, - [2138] = {.lex_state = 91}, - [2139] = {.lex_state = 91}, - [2140] = {.lex_state = 91}, - [2141] = {.lex_state = 91}, - [2142] = {.lex_state = 91}, - [2143] = {.lex_state = 91}, - [2144] = {.lex_state = 91}, - [2145] = {.lex_state = 91}, - [2146] = {.lex_state = 91}, - [2147] = {.lex_state = 91}, - [2148] = {.lex_state = 91}, - [2149] = {.lex_state = 91}, - [2150] = {.lex_state = 91}, - [2151] = {.lex_state = 73}, - [2152] = {.lex_state = 91}, - [2153] = {.lex_state = 91}, - [2154] = {.lex_state = 91}, - [2155] = {.lex_state = 91}, - [2156] = {.lex_state = 73}, - [2157] = {.lex_state = 91}, - [2158] = {.lex_state = 91}, - [2159] = {.lex_state = 91}, - [2160] = {.lex_state = 91}, - [2161] = {.lex_state = 77}, - [2162] = {.lex_state = 91}, - [2163] = {.lex_state = 91}, - [2164] = {.lex_state = 91}, - [2165] = {.lex_state = 73}, - [2166] = {.lex_state = 91}, - [2167] = {.lex_state = 73}, - [2168] = {.lex_state = 91}, - [2169] = {.lex_state = 91}, - [2170] = {.lex_state = 91}, - [2171] = {.lex_state = 91}, - [2172] = {.lex_state = 89}, - [2173] = {.lex_state = 91}, - [2174] = {.lex_state = 91}, - [2175] = {.lex_state = 89}, - [2176] = {.lex_state = 89}, - [2177] = {.lex_state = 89}, - [2178] = {.lex_state = 89}, - [2179] = {.lex_state = 89}, - [2180] = {.lex_state = 89}, - [2181] = {.lex_state = 89}, - [2182] = {.lex_state = 91}, - [2183] = {.lex_state = 89}, - [2184] = {.lex_state = 89}, - [2185] = {.lex_state = 89}, - [2186] = {.lex_state = 89}, - [2187] = {.lex_state = 89}, - [2188] = {.lex_state = 89}, - [2189] = {.lex_state = 89}, - [2190] = {.lex_state = 89}, - [2191] = {.lex_state = 89}, - [2192] = {.lex_state = 89}, - [2193] = {.lex_state = 89}, - [2194] = {.lex_state = 89}, - [2195] = {.lex_state = 89}, - [2196] = {.lex_state = 89}, - [2197] = {.lex_state = 89}, - [2198] = {.lex_state = 75}, - [2199] = {.lex_state = 89}, - [2200] = {.lex_state = 89}, - [2201] = {.lex_state = 79}, - [2202] = {.lex_state = 89}, - [2203] = {.lex_state = 89}, - [2204] = {.lex_state = 89}, - [2205] = {.lex_state = 89}, - [2206] = {.lex_state = 89}, - [2207] = {.lex_state = 89}, - [2208] = {.lex_state = 89}, - [2209] = {.lex_state = 89}, - [2210] = {.lex_state = 89}, - [2211] = {.lex_state = 89}, - [2212] = {.lex_state = 89}, - [2213] = {.lex_state = 89}, - [2214] = {.lex_state = 89}, - [2215] = {.lex_state = 89}, - [2216] = {.lex_state = 89}, - [2217] = {.lex_state = 89}, - [2218] = {.lex_state = 89}, - [2219] = {.lex_state = 89}, - [2220] = {.lex_state = 89}, - [2221] = {.lex_state = 89}, - [2222] = {.lex_state = 89}, - [2223] = {.lex_state = 89}, - [2224] = {.lex_state = 89}, - [2225] = {.lex_state = 89}, - [2226] = {.lex_state = 89}, - [2227] = {.lex_state = 89}, - [2228] = {.lex_state = 89}, - [2229] = {.lex_state = 89}, - [2230] = {.lex_state = 89}, - [2231] = {.lex_state = 89}, - [2232] = {.lex_state = 89}, - [2233] = {.lex_state = 89}, - [2234] = {.lex_state = 89}, - [2235] = {.lex_state = 89}, - [2236] = {.lex_state = 89}, - [2237] = {.lex_state = 89}, - [2238] = {.lex_state = 89}, - [2239] = {.lex_state = 89}, - [2240] = {.lex_state = 89}, - [2241] = {.lex_state = 89}, - [2242] = {.lex_state = 89}, - [2243] = {.lex_state = 79}, - [2244] = {.lex_state = 89}, - [2245] = {.lex_state = 89}, - [2246] = {.lex_state = 89}, - [2247] = {.lex_state = 89}, - [2248] = {.lex_state = 89}, - [2249] = {.lex_state = 89}, - [2250] = {.lex_state = 89}, - [2251] = {.lex_state = 89}, - [2252] = {.lex_state = 89}, - [2253] = {.lex_state = 89}, - [2254] = {.lex_state = 64}, - [2255] = {.lex_state = 91}, - [2256] = {.lex_state = 91}, - [2257] = {.lex_state = 64}, - [2258] = {.lex_state = 64}, - [2259] = {.lex_state = 64}, - [2260] = {.lex_state = 64}, - [2261] = {.lex_state = 64}, - [2262] = {.lex_state = 64}, - [2263] = {.lex_state = 64}, - [2264] = {.lex_state = 91}, - [2265] = {.lex_state = 64}, - [2266] = {.lex_state = 64}, - [2267] = {.lex_state = 64}, - [2268] = {.lex_state = 64}, - [2269] = {.lex_state = 64}, - [2270] = {.lex_state = 64}, - [2271] = {.lex_state = 64}, - [2272] = {.lex_state = 64}, - [2273] = {.lex_state = 64}, - [2274] = {.lex_state = 64}, - [2275] = {.lex_state = 64}, - [2276] = {.lex_state = 64}, - [2277] = {.lex_state = 64}, - [2278] = {.lex_state = 64}, - [2279] = {.lex_state = 64}, - [2280] = {.lex_state = 91}, - [2281] = {.lex_state = 64}, - [2282] = {.lex_state = 64}, - [2283] = {.lex_state = 81}, - [2284] = {.lex_state = 64}, - [2285] = {.lex_state = 64}, - [2286] = {.lex_state = 64}, - [2287] = {.lex_state = 64}, - [2288] = {.lex_state = 64}, - [2289] = {.lex_state = 64}, - [2290] = {.lex_state = 64}, - [2291] = {.lex_state = 64}, - [2292] = {.lex_state = 64}, - [2293] = {.lex_state = 64}, - [2294] = {.lex_state = 64}, - [2295] = {.lex_state = 64}, - [2296] = {.lex_state = 64}, - [2297] = {.lex_state = 64}, - [2298] = {.lex_state = 64}, - [2299] = {.lex_state = 64}, - [2300] = {.lex_state = 64}, - [2301] = {.lex_state = 64}, - [2302] = {.lex_state = 64}, - [2303] = {.lex_state = 64}, - [2304] = {.lex_state = 64}, - [2305] = {.lex_state = 64}, - [2306] = {.lex_state = 64}, - [2307] = {.lex_state = 64}, - [2308] = {.lex_state = 64}, - [2309] = {.lex_state = 64}, - [2310] = {.lex_state = 64}, - [2311] = {.lex_state = 64}, - [2312] = {.lex_state = 64}, - [2313] = {.lex_state = 64}, - [2314] = {.lex_state = 64}, - [2315] = {.lex_state = 64}, - [2316] = {.lex_state = 64}, - [2317] = {.lex_state = 64}, - [2318] = {.lex_state = 64}, - [2319] = {.lex_state = 64}, - [2320] = {.lex_state = 64}, - [2321] = {.lex_state = 64}, - [2322] = {.lex_state = 64}, - [2323] = {.lex_state = 64}, - [2324] = {.lex_state = 64}, - [2325] = {.lex_state = 81}, - [2326] = {.lex_state = 64}, - [2327] = {.lex_state = 64}, - [2328] = {.lex_state = 64}, - [2329] = {.lex_state = 64}, - [2330] = {.lex_state = 64}, - [2331] = {.lex_state = 64}, - [2332] = {.lex_state = 64}, - [2333] = {.lex_state = 64}, - [2334] = {.lex_state = 64}, - [2335] = {.lex_state = 64}, - [2336] = {.lex_state = 77}, - [2337] = {.lex_state = 91}, - [2338] = {.lex_state = 73}, - [2339] = {.lex_state = 77}, - [2340] = {.lex_state = 77}, - [2341] = {.lex_state = 77}, - [2342] = {.lex_state = 77}, - [2343] = {.lex_state = 77}, - [2344] = {.lex_state = 77}, - [2345] = {.lex_state = 77}, - [2346] = {.lex_state = 91}, - [2347] = {.lex_state = 77}, - [2348] = {.lex_state = 77}, - [2349] = {.lex_state = 77}, - [2350] = {.lex_state = 77}, - [2351] = {.lex_state = 77}, - [2352] = {.lex_state = 77}, - [2353] = {.lex_state = 77}, - [2354] = {.lex_state = 77}, - [2355] = {.lex_state = 77}, - [2356] = {.lex_state = 77}, - [2357] = {.lex_state = 77}, - [2358] = {.lex_state = 77}, - [2359] = {.lex_state = 77}, - [2360] = {.lex_state = 77}, - [2361] = {.lex_state = 77}, - [2362] = {.lex_state = 91}, - [2363] = {.lex_state = 77}, - [2364] = {.lex_state = 77}, - [2365] = {.lex_state = 83}, - [2366] = {.lex_state = 77}, - [2367] = {.lex_state = 77}, - [2368] = {.lex_state = 77}, - [2369] = {.lex_state = 77}, - [2370] = {.lex_state = 77}, - [2371] = {.lex_state = 77}, - [2372] = {.lex_state = 77}, - [2373] = {.lex_state = 77}, - [2374] = {.lex_state = 77}, - [2375] = {.lex_state = 77}, - [2376] = {.lex_state = 77}, - [2377] = {.lex_state = 77}, - [2378] = {.lex_state = 77}, - [2379] = {.lex_state = 77}, - [2380] = {.lex_state = 77}, - [2381] = {.lex_state = 77}, - [2382] = {.lex_state = 77}, - [2383] = {.lex_state = 77}, - [2384] = {.lex_state = 77}, - [2385] = {.lex_state = 77}, - [2386] = {.lex_state = 77}, - [2387] = {.lex_state = 77}, - [2388] = {.lex_state = 77}, - [2389] = {.lex_state = 77}, - [2390] = {.lex_state = 77}, - [2391] = {.lex_state = 77}, - [2392] = {.lex_state = 77}, - [2393] = {.lex_state = 77}, - [2394] = {.lex_state = 77}, - [2395] = {.lex_state = 77}, - [2396] = {.lex_state = 77}, - [2397] = {.lex_state = 77}, - [2398] = {.lex_state = 77}, - [2399] = {.lex_state = 77}, - [2400] = {.lex_state = 77}, - [2401] = {.lex_state = 77}, - [2402] = {.lex_state = 77}, - [2403] = {.lex_state = 77}, - [2404] = {.lex_state = 77}, - [2405] = {.lex_state = 77}, - [2406] = {.lex_state = 77}, - [2407] = {.lex_state = 83}, - [2408] = {.lex_state = 77}, - [2409] = {.lex_state = 77}, - [2410] = {.lex_state = 77}, - [2411] = {.lex_state = 77}, - [2412] = {.lex_state = 77}, - [2413] = {.lex_state = 77}, - [2414] = {.lex_state = 77}, - [2415] = {.lex_state = 77}, - [2416] = {.lex_state = 77}, - [2417] = {.lex_state = 77}, - [2418] = {.lex_state = 79}, - [2419] = {.lex_state = 73}, - [2420] = {.lex_state = 91}, - [2421] = {.lex_state = 79}, - [2422] = {.lex_state = 79}, - [2423] = {.lex_state = 79}, - [2424] = {.lex_state = 79}, - [2425] = {.lex_state = 79}, - [2426] = {.lex_state = 79}, - [2427] = {.lex_state = 79}, - [2428] = {.lex_state = 91}, - [2429] = {.lex_state = 79}, - [2430] = {.lex_state = 79}, - [2431] = {.lex_state = 79}, - [2432] = {.lex_state = 79}, - [2433] = {.lex_state = 79}, - [2434] = {.lex_state = 79}, - [2435] = {.lex_state = 79}, - [2436] = {.lex_state = 79}, - [2437] = {.lex_state = 79}, - [2438] = {.lex_state = 79}, - [2439] = {.lex_state = 79}, - [2440] = {.lex_state = 79}, - [2441] = {.lex_state = 79}, - [2442] = {.lex_state = 79}, - [2443] = {.lex_state = 79}, - [2444] = {.lex_state = 91}, - [2445] = {.lex_state = 79}, - [2446] = {.lex_state = 79}, - [2447] = {.lex_state = 85}, - [2448] = {.lex_state = 79}, - [2449] = {.lex_state = 79}, - [2450] = {.lex_state = 79}, - [2451] = {.lex_state = 79}, - [2452] = {.lex_state = 79}, - [2453] = {.lex_state = 79}, - [2454] = {.lex_state = 79}, - [2455] = {.lex_state = 79}, - [2456] = {.lex_state = 79}, - [2457] = {.lex_state = 79}, - [2458] = {.lex_state = 79}, - [2459] = {.lex_state = 79}, - [2460] = {.lex_state = 79}, - [2461] = {.lex_state = 79}, - [2462] = {.lex_state = 79}, - [2463] = {.lex_state = 79}, - [2464] = {.lex_state = 79}, - [2465] = {.lex_state = 79}, - [2466] = {.lex_state = 79}, - [2467] = {.lex_state = 79}, - [2468] = {.lex_state = 79}, - [2469] = {.lex_state = 79}, - [2470] = {.lex_state = 79}, - [2471] = {.lex_state = 79}, - [2472] = {.lex_state = 79}, - [2473] = {.lex_state = 79}, - [2474] = {.lex_state = 79}, - [2475] = {.lex_state = 79}, - [2476] = {.lex_state = 79}, - [2477] = {.lex_state = 79}, - [2478] = {.lex_state = 79}, - [2479] = {.lex_state = 79}, - [2480] = {.lex_state = 79}, - [2481] = {.lex_state = 79}, - [2482] = {.lex_state = 79}, - [2483] = {.lex_state = 79}, - [2484] = {.lex_state = 79}, - [2485] = {.lex_state = 79}, - [2486] = {.lex_state = 79}, - [2487] = {.lex_state = 79}, - [2488] = {.lex_state = 79}, - [2489] = {.lex_state = 85}, - [2490] = {.lex_state = 79}, - [2491] = {.lex_state = 79}, - [2492] = {.lex_state = 79}, - [2493] = {.lex_state = 79}, - [2494] = {.lex_state = 79}, - [2495] = {.lex_state = 79}, - [2496] = {.lex_state = 79}, - [2497] = {.lex_state = 79}, - [2498] = {.lex_state = 79}, - [2499] = {.lex_state = 79}, - [2500] = {.lex_state = 81}, - [2501] = {.lex_state = 91}, - [2502] = {.lex_state = 91}, - [2503] = {.lex_state = 81}, - [2504] = {.lex_state = 81}, - [2505] = {.lex_state = 81}, - [2506] = {.lex_state = 81}, - [2507] = {.lex_state = 81}, - [2508] = {.lex_state = 81}, - [2509] = {.lex_state = 81}, - [2510] = {.lex_state = 91}, - [2511] = {.lex_state = 81}, - [2512] = {.lex_state = 81}, - [2513] = {.lex_state = 81}, - [2514] = {.lex_state = 81}, - [2515] = {.lex_state = 81}, - [2516] = {.lex_state = 81}, - [2517] = {.lex_state = 81}, - [2518] = {.lex_state = 81}, - [2519] = {.lex_state = 81}, - [2520] = {.lex_state = 81}, - [2521] = {.lex_state = 81}, - [2522] = {.lex_state = 81}, - [2523] = {.lex_state = 81}, - [2524] = {.lex_state = 81}, - [2525] = {.lex_state = 81}, - [2526] = {.lex_state = 91}, - [2527] = {.lex_state = 81}, - [2528] = {.lex_state = 81}, - [2529] = {.lex_state = 87}, - [2530] = {.lex_state = 81}, - [2531] = {.lex_state = 81}, - [2532] = {.lex_state = 81}, - [2533] = {.lex_state = 81}, - [2534] = {.lex_state = 81}, - [2535] = {.lex_state = 81}, - [2536] = {.lex_state = 81}, - [2537] = {.lex_state = 81}, - [2538] = {.lex_state = 81}, - [2539] = {.lex_state = 81}, - [2540] = {.lex_state = 81}, - [2541] = {.lex_state = 81}, - [2542] = {.lex_state = 81}, - [2543] = {.lex_state = 81}, - [2544] = {.lex_state = 81}, - [2545] = {.lex_state = 81}, - [2546] = {.lex_state = 81}, - [2547] = {.lex_state = 81}, - [2548] = {.lex_state = 81}, - [2549] = {.lex_state = 81}, - [2550] = {.lex_state = 81}, - [2551] = {.lex_state = 81}, - [2552] = {.lex_state = 81}, - [2553] = {.lex_state = 81}, - [2554] = {.lex_state = 81}, - [2555] = {.lex_state = 81}, - [2556] = {.lex_state = 81}, - [2557] = {.lex_state = 81}, - [2558] = {.lex_state = 81}, - [2559] = {.lex_state = 81}, - [2560] = {.lex_state = 81}, - [2561] = {.lex_state = 81}, - [2562] = {.lex_state = 81}, - [2563] = {.lex_state = 81}, - [2564] = {.lex_state = 81}, - [2565] = {.lex_state = 81}, - [2566] = {.lex_state = 81}, - [2567] = {.lex_state = 81}, - [2568] = {.lex_state = 81}, - [2569] = {.lex_state = 81}, - [2570] = {.lex_state = 81}, - [2571] = {.lex_state = 87}, - [2572] = {.lex_state = 81}, - [2573] = {.lex_state = 81}, - [2574] = {.lex_state = 81}, - [2575] = {.lex_state = 81}, - [2576] = {.lex_state = 81}, - [2577] = {.lex_state = 81}, - [2578] = {.lex_state = 81}, - [2579] = {.lex_state = 81}, - [2580] = {.lex_state = 81}, - [2581] = {.lex_state = 81}, - [2582] = {.lex_state = 83}, - [2583] = {.lex_state = 91}, - [2584] = {.lex_state = 91}, - [2585] = {.lex_state = 83}, - [2586] = {.lex_state = 83}, - [2587] = {.lex_state = 83}, - [2588] = {.lex_state = 83}, - [2589] = {.lex_state = 83}, - [2590] = {.lex_state = 83}, - [2591] = {.lex_state = 83}, - [2592] = {.lex_state = 67}, - [2593] = {.lex_state = 83}, - [2594] = {.lex_state = 83}, - [2595] = {.lex_state = 83}, - [2596] = {.lex_state = 83}, - [2597] = {.lex_state = 83}, - [2598] = {.lex_state = 83}, - [2599] = {.lex_state = 83}, - [2600] = {.lex_state = 83}, - [2601] = {.lex_state = 83}, - [2602] = {.lex_state = 83}, - [2603] = {.lex_state = 83}, - [2604] = {.lex_state = 83}, - [2605] = {.lex_state = 83}, - [2606] = {.lex_state = 83}, - [2607] = {.lex_state = 83}, - [2608] = {.lex_state = 91}, - [2609] = {.lex_state = 83}, - [2610] = {.lex_state = 83}, - [2611] = {.lex_state = 88}, - [2612] = {.lex_state = 83}, - [2613] = {.lex_state = 83}, - [2614] = {.lex_state = 83}, - [2615] = {.lex_state = 83}, - [2616] = {.lex_state = 83}, - [2617] = {.lex_state = 83}, - [2618] = {.lex_state = 83}, - [2619] = {.lex_state = 83}, - [2620] = {.lex_state = 83}, - [2621] = {.lex_state = 83}, - [2622] = {.lex_state = 83}, - [2623] = {.lex_state = 83}, - [2624] = {.lex_state = 83}, - [2625] = {.lex_state = 83}, - [2626] = {.lex_state = 83}, - [2627] = {.lex_state = 83}, - [2628] = {.lex_state = 83}, - [2629] = {.lex_state = 83}, - [2630] = {.lex_state = 83}, - [2631] = {.lex_state = 83}, - [2632] = {.lex_state = 83}, - [2633] = {.lex_state = 83}, - [2634] = {.lex_state = 83}, - [2635] = {.lex_state = 83}, - [2636] = {.lex_state = 83}, - [2637] = {.lex_state = 83}, - [2638] = {.lex_state = 83}, - [2639] = {.lex_state = 83}, - [2640] = {.lex_state = 83}, - [2641] = {.lex_state = 83}, - [2642] = {.lex_state = 83}, - [2643] = {.lex_state = 83}, - [2644] = {.lex_state = 83}, - [2645] = {.lex_state = 83}, - [2646] = {.lex_state = 83}, - [2647] = {.lex_state = 83}, - [2648] = {.lex_state = 83}, - [2649] = {.lex_state = 83}, - [2650] = {.lex_state = 83}, - [2651] = {.lex_state = 83}, - [2652] = {.lex_state = 83}, - [2653] = {.lex_state = 88}, - [2654] = {.lex_state = 83}, - [2655] = {.lex_state = 83}, - [2656] = {.lex_state = 83}, - [2657] = {.lex_state = 83}, - [2658] = {.lex_state = 83}, - [2659] = {.lex_state = 83}, - [2660] = {.lex_state = 83}, - [2661] = {.lex_state = 83}, - [2662] = {.lex_state = 83}, - [2663] = {.lex_state = 83}, - [2664] = {.lex_state = 85}, - [2665] = {.lex_state = 91}, - [2666] = {.lex_state = 91}, - [2667] = {.lex_state = 85}, - [2668] = {.lex_state = 85}, - [2669] = {.lex_state = 85}, - [2670] = {.lex_state = 85}, - [2671] = {.lex_state = 85}, - [2672] = {.lex_state = 85}, - [2673] = {.lex_state = 85}, - [2674] = {.lex_state = 73}, - [2675] = {.lex_state = 85}, - [2676] = {.lex_state = 85}, - [2677] = {.lex_state = 85}, - [2678] = {.lex_state = 85}, - [2679] = {.lex_state = 85}, - [2680] = {.lex_state = 85}, - [2681] = {.lex_state = 85}, - [2682] = {.lex_state = 85}, - [2683] = {.lex_state = 85}, - [2684] = {.lex_state = 85}, - [2685] = {.lex_state = 85}, - [2686] = {.lex_state = 85}, - [2687] = {.lex_state = 85}, - [2688] = {.lex_state = 85}, - [2689] = {.lex_state = 85}, - [2690] = {.lex_state = 91}, - [2691] = {.lex_state = 85}, - [2692] = {.lex_state = 67}, - [2693] = {.lex_state = 58}, - [2694] = {.lex_state = 85}, - [2695] = {.lex_state = 85}, - [2696] = {.lex_state = 85}, - [2697] = {.lex_state = 85}, - [2698] = {.lex_state = 85}, - [2699] = {.lex_state = 85}, - [2700] = {.lex_state = 85}, - [2701] = {.lex_state = 85}, - [2702] = {.lex_state = 85}, - [2703] = {.lex_state = 85}, - [2704] = {.lex_state = 85}, - [2705] = {.lex_state = 85}, - [2706] = {.lex_state = 85}, - [2707] = {.lex_state = 85}, - [2708] = {.lex_state = 85}, - [2709] = {.lex_state = 85}, - [2710] = {.lex_state = 85}, - [2711] = {.lex_state = 85}, - [2712] = {.lex_state = 114}, - [2713] = {.lex_state = 85}, - [2714] = {.lex_state = 85}, - [2715] = {.lex_state = 85}, - [2716] = {.lex_state = 85}, - [2717] = {.lex_state = 85}, - [2718] = {.lex_state = 85}, - [2719] = {.lex_state = 85}, - [2720] = {.lex_state = 85}, - [2721] = {.lex_state = 85}, - [2722] = {.lex_state = 85}, - [2723] = {.lex_state = 85}, - [2724] = {.lex_state = 85}, - [2725] = {.lex_state = 85}, - [2726] = {.lex_state = 85}, - [2727] = {.lex_state = 85}, - [2728] = {.lex_state = 85}, - [2729] = {.lex_state = 85}, - [2730] = {.lex_state = 85}, - [2731] = {.lex_state = 85}, - [2732] = {.lex_state = 85}, - [2733] = {.lex_state = 85}, - [2734] = {.lex_state = 85}, - [2735] = {.lex_state = 58}, - [2736] = {.lex_state = 85}, - [2737] = {.lex_state = 85}, - [2738] = {.lex_state = 85}, - [2739] = {.lex_state = 85}, - [2740] = {.lex_state = 85}, - [2741] = {.lex_state = 85}, - [2742] = {.lex_state = 85}, - [2743] = {.lex_state = 85}, - [2744] = {.lex_state = 85}, - [2745] = {.lex_state = 85}, - [2746] = {.lex_state = 87}, - [2747] = {.lex_state = 67}, - [2748] = {.lex_state = 67}, - [2749] = {.lex_state = 87}, - [2750] = {.lex_state = 87}, - [2751] = {.lex_state = 87}, - [2752] = {.lex_state = 87}, - [2753] = {.lex_state = 87}, - [2754] = {.lex_state = 87}, - [2755] = {.lex_state = 87}, - [2756] = {.lex_state = 67}, - [2757] = {.lex_state = 87}, - [2758] = {.lex_state = 87}, - [2759] = {.lex_state = 87}, - [2760] = {.lex_state = 87}, - [2761] = {.lex_state = 87}, - [2762] = {.lex_state = 87}, - [2763] = {.lex_state = 87}, - [2764] = {.lex_state = 87}, - [2765] = {.lex_state = 87}, - [2766] = {.lex_state = 87}, - [2767] = {.lex_state = 87}, - [2768] = {.lex_state = 87}, - [2769] = {.lex_state = 87}, - [2770] = {.lex_state = 87}, - [2771] = {.lex_state = 87}, - [2772] = {.lex_state = 67}, - [2773] = {.lex_state = 87}, - [2774] = {.lex_state = 87}, - [2775] = {.lex_state = 57}, - [2776] = {.lex_state = 87}, - [2777] = {.lex_state = 87}, - [2778] = {.lex_state = 87}, - [2779] = {.lex_state = 87}, - [2780] = {.lex_state = 87}, - [2781] = {.lex_state = 87}, - [2782] = {.lex_state = 87}, - [2783] = {.lex_state = 87}, - [2784] = {.lex_state = 87}, - [2785] = {.lex_state = 87}, - [2786] = {.lex_state = 87}, - [2787] = {.lex_state = 87}, - [2788] = {.lex_state = 87}, - [2789] = {.lex_state = 87}, - [2790] = {.lex_state = 87}, - [2791] = {.lex_state = 87}, - [2792] = {.lex_state = 87}, - [2793] = {.lex_state = 87}, - [2794] = {.lex_state = 87}, - [2795] = {.lex_state = 87}, - [2796] = {.lex_state = 87}, - [2797] = {.lex_state = 87}, - [2798] = {.lex_state = 87}, - [2799] = {.lex_state = 87}, - [2800] = {.lex_state = 87}, - [2801] = {.lex_state = 87}, - [2802] = {.lex_state = 87}, - [2803] = {.lex_state = 87}, - [2804] = {.lex_state = 87}, - [2805] = {.lex_state = 87}, - [2806] = {.lex_state = 87}, - [2807] = {.lex_state = 87}, - [2808] = {.lex_state = 87}, - [2809] = {.lex_state = 87}, - [2810] = {.lex_state = 87}, - [2811] = {.lex_state = 87}, - [2812] = {.lex_state = 87}, - [2813] = {.lex_state = 87}, - [2814] = {.lex_state = 87}, - [2815] = {.lex_state = 87}, - [2816] = {.lex_state = 87}, - [2817] = {.lex_state = 57}, - [2818] = {.lex_state = 87}, - [2819] = {.lex_state = 87}, - [2820] = {.lex_state = 87}, - [2821] = {.lex_state = 87}, - [2822] = {.lex_state = 87}, - [2823] = {.lex_state = 87}, - [2824] = {.lex_state = 87}, - [2825] = {.lex_state = 87}, - [2826] = {.lex_state = 87}, - [2827] = {.lex_state = 87}, - [2828] = {.lex_state = 88}, - [2829] = {.lex_state = 67}, - [2830] = {.lex_state = 67}, - [2831] = {.lex_state = 88}, - [2832] = {.lex_state = 88}, - [2833] = {.lex_state = 88}, - [2834] = {.lex_state = 88}, - [2835] = {.lex_state = 88}, - [2836] = {.lex_state = 88}, - [2837] = {.lex_state = 88}, - [2838] = {.lex_state = 67}, - [2839] = {.lex_state = 88}, - [2840] = {.lex_state = 88}, - [2841] = {.lex_state = 88}, - [2842] = {.lex_state = 88}, - [2843] = {.lex_state = 88}, - [2844] = {.lex_state = 88}, - [2845] = {.lex_state = 88}, - [2846] = {.lex_state = 88}, - [2847] = {.lex_state = 88}, - [2848] = {.lex_state = 88}, - [2849] = {.lex_state = 88}, - [2850] = {.lex_state = 88}, - [2851] = {.lex_state = 88}, - [2852] = {.lex_state = 88}, - [2853] = {.lex_state = 88}, - [2854] = {.lex_state = 114}, - [2855] = {.lex_state = 88}, - [2856] = {.lex_state = 88}, - [2857] = {.lex_state = 67}, - [2858] = {.lex_state = 88}, - [2859] = {.lex_state = 88}, - [2860] = {.lex_state = 88}, - [2861] = {.lex_state = 88}, - [2862] = {.lex_state = 88}, - [2863] = {.lex_state = 88}, - [2864] = {.lex_state = 88}, - [2865] = {.lex_state = 88}, - [2866] = {.lex_state = 88}, - [2867] = {.lex_state = 88}, - [2868] = {.lex_state = 88}, - [2869] = {.lex_state = 88}, - [2870] = {.lex_state = 88}, - [2871] = {.lex_state = 88}, - [2872] = {.lex_state = 88}, - [2873] = {.lex_state = 88}, - [2874] = {.lex_state = 88}, - [2875] = {.lex_state = 88}, - [2876] = {.lex_state = 88}, - [2877] = {.lex_state = 88}, - [2878] = {.lex_state = 88}, - [2879] = {.lex_state = 88}, - [2880] = {.lex_state = 88}, - [2881] = {.lex_state = 88}, - [2882] = {.lex_state = 88}, - [2883] = {.lex_state = 88}, - [2884] = {.lex_state = 88}, - [2885] = {.lex_state = 88}, - [2886] = {.lex_state = 88}, - [2887] = {.lex_state = 88}, - [2888] = {.lex_state = 88}, - [2889] = {.lex_state = 88}, - [2890] = {.lex_state = 88}, - [2891] = {.lex_state = 88}, - [2892] = {.lex_state = 88}, - [2893] = {.lex_state = 88}, - [2894] = {.lex_state = 88}, - [2895] = {.lex_state = 88}, - [2896] = {.lex_state = 88}, - [2897] = {.lex_state = 88}, - [2898] = {.lex_state = 88}, - [2899] = {.lex_state = 67}, - [2900] = {.lex_state = 88}, - [2901] = {.lex_state = 88}, - [2902] = {.lex_state = 88}, - [2903] = {.lex_state = 88}, - [2904] = {.lex_state = 88}, - [2905] = {.lex_state = 88}, - [2906] = {.lex_state = 88}, - [2907] = {.lex_state = 88}, - [2908] = {.lex_state = 88}, - [2909] = {.lex_state = 88}, - [2910] = {.lex_state = 56}, - [2911] = {.lex_state = 67}, - [2912] = {.lex_state = 67}, - [2913] = {.lex_state = 56}, - [2914] = {.lex_state = 56}, - [2915] = {.lex_state = 56}, - [2916] = {.lex_state = 56}, - [2917] = {.lex_state = 56}, - [2918] = {.lex_state = 56}, - [2919] = {.lex_state = 56}, - [2920] = {.lex_state = 67}, - [2921] = {.lex_state = 56}, - [2922] = {.lex_state = 56}, - [2923] = {.lex_state = 56}, - [2924] = {.lex_state = 56}, - [2925] = {.lex_state = 56}, - [2926] = {.lex_state = 56}, - [2927] = {.lex_state = 56}, - [2928] = {.lex_state = 56}, - [2929] = {.lex_state = 56}, - [2930] = {.lex_state = 56}, - [2931] = {.lex_state = 56}, - [2932] = {.lex_state = 56}, - [2933] = {.lex_state = 56}, - [2934] = {.lex_state = 56}, - [2935] = {.lex_state = 56}, - [2936] = {.lex_state = 67}, - [2937] = {.lex_state = 56}, - [2938] = {.lex_state = 56}, - [2939] = {.lex_state = 67}, - [2940] = {.lex_state = 56}, - [2941] = {.lex_state = 56}, - [2942] = {.lex_state = 56}, - [2943] = {.lex_state = 56}, - [2944] = {.lex_state = 56}, - [2945] = {.lex_state = 56}, - [2946] = {.lex_state = 56}, - [2947] = {.lex_state = 56}, - [2948] = {.lex_state = 56}, - [2949] = {.lex_state = 56}, - [2950] = {.lex_state = 56}, - [2951] = {.lex_state = 56}, - [2952] = {.lex_state = 56}, - [2953] = {.lex_state = 56}, - [2954] = {.lex_state = 56}, - [2955] = {.lex_state = 56}, - [2956] = {.lex_state = 56}, - [2957] = {.lex_state = 56}, - [2958] = {.lex_state = 56}, - [2959] = {.lex_state = 56}, - [2960] = {.lex_state = 56}, - [2961] = {.lex_state = 56}, - [2962] = {.lex_state = 56}, - [2963] = {.lex_state = 56}, - [2964] = {.lex_state = 56}, - [2965] = {.lex_state = 56}, - [2966] = {.lex_state = 56}, - [2967] = {.lex_state = 56}, - [2968] = {.lex_state = 56}, - [2969] = {.lex_state = 56}, - [2970] = {.lex_state = 56}, - [2971] = {.lex_state = 56}, - [2972] = {.lex_state = 56}, - [2973] = {.lex_state = 56}, - [2974] = {.lex_state = 56}, - [2975] = {.lex_state = 56}, - [2976] = {.lex_state = 56}, - [2977] = {.lex_state = 56}, - [2978] = {.lex_state = 56}, - [2979] = {.lex_state = 56}, - [2980] = {.lex_state = 56}, - [2981] = {.lex_state = 67}, - [2982] = {.lex_state = 56}, - [2983] = {.lex_state = 56}, - [2984] = {.lex_state = 56}, - [2985] = {.lex_state = 56}, - [2986] = {.lex_state = 56}, - [2987] = {.lex_state = 56}, - [2988] = {.lex_state = 56}, - [2989] = {.lex_state = 56}, - [2990] = {.lex_state = 56}, - [2991] = {.lex_state = 56}, - [2992] = {.lex_state = 55}, - [2993] = {.lex_state = 67}, - [2994] = {.lex_state = 67}, - [2995] = {.lex_state = 55}, - [2996] = {.lex_state = 55}, - [2997] = {.lex_state = 55}, - [2998] = {.lex_state = 55}, - [2999] = {.lex_state = 55}, - [3000] = {.lex_state = 55}, - [3001] = {.lex_state = 55}, - [3002] = {.lex_state = 67}, - [3003] = {.lex_state = 55}, - [3004] = {.lex_state = 55}, - [3005] = {.lex_state = 55}, - [3006] = {.lex_state = 55}, - [3007] = {.lex_state = 55}, - [3008] = {.lex_state = 55}, - [3009] = {.lex_state = 55}, - [3010] = {.lex_state = 55}, - [3011] = {.lex_state = 55}, - [3012] = {.lex_state = 55}, - [3013] = {.lex_state = 55}, - [3014] = {.lex_state = 55}, - [3015] = {.lex_state = 55}, - [3016] = {.lex_state = 55}, - [3017] = {.lex_state = 55}, - [3018] = {.lex_state = 67}, - [3019] = {.lex_state = 55}, - [3020] = {.lex_state = 55}, - [3021] = {.lex_state = 67}, - [3022] = {.lex_state = 55}, - [3023] = {.lex_state = 55}, - [3024] = {.lex_state = 55}, - [3025] = {.lex_state = 55}, - [3026] = {.lex_state = 55}, - [3027] = {.lex_state = 55}, - [3028] = {.lex_state = 55}, - [3029] = {.lex_state = 55}, - [3030] = {.lex_state = 55}, - [3031] = {.lex_state = 55}, - [3032] = {.lex_state = 55}, - [3033] = {.lex_state = 55}, - [3034] = {.lex_state = 55}, - [3035] = {.lex_state = 55}, - [3036] = {.lex_state = 55}, - [3037] = {.lex_state = 55}, - [3038] = {.lex_state = 55}, - [3039] = {.lex_state = 55}, - [3040] = {.lex_state = 55}, - [3041] = {.lex_state = 55}, - [3042] = {.lex_state = 55}, - [3043] = {.lex_state = 55}, - [3044] = {.lex_state = 55}, - [3045] = {.lex_state = 55}, - [3046] = {.lex_state = 55}, - [3047] = {.lex_state = 55}, - [3048] = {.lex_state = 55}, - [3049] = {.lex_state = 55}, - [3050] = {.lex_state = 55}, - [3051] = {.lex_state = 55}, - [3052] = {.lex_state = 55}, - [3053] = {.lex_state = 55}, - [3054] = {.lex_state = 55}, - [3055] = {.lex_state = 55}, - [3056] = {.lex_state = 55}, - [3057] = {.lex_state = 55}, - [3058] = {.lex_state = 55}, - [3059] = {.lex_state = 55}, - [3060] = {.lex_state = 55}, - [3061] = {.lex_state = 55}, - [3062] = {.lex_state = 55}, - [3063] = {.lex_state = 67}, - [3064] = {.lex_state = 55}, - [3065] = {.lex_state = 55}, - [3066] = {.lex_state = 55}, - [3067] = {.lex_state = 55}, - [3068] = {.lex_state = 55}, - [3069] = {.lex_state = 55}, - [3070] = {.lex_state = 55}, - [3071] = {.lex_state = 55}, - [3072] = {.lex_state = 55}, - [3073] = {.lex_state = 55}, - [3074] = {.lex_state = 62}, - [3075] = {.lex_state = 67}, - [3076] = {.lex_state = 67}, - [3077] = {.lex_state = 62}, - [3078] = {.lex_state = 62}, - [3079] = {.lex_state = 62}, - [3080] = {.lex_state = 62}, - [3081] = {.lex_state = 62}, - [3082] = {.lex_state = 62}, - [3083] = {.lex_state = 62}, - [3084] = {.lex_state = 114}, - [3085] = {.lex_state = 62}, - [3086] = {.lex_state = 62}, - [3087] = {.lex_state = 62}, - [3088] = {.lex_state = 62}, - [3089] = {.lex_state = 62}, - [3090] = {.lex_state = 62}, - [3091] = {.lex_state = 62}, - [3092] = {.lex_state = 62}, - [3093] = {.lex_state = 62}, - [3094] = {.lex_state = 62}, - [3095] = {.lex_state = 62}, - [3096] = {.lex_state = 62}, - [3097] = {.lex_state = 62}, - [3098] = {.lex_state = 62}, - [3099] = {.lex_state = 62}, - [3100] = {.lex_state = 67}, - [3101] = {.lex_state = 62}, - [3102] = {.lex_state = 62}, - [3103] = {.lex_state = 114}, - [3104] = {.lex_state = 62}, - [3105] = {.lex_state = 62}, - [3106] = {.lex_state = 62}, - [3107] = {.lex_state = 62}, - [3108] = {.lex_state = 62}, - [3109] = {.lex_state = 62}, - [3110] = {.lex_state = 62}, - [3111] = {.lex_state = 62}, - [3112] = {.lex_state = 62}, - [3113] = {.lex_state = 62}, - [3114] = {.lex_state = 62}, - [3115] = {.lex_state = 62}, - [3116] = {.lex_state = 62}, - [3117] = {.lex_state = 62}, - [3118] = {.lex_state = 62}, - [3119] = {.lex_state = 62}, - [3120] = {.lex_state = 62}, - [3121] = {.lex_state = 62}, - [3122] = {.lex_state = 62}, - [3123] = {.lex_state = 62}, - [3124] = {.lex_state = 62}, - [3125] = {.lex_state = 62}, - [3126] = {.lex_state = 62}, - [3127] = {.lex_state = 62}, - [3128] = {.lex_state = 62}, - [3129] = {.lex_state = 62}, - [3130] = {.lex_state = 62}, - [3131] = {.lex_state = 62}, - [3132] = {.lex_state = 62}, - [3133] = {.lex_state = 62}, - [3134] = {.lex_state = 62}, - [3135] = {.lex_state = 62}, - [3136] = {.lex_state = 62}, - [3137] = {.lex_state = 62}, - [3138] = {.lex_state = 62}, - [3139] = {.lex_state = 62}, - [3140] = {.lex_state = 62}, - [3141] = {.lex_state = 62}, - [3142] = {.lex_state = 62}, - [3143] = {.lex_state = 62}, - [3144] = {.lex_state = 62}, - [3145] = {.lex_state = 114}, - [3146] = {.lex_state = 62}, - [3147] = {.lex_state = 62}, - [3148] = {.lex_state = 62}, - [3149] = {.lex_state = 62}, - [3150] = {.lex_state = 62}, - [3151] = {.lex_state = 62}, - [3152] = {.lex_state = 62}, - [3153] = {.lex_state = 62}, - [3154] = {.lex_state = 62}, - [3155] = {.lex_state = 62}, - [3156] = {.lex_state = 73}, - [3157] = {.lex_state = 67}, - [3158] = {.lex_state = 114}, - [3159] = {.lex_state = 114}, - [3160] = {.lex_state = 67}, - [3161] = {.lex_state = 67}, - [3162] = {.lex_state = 114}, - [3163] = {.lex_state = 114}, - [3164] = {.lex_state = 67}, - [3165] = {.lex_state = 73}, - [3166] = {.lex_state = 114}, - [3167] = {.lex_state = 67}, - [3168] = {.lex_state = 114}, - [3169] = {.lex_state = 114}, - [3170] = {.lex_state = 67}, - [3171] = {.lex_state = 62}, - [3172] = {.lex_state = 62}, - [3173] = {.lex_state = 67}, - [3174] = {.lex_state = 56}, - [3175] = {.lex_state = 56}, - [3176] = {.lex_state = 67}, - [3177] = {.lex_state = 55}, - [3178] = {.lex_state = 55}, - [3179] = {.lex_state = 67}, - [3180] = {.lex_state = 114}, - [3181] = {.lex_state = 67}, - [3182] = {.lex_state = 67}, - [3183] = {.lex_state = 114}, - [3184] = {.lex_state = 114}, - [3185] = {.lex_state = 114}, - [3186] = {.lex_state = 73}, - [3187] = {.lex_state = 114}, - [3188] = {.lex_state = 73}, - [3189] = {.lex_state = 67}, - [3190] = {.lex_state = 114}, - [3191] = {.lex_state = 114}, - [3192] = {.lex_state = 114}, - [3193] = {.lex_state = 114}, - [3194] = {.lex_state = 114}, - [3195] = {.lex_state = 114}, - [3196] = {.lex_state = 114}, - [3197] = {.lex_state = 114}, - [3198] = {.lex_state = 114}, - [3199] = {.lex_state = 114}, - [3200] = {.lex_state = 114}, - [3201] = {.lex_state = 67}, - [3202] = {.lex_state = 67}, - [3203] = {.lex_state = 114}, - [3204] = {.lex_state = 114}, - [3205] = {.lex_state = 114}, - [3206] = {.lex_state = 73}, - [3207] = {.lex_state = 114}, - [3208] = {.lex_state = 114}, - [3209] = {.lex_state = 114}, - [3210] = {.lex_state = 114}, - [3211] = {.lex_state = 114}, - [3212] = {.lex_state = 114}, - [3213] = {.lex_state = 114}, - [3214] = {.lex_state = 67}, - [3215] = {.lex_state = 114}, - [3216] = {.lex_state = 114}, - [3217] = {.lex_state = 114}, - [3218] = {.lex_state = 114}, - [3219] = {.lex_state = 114}, - [3220] = {.lex_state = 114}, - [3221] = {.lex_state = 114}, - [3222] = {.lex_state = 114}, - [3223] = {.lex_state = 114}, - [3224] = {.lex_state = 114}, - [3225] = {.lex_state = 114}, - [3226] = {.lex_state = 114}, - [3227] = {.lex_state = 114}, - [3228] = {.lex_state = 114}, - [3229] = {.lex_state = 114}, - [3230] = {.lex_state = 114}, - [3231] = {.lex_state = 114}, - [3232] = {.lex_state = 114}, - [3233] = {.lex_state = 114}, - [3234] = {.lex_state = 114}, - [3235] = {.lex_state = 114}, - [3236] = {.lex_state = 114}, - [3237] = {.lex_state = 114}, - [3238] = {.lex_state = 114}, - [3239] = {.lex_state = 114}, - [3240] = {.lex_state = 114}, - [3241] = {.lex_state = 114}, - [3242] = {.lex_state = 70}, - [3243] = {.lex_state = 114}, - [3244] = {.lex_state = 114}, - [3245] = {.lex_state = 67}, - [3246] = {.lex_state = 114}, - [3247] = {.lex_state = 114}, - [3248] = {.lex_state = 67}, - [3249] = {.lex_state = 114}, - [3250] = {.lex_state = 67}, - [3251] = {.lex_state = 58}, - [3252] = {.lex_state = 67}, - [3253] = {.lex_state = 67}, - [3254] = {.lex_state = 73}, - [3255] = {.lex_state = 67}, - [3256] = {.lex_state = 58}, - [3257] = {.lex_state = 67}, - [3258] = {.lex_state = 58}, - [3259] = {.lex_state = 58}, - [3260] = {.lex_state = 58}, - [3261] = {.lex_state = 58}, - [3262] = {.lex_state = 58}, - [3263] = {.lex_state = 73}, - [3264] = {.lex_state = 67}, - [3265] = {.lex_state = 58}, - [3266] = {.lex_state = 73}, - [3267] = {.lex_state = 58}, - [3268] = {.lex_state = 58}, - [3269] = {.lex_state = 58}, - [3270] = {.lex_state = 58}, - [3271] = {.lex_state = 58}, - [3272] = {.lex_state = 58}, - [3273] = {.lex_state = 58}, - [3274] = {.lex_state = 58}, - [3275] = {.lex_state = 73}, - [3276] = {.lex_state = 73}, - [3277] = {.lex_state = 67}, - [3278] = {.lex_state = 58}, - [3279] = {.lex_state = 58}, - [3280] = {.lex_state = 58}, - [3281] = {.lex_state = 58}, - [3282] = {.lex_state = 58}, - [3283] = {.lex_state = 58}, - [3284] = {.lex_state = 58}, - [3285] = {.lex_state = 58}, - [3286] = {.lex_state = 58}, - [3287] = {.lex_state = 73}, - [3288] = {.lex_state = 58}, - [3289] = {.lex_state = 67}, - [3290] = {.lex_state = 58}, - [3291] = {.lex_state = 58}, - [3292] = {.lex_state = 58}, - [3293] = {.lex_state = 58}, - [3294] = {.lex_state = 58}, - [3295] = {.lex_state = 58}, - [3296] = {.lex_state = 58}, - [3297] = {.lex_state = 58}, - [3298] = {.lex_state = 58}, - [3299] = {.lex_state = 58}, - [3300] = {.lex_state = 58}, - [3301] = {.lex_state = 73}, - [3302] = {.lex_state = 58}, - [3303] = {.lex_state = 58}, - [3304] = {.lex_state = 58}, - [3305] = {.lex_state = 58}, - [3306] = {.lex_state = 58}, - [3307] = {.lex_state = 58}, - [3308] = {.lex_state = 58}, - [3309] = {.lex_state = 58}, - [3310] = {.lex_state = 58}, - [3311] = {.lex_state = 58}, - [3312] = {.lex_state = 58}, - [3313] = {.lex_state = 58}, - [3314] = {.lex_state = 58}, - [3315] = {.lex_state = 58}, - [3316] = {.lex_state = 58}, - [3317] = {.lex_state = 91}, - [3318] = {.lex_state = 58}, - [3319] = {.lex_state = 67}, - [3320] = {.lex_state = 58}, - [3321] = {.lex_state = 67}, - [3322] = {.lex_state = 58}, - [3323] = {.lex_state = 73}, - [3324] = {.lex_state = 58}, - [3325] = {.lex_state = 67}, - [3326] = {.lex_state = 67}, - [3327] = {.lex_state = 67}, - [3328] = {.lex_state = 58}, - [3329] = {.lex_state = 67}, - [3330] = {.lex_state = 58}, - [3331] = {.lex_state = 58}, - [3332] = {.lex_state = 58}, - [3333] = {.lex_state = 58}, - [3334] = {.lex_state = 58}, - [3335] = {.lex_state = 67}, - [3336] = {.lex_state = 67}, - [3337] = {.lex_state = 58}, - [3338] = {.lex_state = 58}, - [3339] = {.lex_state = 58}, - [3340] = {.lex_state = 73}, - [3341] = {.lex_state = 58}, - [3342] = {.lex_state = 58}, - [3343] = {.lex_state = 58}, - [3344] = {.lex_state = 58}, - [3345] = {.lex_state = 58}, - [3346] = {.lex_state = 58}, - [3347] = {.lex_state = 58}, - [3348] = {.lex_state = 67}, - [3349] = {.lex_state = 73}, - [3350] = {.lex_state = 58}, - [3351] = {.lex_state = 58}, - [3352] = {.lex_state = 58}, - [3353] = {.lex_state = 57}, - [3354] = {.lex_state = 73}, - [3355] = {.lex_state = 57}, - [3356] = {.lex_state = 57}, - [3357] = {.lex_state = 57}, - [3358] = {.lex_state = 57}, - [3359] = {.lex_state = 57}, - [3360] = {.lex_state = 57}, - [3361] = {.lex_state = 59}, - [3362] = {.lex_state = 57}, - [3363] = {.lex_state = 73}, - [3364] = {.lex_state = 57}, - [3365] = {.lex_state = 57}, - [3366] = {.lex_state = 57}, - [3367] = {.lex_state = 57}, - [3368] = {.lex_state = 57}, - [3369] = {.lex_state = 57}, - [3370] = {.lex_state = 57}, - [3371] = {.lex_state = 57}, - [3372] = {.lex_state = 73}, - [3373] = {.lex_state = 57}, - [3374] = {.lex_state = 57}, - [3375] = {.lex_state = 58}, - [3376] = {.lex_state = 57}, - [3377] = {.lex_state = 57}, - [3378] = {.lex_state = 57}, - [3379] = {.lex_state = 57}, - [3380] = {.lex_state = 57}, - [3381] = {.lex_state = 57}, - [3382] = {.lex_state = 59}, - [3383] = {.lex_state = 57}, - [3384] = {.lex_state = 57}, - [3385] = {.lex_state = 57}, - [3386] = {.lex_state = 57}, - [3387] = {.lex_state = 57}, - [3388] = {.lex_state = 57}, - [3389] = {.lex_state = 67}, - [3390] = {.lex_state = 57}, - [3391] = {.lex_state = 67}, - [3392] = {.lex_state = 57}, - [3393] = {.lex_state = 73}, - [3394] = {.lex_state = 57}, - [3395] = {.lex_state = 67}, - [3396] = {.lex_state = 57}, - [3397] = {.lex_state = 67}, - [3398] = {.lex_state = 67}, - [3399] = {.lex_state = 67}, - [3400] = {.lex_state = 57}, - [3401] = {.lex_state = 67}, - [3402] = {.lex_state = 57}, - [3403] = {.lex_state = 57}, - [3404] = {.lex_state = 73}, - [3405] = {.lex_state = 57}, - [3406] = {.lex_state = 57}, - [3407] = {.lex_state = 57}, - [3408] = {.lex_state = 57}, - [3409] = {.lex_state = 57}, - [3410] = {.lex_state = 57}, - [3411] = {.lex_state = 57}, - [3412] = {.lex_state = 57}, - [3413] = {.lex_state = 57}, - [3414] = {.lex_state = 57}, - [3415] = {.lex_state = 57}, - [3416] = {.lex_state = 57}, - [3417] = {.lex_state = 57}, - [3418] = {.lex_state = 57}, - [3419] = {.lex_state = 57}, - [3420] = {.lex_state = 67}, - [3421] = {.lex_state = 57}, - [3422] = {.lex_state = 57}, - [3423] = {.lex_state = 57}, - [3424] = {.lex_state = 57}, - [3425] = {.lex_state = 57}, - [3426] = {.lex_state = 57}, - [3427] = {.lex_state = 57}, - [3428] = {.lex_state = 57}, - [3429] = {.lex_state = 57}, - [3430] = {.lex_state = 57}, - [3431] = {.lex_state = 57}, - [3432] = {.lex_state = 57}, - [3433] = {.lex_state = 67}, - [3434] = {.lex_state = 57}, - [3435] = {.lex_state = 59}, - [3436] = {.lex_state = 57}, - [3437] = {.lex_state = 57}, - [3438] = {.lex_state = 57}, - [3439] = {.lex_state = 57}, - [3440] = {.lex_state = 57}, - [3441] = {.lex_state = 57}, - [3442] = {.lex_state = 57}, - [3443] = {.lex_state = 57}, - [3444] = {.lex_state = 57}, - [3445] = {.lex_state = 57}, - [3446] = {.lex_state = 73}, - [3447] = {.lex_state = 73}, - [3448] = {.lex_state = 73}, - [3449] = {.lex_state = 73}, - [3450] = {.lex_state = 57}, - [3451] = {.lex_state = 73}, - [3452] = {.lex_state = 73}, - [3453] = {.lex_state = 73}, - [3454] = {.lex_state = 73}, - [3455] = {.lex_state = 73}, - [3456] = {.lex_state = 73}, - [3457] = {.lex_state = 73}, - [3458] = {.lex_state = 73}, - [3459] = {.lex_state = 73}, - [3460] = {.lex_state = 73}, - [3461] = {.lex_state = 67}, - [3462] = {.lex_state = 73}, - [3463] = {.lex_state = 67}, - [3464] = {.lex_state = 73}, - [3465] = {.lex_state = 67}, - [3466] = {.lex_state = 70}, - [3467] = {.lex_state = 67}, - [3468] = {.lex_state = 73}, - [3469] = {.lex_state = 67}, - [3470] = {.lex_state = 67}, - [3471] = {.lex_state = 73}, - [3472] = {.lex_state = 73}, - [3473] = {.lex_state = 67}, - [3474] = {.lex_state = 73}, - [3475] = {.lex_state = 73}, - [3476] = {.lex_state = 73}, - [3477] = {.lex_state = 73}, - [3478] = {.lex_state = 73}, - [3479] = {.lex_state = 59}, - [3480] = {.lex_state = 59}, - [3481] = {.lex_state = 73}, - [3482] = {.lex_state = 73}, - [3483] = {.lex_state = 73}, - [3484] = {.lex_state = 59}, - [3485] = {.lex_state = 73}, - [3486] = {.lex_state = 59}, - [3487] = {.lex_state = 59}, - [3488] = {.lex_state = 59}, - [3489] = {.lex_state = 59}, - [3490] = {.lex_state = 59}, - [3491] = {.lex_state = 59}, - [3492] = {.lex_state = 59}, - [3493] = {.lex_state = 59}, - [3494] = {.lex_state = 59}, - [3495] = {.lex_state = 59}, - [3496] = {.lex_state = 59}, - [3497] = {.lex_state = 59}, - [3498] = {.lex_state = 59}, - [3499] = {.lex_state = 59}, - [3500] = {.lex_state = 59}, - [3501] = {.lex_state = 73}, - [3502] = {.lex_state = 59}, - [3503] = {.lex_state = 59}, - [3504] = {.lex_state = 73}, - [3505] = {.lex_state = 59}, - [3506] = {.lex_state = 67}, - [3507] = {.lex_state = 73}, - [3508] = {.lex_state = 59}, - [3509] = {.lex_state = 59}, - [3510] = {.lex_state = 59}, - [3511] = {.lex_state = 59}, - [3512] = {.lex_state = 59}, - [3513] = {.lex_state = 59}, - [3514] = {.lex_state = 59}, - [3515] = {.lex_state = 73}, - [3516] = {.lex_state = 59}, - [3517] = {.lex_state = 59}, - [3518] = {.lex_state = 59}, - [3519] = {.lex_state = 59}, - [3520] = {.lex_state = 73}, - [3521] = {.lex_state = 59}, - [3522] = {.lex_state = 73}, - [3523] = {.lex_state = 59}, - [3524] = {.lex_state = 59}, - [3525] = {.lex_state = 59}, - [3526] = {.lex_state = 67}, - [3527] = {.lex_state = 59}, - [3528] = {.lex_state = 59}, - [3529] = {.lex_state = 59}, - [3530] = {.lex_state = 59}, - [3531] = {.lex_state = 73}, - [3532] = {.lex_state = 59}, - [3533] = {.lex_state = 73}, - [3534] = {.lex_state = 59}, - [3535] = {.lex_state = 85}, - [3536] = {.lex_state = 59}, - [3537] = {.lex_state = 59}, - [3538] = {.lex_state = 59}, - [3539] = {.lex_state = 59}, - [3540] = {.lex_state = 59}, - [3541] = {.lex_state = 59}, - [3542] = {.lex_state = 91}, - [3543] = {.lex_state = 59}, - [3544] = {.lex_state = 59}, - [3545] = {.lex_state = 59}, - [3546] = {.lex_state = 73}, - [3547] = {.lex_state = 59}, - [3548] = {.lex_state = 59}, - [3549] = {.lex_state = 59}, - [3550] = {.lex_state = 59}, - [3551] = {.lex_state = 59}, - [3552] = {.lex_state = 59}, - [3553] = {.lex_state = 59}, - [3554] = {.lex_state = 59}, - [3555] = {.lex_state = 59}, - [3556] = {.lex_state = 59}, - [3557] = {.lex_state = 59}, - [3558] = {.lex_state = 59}, - [3559] = {.lex_state = 59}, - [3560] = {.lex_state = 59}, - [3561] = {.lex_state = 59}, - [3562] = {.lex_state = 73}, - [3563] = {.lex_state = 59}, - [3564] = {.lex_state = 59}, - [3565] = {.lex_state = 59}, - [3566] = {.lex_state = 59}, - [3567] = {.lex_state = 59}, - [3568] = {.lex_state = 59}, - [3569] = {.lex_state = 59}, - [3570] = {.lex_state = 59}, - [3571] = {.lex_state = 59}, - [3572] = {.lex_state = 3}, - [3573] = {.lex_state = 3}, - [3574] = {.lex_state = 3}, - [3575] = {.lex_state = 3}, - [3576] = {.lex_state = 3}, - [3577] = {.lex_state = 3}, - [3578] = {.lex_state = 3}, - [3579] = {.lex_state = 3}, - [3580] = {.lex_state = 3}, - [3581] = {.lex_state = 3}, - [3582] = {.lex_state = 3}, - [3583] = {.lex_state = 3}, - [3584] = {.lex_state = 3}, - [3585] = {.lex_state = 3}, - [3586] = {.lex_state = 3}, - [3587] = {.lex_state = 3}, - [3588] = {.lex_state = 3}, - [3589] = {.lex_state = 3}, - [3590] = {.lex_state = 3}, - [3591] = {.lex_state = 3}, - [3592] = {.lex_state = 3}, - [3593] = {.lex_state = 3}, - [3594] = {.lex_state = 3}, - [3595] = {.lex_state = 3}, - [3596] = {.lex_state = 3}, - [3597] = {.lex_state = 3}, - [3598] = {.lex_state = 3}, - [3599] = {.lex_state = 3}, - [3600] = {.lex_state = 3}, - [3601] = {.lex_state = 3}, - [3602] = {.lex_state = 3}, - [3603] = {.lex_state = 3}, - [3604] = {.lex_state = 3}, - [3605] = {.lex_state = 3}, - [3606] = {.lex_state = 3}, - [3607] = {.lex_state = 60}, - [3608] = {.lex_state = 60}, - [3609] = {.lex_state = 65}, - [3610] = {.lex_state = 60}, - [3611] = {.lex_state = 68}, - [3612] = {.lex_state = 71}, - [3613] = {.lex_state = 71}, - [3614] = {.lex_state = 65}, - [3615] = {.lex_state = 68}, - [3616] = {.lex_state = 60}, - [3617] = {.lex_state = 43}, - [3618] = {.lex_state = 60}, - [3619] = {.lex_state = 65}, - [3620] = {.lex_state = 49}, - [3621] = {.lex_state = 68}, - [3622] = {.lex_state = 71}, - [3623] = {.lex_state = 65}, - [3624] = {.lex_state = 43}, - [3625] = {.lex_state = 60}, - [3626] = {.lex_state = 68}, - [3627] = {.lex_state = 71}, - [3628] = {.lex_state = 43}, - [3629] = {.lex_state = 65}, - [3630] = {.lex_state = 65}, - [3631] = {.lex_state = 71}, - [3632] = {.lex_state = 68}, - [3633] = {.lex_state = 60}, - [3634] = {.lex_state = 65}, - [3635] = {.lex_state = 71}, - [3636] = {.lex_state = 68}, - [3637] = {.lex_state = 60}, - [3638] = {.lex_state = 49}, - [3639] = {.lex_state = 60}, - [3640] = {.lex_state = 65}, - [3641] = {.lex_state = 49}, - [3642] = {.lex_state = 71}, - [3643] = {.lex_state = 68}, - [3644] = {.lex_state = 60}, - [3645] = {.lex_state = 49}, - [3646] = {.lex_state = 60}, - [3647] = {.lex_state = 68}, - [3648] = {.lex_state = 60}, - [3649] = {.lex_state = 71}, - [3650] = {.lex_state = 68}, - [3651] = {.lex_state = 60}, - [3652] = {.lex_state = 68}, - [3653] = {.lex_state = 71}, - [3654] = {.lex_state = 65}, - [3655] = {.lex_state = 49}, - [3656] = {.lex_state = 65}, - [3657] = {.lex_state = 65}, - [3658] = {.lex_state = 71}, - [3659] = {.lex_state = 60}, - [3660] = {.lex_state = 68}, - [3661] = {.lex_state = 71}, - [3662] = {.lex_state = 65}, - [3663] = {.lex_state = 71}, - [3664] = {.lex_state = 65}, - [3665] = {.lex_state = 49}, - [3666] = {.lex_state = 43}, - [3667] = {.lex_state = 60}, - [3668] = {.lex_state = 43}, - [3669] = {.lex_state = 65}, - [3670] = {.lex_state = 71}, - [3671] = {.lex_state = 68}, - [3672] = {.lex_state = 60}, - [3673] = {.lex_state = 68}, - [3674] = {.lex_state = 71}, - [3675] = {.lex_state = 65}, - [3676] = {.lex_state = 68}, - [3677] = {.lex_state = 68}, - [3678] = {.lex_state = 71}, - [3679] = {.lex_state = 65}, - [3680] = {.lex_state = 65}, - [3681] = {.lex_state = 60}, - [3682] = {.lex_state = 71}, - [3683] = {.lex_state = 49}, - [3684] = {.lex_state = 68}, - [3685] = {.lex_state = 60}, - [3686] = {.lex_state = 43}, - [3687] = {.lex_state = 65}, - [3688] = {.lex_state = 71}, - [3689] = {.lex_state = 68}, - [3690] = {.lex_state = 60}, - [3691] = {.lex_state = 60}, - [3692] = {.lex_state = 68}, - [3693] = {.lex_state = 71}, - [3694] = {.lex_state = 65}, - [3695] = {.lex_state = 49}, - [3696] = {.lex_state = 65}, - [3697] = {.lex_state = 71}, - [3698] = {.lex_state = 68}, - [3699] = {.lex_state = 60}, - [3700] = {.lex_state = 43}, - [3701] = {.lex_state = 60}, - [3702] = {.lex_state = 68}, - [3703] = {.lex_state = 71}, - [3704] = {.lex_state = 65}, - [3705] = {.lex_state = 68}, - [3706] = {.lex_state = 65}, - [3707] = {.lex_state = 71}, - [3708] = {.lex_state = 49}, - [3709] = {.lex_state = 60}, - [3710] = {.lex_state = 65}, - [3711] = {.lex_state = 60}, - [3712] = {.lex_state = 68}, - [3713] = {.lex_state = 71}, - [3714] = {.lex_state = 65}, - [3715] = {.lex_state = 43}, - [3716] = {.lex_state = 49}, - [3717] = {.lex_state = 43}, - [3718] = {.lex_state = 60}, - [3719] = {.lex_state = 68}, - [3720] = {.lex_state = 71}, - [3721] = {.lex_state = 65}, - [3722] = {.lex_state = 71}, - [3723] = {.lex_state = 49}, - [3724] = {.lex_state = 60}, - [3725] = {.lex_state = 68}, - [3726] = {.lex_state = 71}, - [3727] = {.lex_state = 65}, - [3728] = {.lex_state = 43}, - [3729] = {.lex_state = 60}, - [3730] = {.lex_state = 71}, - [3731] = {.lex_state = 60}, - [3732] = {.lex_state = 68}, - [3733] = {.lex_state = 71}, - [3734] = {.lex_state = 65}, - [3735] = {.lex_state = 49}, - [3736] = {.lex_state = 65}, - [3737] = {.lex_state = 65}, - [3738] = {.lex_state = 71}, - [3739] = {.lex_state = 68}, - [3740] = {.lex_state = 60}, - [3741] = {.lex_state = 43}, - [3742] = {.lex_state = 71}, - [3743] = {.lex_state = 60}, - [3744] = {.lex_state = 68}, - [3745] = {.lex_state = 68}, - [3746] = {.lex_state = 60}, - [3747] = {.lex_state = 71}, - [3748] = {.lex_state = 65}, - [3749] = {.lex_state = 68}, - [3750] = {.lex_state = 68}, - [3751] = {.lex_state = 60}, + [979] = {.lex_state = 71}, + [980] = {.lex_state = 84}, + [981] = {.lex_state = 31}, + [982] = {.lex_state = 71}, + [983] = {.lex_state = 71}, + [984] = {.lex_state = 82}, + [985] = {.lex_state = 29}, + [986] = {.lex_state = 71}, + [987] = {.lex_state = 71}, + [988] = {.lex_state = 92}, + [989] = {.lex_state = 27}, + [990] = {.lex_state = 71}, + [991] = {.lex_state = 38}, + [992] = {.lex_state = 71}, + [993] = {.lex_state = 72}, + [994] = {.lex_state = 37}, + [995] = {.lex_state = 77}, + [996] = {.lex_state = 71}, + [997] = {.lex_state = 71}, + [998] = {.lex_state = 17}, + [999] = {.lex_state = 74}, + [1000] = {.lex_state = 71}, + [1001] = {.lex_state = 85}, + [1002] = {.lex_state = 85}, + [1003] = {.lex_state = 85}, + [1004] = {.lex_state = 85}, + [1005] = {.lex_state = 85}, + [1006] = {.lex_state = 85}, + [1007] = {.lex_state = 85}, + [1008] = {.lex_state = 85}, + [1009] = {.lex_state = 85}, + [1010] = {.lex_state = 91}, + [1011] = {.lex_state = 85}, + [1012] = {.lex_state = 85}, + [1013] = {.lex_state = 85}, + [1014] = {.lex_state = 85}, + [1015] = {.lex_state = 85}, + [1016] = {.lex_state = 85}, + [1017] = {.lex_state = 85}, + [1018] = {.lex_state = 85}, + [1019] = {.lex_state = 85}, + [1020] = {.lex_state = 85}, + [1021] = {.lex_state = 85}, + [1022] = {.lex_state = 77}, + [1023] = {.lex_state = 85}, + [1024] = {.lex_state = 85}, + [1025] = {.lex_state = 76}, + [1026] = {.lex_state = 85}, + [1027] = {.lex_state = 85}, + [1028] = {.lex_state = 85}, + [1029] = {.lex_state = 85}, + [1030] = {.lex_state = 85}, + [1031] = {.lex_state = 85}, + [1032] = {.lex_state = 85}, + [1033] = {.lex_state = 85}, + [1034] = {.lex_state = 85}, + [1035] = {.lex_state = 71}, + [1036] = {.lex_state = 85}, + [1037] = {.lex_state = 85}, + [1038] = {.lex_state = 85}, + [1039] = {.lex_state = 91}, + [1040] = {.lex_state = 85}, + [1041] = {.lex_state = 85}, + [1042] = {.lex_state = 85}, + [1043] = {.lex_state = 85}, + [1044] = {.lex_state = 85}, + [1045] = {.lex_state = 85}, + [1046] = {.lex_state = 85}, + [1047] = {.lex_state = 85}, + [1048] = {.lex_state = 85}, + [1049] = {.lex_state = 85}, + [1050] = {.lex_state = 85}, + [1051] = {.lex_state = 85}, + [1052] = {.lex_state = 85}, + [1053] = {.lex_state = 85}, + [1054] = {.lex_state = 85}, + [1055] = {.lex_state = 85}, + [1056] = {.lex_state = 85}, + [1057] = {.lex_state = 85}, + [1058] = {.lex_state = 85}, + [1059] = {.lex_state = 85}, + [1060] = {.lex_state = 71}, + [1061] = {.lex_state = 85}, + [1062] = {.lex_state = 85}, + [1063] = {.lex_state = 85}, + [1064] = {.lex_state = 85}, + [1065] = {.lex_state = 85}, + [1066] = {.lex_state = 85}, + [1067] = {.lex_state = 85}, + [1068] = {.lex_state = 85}, + [1069] = {.lex_state = 77}, + [1070] = {.lex_state = 85}, + [1071] = {.lex_state = 85}, + [1072] = {.lex_state = 85}, + [1073] = {.lex_state = 85}, + [1074] = {.lex_state = 85}, + [1075] = {.lex_state = 85}, + [1076] = {.lex_state = 85}, + [1077] = {.lex_state = 71}, + [1078] = {.lex_state = 85}, + [1079] = {.lex_state = 85}, + [1080] = {.lex_state = 85}, + [1081] = {.lex_state = 85}, + [1082] = {.lex_state = 85}, + [1083] = {.lex_state = 23}, + [1084] = {.lex_state = 85}, + [1085] = {.lex_state = 85}, + [1086] = {.lex_state = 63}, + [1087] = {.lex_state = 71}, + [1088] = {.lex_state = 85}, + [1089] = {.lex_state = 83}, + [1090] = {.lex_state = 83}, + [1091] = {.lex_state = 93}, + [1092] = {.lex_state = 83}, + [1093] = {.lex_state = 83}, + [1094] = {.lex_state = 83}, + [1095] = {.lex_state = 83}, + [1096] = {.lex_state = 83}, + [1097] = {.lex_state = 83}, + [1098] = {.lex_state = 83}, + [1099] = {.lex_state = 83}, + [1100] = {.lex_state = 83}, + [1101] = {.lex_state = 83}, + [1102] = {.lex_state = 94}, + [1103] = {.lex_state = 83}, + [1104] = {.lex_state = 83}, + [1105] = {.lex_state = 83}, + [1106] = {.lex_state = 83}, + [1107] = {.lex_state = 83}, + [1108] = {.lex_state = 83}, + [1109] = {.lex_state = 83}, + [1110] = {.lex_state = 83}, + [1111] = {.lex_state = 83}, + [1112] = {.lex_state = 83}, + [1113] = {.lex_state = 83}, + [1114] = {.lex_state = 79}, + [1115] = {.lex_state = 83}, + [1116] = {.lex_state = 83}, + [1117] = {.lex_state = 21}, + [1118] = {.lex_state = 83}, + [1119] = {.lex_state = 83}, + [1120] = {.lex_state = 83}, + [1121] = {.lex_state = 83}, + [1122] = {.lex_state = 83}, + [1123] = {.lex_state = 83}, + [1124] = {.lex_state = 83}, + [1125] = {.lex_state = 83}, + [1126] = {.lex_state = 83}, + [1127] = {.lex_state = 71}, + [1128] = {.lex_state = 83}, + [1129] = {.lex_state = 83}, + [1130] = {.lex_state = 83}, + [1131] = {.lex_state = 94}, + [1132] = {.lex_state = 83}, + [1133] = {.lex_state = 71}, + [1134] = {.lex_state = 83}, + [1135] = {.lex_state = 83}, + [1136] = {.lex_state = 83}, + [1137] = {.lex_state = 83}, + [1138] = {.lex_state = 83}, + [1139] = {.lex_state = 83}, + [1140] = {.lex_state = 83}, + [1141] = {.lex_state = 83}, + [1142] = {.lex_state = 83}, + [1143] = {.lex_state = 83}, + [1144] = {.lex_state = 83}, + [1145] = {.lex_state = 83}, + [1146] = {.lex_state = 83}, + [1147] = {.lex_state = 83}, + [1148] = {.lex_state = 83}, + [1149] = {.lex_state = 83}, + [1150] = {.lex_state = 80}, + [1151] = {.lex_state = 83}, + [1152] = {.lex_state = 83}, + [1153] = {.lex_state = 83}, + [1154] = {.lex_state = 83}, + [1155] = {.lex_state = 83}, + [1156] = {.lex_state = 83}, + [1157] = {.lex_state = 83}, + [1158] = {.lex_state = 83}, + [1159] = {.lex_state = 83}, + [1160] = {.lex_state = 83}, + [1161] = {.lex_state = 79}, + [1162] = {.lex_state = 83}, + [1163] = {.lex_state = 83}, + [1164] = {.lex_state = 83}, + [1165] = {.lex_state = 83}, + [1166] = {.lex_state = 83}, + [1167] = {.lex_state = 71}, + [1168] = {.lex_state = 83}, + [1169] = {.lex_state = 83}, + [1170] = {.lex_state = 83}, + [1171] = {.lex_state = 83}, + [1172] = {.lex_state = 83}, + [1173] = {.lex_state = 83}, + [1174] = {.lex_state = 71}, + [1175] = {.lex_state = 25}, + [1176] = {.lex_state = 83}, + [1177] = {.lex_state = 71}, + [1178] = {.lex_state = 83}, + [1179] = {.lex_state = 68}, + [1180] = {.lex_state = 68}, + [1181] = {.lex_state = 68}, + [1182] = {.lex_state = 68}, + [1183] = {.lex_state = 78}, + [1184] = {.lex_state = 68}, + [1185] = {.lex_state = 68}, + [1186] = {.lex_state = 68}, + [1187] = {.lex_state = 68}, + [1188] = {.lex_state = 68}, + [1189] = {.lex_state = 68}, + [1190] = {.lex_state = 71}, + [1191] = {.lex_state = 68}, + [1192] = {.lex_state = 68}, + [1193] = {.lex_state = 68}, + [1194] = {.lex_state = 71}, + [1195] = {.lex_state = 68}, + [1196] = {.lex_state = 68}, + [1197] = {.lex_state = 68}, + [1198] = {.lex_state = 68}, + [1199] = {.lex_state = 68}, + [1200] = {.lex_state = 68}, + [1201] = {.lex_state = 68}, + [1202] = {.lex_state = 68}, + [1203] = {.lex_state = 68}, + [1204] = {.lex_state = 68}, + [1205] = {.lex_state = 68}, + [1206] = {.lex_state = 68}, + [1207] = {.lex_state = 71}, + [1208] = {.lex_state = 68}, + [1209] = {.lex_state = 71}, + [1210] = {.lex_state = 68}, + [1211] = {.lex_state = 68}, + [1212] = {.lex_state = 68}, + [1213] = {.lex_state = 68}, + [1214] = {.lex_state = 68}, + [1215] = {.lex_state = 68}, + [1216] = {.lex_state = 68}, + [1217] = {.lex_state = 68}, + [1218] = {.lex_state = 68}, + [1219] = {.lex_state = 68}, + [1220] = {.lex_state = 68}, + [1221] = {.lex_state = 68}, + [1222] = {.lex_state = 71}, + [1223] = {.lex_state = 68}, + [1224] = {.lex_state = 68}, + [1225] = {.lex_state = 68}, + [1226] = {.lex_state = 68}, + [1227] = {.lex_state = 68}, + [1228] = {.lex_state = 68}, + [1229] = {.lex_state = 68}, + [1230] = {.lex_state = 68}, + [1231] = {.lex_state = 68}, + [1232] = {.lex_state = 68}, + [1233] = {.lex_state = 68}, + [1234] = {.lex_state = 68}, + [1235] = {.lex_state = 68}, + [1236] = {.lex_state = 68}, + [1237] = {.lex_state = 68}, + [1238] = {.lex_state = 68}, + [1239] = {.lex_state = 68}, + [1240] = {.lex_state = 68}, + [1241] = {.lex_state = 78}, + [1242] = {.lex_state = 68}, + [1243] = {.lex_state = 68}, + [1244] = {.lex_state = 68}, + [1245] = {.lex_state = 68}, + [1246] = {.lex_state = 68}, + [1247] = {.lex_state = 68}, + [1248] = {.lex_state = 68}, + [1249] = {.lex_state = 68}, + [1250] = {.lex_state = 68}, + [1251] = {.lex_state = 68}, + [1252] = {.lex_state = 68}, + [1253] = {.lex_state = 68}, + [1254] = {.lex_state = 68}, + [1255] = {.lex_state = 68}, + [1256] = {.lex_state = 68}, + [1257] = {.lex_state = 71}, + [1258] = {.lex_state = 68}, + [1259] = {.lex_state = 68}, + [1260] = {.lex_state = 68}, + [1261] = {.lex_state = 62}, + [1262] = {.lex_state = 71}, + [1263] = {.lex_state = 71}, + [1264] = {.lex_state = 62}, + [1265] = {.lex_state = 62}, + [1266] = {.lex_state = 62}, + [1267] = {.lex_state = 62}, + [1268] = {.lex_state = 62}, + [1269] = {.lex_state = 62}, + [1270] = {.lex_state = 62}, + [1271] = {.lex_state = 80}, + [1272] = {.lex_state = 62}, + [1273] = {.lex_state = 62}, + [1274] = {.lex_state = 62}, + [1275] = {.lex_state = 62}, + [1276] = {.lex_state = 62}, + [1277] = {.lex_state = 62}, + [1278] = {.lex_state = 71}, + [1279] = {.lex_state = 62}, + [1280] = {.lex_state = 62}, + [1281] = {.lex_state = 83}, + [1282] = {.lex_state = 68}, + [1283] = {.lex_state = 62}, + [1284] = {.lex_state = 62}, + [1285] = {.lex_state = 62}, + [1286] = {.lex_state = 62}, + [1287] = {.lex_state = 62}, + [1288] = {.lex_state = 62}, + [1289] = {.lex_state = 62}, + [1290] = {.lex_state = 68}, + [1291] = {.lex_state = 62}, + [1292] = {.lex_state = 62}, + [1293] = {.lex_state = 81}, + [1294] = {.lex_state = 62}, + [1295] = {.lex_state = 62}, + [1296] = {.lex_state = 71}, + [1297] = {.lex_state = 62}, + [1298] = {.lex_state = 71}, + [1299] = {.lex_state = 62}, + [1300] = {.lex_state = 62}, + [1301] = {.lex_state = 62}, + [1302] = {.lex_state = 62}, + [1303] = {.lex_state = 62}, + [1304] = {.lex_state = 62}, + [1305] = {.lex_state = 62}, + [1306] = {.lex_state = 62}, + [1307] = {.lex_state = 62}, + [1308] = {.lex_state = 62}, + [1309] = {.lex_state = 83}, + [1310] = {.lex_state = 62}, + [1311] = {.lex_state = 71}, + [1312] = {.lex_state = 62}, + [1313] = {.lex_state = 62}, + [1314] = {.lex_state = 62}, + [1315] = {.lex_state = 62}, + [1316] = {.lex_state = 62}, + [1317] = {.lex_state = 62}, + [1318] = {.lex_state = 62}, + [1319] = {.lex_state = 62}, + [1320] = {.lex_state = 62}, + [1321] = {.lex_state = 62}, + [1322] = {.lex_state = 62}, + [1323] = {.lex_state = 62}, + [1324] = {.lex_state = 62}, + [1325] = {.lex_state = 62}, + [1326] = {.lex_state = 62}, + [1327] = {.lex_state = 62}, + [1328] = {.lex_state = 62}, + [1329] = {.lex_state = 62}, + [1330] = {.lex_state = 62}, + [1331] = {.lex_state = 62}, + [1332] = {.lex_state = 62}, + [1333] = {.lex_state = 62}, + [1334] = {.lex_state = 62}, + [1335] = {.lex_state = 62}, + [1336] = {.lex_state = 62}, + [1337] = {.lex_state = 62}, + [1338] = {.lex_state = 62}, + [1339] = {.lex_state = 81}, + [1340] = {.lex_state = 62}, + [1341] = {.lex_state = 62}, + [1342] = {.lex_state = 62}, + [1343] = {.lex_state = 62}, + [1344] = {.lex_state = 62}, + [1345] = {.lex_state = 62}, + [1346] = {.lex_state = 62}, + [1347] = {.lex_state = 62}, + [1348] = {.lex_state = 62}, + [1349] = {.lex_state = 62}, + [1350] = {.lex_state = 62}, + [1351] = {.lex_state = 65}, + [1352] = {.lex_state = 71}, + [1353] = {.lex_state = 71}, + [1354] = {.lex_state = 65}, + [1355] = {.lex_state = 65}, + [1356] = {.lex_state = 65}, + [1357] = {.lex_state = 65}, + [1358] = {.lex_state = 65}, + [1359] = {.lex_state = 65}, + [1360] = {.lex_state = 65}, + [1361] = {.lex_state = 71}, + [1362] = {.lex_state = 65}, + [1363] = {.lex_state = 65}, + [1364] = {.lex_state = 65}, + [1365] = {.lex_state = 65}, + [1366] = {.lex_state = 65}, + [1367] = {.lex_state = 65}, + [1368] = {.lex_state = 71}, + [1369] = {.lex_state = 65}, + [1370] = {.lex_state = 65}, + [1371] = {.lex_state = 85}, + [1372] = {.lex_state = 71}, + [1373] = {.lex_state = 65}, + [1374] = {.lex_state = 65}, + [1375] = {.lex_state = 65}, + [1376] = {.lex_state = 65}, + [1377] = {.lex_state = 65}, + [1378] = {.lex_state = 65}, + [1379] = {.lex_state = 65}, + [1380] = {.lex_state = 68}, + [1381] = {.lex_state = 65}, + [1382] = {.lex_state = 65}, + [1383] = {.lex_state = 73}, + [1384] = {.lex_state = 65}, + [1385] = {.lex_state = 65}, + [1386] = {.lex_state = 71}, + [1387] = {.lex_state = 65}, + [1388] = {.lex_state = 71}, + [1389] = {.lex_state = 65}, + [1390] = {.lex_state = 65}, + [1391] = {.lex_state = 65}, + [1392] = {.lex_state = 65}, + [1393] = {.lex_state = 65}, + [1394] = {.lex_state = 65}, + [1395] = {.lex_state = 65}, + [1396] = {.lex_state = 65}, + [1397] = {.lex_state = 65}, + [1398] = {.lex_state = 65}, + [1399] = {.lex_state = 85}, + [1400] = {.lex_state = 65}, + [1401] = {.lex_state = 65}, + [1402] = {.lex_state = 65}, + [1403] = {.lex_state = 65}, + [1404] = {.lex_state = 65}, + [1405] = {.lex_state = 65}, + [1406] = {.lex_state = 65}, + [1407] = {.lex_state = 65}, + [1408] = {.lex_state = 65}, + [1409] = {.lex_state = 65}, + [1410] = {.lex_state = 65}, + [1411] = {.lex_state = 65}, + [1412] = {.lex_state = 65}, + [1413] = {.lex_state = 65}, + [1414] = {.lex_state = 65}, + [1415] = {.lex_state = 65}, + [1416] = {.lex_state = 65}, + [1417] = {.lex_state = 65}, + [1418] = {.lex_state = 65}, + [1419] = {.lex_state = 65}, + [1420] = {.lex_state = 65}, + [1421] = {.lex_state = 65}, + [1422] = {.lex_state = 65}, + [1423] = {.lex_state = 65}, + [1424] = {.lex_state = 65}, + [1425] = {.lex_state = 65}, + [1426] = {.lex_state = 65}, + [1427] = {.lex_state = 65}, + [1428] = {.lex_state = 73}, + [1429] = {.lex_state = 65}, + [1430] = {.lex_state = 65}, + [1431] = {.lex_state = 65}, + [1432] = {.lex_state = 65}, + [1433] = {.lex_state = 65}, + [1434] = {.lex_state = 65}, + [1435] = {.lex_state = 65}, + [1436] = {.lex_state = 65}, + [1437] = {.lex_state = 65}, + [1438] = {.lex_state = 65}, + [1439] = {.lex_state = 65}, + [1440] = {.lex_state = 77}, + [1441] = {.lex_state = 71}, + [1442] = {.lex_state = 71}, + [1443] = {.lex_state = 77}, + [1444] = {.lex_state = 77}, + [1445] = {.lex_state = 77}, + [1446] = {.lex_state = 77}, + [1447] = {.lex_state = 77}, + [1448] = {.lex_state = 77}, + [1449] = {.lex_state = 77}, + [1450] = {.lex_state = 71}, + [1451] = {.lex_state = 77}, + [1452] = {.lex_state = 77}, + [1453] = {.lex_state = 77}, + [1454] = {.lex_state = 77}, + [1455] = {.lex_state = 77}, + [1456] = {.lex_state = 77}, + [1457] = {.lex_state = 71}, + [1458] = {.lex_state = 77}, + [1459] = {.lex_state = 77}, + [1460] = {.lex_state = 77}, + [1461] = {.lex_state = 77}, + [1462] = {.lex_state = 77}, + [1463] = {.lex_state = 77}, + [1464] = {.lex_state = 77}, + [1465] = {.lex_state = 77}, + [1466] = {.lex_state = 77}, + [1467] = {.lex_state = 68}, + [1468] = {.lex_state = 77}, + [1469] = {.lex_state = 77}, + [1470] = {.lex_state = 91}, + [1471] = {.lex_state = 77}, + [1472] = {.lex_state = 77}, + [1473] = {.lex_state = 71}, + [1474] = {.lex_state = 77}, + [1475] = {.lex_state = 71}, + [1476] = {.lex_state = 77}, + [1477] = {.lex_state = 77}, + [1478] = {.lex_state = 77}, + [1479] = {.lex_state = 77}, + [1480] = {.lex_state = 77}, + [1481] = {.lex_state = 77}, + [1482] = {.lex_state = 77}, + [1483] = {.lex_state = 77}, + [1484] = {.lex_state = 77}, + [1485] = {.lex_state = 77}, + [1486] = {.lex_state = 77}, + [1487] = {.lex_state = 77}, + [1488] = {.lex_state = 77}, + [1489] = {.lex_state = 77}, + [1490] = {.lex_state = 77}, + [1491] = {.lex_state = 77}, + [1492] = {.lex_state = 77}, + [1493] = {.lex_state = 77}, + [1494] = {.lex_state = 77}, + [1495] = {.lex_state = 77}, + [1496] = {.lex_state = 77}, + [1497] = {.lex_state = 77}, + [1498] = {.lex_state = 77}, + [1499] = {.lex_state = 77}, + [1500] = {.lex_state = 77}, + [1501] = {.lex_state = 77}, + [1502] = {.lex_state = 77}, + [1503] = {.lex_state = 77}, + [1504] = {.lex_state = 77}, + [1505] = {.lex_state = 77}, + [1506] = {.lex_state = 77}, + [1507] = {.lex_state = 77}, + [1508] = {.lex_state = 77}, + [1509] = {.lex_state = 77}, + [1510] = {.lex_state = 77}, + [1511] = {.lex_state = 77}, + [1512] = {.lex_state = 77}, + [1513] = {.lex_state = 77}, + [1514] = {.lex_state = 91}, + [1515] = {.lex_state = 77}, + [1516] = {.lex_state = 77}, + [1517] = {.lex_state = 77}, + [1518] = {.lex_state = 77}, + [1519] = {.lex_state = 77}, + [1520] = {.lex_state = 77}, + [1521] = {.lex_state = 77}, + [1522] = {.lex_state = 77}, + [1523] = {.lex_state = 77}, + [1524] = {.lex_state = 77}, + [1525] = {.lex_state = 77}, + [1526] = {.lex_state = 79}, + [1527] = {.lex_state = 71}, + [1528] = {.lex_state = 71}, + [1529] = {.lex_state = 79}, + [1530] = {.lex_state = 79}, + [1531] = {.lex_state = 79}, + [1532] = {.lex_state = 79}, + [1533] = {.lex_state = 79}, + [1534] = {.lex_state = 79}, + [1535] = {.lex_state = 79}, + [1536] = {.lex_state = 71}, + [1537] = {.lex_state = 79}, + [1538] = {.lex_state = 79}, + [1539] = {.lex_state = 79}, + [1540] = {.lex_state = 79}, + [1541] = {.lex_state = 79}, + [1542] = {.lex_state = 79}, + [1543] = {.lex_state = 71}, + [1544] = {.lex_state = 79}, + [1545] = {.lex_state = 79}, + [1546] = {.lex_state = 79}, + [1547] = {.lex_state = 79}, + [1548] = {.lex_state = 79}, + [1549] = {.lex_state = 79}, + [1550] = {.lex_state = 79}, + [1551] = {.lex_state = 79}, + [1552] = {.lex_state = 79}, + [1553] = {.lex_state = 76}, + [1554] = {.lex_state = 79}, + [1555] = {.lex_state = 79}, + [1556] = {.lex_state = 94}, + [1557] = {.lex_state = 79}, + [1558] = {.lex_state = 79}, + [1559] = {.lex_state = 71}, + [1560] = {.lex_state = 79}, + [1561] = {.lex_state = 71}, + [1562] = {.lex_state = 79}, + [1563] = {.lex_state = 79}, + [1564] = {.lex_state = 79}, + [1565] = {.lex_state = 79}, + [1566] = {.lex_state = 79}, + [1567] = {.lex_state = 79}, + [1568] = {.lex_state = 79}, + [1569] = {.lex_state = 79}, + [1570] = {.lex_state = 79}, + [1571] = {.lex_state = 79}, + [1572] = {.lex_state = 79}, + [1573] = {.lex_state = 79}, + [1574] = {.lex_state = 79}, + [1575] = {.lex_state = 79}, + [1576] = {.lex_state = 79}, + [1577] = {.lex_state = 79}, + [1578] = {.lex_state = 79}, + [1579] = {.lex_state = 79}, + [1580] = {.lex_state = 79}, + [1581] = {.lex_state = 79}, + [1582] = {.lex_state = 79}, + [1583] = {.lex_state = 79}, + [1584] = {.lex_state = 79}, + [1585] = {.lex_state = 79}, + [1586] = {.lex_state = 79}, + [1587] = {.lex_state = 79}, + [1588] = {.lex_state = 79}, + [1589] = {.lex_state = 79}, + [1590] = {.lex_state = 79}, + [1591] = {.lex_state = 79}, + [1592] = {.lex_state = 79}, + [1593] = {.lex_state = 79}, + [1594] = {.lex_state = 79}, + [1595] = {.lex_state = 79}, + [1596] = {.lex_state = 79}, + [1597] = {.lex_state = 79}, + [1598] = {.lex_state = 79}, + [1599] = {.lex_state = 79}, + [1600] = {.lex_state = 94}, + [1601] = {.lex_state = 79}, + [1602] = {.lex_state = 79}, + [1603] = {.lex_state = 79}, + [1604] = {.lex_state = 79}, + [1605] = {.lex_state = 79}, + [1606] = {.lex_state = 79}, + [1607] = {.lex_state = 79}, + [1608] = {.lex_state = 79}, + [1609] = {.lex_state = 79}, + [1610] = {.lex_state = 79}, + [1611] = {.lex_state = 79}, + [1612] = {.lex_state = 81}, + [1613] = {.lex_state = 71}, + [1614] = {.lex_state = 71}, + [1615] = {.lex_state = 81}, + [1616] = {.lex_state = 81}, + [1617] = {.lex_state = 81}, + [1618] = {.lex_state = 81}, + [1619] = {.lex_state = 81}, + [1620] = {.lex_state = 81}, + [1621] = {.lex_state = 81}, + [1622] = {.lex_state = 71}, + [1623] = {.lex_state = 81}, + [1624] = {.lex_state = 81}, + [1625] = {.lex_state = 81}, + [1626] = {.lex_state = 81}, + [1627] = {.lex_state = 81}, + [1628] = {.lex_state = 81}, + [1629] = {.lex_state = 81}, + [1630] = {.lex_state = 81}, + [1631] = {.lex_state = 81}, + [1632] = {.lex_state = 81}, + [1633] = {.lex_state = 81}, + [1634] = {.lex_state = 81}, + [1635] = {.lex_state = 81}, + [1636] = {.lex_state = 81}, + [1637] = {.lex_state = 81}, + [1638] = {.lex_state = 71}, + [1639] = {.lex_state = 81}, + [1640] = {.lex_state = 81}, + [1641] = {.lex_state = 68}, + [1642] = {.lex_state = 81}, + [1643] = {.lex_state = 81}, + [1644] = {.lex_state = 81}, + [1645] = {.lex_state = 71}, + [1646] = {.lex_state = 81}, + [1647] = {.lex_state = 81}, + [1648] = {.lex_state = 81}, + [1649] = {.lex_state = 81}, + [1650] = {.lex_state = 81}, + [1651] = {.lex_state = 81}, + [1652] = {.lex_state = 81}, + [1653] = {.lex_state = 81}, + [1654] = {.lex_state = 81}, + [1655] = {.lex_state = 81}, + [1656] = {.lex_state = 81}, + [1657] = {.lex_state = 81}, + [1658] = {.lex_state = 81}, + [1659] = {.lex_state = 81}, + [1660] = {.lex_state = 81}, + [1661] = {.lex_state = 81}, + [1662] = {.lex_state = 81}, + [1663] = {.lex_state = 81}, + [1664] = {.lex_state = 81}, + [1665] = {.lex_state = 81}, + [1666] = {.lex_state = 81}, + [1667] = {.lex_state = 81}, + [1668] = {.lex_state = 81}, + [1669] = {.lex_state = 81}, + [1670] = {.lex_state = 81}, + [1671] = {.lex_state = 81}, + [1672] = {.lex_state = 81}, + [1673] = {.lex_state = 81}, + [1674] = {.lex_state = 81}, + [1675] = {.lex_state = 81}, + [1676] = {.lex_state = 81}, + [1677] = {.lex_state = 81}, + [1678] = {.lex_state = 81}, + [1679] = {.lex_state = 81}, + [1680] = {.lex_state = 81}, + [1681] = {.lex_state = 81}, + [1682] = {.lex_state = 81}, + [1683] = {.lex_state = 81}, + [1684] = {.lex_state = 68}, + [1685] = {.lex_state = 81}, + [1686] = {.lex_state = 81}, + [1687] = {.lex_state = 81}, + [1688] = {.lex_state = 81}, + [1689] = {.lex_state = 81}, + [1690] = {.lex_state = 81}, + [1691] = {.lex_state = 81}, + [1692] = {.lex_state = 81}, + [1693] = {.lex_state = 81}, + [1694] = {.lex_state = 81}, + [1695] = {.lex_state = 81}, + [1696] = {.lex_state = 73}, + [1697] = {.lex_state = 71}, + [1698] = {.lex_state = 71}, + [1699] = {.lex_state = 73}, + [1700] = {.lex_state = 73}, + [1701] = {.lex_state = 73}, + [1702] = {.lex_state = 73}, + [1703] = {.lex_state = 73}, + [1704] = {.lex_state = 73}, + [1705] = {.lex_state = 73}, + [1706] = {.lex_state = 77}, + [1707] = {.lex_state = 73}, + [1708] = {.lex_state = 73}, + [1709] = {.lex_state = 73}, + [1710] = {.lex_state = 73}, + [1711] = {.lex_state = 73}, + [1712] = {.lex_state = 73}, + [1713] = {.lex_state = 73}, + [1714] = {.lex_state = 73}, + [1715] = {.lex_state = 73}, + [1716] = {.lex_state = 73}, + [1717] = {.lex_state = 73}, + [1718] = {.lex_state = 71}, + [1719] = {.lex_state = 73}, + [1720] = {.lex_state = 73}, + [1721] = {.lex_state = 73}, + [1722] = {.lex_state = 69}, + [1723] = {.lex_state = 73}, + [1724] = {.lex_state = 73}, + [1725] = {.lex_state = 83}, + [1726] = {.lex_state = 73}, + [1727] = {.lex_state = 73}, + [1728] = {.lex_state = 73}, + [1729] = {.lex_state = 71}, + [1730] = {.lex_state = 73}, + [1731] = {.lex_state = 73}, + [1732] = {.lex_state = 73}, + [1733] = {.lex_state = 73}, + [1734] = {.lex_state = 73}, + [1735] = {.lex_state = 73}, + [1736] = {.lex_state = 73}, + [1737] = {.lex_state = 73}, + [1738] = {.lex_state = 73}, + [1739] = {.lex_state = 73}, + [1740] = {.lex_state = 73}, + [1741] = {.lex_state = 73}, + [1742] = {.lex_state = 73}, + [1743] = {.lex_state = 73}, + [1744] = {.lex_state = 73}, + [1745] = {.lex_state = 73}, + [1746] = {.lex_state = 73}, + [1747] = {.lex_state = 73}, + [1748] = {.lex_state = 73}, + [1749] = {.lex_state = 73}, + [1750] = {.lex_state = 73}, + [1751] = {.lex_state = 73}, + [1752] = {.lex_state = 73}, + [1753] = {.lex_state = 73}, + [1754] = {.lex_state = 73}, + [1755] = {.lex_state = 73}, + [1756] = {.lex_state = 73}, + [1757] = {.lex_state = 73}, + [1758] = {.lex_state = 73}, + [1759] = {.lex_state = 73}, + [1760] = {.lex_state = 73}, + [1761] = {.lex_state = 73}, + [1762] = {.lex_state = 73}, + [1763] = {.lex_state = 73}, + [1764] = {.lex_state = 73}, + [1765] = {.lex_state = 73}, + [1766] = {.lex_state = 73}, + [1767] = {.lex_state = 73}, + [1768] = {.lex_state = 83}, + [1769] = {.lex_state = 73}, + [1770] = {.lex_state = 73}, + [1771] = {.lex_state = 73}, + [1772] = {.lex_state = 73}, + [1773] = {.lex_state = 73}, + [1774] = {.lex_state = 73}, + [1775] = {.lex_state = 73}, + [1776] = {.lex_state = 73}, + [1777] = {.lex_state = 73}, + [1778] = {.lex_state = 73}, + [1779] = {.lex_state = 73}, + [1780] = {.lex_state = 91}, + [1781] = {.lex_state = 71}, + [1782] = {.lex_state = 71}, + [1783] = {.lex_state = 91}, + [1784] = {.lex_state = 91}, + [1785] = {.lex_state = 91}, + [1786] = {.lex_state = 91}, + [1787] = {.lex_state = 91}, + [1788] = {.lex_state = 91}, + [1789] = {.lex_state = 91}, + [1790] = {.lex_state = 71}, + [1791] = {.lex_state = 91}, + [1792] = {.lex_state = 91}, + [1793] = {.lex_state = 91}, + [1794] = {.lex_state = 91}, + [1795] = {.lex_state = 91}, + [1796] = {.lex_state = 91}, + [1797] = {.lex_state = 91}, + [1798] = {.lex_state = 91}, + [1799] = {.lex_state = 91}, + [1800] = {.lex_state = 91}, + [1801] = {.lex_state = 91}, + [1802] = {.lex_state = 91}, + [1803] = {.lex_state = 91}, + [1804] = {.lex_state = 91}, + [1805] = {.lex_state = 91}, + [1806] = {.lex_state = 74}, + [1807] = {.lex_state = 91}, + [1808] = {.lex_state = 91}, + [1809] = {.lex_state = 85}, + [1810] = {.lex_state = 91}, + [1811] = {.lex_state = 91}, + [1812] = {.lex_state = 91}, + [1813] = {.lex_state = 71}, + [1814] = {.lex_state = 91}, + [1815] = {.lex_state = 91}, + [1816] = {.lex_state = 91}, + [1817] = {.lex_state = 91}, + [1818] = {.lex_state = 91}, + [1819] = {.lex_state = 91}, + [1820] = {.lex_state = 91}, + [1821] = {.lex_state = 91}, + [1822] = {.lex_state = 91}, + [1823] = {.lex_state = 91}, + [1824] = {.lex_state = 91}, + [1825] = {.lex_state = 91}, + [1826] = {.lex_state = 91}, + [1827] = {.lex_state = 91}, + [1828] = {.lex_state = 91}, + [1829] = {.lex_state = 91}, + [1830] = {.lex_state = 91}, + [1831] = {.lex_state = 91}, + [1832] = {.lex_state = 91}, + [1833] = {.lex_state = 91}, + [1834] = {.lex_state = 91}, + [1835] = {.lex_state = 91}, + [1836] = {.lex_state = 91}, + [1837] = {.lex_state = 91}, + [1838] = {.lex_state = 91}, + [1839] = {.lex_state = 91}, + [1840] = {.lex_state = 91}, + [1841] = {.lex_state = 91}, + [1842] = {.lex_state = 91}, + [1843] = {.lex_state = 91}, + [1844] = {.lex_state = 91}, + [1845] = {.lex_state = 91}, + [1846] = {.lex_state = 91}, + [1847] = {.lex_state = 91}, + [1848] = {.lex_state = 91}, + [1849] = {.lex_state = 91}, + [1850] = {.lex_state = 91}, + [1851] = {.lex_state = 91}, + [1852] = {.lex_state = 85}, + [1853] = {.lex_state = 91}, + [1854] = {.lex_state = 91}, + [1855] = {.lex_state = 91}, + [1856] = {.lex_state = 91}, + [1857] = {.lex_state = 91}, + [1858] = {.lex_state = 91}, + [1859] = {.lex_state = 91}, + [1860] = {.lex_state = 91}, + [1861] = {.lex_state = 91}, + [1862] = {.lex_state = 91}, + [1863] = {.lex_state = 91}, + [1864] = {.lex_state = 94}, + [1865] = {.lex_state = 71}, + [1866] = {.lex_state = 71}, + [1867] = {.lex_state = 94}, + [1868] = {.lex_state = 94}, + [1869] = {.lex_state = 94}, + [1870] = {.lex_state = 94}, + [1871] = {.lex_state = 94}, + [1872] = {.lex_state = 94}, + [1873] = {.lex_state = 94}, + [1874] = {.lex_state = 71}, + [1875] = {.lex_state = 94}, + [1876] = {.lex_state = 94}, + [1877] = {.lex_state = 94}, + [1878] = {.lex_state = 94}, + [1879] = {.lex_state = 94}, + [1880] = {.lex_state = 94}, + [1881] = {.lex_state = 94}, + [1882] = {.lex_state = 94}, + [1883] = {.lex_state = 94}, + [1884] = {.lex_state = 94}, + [1885] = {.lex_state = 94}, + [1886] = {.lex_state = 94}, + [1887] = {.lex_state = 94}, + [1888] = {.lex_state = 94}, + [1889] = {.lex_state = 94}, + [1890] = {.lex_state = 93}, + [1891] = {.lex_state = 94}, + [1892] = {.lex_state = 94}, + [1893] = {.lex_state = 71}, + [1894] = {.lex_state = 94}, + [1895] = {.lex_state = 94}, + [1896] = {.lex_state = 94}, + [1897] = {.lex_state = 94}, + [1898] = {.lex_state = 94}, + [1899] = {.lex_state = 94}, + [1900] = {.lex_state = 94}, + [1901] = {.lex_state = 94}, + [1902] = {.lex_state = 94}, + [1903] = {.lex_state = 94}, + [1904] = {.lex_state = 94}, + [1905] = {.lex_state = 94}, + [1906] = {.lex_state = 94}, + [1907] = {.lex_state = 94}, + [1908] = {.lex_state = 94}, + [1909] = {.lex_state = 94}, + [1910] = {.lex_state = 94}, + [1911] = {.lex_state = 94}, + [1912] = {.lex_state = 94}, + [1913] = {.lex_state = 94}, + [1914] = {.lex_state = 94}, + [1915] = {.lex_state = 94}, + [1916] = {.lex_state = 94}, + [1917] = {.lex_state = 94}, + [1918] = {.lex_state = 94}, + [1919] = {.lex_state = 94}, + [1920] = {.lex_state = 94}, + [1921] = {.lex_state = 94}, + [1922] = {.lex_state = 94}, + [1923] = {.lex_state = 94}, + [1924] = {.lex_state = 94}, + [1925] = {.lex_state = 94}, + [1926] = {.lex_state = 94}, + [1927] = {.lex_state = 94}, + [1928] = {.lex_state = 94}, + [1929] = {.lex_state = 94}, + [1930] = {.lex_state = 94}, + [1931] = {.lex_state = 94}, + [1932] = {.lex_state = 94}, + [1933] = {.lex_state = 94}, + [1934] = {.lex_state = 94}, + [1935] = {.lex_state = 94}, + [1936] = {.lex_state = 94}, + [1937] = {.lex_state = 94}, + [1938] = {.lex_state = 94}, + [1939] = {.lex_state = 94}, + [1940] = {.lex_state = 94}, + [1941] = {.lex_state = 94}, + [1942] = {.lex_state = 94}, + [1943] = {.lex_state = 94}, + [1944] = {.lex_state = 94}, + [1945] = {.lex_state = 94}, + [1946] = {.lex_state = 55}, + [1947] = {.lex_state = 55}, + [1948] = {.lex_state = 82}, + [1949] = {.lex_state = 76}, + [1950] = {.lex_state = 117}, + [1951] = {.lex_state = 117}, + [1952] = {.lex_state = 117}, + [1953] = {.lex_state = 78}, + [1954] = {.lex_state = 117}, + [1955] = {.lex_state = 117}, + [1956] = {.lex_state = 78}, + [1957] = {.lex_state = 80}, + [1958] = {.lex_state = 80}, + [1959] = {.lex_state = 80}, + [1960] = {.lex_state = 80}, + [1961] = {.lex_state = 80}, + [1962] = {.lex_state = 80}, + [1963] = {.lex_state = 80}, + [1964] = {.lex_state = 80}, + [1965] = {.lex_state = 80}, + [1966] = {.lex_state = 80}, + [1967] = {.lex_state = 80}, + [1968] = {.lex_state = 80}, + [1969] = {.lex_state = 80}, + [1970] = {.lex_state = 80}, + [1971] = {.lex_state = 80}, + [1972] = {.lex_state = 80}, + [1973] = {.lex_state = 80}, + [1974] = {.lex_state = 80}, + [1975] = {.lex_state = 80}, + [1976] = {.lex_state = 80}, + [1977] = {.lex_state = 80}, + [1978] = {.lex_state = 72}, + [1979] = {.lex_state = 80}, + [1980] = {.lex_state = 80}, + [1981] = {.lex_state = 80}, + [1982] = {.lex_state = 80}, + [1983] = {.lex_state = 80}, + [1984] = {.lex_state = 80}, + [1985] = {.lex_state = 80}, + [1986] = {.lex_state = 80}, + [1987] = {.lex_state = 80}, + [1988] = {.lex_state = 80}, + [1989] = {.lex_state = 80}, + [1990] = {.lex_state = 80}, + [1991] = {.lex_state = 80}, + [1992] = {.lex_state = 80}, + [1993] = {.lex_state = 80}, + [1994] = {.lex_state = 80}, + [1995] = {.lex_state = 80}, + [1996] = {.lex_state = 80}, + [1997] = {.lex_state = 80}, + [1998] = {.lex_state = 80}, + [1999] = {.lex_state = 80}, + [2000] = {.lex_state = 80}, + [2001] = {.lex_state = 80}, + [2002] = {.lex_state = 80}, + [2003] = {.lex_state = 80}, + [2004] = {.lex_state = 80}, + [2005] = {.lex_state = 80}, + [2006] = {.lex_state = 80}, + [2007] = {.lex_state = 80}, + [2008] = {.lex_state = 80}, + [2009] = {.lex_state = 80}, + [2010] = {.lex_state = 80}, + [2011] = {.lex_state = 80}, + [2012] = {.lex_state = 76}, + [2013] = {.lex_state = 80}, + [2014] = {.lex_state = 80}, + [2015] = {.lex_state = 80}, + [2016] = {.lex_state = 80}, + [2017] = {.lex_state = 80}, + [2018] = {.lex_state = 80}, + [2019] = {.lex_state = 80}, + [2020] = {.lex_state = 72}, + [2021] = {.lex_state = 80}, + [2022] = {.lex_state = 80}, + [2023] = {.lex_state = 80}, + [2024] = {.lex_state = 80}, + [2025] = {.lex_state = 80}, + [2026] = {.lex_state = 80}, + [2027] = {.lex_state = 80}, + [2028] = {.lex_state = 80}, + [2029] = {.lex_state = 80}, + [2030] = {.lex_state = 80}, + [2031] = {.lex_state = 80}, + [2032] = {.lex_state = 80}, + [2033] = {.lex_state = 80}, + [2034] = {.lex_state = 78}, + [2035] = {.lex_state = 80}, + [2036] = {.lex_state = 80}, + [2037] = {.lex_state = 80}, + [2038] = {.lex_state = 78}, + [2039] = {.lex_state = 78}, + [2040] = {.lex_state = 78}, + [2041] = {.lex_state = 78}, + [2042] = {.lex_state = 78}, + [2043] = {.lex_state = 78}, + [2044] = {.lex_state = 78}, + [2045] = {.lex_state = 78}, + [2046] = {.lex_state = 78}, + [2047] = {.lex_state = 78}, + [2048] = {.lex_state = 78}, + [2049] = {.lex_state = 78}, + [2050] = {.lex_state = 78}, + [2051] = {.lex_state = 78}, + [2052] = {.lex_state = 78}, + [2053] = {.lex_state = 78}, + [2054] = {.lex_state = 78}, + [2055] = {.lex_state = 78}, + [2056] = {.lex_state = 78}, + [2057] = {.lex_state = 78}, + [2058] = {.lex_state = 78}, + [2059] = {.lex_state = 78}, + [2060] = {.lex_state = 78}, + [2061] = {.lex_state = 92}, + [2062] = {.lex_state = 78}, + [2063] = {.lex_state = 78}, + [2064] = {.lex_state = 78}, + [2065] = {.lex_state = 78}, + [2066] = {.lex_state = 78}, + [2067] = {.lex_state = 78}, + [2068] = {.lex_state = 78}, + [2069] = {.lex_state = 78}, + [2070] = {.lex_state = 78}, + [2071] = {.lex_state = 78}, + [2072] = {.lex_state = 78}, + [2073] = {.lex_state = 78}, + [2074] = {.lex_state = 78}, + [2075] = {.lex_state = 93}, + [2076] = {.lex_state = 78}, + [2077] = {.lex_state = 78}, + [2078] = {.lex_state = 78}, + [2079] = {.lex_state = 78}, + [2080] = {.lex_state = 78}, + [2081] = {.lex_state = 78}, + [2082] = {.lex_state = 78}, + [2083] = {.lex_state = 78}, + [2084] = {.lex_state = 78}, + [2085] = {.lex_state = 78}, + [2086] = {.lex_state = 78}, + [2087] = {.lex_state = 78}, + [2088] = {.lex_state = 76}, + [2089] = {.lex_state = 78}, + [2090] = {.lex_state = 78}, + [2091] = {.lex_state = 78}, + [2092] = {.lex_state = 78}, + [2093] = {.lex_state = 78}, + [2094] = {.lex_state = 117}, + [2095] = {.lex_state = 78}, + [2096] = {.lex_state = 78}, + [2097] = {.lex_state = 78}, + [2098] = {.lex_state = 78}, + [2099] = {.lex_state = 78}, + [2100] = {.lex_state = 78}, + [2101] = {.lex_state = 78}, + [2102] = {.lex_state = 76}, + [2103] = {.lex_state = 92}, + [2104] = {.lex_state = 76}, + [2105] = {.lex_state = 78}, + [2106] = {.lex_state = 78}, + [2107] = {.lex_state = 76}, + [2108] = {.lex_state = 78}, + [2109] = {.lex_state = 78}, + [2110] = {.lex_state = 78}, + [2111] = {.lex_state = 78}, + [2112] = {.lex_state = 78}, + [2113] = {.lex_state = 78}, + [2114] = {.lex_state = 78}, + [2115] = {.lex_state = 78}, + [2116] = {.lex_state = 78}, + [2117] = {.lex_state = 78}, + [2118] = {.lex_state = 78}, + [2119] = {.lex_state = 78}, + [2120] = {.lex_state = 78}, + [2121] = {.lex_state = 76}, + [2122] = {.lex_state = 78}, + [2123] = {.lex_state = 93}, + [2124] = {.lex_state = 93}, + [2125] = {.lex_state = 93}, + [2126] = {.lex_state = 93}, + [2127] = {.lex_state = 93}, + [2128] = {.lex_state = 93}, + [2129] = {.lex_state = 93}, + [2130] = {.lex_state = 93}, + [2131] = {.lex_state = 93}, + [2132] = {.lex_state = 93}, + [2133] = {.lex_state = 93}, + [2134] = {.lex_state = 93}, + [2135] = {.lex_state = 93}, + [2136] = {.lex_state = 93}, + [2137] = {.lex_state = 93}, + [2138] = {.lex_state = 93}, + [2139] = {.lex_state = 93}, + [2140] = {.lex_state = 93}, + [2141] = {.lex_state = 93}, + [2142] = {.lex_state = 93}, + [2143] = {.lex_state = 93}, + [2144] = {.lex_state = 82}, + [2145] = {.lex_state = 93}, + [2146] = {.lex_state = 93}, + [2147] = {.lex_state = 93}, + [2148] = {.lex_state = 93}, + [2149] = {.lex_state = 93}, + [2150] = {.lex_state = 93}, + [2151] = {.lex_state = 93}, + [2152] = {.lex_state = 93}, + [2153] = {.lex_state = 93}, + [2154] = {.lex_state = 93}, + [2155] = {.lex_state = 117}, + [2156] = {.lex_state = 93}, + [2157] = {.lex_state = 93}, + [2158] = {.lex_state = 93}, + [2159] = {.lex_state = 93}, + [2160] = {.lex_state = 93}, + [2161] = {.lex_state = 93}, + [2162] = {.lex_state = 76}, + [2163] = {.lex_state = 93}, + [2164] = {.lex_state = 93}, + [2165] = {.lex_state = 93}, + [2166] = {.lex_state = 93}, + [2167] = {.lex_state = 93}, + [2168] = {.lex_state = 93}, + [2169] = {.lex_state = 93}, + [2170] = {.lex_state = 93}, + [2171] = {.lex_state = 93}, + [2172] = {.lex_state = 93}, + [2173] = {.lex_state = 93}, + [2174] = {.lex_state = 76}, + [2175] = {.lex_state = 93}, + [2176] = {.lex_state = 93}, + [2177] = {.lex_state = 93}, + [2178] = {.lex_state = 93}, + [2179] = {.lex_state = 93}, + [2180] = {.lex_state = 117}, + [2181] = {.lex_state = 93}, + [2182] = {.lex_state = 93}, + [2183] = {.lex_state = 93}, + [2184] = {.lex_state = 93}, + [2185] = {.lex_state = 93}, + [2186] = {.lex_state = 82}, + [2187] = {.lex_state = 93}, + [2188] = {.lex_state = 93}, + [2189] = {.lex_state = 76}, + [2190] = {.lex_state = 117}, + [2191] = {.lex_state = 93}, + [2192] = {.lex_state = 93}, + [2193] = {.lex_state = 76}, + [2194] = {.lex_state = 93}, + [2195] = {.lex_state = 93}, + [2196] = {.lex_state = 93}, + [2197] = {.lex_state = 93}, + [2198] = {.lex_state = 72}, + [2199] = {.lex_state = 93}, + [2200] = {.lex_state = 93}, + [2201] = {.lex_state = 72}, + [2202] = {.lex_state = 72}, + [2203] = {.lex_state = 72}, + [2204] = {.lex_state = 72}, + [2205] = {.lex_state = 72}, + [2206] = {.lex_state = 72}, + [2207] = {.lex_state = 72}, + [2208] = {.lex_state = 93}, + [2209] = {.lex_state = 72}, + [2210] = {.lex_state = 72}, + [2211] = {.lex_state = 72}, + [2212] = {.lex_state = 72}, + [2213] = {.lex_state = 72}, + [2214] = {.lex_state = 72}, + [2215] = {.lex_state = 72}, + [2216] = {.lex_state = 72}, + [2217] = {.lex_state = 72}, + [2218] = {.lex_state = 72}, + [2219] = {.lex_state = 72}, + [2220] = {.lex_state = 72}, + [2221] = {.lex_state = 72}, + [2222] = {.lex_state = 72}, + [2223] = {.lex_state = 72}, + [2224] = {.lex_state = 93}, + [2225] = {.lex_state = 72}, + [2226] = {.lex_state = 72}, + [2227] = {.lex_state = 84}, + [2228] = {.lex_state = 72}, + [2229] = {.lex_state = 72}, + [2230] = {.lex_state = 72}, + [2231] = {.lex_state = 72}, + [2232] = {.lex_state = 72}, + [2233] = {.lex_state = 72}, + [2234] = {.lex_state = 72}, + [2235] = {.lex_state = 72}, + [2236] = {.lex_state = 72}, + [2237] = {.lex_state = 72}, + [2238] = {.lex_state = 72}, + [2239] = {.lex_state = 72}, + [2240] = {.lex_state = 72}, + [2241] = {.lex_state = 72}, + [2242] = {.lex_state = 72}, + [2243] = {.lex_state = 72}, + [2244] = {.lex_state = 72}, + [2245] = {.lex_state = 72}, + [2246] = {.lex_state = 72}, + [2247] = {.lex_state = 72}, + [2248] = {.lex_state = 72}, + [2249] = {.lex_state = 72}, + [2250] = {.lex_state = 72}, + [2251] = {.lex_state = 72}, + [2252] = {.lex_state = 72}, + [2253] = {.lex_state = 72}, + [2254] = {.lex_state = 72}, + [2255] = {.lex_state = 72}, + [2256] = {.lex_state = 72}, + [2257] = {.lex_state = 72}, + [2258] = {.lex_state = 72}, + [2259] = {.lex_state = 72}, + [2260] = {.lex_state = 72}, + [2261] = {.lex_state = 72}, + [2262] = {.lex_state = 72}, + [2263] = {.lex_state = 72}, + [2264] = {.lex_state = 72}, + [2265] = {.lex_state = 72}, + [2266] = {.lex_state = 72}, + [2267] = {.lex_state = 72}, + [2268] = {.lex_state = 72}, + [2269] = {.lex_state = 84}, + [2270] = {.lex_state = 72}, + [2271] = {.lex_state = 72}, + [2272] = {.lex_state = 72}, + [2273] = {.lex_state = 72}, + [2274] = {.lex_state = 72}, + [2275] = {.lex_state = 72}, + [2276] = {.lex_state = 72}, + [2277] = {.lex_state = 72}, + [2278] = {.lex_state = 72}, + [2279] = {.lex_state = 72}, + [2280] = {.lex_state = 72}, + [2281] = {.lex_state = 92}, + [2282] = {.lex_state = 93}, + [2283] = {.lex_state = 93}, + [2284] = {.lex_state = 92}, + [2285] = {.lex_state = 92}, + [2286] = {.lex_state = 92}, + [2287] = {.lex_state = 92}, + [2288] = {.lex_state = 92}, + [2289] = {.lex_state = 92}, + [2290] = {.lex_state = 92}, + [2291] = {.lex_state = 93}, + [2292] = {.lex_state = 92}, + [2293] = {.lex_state = 92}, + [2294] = {.lex_state = 92}, + [2295] = {.lex_state = 92}, + [2296] = {.lex_state = 92}, + [2297] = {.lex_state = 92}, + [2298] = {.lex_state = 92}, + [2299] = {.lex_state = 92}, + [2300] = {.lex_state = 92}, + [2301] = {.lex_state = 92}, + [2302] = {.lex_state = 92}, + [2303] = {.lex_state = 92}, + [2304] = {.lex_state = 92}, + [2305] = {.lex_state = 92}, + [2306] = {.lex_state = 92}, + [2307] = {.lex_state = 74}, + [2308] = {.lex_state = 92}, + [2309] = {.lex_state = 92}, + [2310] = {.lex_state = 86}, + [2311] = {.lex_state = 92}, + [2312] = {.lex_state = 92}, + [2313] = {.lex_state = 92}, + [2314] = {.lex_state = 92}, + [2315] = {.lex_state = 92}, + [2316] = {.lex_state = 92}, + [2317] = {.lex_state = 92}, + [2318] = {.lex_state = 92}, + [2319] = {.lex_state = 92}, + [2320] = {.lex_state = 92}, + [2321] = {.lex_state = 92}, + [2322] = {.lex_state = 92}, + [2323] = {.lex_state = 92}, + [2324] = {.lex_state = 92}, + [2325] = {.lex_state = 92}, + [2326] = {.lex_state = 92}, + [2327] = {.lex_state = 92}, + [2328] = {.lex_state = 92}, + [2329] = {.lex_state = 92}, + [2330] = {.lex_state = 92}, + [2331] = {.lex_state = 92}, + [2332] = {.lex_state = 92}, + [2333] = {.lex_state = 92}, + [2334] = {.lex_state = 92}, + [2335] = {.lex_state = 92}, + [2336] = {.lex_state = 92}, + [2337] = {.lex_state = 92}, + [2338] = {.lex_state = 92}, + [2339] = {.lex_state = 92}, + [2340] = {.lex_state = 92}, + [2341] = {.lex_state = 92}, + [2342] = {.lex_state = 92}, + [2343] = {.lex_state = 92}, + [2344] = {.lex_state = 92}, + [2345] = {.lex_state = 92}, + [2346] = {.lex_state = 92}, + [2347] = {.lex_state = 92}, + [2348] = {.lex_state = 92}, + [2349] = {.lex_state = 92}, + [2350] = {.lex_state = 92}, + [2351] = {.lex_state = 92}, + [2352] = {.lex_state = 86}, + [2353] = {.lex_state = 92}, + [2354] = {.lex_state = 92}, + [2355] = {.lex_state = 92}, + [2356] = {.lex_state = 92}, + [2357] = {.lex_state = 92}, + [2358] = {.lex_state = 92}, + [2359] = {.lex_state = 92}, + [2360] = {.lex_state = 92}, + [2361] = {.lex_state = 92}, + [2362] = {.lex_state = 92}, + [2363] = {.lex_state = 92}, + [2364] = {.lex_state = 82}, + [2365] = {.lex_state = 93}, + [2366] = {.lex_state = 76}, + [2367] = {.lex_state = 82}, + [2368] = {.lex_state = 82}, + [2369] = {.lex_state = 82}, + [2370] = {.lex_state = 82}, + [2371] = {.lex_state = 82}, + [2372] = {.lex_state = 82}, + [2373] = {.lex_state = 82}, + [2374] = {.lex_state = 93}, + [2375] = {.lex_state = 82}, + [2376] = {.lex_state = 82}, + [2377] = {.lex_state = 82}, + [2378] = {.lex_state = 82}, + [2379] = {.lex_state = 82}, + [2380] = {.lex_state = 82}, + [2381] = {.lex_state = 82}, + [2382] = {.lex_state = 82}, + [2383] = {.lex_state = 82}, + [2384] = {.lex_state = 82}, + [2385] = {.lex_state = 82}, + [2386] = {.lex_state = 82}, + [2387] = {.lex_state = 82}, + [2388] = {.lex_state = 82}, + [2389] = {.lex_state = 82}, + [2390] = {.lex_state = 74}, + [2391] = {.lex_state = 82}, + [2392] = {.lex_state = 82}, + [2393] = {.lex_state = 87}, + [2394] = {.lex_state = 82}, + [2395] = {.lex_state = 82}, + [2396] = {.lex_state = 82}, + [2397] = {.lex_state = 82}, + [2398] = {.lex_state = 82}, + [2399] = {.lex_state = 82}, + [2400] = {.lex_state = 82}, + [2401] = {.lex_state = 82}, + [2402] = {.lex_state = 82}, + [2403] = {.lex_state = 82}, + [2404] = {.lex_state = 82}, + [2405] = {.lex_state = 82}, + [2406] = {.lex_state = 82}, + [2407] = {.lex_state = 82}, + [2408] = {.lex_state = 82}, + [2409] = {.lex_state = 82}, + [2410] = {.lex_state = 82}, + [2411] = {.lex_state = 82}, + [2412] = {.lex_state = 82}, + [2413] = {.lex_state = 82}, + [2414] = {.lex_state = 82}, + [2415] = {.lex_state = 82}, + [2416] = {.lex_state = 82}, + [2417] = {.lex_state = 82}, + [2418] = {.lex_state = 82}, + [2419] = {.lex_state = 82}, + [2420] = {.lex_state = 117}, + [2421] = {.lex_state = 82}, + [2422] = {.lex_state = 82}, + [2423] = {.lex_state = 82}, + [2424] = {.lex_state = 82}, + [2425] = {.lex_state = 82}, + [2426] = {.lex_state = 82}, + [2427] = {.lex_state = 82}, + [2428] = {.lex_state = 82}, + [2429] = {.lex_state = 82}, + [2430] = {.lex_state = 82}, + [2431] = {.lex_state = 82}, + [2432] = {.lex_state = 82}, + [2433] = {.lex_state = 82}, + [2434] = {.lex_state = 82}, + [2435] = {.lex_state = 87}, + [2436] = {.lex_state = 82}, + [2437] = {.lex_state = 82}, + [2438] = {.lex_state = 82}, + [2439] = {.lex_state = 82}, + [2440] = {.lex_state = 82}, + [2441] = {.lex_state = 82}, + [2442] = {.lex_state = 82}, + [2443] = {.lex_state = 82}, + [2444] = {.lex_state = 82}, + [2445] = {.lex_state = 82}, + [2446] = {.lex_state = 82}, + [2447] = {.lex_state = 84}, + [2448] = {.lex_state = 74}, + [2449] = {.lex_state = 74}, + [2450] = {.lex_state = 84}, + [2451] = {.lex_state = 84}, + [2452] = {.lex_state = 84}, + [2453] = {.lex_state = 84}, + [2454] = {.lex_state = 84}, + [2455] = {.lex_state = 84}, + [2456] = {.lex_state = 84}, + [2457] = {.lex_state = 74}, + [2458] = {.lex_state = 84}, + [2459] = {.lex_state = 84}, + [2460] = {.lex_state = 84}, + [2461] = {.lex_state = 84}, + [2462] = {.lex_state = 84}, + [2463] = {.lex_state = 84}, + [2464] = {.lex_state = 84}, + [2465] = {.lex_state = 84}, + [2466] = {.lex_state = 84}, + [2467] = {.lex_state = 84}, + [2468] = {.lex_state = 84}, + [2469] = {.lex_state = 84}, + [2470] = {.lex_state = 84}, + [2471] = {.lex_state = 84}, + [2472] = {.lex_state = 84}, + [2473] = {.lex_state = 74}, + [2474] = {.lex_state = 84}, + [2475] = {.lex_state = 84}, + [2476] = {.lex_state = 88}, + [2477] = {.lex_state = 84}, + [2478] = {.lex_state = 84}, + [2479] = {.lex_state = 84}, + [2480] = {.lex_state = 84}, + [2481] = {.lex_state = 84}, + [2482] = {.lex_state = 84}, + [2483] = {.lex_state = 84}, + [2484] = {.lex_state = 84}, + [2485] = {.lex_state = 84}, + [2486] = {.lex_state = 84}, + [2487] = {.lex_state = 84}, + [2488] = {.lex_state = 84}, + [2489] = {.lex_state = 84}, + [2490] = {.lex_state = 84}, + [2491] = {.lex_state = 84}, + [2492] = {.lex_state = 84}, + [2493] = {.lex_state = 84}, + [2494] = {.lex_state = 84}, + [2495] = {.lex_state = 84}, + [2496] = {.lex_state = 84}, + [2497] = {.lex_state = 84}, + [2498] = {.lex_state = 84}, + [2499] = {.lex_state = 84}, + [2500] = {.lex_state = 84}, + [2501] = {.lex_state = 84}, + [2502] = {.lex_state = 84}, + [2503] = {.lex_state = 84}, + [2504] = {.lex_state = 84}, + [2505] = {.lex_state = 84}, + [2506] = {.lex_state = 84}, + [2507] = {.lex_state = 84}, + [2508] = {.lex_state = 84}, + [2509] = {.lex_state = 84}, + [2510] = {.lex_state = 84}, + [2511] = {.lex_state = 84}, + [2512] = {.lex_state = 84}, + [2513] = {.lex_state = 84}, + [2514] = {.lex_state = 84}, + [2515] = {.lex_state = 84}, + [2516] = {.lex_state = 84}, + [2517] = {.lex_state = 84}, + [2518] = {.lex_state = 88}, + [2519] = {.lex_state = 84}, + [2520] = {.lex_state = 84}, + [2521] = {.lex_state = 84}, + [2522] = {.lex_state = 84}, + [2523] = {.lex_state = 84}, + [2524] = {.lex_state = 84}, + [2525] = {.lex_state = 84}, + [2526] = {.lex_state = 84}, + [2527] = {.lex_state = 84}, + [2528] = {.lex_state = 84}, + [2529] = {.lex_state = 84}, + [2530] = {.lex_state = 86}, + [2531] = {.lex_state = 74}, + [2532] = {.lex_state = 74}, + [2533] = {.lex_state = 86}, + [2534] = {.lex_state = 86}, + [2535] = {.lex_state = 86}, + [2536] = {.lex_state = 86}, + [2537] = {.lex_state = 86}, + [2538] = {.lex_state = 86}, + [2539] = {.lex_state = 86}, + [2540] = {.lex_state = 74}, + [2541] = {.lex_state = 86}, + [2542] = {.lex_state = 86}, + [2543] = {.lex_state = 86}, + [2544] = {.lex_state = 86}, + [2545] = {.lex_state = 86}, + [2546] = {.lex_state = 86}, + [2547] = {.lex_state = 86}, + [2548] = {.lex_state = 86}, + [2549] = {.lex_state = 86}, + [2550] = {.lex_state = 86}, + [2551] = {.lex_state = 86}, + [2552] = {.lex_state = 86}, + [2553] = {.lex_state = 86}, + [2554] = {.lex_state = 86}, + [2555] = {.lex_state = 86}, + [2556] = {.lex_state = 74}, + [2557] = {.lex_state = 86}, + [2558] = {.lex_state = 86}, + [2559] = {.lex_state = 89}, + [2560] = {.lex_state = 86}, + [2561] = {.lex_state = 86}, + [2562] = {.lex_state = 86}, + [2563] = {.lex_state = 86}, + [2564] = {.lex_state = 86}, + [2565] = {.lex_state = 86}, + [2566] = {.lex_state = 86}, + [2567] = {.lex_state = 86}, + [2568] = {.lex_state = 86}, + [2569] = {.lex_state = 86}, + [2570] = {.lex_state = 86}, + [2571] = {.lex_state = 86}, + [2572] = {.lex_state = 86}, + [2573] = {.lex_state = 86}, + [2574] = {.lex_state = 86}, + [2575] = {.lex_state = 86}, + [2576] = {.lex_state = 86}, + [2577] = {.lex_state = 86}, + [2578] = {.lex_state = 86}, + [2579] = {.lex_state = 86}, + [2580] = {.lex_state = 86}, + [2581] = {.lex_state = 86}, + [2582] = {.lex_state = 86}, + [2583] = {.lex_state = 86}, + [2584] = {.lex_state = 86}, + [2585] = {.lex_state = 86}, + [2586] = {.lex_state = 86}, + [2587] = {.lex_state = 86}, + [2588] = {.lex_state = 86}, + [2589] = {.lex_state = 86}, + [2590] = {.lex_state = 86}, + [2591] = {.lex_state = 86}, + [2592] = {.lex_state = 86}, + [2593] = {.lex_state = 86}, + [2594] = {.lex_state = 86}, + [2595] = {.lex_state = 86}, + [2596] = {.lex_state = 86}, + [2597] = {.lex_state = 86}, + [2598] = {.lex_state = 86}, + [2599] = {.lex_state = 86}, + [2600] = {.lex_state = 86}, + [2601] = {.lex_state = 89}, + [2602] = {.lex_state = 86}, + [2603] = {.lex_state = 86}, + [2604] = {.lex_state = 86}, + [2605] = {.lex_state = 86}, + [2606] = {.lex_state = 86}, + [2607] = {.lex_state = 86}, + [2608] = {.lex_state = 86}, + [2609] = {.lex_state = 86}, + [2610] = {.lex_state = 86}, + [2611] = {.lex_state = 86}, + [2612] = {.lex_state = 86}, + [2613] = {.lex_state = 87}, + [2614] = {.lex_state = 117}, + [2615] = {.lex_state = 74}, + [2616] = {.lex_state = 87}, + [2617] = {.lex_state = 87}, + [2618] = {.lex_state = 87}, + [2619] = {.lex_state = 87}, + [2620] = {.lex_state = 87}, + [2621] = {.lex_state = 87}, + [2622] = {.lex_state = 87}, + [2623] = {.lex_state = 74}, + [2624] = {.lex_state = 87}, + [2625] = {.lex_state = 87}, + [2626] = {.lex_state = 87}, + [2627] = {.lex_state = 87}, + [2628] = {.lex_state = 87}, + [2629] = {.lex_state = 87}, + [2630] = {.lex_state = 87}, + [2631] = {.lex_state = 87}, + [2632] = {.lex_state = 87}, + [2633] = {.lex_state = 87}, + [2634] = {.lex_state = 87}, + [2635] = {.lex_state = 87}, + [2636] = {.lex_state = 87}, + [2637] = {.lex_state = 87}, + [2638] = {.lex_state = 87}, + [2639] = {.lex_state = 74}, + [2640] = {.lex_state = 87}, + [2641] = {.lex_state = 87}, + [2642] = {.lex_state = 90}, + [2643] = {.lex_state = 87}, + [2644] = {.lex_state = 87}, + [2645] = {.lex_state = 87}, + [2646] = {.lex_state = 87}, + [2647] = {.lex_state = 87}, + [2648] = {.lex_state = 87}, + [2649] = {.lex_state = 87}, + [2650] = {.lex_state = 87}, + [2651] = {.lex_state = 87}, + [2652] = {.lex_state = 87}, + [2653] = {.lex_state = 87}, + [2654] = {.lex_state = 87}, + [2655] = {.lex_state = 87}, + [2656] = {.lex_state = 87}, + [2657] = {.lex_state = 87}, + [2658] = {.lex_state = 87}, + [2659] = {.lex_state = 87}, + [2660] = {.lex_state = 87}, + [2661] = {.lex_state = 87}, + [2662] = {.lex_state = 87}, + [2663] = {.lex_state = 87}, + [2664] = {.lex_state = 87}, + [2665] = {.lex_state = 87}, + [2666] = {.lex_state = 87}, + [2667] = {.lex_state = 87}, + [2668] = {.lex_state = 87}, + [2669] = {.lex_state = 87}, + [2670] = {.lex_state = 87}, + [2671] = {.lex_state = 87}, + [2672] = {.lex_state = 87}, + [2673] = {.lex_state = 87}, + [2674] = {.lex_state = 87}, + [2675] = {.lex_state = 87}, + [2676] = {.lex_state = 87}, + [2677] = {.lex_state = 87}, + [2678] = {.lex_state = 87}, + [2679] = {.lex_state = 87}, + [2680] = {.lex_state = 87}, + [2681] = {.lex_state = 87}, + [2682] = {.lex_state = 87}, + [2683] = {.lex_state = 87}, + [2684] = {.lex_state = 90}, + [2685] = {.lex_state = 87}, + [2686] = {.lex_state = 87}, + [2687] = {.lex_state = 87}, + [2688] = {.lex_state = 87}, + [2689] = {.lex_state = 87}, + [2690] = {.lex_state = 87}, + [2691] = {.lex_state = 87}, + [2692] = {.lex_state = 87}, + [2693] = {.lex_state = 87}, + [2694] = {.lex_state = 87}, + [2695] = {.lex_state = 87}, + [2696] = {.lex_state = 88}, + [2697] = {.lex_state = 74}, + [2698] = {.lex_state = 74}, + [2699] = {.lex_state = 88}, + [2700] = {.lex_state = 88}, + [2701] = {.lex_state = 88}, + [2702] = {.lex_state = 88}, + [2703] = {.lex_state = 88}, + [2704] = {.lex_state = 88}, + [2705] = {.lex_state = 88}, + [2706] = {.lex_state = 74}, + [2707] = {.lex_state = 88}, + [2708] = {.lex_state = 88}, + [2709] = {.lex_state = 88}, + [2710] = {.lex_state = 88}, + [2711] = {.lex_state = 88}, + [2712] = {.lex_state = 88}, + [2713] = {.lex_state = 88}, + [2714] = {.lex_state = 88}, + [2715] = {.lex_state = 88}, + [2716] = {.lex_state = 88}, + [2717] = {.lex_state = 88}, + [2718] = {.lex_state = 88}, + [2719] = {.lex_state = 88}, + [2720] = {.lex_state = 88}, + [2721] = {.lex_state = 88}, + [2722] = {.lex_state = 74}, + [2723] = {.lex_state = 88}, + [2724] = {.lex_state = 88}, + [2725] = {.lex_state = 66}, + [2726] = {.lex_state = 88}, + [2727] = {.lex_state = 88}, + [2728] = {.lex_state = 88}, + [2729] = {.lex_state = 88}, + [2730] = {.lex_state = 88}, + [2731] = {.lex_state = 88}, + [2732] = {.lex_state = 88}, + [2733] = {.lex_state = 88}, + [2734] = {.lex_state = 88}, + [2735] = {.lex_state = 88}, + [2736] = {.lex_state = 88}, + [2737] = {.lex_state = 88}, + [2738] = {.lex_state = 88}, + [2739] = {.lex_state = 88}, + [2740] = {.lex_state = 88}, + [2741] = {.lex_state = 88}, + [2742] = {.lex_state = 88}, + [2743] = {.lex_state = 88}, + [2744] = {.lex_state = 88}, + [2745] = {.lex_state = 88}, + [2746] = {.lex_state = 88}, + [2747] = {.lex_state = 88}, + [2748] = {.lex_state = 88}, + [2749] = {.lex_state = 88}, + [2750] = {.lex_state = 88}, + [2751] = {.lex_state = 88}, + [2752] = {.lex_state = 88}, + [2753] = {.lex_state = 88}, + [2754] = {.lex_state = 88}, + [2755] = {.lex_state = 88}, + [2756] = {.lex_state = 88}, + [2757] = {.lex_state = 88}, + [2758] = {.lex_state = 88}, + [2759] = {.lex_state = 88}, + [2760] = {.lex_state = 88}, + [2761] = {.lex_state = 88}, + [2762] = {.lex_state = 88}, + [2763] = {.lex_state = 88}, + [2764] = {.lex_state = 88}, + [2765] = {.lex_state = 88}, + [2766] = {.lex_state = 88}, + [2767] = {.lex_state = 66}, + [2768] = {.lex_state = 88}, + [2769] = {.lex_state = 88}, + [2770] = {.lex_state = 88}, + [2771] = {.lex_state = 88}, + [2772] = {.lex_state = 88}, + [2773] = {.lex_state = 88}, + [2774] = {.lex_state = 88}, + [2775] = {.lex_state = 88}, + [2776] = {.lex_state = 88}, + [2777] = {.lex_state = 88}, + [2778] = {.lex_state = 88}, + [2779] = {.lex_state = 89}, + [2780] = {.lex_state = 74}, + [2781] = {.lex_state = 74}, + [2782] = {.lex_state = 89}, + [2783] = {.lex_state = 89}, + [2784] = {.lex_state = 89}, + [2785] = {.lex_state = 89}, + [2786] = {.lex_state = 89}, + [2787] = {.lex_state = 89}, + [2788] = {.lex_state = 89}, + [2789] = {.lex_state = 74}, + [2790] = {.lex_state = 89}, + [2791] = {.lex_state = 89}, + [2792] = {.lex_state = 89}, + [2793] = {.lex_state = 89}, + [2794] = {.lex_state = 89}, + [2795] = {.lex_state = 89}, + [2796] = {.lex_state = 89}, + [2797] = {.lex_state = 89}, + [2798] = {.lex_state = 89}, + [2799] = {.lex_state = 89}, + [2800] = {.lex_state = 89}, + [2801] = {.lex_state = 89}, + [2802] = {.lex_state = 89}, + [2803] = {.lex_state = 89}, + [2804] = {.lex_state = 89}, + [2805] = {.lex_state = 74}, + [2806] = {.lex_state = 89}, + [2807] = {.lex_state = 89}, + [2808] = {.lex_state = 63}, + [2809] = {.lex_state = 89}, + [2810] = {.lex_state = 89}, + [2811] = {.lex_state = 89}, + [2812] = {.lex_state = 89}, + [2813] = {.lex_state = 89}, + [2814] = {.lex_state = 89}, + [2815] = {.lex_state = 89}, + [2816] = {.lex_state = 89}, + [2817] = {.lex_state = 89}, + [2818] = {.lex_state = 89}, + [2819] = {.lex_state = 89}, + [2820] = {.lex_state = 89}, + [2821] = {.lex_state = 89}, + [2822] = {.lex_state = 89}, + [2823] = {.lex_state = 89}, + [2824] = {.lex_state = 89}, + [2825] = {.lex_state = 89}, + [2826] = {.lex_state = 89}, + [2827] = {.lex_state = 89}, + [2828] = {.lex_state = 89}, + [2829] = {.lex_state = 89}, + [2830] = {.lex_state = 89}, + [2831] = {.lex_state = 89}, + [2832] = {.lex_state = 89}, + [2833] = {.lex_state = 89}, + [2834] = {.lex_state = 89}, + [2835] = {.lex_state = 89}, + [2836] = {.lex_state = 89}, + [2837] = {.lex_state = 89}, + [2838] = {.lex_state = 89}, + [2839] = {.lex_state = 89}, + [2840] = {.lex_state = 89}, + [2841] = {.lex_state = 89}, + [2842] = {.lex_state = 89}, + [2843] = {.lex_state = 89}, + [2844] = {.lex_state = 89}, + [2845] = {.lex_state = 89}, + [2846] = {.lex_state = 89}, + [2847] = {.lex_state = 89}, + [2848] = {.lex_state = 89}, + [2849] = {.lex_state = 89}, + [2850] = {.lex_state = 63}, + [2851] = {.lex_state = 89}, + [2852] = {.lex_state = 89}, + [2853] = {.lex_state = 89}, + [2854] = {.lex_state = 89}, + [2855] = {.lex_state = 89}, + [2856] = {.lex_state = 89}, + [2857] = {.lex_state = 89}, + [2858] = {.lex_state = 89}, + [2859] = {.lex_state = 89}, + [2860] = {.lex_state = 89}, + [2861] = {.lex_state = 89}, + [2862] = {.lex_state = 90}, + [2863] = {.lex_state = 74}, + [2864] = {.lex_state = 74}, + [2865] = {.lex_state = 90}, + [2866] = {.lex_state = 90}, + [2867] = {.lex_state = 90}, + [2868] = {.lex_state = 90}, + [2869] = {.lex_state = 90}, + [2870] = {.lex_state = 90}, + [2871] = {.lex_state = 90}, + [2872] = {.lex_state = 74}, + [2873] = {.lex_state = 90}, + [2874] = {.lex_state = 90}, + [2875] = {.lex_state = 90}, + [2876] = {.lex_state = 90}, + [2877] = {.lex_state = 90}, + [2878] = {.lex_state = 90}, + [2879] = {.lex_state = 90}, + [2880] = {.lex_state = 90}, + [2881] = {.lex_state = 90}, + [2882] = {.lex_state = 90}, + [2883] = {.lex_state = 90}, + [2884] = {.lex_state = 90}, + [2885] = {.lex_state = 90}, + [2886] = {.lex_state = 90}, + [2887] = {.lex_state = 90}, + [2888] = {.lex_state = 74}, + [2889] = {.lex_state = 90}, + [2890] = {.lex_state = 90}, + [2891] = {.lex_state = 74}, + [2892] = {.lex_state = 90}, + [2893] = {.lex_state = 90}, + [2894] = {.lex_state = 90}, + [2895] = {.lex_state = 90}, + [2896] = {.lex_state = 90}, + [2897] = {.lex_state = 90}, + [2898] = {.lex_state = 90}, + [2899] = {.lex_state = 90}, + [2900] = {.lex_state = 90}, + [2901] = {.lex_state = 90}, + [2902] = {.lex_state = 90}, + [2903] = {.lex_state = 90}, + [2904] = {.lex_state = 90}, + [2905] = {.lex_state = 90}, + [2906] = {.lex_state = 90}, + [2907] = {.lex_state = 90}, + [2908] = {.lex_state = 90}, + [2909] = {.lex_state = 90}, + [2910] = {.lex_state = 90}, + [2911] = {.lex_state = 90}, + [2912] = {.lex_state = 90}, + [2913] = {.lex_state = 90}, + [2914] = {.lex_state = 90}, + [2915] = {.lex_state = 90}, + [2916] = {.lex_state = 90}, + [2917] = {.lex_state = 90}, + [2918] = {.lex_state = 90}, + [2919] = {.lex_state = 90}, + [2920] = {.lex_state = 90}, + [2921] = {.lex_state = 90}, + [2922] = {.lex_state = 90}, + [2923] = {.lex_state = 90}, + [2924] = {.lex_state = 90}, + [2925] = {.lex_state = 90}, + [2926] = {.lex_state = 90}, + [2927] = {.lex_state = 90}, + [2928] = {.lex_state = 90}, + [2929] = {.lex_state = 90}, + [2930] = {.lex_state = 90}, + [2931] = {.lex_state = 90}, + [2932] = {.lex_state = 90}, + [2933] = {.lex_state = 74}, + [2934] = {.lex_state = 90}, + [2935] = {.lex_state = 90}, + [2936] = {.lex_state = 90}, + [2937] = {.lex_state = 90}, + [2938] = {.lex_state = 90}, + [2939] = {.lex_state = 90}, + [2940] = {.lex_state = 90}, + [2941] = {.lex_state = 90}, + [2942] = {.lex_state = 90}, + [2943] = {.lex_state = 90}, + [2944] = {.lex_state = 90}, + [2945] = {.lex_state = 57}, + [2946] = {.lex_state = 74}, + [2947] = {.lex_state = 74}, + [2948] = {.lex_state = 57}, + [2949] = {.lex_state = 57}, + [2950] = {.lex_state = 57}, + [2951] = {.lex_state = 57}, + [2952] = {.lex_state = 57}, + [2953] = {.lex_state = 57}, + [2954] = {.lex_state = 57}, + [2955] = {.lex_state = 74}, + [2956] = {.lex_state = 57}, + [2957] = {.lex_state = 57}, + [2958] = {.lex_state = 57}, + [2959] = {.lex_state = 57}, + [2960] = {.lex_state = 57}, + [2961] = {.lex_state = 57}, + [2962] = {.lex_state = 57}, + [2963] = {.lex_state = 57}, + [2964] = {.lex_state = 57}, + [2965] = {.lex_state = 57}, + [2966] = {.lex_state = 57}, + [2967] = {.lex_state = 57}, + [2968] = {.lex_state = 57}, + [2969] = {.lex_state = 57}, + [2970] = {.lex_state = 57}, + [2971] = {.lex_state = 74}, + [2972] = {.lex_state = 57}, + [2973] = {.lex_state = 57}, + [2974] = {.lex_state = 74}, + [2975] = {.lex_state = 57}, + [2976] = {.lex_state = 57}, + [2977] = {.lex_state = 57}, + [2978] = {.lex_state = 57}, + [2979] = {.lex_state = 57}, + [2980] = {.lex_state = 57}, + [2981] = {.lex_state = 57}, + [2982] = {.lex_state = 57}, + [2983] = {.lex_state = 57}, + [2984] = {.lex_state = 57}, + [2985] = {.lex_state = 57}, + [2986] = {.lex_state = 57}, + [2987] = {.lex_state = 57}, + [2988] = {.lex_state = 57}, + [2989] = {.lex_state = 57}, + [2990] = {.lex_state = 57}, + [2991] = {.lex_state = 57}, + [2992] = {.lex_state = 57}, + [2993] = {.lex_state = 57}, + [2994] = {.lex_state = 57}, + [2995] = {.lex_state = 57}, + [2996] = {.lex_state = 57}, + [2997] = {.lex_state = 57}, + [2998] = {.lex_state = 57}, + [2999] = {.lex_state = 57}, + [3000] = {.lex_state = 57}, + [3001] = {.lex_state = 57}, + [3002] = {.lex_state = 57}, + [3003] = {.lex_state = 57}, + [3004] = {.lex_state = 57}, + [3005] = {.lex_state = 57}, + [3006] = {.lex_state = 57}, + [3007] = {.lex_state = 57}, + [3008] = {.lex_state = 57}, + [3009] = {.lex_state = 57}, + [3010] = {.lex_state = 57}, + [3011] = {.lex_state = 57}, + [3012] = {.lex_state = 57}, + [3013] = {.lex_state = 57}, + [3014] = {.lex_state = 57}, + [3015] = {.lex_state = 57}, + [3016] = {.lex_state = 74}, + [3017] = {.lex_state = 57}, + [3018] = {.lex_state = 57}, + [3019] = {.lex_state = 57}, + [3020] = {.lex_state = 57}, + [3021] = {.lex_state = 57}, + [3022] = {.lex_state = 57}, + [3023] = {.lex_state = 57}, + [3024] = {.lex_state = 57}, + [3025] = {.lex_state = 57}, + [3026] = {.lex_state = 57}, + [3027] = {.lex_state = 57}, + [3028] = {.lex_state = 58}, + [3029] = {.lex_state = 74}, + [3030] = {.lex_state = 74}, + [3031] = {.lex_state = 58}, + [3032] = {.lex_state = 58}, + [3033] = {.lex_state = 58}, + [3034] = {.lex_state = 58}, + [3035] = {.lex_state = 58}, + [3036] = {.lex_state = 58}, + [3037] = {.lex_state = 58}, + [3038] = {.lex_state = 117}, + [3039] = {.lex_state = 58}, + [3040] = {.lex_state = 58}, + [3041] = {.lex_state = 58}, + [3042] = {.lex_state = 58}, + [3043] = {.lex_state = 58}, + [3044] = {.lex_state = 58}, + [3045] = {.lex_state = 58}, + [3046] = {.lex_state = 58}, + [3047] = {.lex_state = 58}, + [3048] = {.lex_state = 58}, + [3049] = {.lex_state = 58}, + [3050] = {.lex_state = 58}, + [3051] = {.lex_state = 58}, + [3052] = {.lex_state = 58}, + [3053] = {.lex_state = 58}, + [3054] = {.lex_state = 74}, + [3055] = {.lex_state = 58}, + [3056] = {.lex_state = 58}, + [3057] = {.lex_state = 74}, + [3058] = {.lex_state = 58}, + [3059] = {.lex_state = 58}, + [3060] = {.lex_state = 58}, + [3061] = {.lex_state = 58}, + [3062] = {.lex_state = 58}, + [3063] = {.lex_state = 58}, + [3064] = {.lex_state = 58}, + [3065] = {.lex_state = 58}, + [3066] = {.lex_state = 58}, + [3067] = {.lex_state = 58}, + [3068] = {.lex_state = 58}, + [3069] = {.lex_state = 58}, + [3070] = {.lex_state = 58}, + [3071] = {.lex_state = 58}, + [3072] = {.lex_state = 58}, + [3073] = {.lex_state = 58}, + [3074] = {.lex_state = 58}, + [3075] = {.lex_state = 58}, + [3076] = {.lex_state = 58}, + [3077] = {.lex_state = 58}, + [3078] = {.lex_state = 58}, + [3079] = {.lex_state = 58}, + [3080] = {.lex_state = 58}, + [3081] = {.lex_state = 58}, + [3082] = {.lex_state = 58}, + [3083] = {.lex_state = 58}, + [3084] = {.lex_state = 58}, + [3085] = {.lex_state = 58}, + [3086] = {.lex_state = 58}, + [3087] = {.lex_state = 58}, + [3088] = {.lex_state = 58}, + [3089] = {.lex_state = 58}, + [3090] = {.lex_state = 58}, + [3091] = {.lex_state = 58}, + [3092] = {.lex_state = 58}, + [3093] = {.lex_state = 58}, + [3094] = {.lex_state = 58}, + [3095] = {.lex_state = 58}, + [3096] = {.lex_state = 58}, + [3097] = {.lex_state = 58}, + [3098] = {.lex_state = 58}, + [3099] = {.lex_state = 74}, + [3100] = {.lex_state = 58}, + [3101] = {.lex_state = 58}, + [3102] = {.lex_state = 58}, + [3103] = {.lex_state = 58}, + [3104] = {.lex_state = 58}, + [3105] = {.lex_state = 58}, + [3106] = {.lex_state = 58}, + [3107] = {.lex_state = 58}, + [3108] = {.lex_state = 58}, + [3109] = {.lex_state = 58}, + [3110] = {.lex_state = 58}, + [3111] = {.lex_state = 61}, + [3112] = {.lex_state = 74}, + [3113] = {.lex_state = 76}, + [3114] = {.lex_state = 61}, + [3115] = {.lex_state = 61}, + [3116] = {.lex_state = 61}, + [3117] = {.lex_state = 61}, + [3118] = {.lex_state = 61}, + [3119] = {.lex_state = 61}, + [3120] = {.lex_state = 61}, + [3121] = {.lex_state = 74}, + [3122] = {.lex_state = 61}, + [3123] = {.lex_state = 61}, + [3124] = {.lex_state = 61}, + [3125] = {.lex_state = 61}, + [3126] = {.lex_state = 61}, + [3127] = {.lex_state = 61}, + [3128] = {.lex_state = 61}, + [3129] = {.lex_state = 61}, + [3130] = {.lex_state = 61}, + [3131] = {.lex_state = 61}, + [3132] = {.lex_state = 61}, + [3133] = {.lex_state = 61}, + [3134] = {.lex_state = 61}, + [3135] = {.lex_state = 61}, + [3136] = {.lex_state = 61}, + [3137] = {.lex_state = 74}, + [3138] = {.lex_state = 61}, + [3139] = {.lex_state = 61}, + [3140] = {.lex_state = 117}, + [3141] = {.lex_state = 61}, + [3142] = {.lex_state = 61}, + [3143] = {.lex_state = 61}, + [3144] = {.lex_state = 61}, + [3145] = {.lex_state = 61}, + [3146] = {.lex_state = 61}, + [3147] = {.lex_state = 61}, + [3148] = {.lex_state = 61}, + [3149] = {.lex_state = 61}, + [3150] = {.lex_state = 61}, + [3151] = {.lex_state = 61}, + [3152] = {.lex_state = 61}, + [3153] = {.lex_state = 61}, + [3154] = {.lex_state = 61}, + [3155] = {.lex_state = 61}, + [3156] = {.lex_state = 61}, + [3157] = {.lex_state = 61}, + [3158] = {.lex_state = 61}, + [3159] = {.lex_state = 61}, + [3160] = {.lex_state = 61}, + [3161] = {.lex_state = 61}, + [3162] = {.lex_state = 61}, + [3163] = {.lex_state = 61}, + [3164] = {.lex_state = 61}, + [3165] = {.lex_state = 61}, + [3166] = {.lex_state = 61}, + [3167] = {.lex_state = 61}, + [3168] = {.lex_state = 61}, + [3169] = {.lex_state = 61}, + [3170] = {.lex_state = 61}, + [3171] = {.lex_state = 61}, + [3172] = {.lex_state = 61}, + [3173] = {.lex_state = 61}, + [3174] = {.lex_state = 61}, + [3175] = {.lex_state = 61}, + [3176] = {.lex_state = 61}, + [3177] = {.lex_state = 61}, + [3178] = {.lex_state = 61}, + [3179] = {.lex_state = 61}, + [3180] = {.lex_state = 61}, + [3181] = {.lex_state = 61}, + [3182] = {.lex_state = 117}, + [3183] = {.lex_state = 61}, + [3184] = {.lex_state = 61}, + [3185] = {.lex_state = 61}, + [3186] = {.lex_state = 61}, + [3187] = {.lex_state = 61}, + [3188] = {.lex_state = 61}, + [3189] = {.lex_state = 61}, + [3190] = {.lex_state = 61}, + [3191] = {.lex_state = 61}, + [3192] = {.lex_state = 61}, + [3193] = {.lex_state = 61}, + [3194] = {.lex_state = 117}, + [3195] = {.lex_state = 74}, + [3196] = {.lex_state = 117}, + [3197] = {.lex_state = 117}, + [3198] = {.lex_state = 74}, + [3199] = {.lex_state = 76}, + [3200] = {.lex_state = 117}, + [3201] = {.lex_state = 117}, + [3202] = {.lex_state = 76}, + [3203] = {.lex_state = 74}, + [3204] = {.lex_state = 117}, + [3205] = {.lex_state = 117}, + [3206] = {.lex_state = 74}, + [3207] = {.lex_state = 117}, + [3208] = {.lex_state = 117}, + [3209] = {.lex_state = 74}, + [3210] = {.lex_state = 61}, + [3211] = {.lex_state = 61}, + [3212] = {.lex_state = 74}, + [3213] = {.lex_state = 57}, + [3214] = {.lex_state = 57}, + [3215] = {.lex_state = 74}, + [3216] = {.lex_state = 58}, + [3217] = {.lex_state = 58}, + [3218] = {.lex_state = 117}, + [3219] = {.lex_state = 74}, + [3220] = {.lex_state = 117}, + [3221] = {.lex_state = 76}, + [3222] = {.lex_state = 74}, + [3223] = {.lex_state = 117}, + [3224] = {.lex_state = 117}, + [3225] = {.lex_state = 117}, + [3226] = {.lex_state = 117}, + [3227] = {.lex_state = 117}, + [3228] = {.lex_state = 76}, + [3229] = {.lex_state = 74}, + [3230] = {.lex_state = 117}, + [3231] = {.lex_state = 117}, + [3232] = {.lex_state = 117}, + [3233] = {.lex_state = 76}, + [3234] = {.lex_state = 117}, + [3235] = {.lex_state = 117}, + [3236] = {.lex_state = 117}, + [3237] = {.lex_state = 117}, + [3238] = {.lex_state = 117}, + [3239] = {.lex_state = 117}, + [3240] = {.lex_state = 117}, + [3241] = {.lex_state = 74}, + [3242] = {.lex_state = 74}, + [3243] = {.lex_state = 117}, + [3244] = {.lex_state = 117}, + [3245] = {.lex_state = 117}, + [3246] = {.lex_state = 117}, + [3247] = {.lex_state = 117}, + [3248] = {.lex_state = 117}, + [3249] = {.lex_state = 117}, + [3250] = {.lex_state = 117}, + [3251] = {.lex_state = 117}, + [3252] = {.lex_state = 117}, + [3253] = {.lex_state = 117}, + [3254] = {.lex_state = 74}, + [3255] = {.lex_state = 117}, + [3256] = {.lex_state = 117}, + [3257] = {.lex_state = 117}, + [3258] = {.lex_state = 117}, + [3259] = {.lex_state = 117}, + [3260] = {.lex_state = 117}, + [3261] = {.lex_state = 117}, + [3262] = {.lex_state = 117}, + [3263] = {.lex_state = 117}, + [3264] = {.lex_state = 117}, + [3265] = {.lex_state = 66}, + [3266] = {.lex_state = 76}, + [3267] = {.lex_state = 66}, + [3268] = {.lex_state = 66}, + [3269] = {.lex_state = 66}, + [3270] = {.lex_state = 66}, + [3271] = {.lex_state = 117}, + [3272] = {.lex_state = 66}, + [3273] = {.lex_state = 66}, + [3274] = {.lex_state = 76}, + [3275] = {.lex_state = 66}, + [3276] = {.lex_state = 66}, + [3277] = {.lex_state = 66}, + [3278] = {.lex_state = 66}, + [3279] = {.lex_state = 66}, + [3280] = {.lex_state = 66}, + [3281] = {.lex_state = 66}, + [3282] = {.lex_state = 76}, + [3283] = {.lex_state = 66}, + [3284] = {.lex_state = 76}, + [3285] = {.lex_state = 74}, + [3286] = {.lex_state = 66}, + [3287] = {.lex_state = 66}, + [3288] = {.lex_state = 66}, + [3289] = {.lex_state = 74}, + [3290] = {.lex_state = 66}, + [3291] = {.lex_state = 74}, + [3292] = {.lex_state = 66}, + [3293] = {.lex_state = 74}, + [3294] = {.lex_state = 74}, + [3295] = {.lex_state = 66}, + [3296] = {.lex_state = 93}, + [3297] = {.lex_state = 66}, + [3298] = {.lex_state = 74}, + [3299] = {.lex_state = 66}, + [3300] = {.lex_state = 66}, + [3301] = {.lex_state = 66}, + [3302] = {.lex_state = 66}, + [3303] = {.lex_state = 66}, + [3304] = {.lex_state = 74}, + [3305] = {.lex_state = 76}, + [3306] = {.lex_state = 66}, + [3307] = {.lex_state = 66}, + [3308] = {.lex_state = 66}, + [3309] = {.lex_state = 66}, + [3310] = {.lex_state = 66}, + [3311] = {.lex_state = 66}, + [3312] = {.lex_state = 66}, + [3313] = {.lex_state = 66}, + [3314] = {.lex_state = 66}, + [3315] = {.lex_state = 66}, + [3316] = {.lex_state = 66}, + [3317] = {.lex_state = 74}, + [3318] = {.lex_state = 74}, + [3319] = {.lex_state = 117}, + [3320] = {.lex_state = 76}, + [3321] = {.lex_state = 66}, + [3322] = {.lex_state = 66}, + [3323] = {.lex_state = 66}, + [3324] = {.lex_state = 66}, + [3325] = {.lex_state = 66}, + [3326] = {.lex_state = 66}, + [3327] = {.lex_state = 66}, + [3328] = {.lex_state = 66}, + [3329] = {.lex_state = 76}, + [3330] = {.lex_state = 69}, + [3331] = {.lex_state = 66}, + [3332] = {.lex_state = 66}, + [3333] = {.lex_state = 66}, + [3334] = {.lex_state = 66}, + [3335] = {.lex_state = 66}, + [3336] = {.lex_state = 66}, + [3337] = {.lex_state = 66}, + [3338] = {.lex_state = 66}, + [3339] = {.lex_state = 66}, + [3340] = {.lex_state = 66}, + [3341] = {.lex_state = 66}, + [3342] = {.lex_state = 66}, + [3343] = {.lex_state = 66}, + [3344] = {.lex_state = 66}, + [3345] = {.lex_state = 76}, + [3346] = {.lex_state = 66}, + [3347] = {.lex_state = 66}, + [3348] = {.lex_state = 66}, + [3349] = {.lex_state = 66}, + [3350] = {.lex_state = 66}, + [3351] = {.lex_state = 76}, + [3352] = {.lex_state = 66}, + [3353] = {.lex_state = 66}, + [3354] = {.lex_state = 66}, + [3355] = {.lex_state = 66}, + [3356] = {.lex_state = 117}, + [3357] = {.lex_state = 66}, + [3358] = {.lex_state = 74}, + [3359] = {.lex_state = 66}, + [3360] = {.lex_state = 74}, + [3361] = {.lex_state = 66}, + [3362] = {.lex_state = 66}, + [3363] = {.lex_state = 74}, + [3364] = {.lex_state = 66}, + [3365] = {.lex_state = 74}, + [3366] = {.lex_state = 66}, + [3367] = {.lex_state = 74}, + [3368] = {.lex_state = 66}, + [3369] = {.lex_state = 74}, + [3370] = {.lex_state = 63}, + [3371] = {.lex_state = 74}, + [3372] = {.lex_state = 76}, + [3373] = {.lex_state = 63}, + [3374] = {.lex_state = 63}, + [3375] = {.lex_state = 63}, + [3376] = {.lex_state = 63}, + [3377] = {.lex_state = 74}, + [3378] = {.lex_state = 74}, + [3379] = {.lex_state = 117}, + [3380] = {.lex_state = 117}, + [3381] = {.lex_state = 66}, + [3382] = {.lex_state = 63}, + [3383] = {.lex_state = 63}, + [3384] = {.lex_state = 76}, + [3385] = {.lex_state = 63}, + [3386] = {.lex_state = 63}, + [3387] = {.lex_state = 63}, + [3388] = {.lex_state = 63}, + [3389] = {.lex_state = 63}, + [3390] = {.lex_state = 74}, + [3391] = {.lex_state = 74}, + [3392] = {.lex_state = 63}, + [3393] = {.lex_state = 63}, + [3394] = {.lex_state = 63}, + [3395] = {.lex_state = 117}, + [3396] = {.lex_state = 76}, + [3397] = {.lex_state = 63}, + [3398] = {.lex_state = 63}, + [3399] = {.lex_state = 63}, + [3400] = {.lex_state = 63}, + [3401] = {.lex_state = 63}, + [3402] = {.lex_state = 63}, + [3403] = {.lex_state = 74}, + [3404] = {.lex_state = 63}, + [3405] = {.lex_state = 63}, + [3406] = {.lex_state = 63}, + [3407] = {.lex_state = 63}, + [3408] = {.lex_state = 117}, + [3409] = {.lex_state = 117}, + [3410] = {.lex_state = 63}, + [3411] = {.lex_state = 63}, + [3412] = {.lex_state = 63}, + [3413] = {.lex_state = 63}, + [3414] = {.lex_state = 63}, + [3415] = {.lex_state = 63}, + [3416] = {.lex_state = 63}, + [3417] = {.lex_state = 63}, + [3418] = {.lex_state = 63}, + [3419] = {.lex_state = 63}, + [3420] = {.lex_state = 63}, + [3421] = {.lex_state = 63}, + [3422] = {.lex_state = 63}, + [3423] = {.lex_state = 117}, + [3424] = {.lex_state = 76}, + [3425] = {.lex_state = 63}, + [3426] = {.lex_state = 69}, + [3427] = {.lex_state = 63}, + [3428] = {.lex_state = 63}, + [3429] = {.lex_state = 63}, + [3430] = {.lex_state = 63}, + [3431] = {.lex_state = 74}, + [3432] = {.lex_state = 63}, + [3433] = {.lex_state = 63}, + [3434] = {.lex_state = 63}, + [3435] = {.lex_state = 63}, + [3436] = {.lex_state = 76}, + [3437] = {.lex_state = 117}, + [3438] = {.lex_state = 74}, + [3439] = {.lex_state = 63}, + [3440] = {.lex_state = 63}, + [3441] = {.lex_state = 69}, + [3442] = {.lex_state = 69}, + [3443] = {.lex_state = 63}, + [3444] = {.lex_state = 69}, + [3445] = {.lex_state = 63}, + [3446] = {.lex_state = 63}, + [3447] = {.lex_state = 63}, + [3448] = {.lex_state = 63}, + [3449] = {.lex_state = 63}, + [3450] = {.lex_state = 69}, + [3451] = {.lex_state = 69}, + [3452] = {.lex_state = 63}, + [3453] = {.lex_state = 63}, + [3454] = {.lex_state = 63}, + [3455] = {.lex_state = 63}, + [3456] = {.lex_state = 63}, + [3457] = {.lex_state = 117}, + [3458] = {.lex_state = 76}, + [3459] = {.lex_state = 117}, + [3460] = {.lex_state = 63}, + [3461] = {.lex_state = 63}, + [3462] = {.lex_state = 63}, + [3463] = {.lex_state = 69}, + [3464] = {.lex_state = 69}, + [3465] = {.lex_state = 63}, + [3466] = {.lex_state = 63}, + [3467] = {.lex_state = 69}, + [3468] = {.lex_state = 63}, + [3469] = {.lex_state = 63}, + [3470] = {.lex_state = 63}, + [3471] = {.lex_state = 117}, + [3472] = {.lex_state = 63}, + [3473] = {.lex_state = 63}, + [3474] = {.lex_state = 63}, + [3475] = {.lex_state = 63}, + [3476] = {.lex_state = 69}, + [3477] = {.lex_state = 117}, + [3478] = {.lex_state = 117}, + [3479] = {.lex_state = 63}, + [3480] = {.lex_state = 63}, + [3481] = {.lex_state = 63}, + [3482] = {.lex_state = 117}, + [3483] = {.lex_state = 117}, + [3484] = {.lex_state = 63}, + [3485] = {.lex_state = 76}, + [3486] = {.lex_state = 76}, + [3487] = {.lex_state = 117}, + [3488] = {.lex_state = 76}, + [3489] = {.lex_state = 76}, + [3490] = {.lex_state = 76}, + [3491] = {.lex_state = 76}, + [3492] = {.lex_state = 76}, + [3493] = {.lex_state = 76}, + [3494] = {.lex_state = 76}, + [3495] = {.lex_state = 76}, + [3496] = {.lex_state = 63}, + [3497] = {.lex_state = 76}, + [3498] = {.lex_state = 76}, + [3499] = {.lex_state = 76}, + [3500] = {.lex_state = 76}, + [3501] = {.lex_state = 76}, + [3502] = {.lex_state = 76}, + [3503] = {.lex_state = 76}, + [3504] = {.lex_state = 69}, + [3505] = {.lex_state = 76}, + [3506] = {.lex_state = 69}, + [3507] = {.lex_state = 76}, + [3508] = {.lex_state = 76}, + [3509] = {.lex_state = 69}, + [3510] = {.lex_state = 76}, + [3511] = {.lex_state = 69}, + [3512] = {.lex_state = 76}, + [3513] = {.lex_state = 69}, + [3514] = {.lex_state = 69}, + [3515] = {.lex_state = 69}, + [3516] = {.lex_state = 76}, + [3517] = {.lex_state = 69}, + [3518] = {.lex_state = 76}, + [3519] = {.lex_state = 76}, + [3520] = {.lex_state = 74}, + [3521] = {.lex_state = 80}, + [3522] = {.lex_state = 76}, + [3523] = {.lex_state = 69}, + [3524] = {.lex_state = 69}, + [3525] = {.lex_state = 76}, + [3526] = {.lex_state = 76}, + [3527] = {.lex_state = 76}, + [3528] = {.lex_state = 76}, + [3529] = {.lex_state = 76}, + [3530] = {.lex_state = 76}, + [3531] = {.lex_state = 76}, + [3532] = {.lex_state = 76}, + [3533] = {.lex_state = 76}, + [3534] = {.lex_state = 76}, + [3535] = {.lex_state = 69}, + [3536] = {.lex_state = 69}, + [3537] = {.lex_state = 69}, + [3538] = {.lex_state = 76}, + [3539] = {.lex_state = 69}, + [3540] = {.lex_state = 69}, + [3541] = {.lex_state = 69}, + [3542] = {.lex_state = 69}, + [3543] = {.lex_state = 69}, + [3544] = {.lex_state = 69}, + [3545] = {.lex_state = 69}, + [3546] = {.lex_state = 69}, + [3547] = {.lex_state = 69}, + [3548] = {.lex_state = 69}, + [3549] = {.lex_state = 93}, + [3550] = {.lex_state = 69}, + [3551] = {.lex_state = 69}, + [3552] = {.lex_state = 69}, + [3553] = {.lex_state = 76}, + [3554] = {.lex_state = 69}, + [3555] = {.lex_state = 69}, + [3556] = {.lex_state = 80}, + [3557] = {.lex_state = 76}, + [3558] = {.lex_state = 93}, + [3559] = {.lex_state = 76}, + [3560] = {.lex_state = 69}, + [3561] = {.lex_state = 69}, + [3562] = {.lex_state = 69}, + [3563] = {.lex_state = 69}, + [3564] = {.lex_state = 69}, + [3565] = {.lex_state = 69}, + [3566] = {.lex_state = 69}, + [3567] = {.lex_state = 76}, + [3568] = {.lex_state = 74}, + [3569] = {.lex_state = 76}, + [3570] = {.lex_state = 69}, + [3571] = {.lex_state = 69}, + [3572] = {.lex_state = 69}, + [3573] = {.lex_state = 69}, + [3574] = {.lex_state = 76}, + [3575] = {.lex_state = 69}, + [3576] = {.lex_state = 69}, + [3577] = {.lex_state = 69}, + [3578] = {.lex_state = 69}, + [3579] = {.lex_state = 69}, + [3580] = {.lex_state = 69}, + [3581] = {.lex_state = 69}, + [3582] = {.lex_state = 69}, + [3583] = {.lex_state = 69}, + [3584] = {.lex_state = 69}, + [3585] = {.lex_state = 69}, + [3586] = {.lex_state = 69}, + [3587] = {.lex_state = 69}, + [3588] = {.lex_state = 76}, + [3589] = {.lex_state = 69}, + [3590] = {.lex_state = 69}, + [3591] = {.lex_state = 76}, + [3592] = {.lex_state = 69}, + [3593] = {.lex_state = 69}, + [3594] = {.lex_state = 69}, + [3595] = {.lex_state = 69}, + [3596] = {.lex_state = 69}, + [3597] = {.lex_state = 69}, + [3598] = {.lex_state = 76}, + [3599] = {.lex_state = 69}, + [3600] = {.lex_state = 69}, + [3601] = {.lex_state = 69}, + [3602] = {.lex_state = 69}, + [3603] = {.lex_state = 69}, + [3604] = {.lex_state = 69}, + [3605] = {.lex_state = 69}, + [3606] = {.lex_state = 69}, + [3607] = {.lex_state = 3}, + [3608] = {.lex_state = 3}, + [3609] = {.lex_state = 3}, + [3610] = {.lex_state = 3}, + [3611] = {.lex_state = 3}, + [3612] = {.lex_state = 3}, + [3613] = {.lex_state = 3}, + [3614] = {.lex_state = 3}, + [3615] = {.lex_state = 3}, + [3616] = {.lex_state = 3}, + [3617] = {.lex_state = 3}, + [3618] = {.lex_state = 3}, + [3619] = {.lex_state = 3}, + [3620] = {.lex_state = 3}, + [3621] = {.lex_state = 3}, + [3622] = {.lex_state = 3}, + [3623] = {.lex_state = 3}, + [3624] = {.lex_state = 3}, + [3625] = {.lex_state = 3}, + [3626] = {.lex_state = 3}, + [3627] = {.lex_state = 3}, + [3628] = {.lex_state = 3}, + [3629] = {.lex_state = 3}, + [3630] = {.lex_state = 3}, + [3631] = {.lex_state = 3}, + [3632] = {.lex_state = 3}, + [3633] = {.lex_state = 3}, + [3634] = {.lex_state = 3}, + [3635] = {.lex_state = 3}, + [3636] = {.lex_state = 3}, + [3637] = {.lex_state = 3}, + [3638] = {.lex_state = 3}, + [3639] = {.lex_state = 3}, + [3640] = {.lex_state = 3}, + [3641] = {.lex_state = 3}, + [3642] = {.lex_state = 43}, + [3643] = {.lex_state = 59}, + [3644] = {.lex_state = 64}, + [3645] = {.lex_state = 59}, + [3646] = {.lex_state = 67}, + [3647] = {.lex_state = 70}, + [3648] = {.lex_state = 50}, + [3649] = {.lex_state = 70}, + [3650] = {.lex_state = 64}, + [3651] = {.lex_state = 59}, + [3652] = {.lex_state = 67}, + [3653] = {.lex_state = 70}, + [3654] = {.lex_state = 67}, + [3655] = {.lex_state = 59}, + [3656] = {.lex_state = 64}, + [3657] = {.lex_state = 64}, + [3658] = {.lex_state = 59}, + [3659] = {.lex_state = 70}, + [3660] = {.lex_state = 67}, + [3661] = {.lex_state = 67}, + [3662] = {.lex_state = 70}, + [3663] = {.lex_state = 59}, + [3664] = {.lex_state = 43}, + [3665] = {.lex_state = 64}, + [3666] = {.lex_state = 67}, + [3667] = {.lex_state = 50}, + [3668] = {.lex_state = 64}, + [3669] = {.lex_state = 59}, + [3670] = {.lex_state = 67}, + [3671] = {.lex_state = 70}, + [3672] = {.lex_state = 70}, + [3673] = {.lex_state = 64}, + [3674] = {.lex_state = 67}, + [3675] = {.lex_state = 50}, + [3676] = {.lex_state = 59}, + [3677] = {.lex_state = 64}, + [3678] = {.lex_state = 59}, + [3679] = {.lex_state = 67}, + [3680] = {.lex_state = 70}, + [3681] = {.lex_state = 59}, + [3682] = {.lex_state = 67}, + [3683] = {.lex_state = 64}, + [3684] = {.lex_state = 70}, + [3685] = {.lex_state = 70}, + [3686] = {.lex_state = 59}, + [3687] = {.lex_state = 70}, + [3688] = {.lex_state = 67}, + [3689] = {.lex_state = 59}, + [3690] = {.lex_state = 64}, + [3691] = {.lex_state = 64}, + [3692] = {.lex_state = 59}, + [3693] = {.lex_state = 43}, + [3694] = {.lex_state = 67}, + [3695] = {.lex_state = 50}, + [3696] = {.lex_state = 70}, + [3697] = {.lex_state = 43}, + [3698] = {.lex_state = 70}, + [3699] = {.lex_state = 67}, + [3700] = {.lex_state = 59}, + [3701] = {.lex_state = 50}, + [3702] = {.lex_state = 50}, + [3703] = {.lex_state = 50}, + [3704] = {.lex_state = 43}, + [3705] = {.lex_state = 64}, + [3706] = {.lex_state = 64}, + [3707] = {.lex_state = 64}, + [3708] = {.lex_state = 59}, + [3709] = {.lex_state = 67}, + [3710] = {.lex_state = 70}, + [3711] = {.lex_state = 59}, + [3712] = {.lex_state = 67}, + [3713] = {.lex_state = 50}, + [3714] = {.lex_state = 64}, + [3715] = {.lex_state = 59}, + [3716] = {.lex_state = 64}, + [3717] = {.lex_state = 59}, + [3718] = {.lex_state = 67}, + [3719] = {.lex_state = 70}, + [3720] = {.lex_state = 67}, + [3721] = {.lex_state = 70}, + [3722] = {.lex_state = 67}, + [3723] = {.lex_state = 59}, + [3724] = {.lex_state = 64}, + [3725] = {.lex_state = 70}, + [3726] = {.lex_state = 43}, + [3727] = {.lex_state = 43}, + [3728] = {.lex_state = 50}, + [3729] = {.lex_state = 70}, + [3730] = {.lex_state = 64}, + [3731] = {.lex_state = 59}, + [3732] = {.lex_state = 64}, + [3733] = {.lex_state = 70}, + [3734] = {.lex_state = 70}, + [3735] = {.lex_state = 64}, + [3736] = {.lex_state = 43}, + [3737] = {.lex_state = 64}, + [3738] = {.lex_state = 59}, + [3739] = {.lex_state = 59}, + [3740] = {.lex_state = 67}, + [3741] = {.lex_state = 70}, + [3742] = {.lex_state = 67}, + [3743] = {.lex_state = 64}, + [3744] = {.lex_state = 70}, + [3745] = {.lex_state = 67}, + [3746] = {.lex_state = 70}, + [3747] = {.lex_state = 70}, + [3748] = {.lex_state = 70}, + [3749] = {.lex_state = 50}, + [3750] = {.lex_state = 50}, + [3751] = {.lex_state = 70}, [3752] = {.lex_state = 43}, - [3753] = {.lex_state = 49}, - [3754] = {.lex_state = 60}, - [3755] = {.lex_state = 68}, - [3756] = {.lex_state = 60}, - [3757] = {.lex_state = 71}, - [3758] = {.lex_state = 65}, - [3759] = {.lex_state = 60}, - [3760] = {.lex_state = 71}, - [3761] = {.lex_state = 68}, - [3762] = {.lex_state = 71}, - [3763] = {.lex_state = 65}, - [3764] = {.lex_state = 65}, - [3765] = {.lex_state = 71}, - [3766] = {.lex_state = 43}, - [3767] = {.lex_state = 65}, - [3768] = {.lex_state = 71}, - [3769] = {.lex_state = 68}, - [3770] = {.lex_state = 60}, - [3771] = {.lex_state = 49}, - [3772] = {.lex_state = 49}, - [3773] = {.lex_state = 60}, - [3774] = {.lex_state = 68}, - [3775] = {.lex_state = 71}, - [3776] = {.lex_state = 65}, - [3777] = {.lex_state = 65}, - [3778] = {.lex_state = 68}, - [3779] = {.lex_state = 60}, - [3780] = {.lex_state = 43}, - [3781] = {.lex_state = 43}, - [3782] = {.lex_state = 60}, - [3783] = {.lex_state = 68}, - [3784] = {.lex_state = 71}, - [3785] = {.lex_state = 65}, - [3786] = {.lex_state = 49}, - [3787] = {.lex_state = 43}, - [3788] = {.lex_state = 43}, - [3789] = {.lex_state = 60}, - [3790] = {.lex_state = 68}, - [3791] = {.lex_state = 71}, - [3792] = {.lex_state = 65}, - [3793] = {.lex_state = 60}, - [3794] = {.lex_state = 49}, - [3795] = {.lex_state = 49}, - [3796] = {.lex_state = 49}, - [3797] = {.lex_state = 68}, - [3798] = {.lex_state = 65}, - [3799] = {.lex_state = 60}, - [3800] = {.lex_state = 68}, - [3801] = {.lex_state = 71}, - [3802] = {.lex_state = 65}, + [3753] = {.lex_state = 70}, + [3754] = {.lex_state = 70}, + [3755] = {.lex_state = 64}, + [3756] = {.lex_state = 43}, + [3757] = {.lex_state = 67}, + [3758] = {.lex_state = 59}, + [3759] = {.lex_state = 64}, + [3760] = {.lex_state = 67}, + [3761] = {.lex_state = 43}, + [3762] = {.lex_state = 59}, + [3763] = {.lex_state = 50}, + [3764] = {.lex_state = 64}, + [3765] = {.lex_state = 67}, + [3766] = {.lex_state = 70}, + [3767] = {.lex_state = 67}, + [3768] = {.lex_state = 59}, + [3769] = {.lex_state = 64}, + [3770] = {.lex_state = 50}, + [3771] = {.lex_state = 59}, + [3772] = {.lex_state = 67}, + [3773] = {.lex_state = 67}, + [3774] = {.lex_state = 70}, + [3775] = {.lex_state = 70}, + [3776] = {.lex_state = 67}, + [3777] = {.lex_state = 59}, + [3778] = {.lex_state = 70}, + [3779] = {.lex_state = 59}, + [3780] = {.lex_state = 67}, + [3781] = {.lex_state = 59}, + [3782] = {.lex_state = 64}, + [3783] = {.lex_state = 43}, + [3784] = {.lex_state = 64}, + [3785] = {.lex_state = 50}, + [3786] = {.lex_state = 67}, + [3787] = {.lex_state = 70}, + [3788] = {.lex_state = 64}, + [3789] = {.lex_state = 50}, + [3790] = {.lex_state = 59}, + [3791] = {.lex_state = 70}, + [3792] = {.lex_state = 64}, + [3793] = {.lex_state = 64}, + [3794] = {.lex_state = 67}, + [3795] = {.lex_state = 59}, + [3796] = {.lex_state = 64}, + [3797] = {.lex_state = 59}, + [3798] = {.lex_state = 67}, + [3799] = {.lex_state = 67}, + [3800] = {.lex_state = 70}, + [3801] = {.lex_state = 64}, + [3802] = {.lex_state = 50}, [3803] = {.lex_state = 43}, - [3804] = {.lex_state = 49}, - [3805] = {.lex_state = 60}, - [3806] = {.lex_state = 68}, - [3807] = {.lex_state = 71}, - [3808] = {.lex_state = 71}, - [3809] = {.lex_state = 71}, - [3810] = {.lex_state = 68}, - [3811] = {.lex_state = 60}, - [3812] = {.lex_state = 65}, - [3813] = {.lex_state = 65}, - [3814] = {.lex_state = 71}, - [3815] = {.lex_state = 65}, - [3816] = {.lex_state = 65}, - [3817] = {.lex_state = 68}, - [3818] = {.lex_state = 71}, - [3819] = {.lex_state = 60}, - [3820] = {.lex_state = 68}, - [3821] = {.lex_state = 49}, - [3822] = {.lex_state = 49}, - [3823] = {.lex_state = 43}, - [3824] = {.lex_state = 43}, - [3825] = {.lex_state = 60}, - [3826] = {.lex_state = 68}, - [3827] = {.lex_state = 71}, - [3828] = {.lex_state = 65}, - [3829] = {.lex_state = 49}, - [3830] = {.lex_state = 43}, - [3831] = {.lex_state = 65}, - [3832] = {.lex_state = 71}, - [3833] = {.lex_state = 65}, - [3834] = {.lex_state = 68}, - [3835] = {.lex_state = 49}, - [3836] = {.lex_state = 71}, - [3837] = {.lex_state = 65}, - [3838] = {.lex_state = 68}, - [3839] = {.lex_state = 49}, - [3840] = {.lex_state = 68}, - [3841] = {.lex_state = 60}, - [3842] = {.lex_state = 65}, - [3843] = {.lex_state = 43}, - [3844] = {.lex_state = 65}, - [3845] = {.lex_state = 60}, + [3804] = {.lex_state = 64}, + [3805] = {.lex_state = 70}, + [3806] = {.lex_state = 50}, + [3807] = {.lex_state = 59}, + [3808] = {.lex_state = 43}, + [3809] = {.lex_state = 67}, + [3810] = {.lex_state = 59}, + [3811] = {.lex_state = 64}, + [3812] = {.lex_state = 43}, + [3813] = {.lex_state = 50}, + [3814] = {.lex_state = 67}, + [3815] = {.lex_state = 67}, + [3816] = {.lex_state = 70}, + [3817] = {.lex_state = 50}, + [3818] = {.lex_state = 64}, + [3819] = {.lex_state = 64}, + [3820] = {.lex_state = 59}, + [3821] = {.lex_state = 50}, + [3822] = {.lex_state = 43}, + [3823] = {.lex_state = 70}, + [3824] = {.lex_state = 67}, + [3825] = {.lex_state = 59}, + [3826] = {.lex_state = 64}, + [3827] = {.lex_state = 67}, + [3828] = {.lex_state = 70}, + [3829] = {.lex_state = 43}, + [3830] = {.lex_state = 64}, + [3831] = {.lex_state = 64}, + [3832] = {.lex_state = 59}, + [3833] = {.lex_state = 67}, + [3834] = {.lex_state = 70}, + [3835] = {.lex_state = 59}, + [3836] = {.lex_state = 43}, + [3837] = {.lex_state = 50}, + [3838] = {.lex_state = 64}, + [3839] = {.lex_state = 70}, + [3840] = {.lex_state = 70}, + [3841] = {.lex_state = 67}, + [3842] = {.lex_state = 50}, + [3843] = {.lex_state = 59}, + [3844] = {.lex_state = 64}, + [3845] = {.lex_state = 50}, [3846] = {.lex_state = 43}, - [3847] = {.lex_state = 65}, - [3848] = {.lex_state = 71}, - [3849] = {.lex_state = 60}, - [3850] = {.lex_state = 49}, - [3851] = {.lex_state = 60}, - [3852] = {.lex_state = 68}, - [3853] = {.lex_state = 71}, - [3854] = {.lex_state = 65}, - [3855] = {.lex_state = 49}, - [3856] = {.lex_state = 43}, - [3857] = {.lex_state = 65}, - [3858] = {.lex_state = 71}, - [3859] = {.lex_state = 60}, - [3860] = {.lex_state = 68}, - [3861] = {.lex_state = 71}, - [3862] = {.lex_state = 65}, - [3863] = {.lex_state = 68}, - [3864] = {.lex_state = 68}, - [3865] = {.lex_state = 49}, - [3866] = {.lex_state = 71}, - [3867] = {.lex_state = 60}, - [3868] = {.lex_state = 68}, - [3869] = {.lex_state = 71}, - [3870] = {.lex_state = 60}, - [3871] = {.lex_state = 68}, - [3872] = {.lex_state = 71}, - [3873] = {.lex_state = 65}, - [3874] = {.lex_state = 43}, - [3875] = {.lex_state = 49}, - [3876] = {.lex_state = 43}, - [3877] = {.lex_state = 60}, - [3878] = {.lex_state = 43}, - [3879] = {.lex_state = 65}, - [3880] = {.lex_state = 71}, - [3881] = {.lex_state = 68}, - [3882] = {.lex_state = 60}, - [3883] = {.lex_state = 68}, - [3884] = {.lex_state = 71}, - [3885] = {.lex_state = 65}, - [3886] = {.lex_state = 60}, - [3887] = {.lex_state = 60}, - [3888] = {.lex_state = 68}, - [3889] = {.lex_state = 68}, - [3890] = {.lex_state = 43}, - [3891] = {.lex_state = 71}, - [3892] = {.lex_state = 65}, - [3893] = {.lex_state = 60}, - [3894] = {.lex_state = 71}, - [3895] = {.lex_state = 68}, - [3896] = {.lex_state = 71}, - [3897] = {.lex_state = 65}, - [3898] = {.lex_state = 49}, - [3899] = {.lex_state = 43}, - [3900] = {.lex_state = 60}, - [3901] = {.lex_state = 68}, - [3902] = {.lex_state = 49}, - [3903] = {.lex_state = 71}, - [3904] = {.lex_state = 65}, - [3905] = {.lex_state = 60}, - [3906] = {.lex_state = 49}, - [3907] = {.lex_state = 68}, - [3908] = {.lex_state = 68}, - [3909] = {.lex_state = 65}, - [3910] = {.lex_state = 71}, - [3911] = {.lex_state = 68}, - [3912] = {.lex_state = 60}, - [3913] = {.lex_state = 60}, - [3914] = {.lex_state = 65}, - [3915] = {.lex_state = 60}, - [3916] = {.lex_state = 68}, - [3917] = {.lex_state = 71}, - [3918] = {.lex_state = 65}, - [3919] = {.lex_state = 71}, + [3847] = {.lex_state = 67}, + [3848] = {.lex_state = 70}, + [3849] = {.lex_state = 67}, + [3850] = {.lex_state = 59}, + [3851] = {.lex_state = 64}, + [3852] = {.lex_state = 59}, + [3853] = {.lex_state = 50}, + [3854] = {.lex_state = 64}, + [3855] = {.lex_state = 59}, + [3856] = {.lex_state = 64}, + [3857] = {.lex_state = 59}, + [3858] = {.lex_state = 67}, + [3859] = {.lex_state = 70}, + [3860] = {.lex_state = 64}, + [3861] = {.lex_state = 50}, + [3862] = {.lex_state = 59}, + [3863] = {.lex_state = 67}, + [3864] = {.lex_state = 43}, + [3865] = {.lex_state = 67}, + [3866] = {.lex_state = 70}, + [3867] = {.lex_state = 67}, + [3868] = {.lex_state = 43}, + [3869] = {.lex_state = 70}, + [3870] = {.lex_state = 43}, + [3871] = {.lex_state = 50}, + [3872] = {.lex_state = 64}, + [3873] = {.lex_state = 59}, + [3874] = {.lex_state = 67}, + [3875] = {.lex_state = 70}, + [3876] = {.lex_state = 70}, + [3877] = {.lex_state = 67}, + [3878] = {.lex_state = 70}, + [3879] = {.lex_state = 67}, + [3880] = {.lex_state = 59}, + [3881] = {.lex_state = 59}, + [3882] = {.lex_state = 64}, + [3883] = {.lex_state = 67}, + [3884] = {.lex_state = 64}, + [3885] = {.lex_state = 43}, + [3886] = {.lex_state = 64}, + [3887] = {.lex_state = 64}, + [3888] = {.lex_state = 59}, + [3889] = {.lex_state = 67}, + [3890] = {.lex_state = 70}, + [3891] = {.lex_state = 50}, + [3892] = {.lex_state = 70}, + [3893] = {.lex_state = 43}, + [3894] = {.lex_state = 59}, + [3895] = {.lex_state = 67}, + [3896] = {.lex_state = 70}, + [3897] = {.lex_state = 67}, + [3898] = {.lex_state = 59}, + [3899] = {.lex_state = 64}, + [3900] = {.lex_state = 43}, + [3901] = {.lex_state = 59}, + [3902] = {.lex_state = 43}, + [3903] = {.lex_state = 70}, + [3904] = {.lex_state = 50}, + [3905] = {.lex_state = 43}, + [3906] = {.lex_state = 50}, + [3907] = {.lex_state = 64}, + [3908] = {.lex_state = 59}, + [3909] = {.lex_state = 67}, + [3910] = {.lex_state = 70}, + [3911] = {.lex_state = 43}, + [3912] = {.lex_state = 70}, + [3913] = {.lex_state = 70}, + [3914] = {.lex_state = 50}, + [3915] = {.lex_state = 70}, + [3916] = {.lex_state = 67}, + [3917] = {.lex_state = 59}, + [3918] = {.lex_state = 64}, + [3919] = {.lex_state = 50}, [3920] = {.lex_state = 43}, - [3921] = {.lex_state = 49}, - [3922] = {.lex_state = 60}, - [3923] = {.lex_state = 68}, - [3924] = {.lex_state = 71}, - [3925] = {.lex_state = 65}, - [3926] = {.lex_state = 43}, - [3927] = {.lex_state = 71}, - [3928] = {.lex_state = 65}, - [3929] = {.lex_state = 71}, - [3930] = {.lex_state = 68}, - [3931] = {.lex_state = 68}, - [3932] = {.lex_state = 60}, - [3933] = {.lex_state = 43}, - [3934] = {.lex_state = 43}, - [3935] = {.lex_state = 60}, - [3936] = {.lex_state = 49}, - [3937] = {.lex_state = 60}, - [3938] = {.lex_state = 68}, - [3939] = {.lex_state = 71}, - [3940] = {.lex_state = 65}, - [3941] = {.lex_state = 49}, - [3942] = {.lex_state = 43}, - [3943] = {.lex_state = 65}, - [3944] = {.lex_state = 60}, - [3945] = {.lex_state = 68}, - [3946] = {.lex_state = 71}, - [3947] = {.lex_state = 65}, - [3948] = {.lex_state = 49}, - [3949] = {.lex_state = 43}, - [3950] = {.lex_state = 65}, - [3951] = {.lex_state = 71}, - [3952] = {.lex_state = 68}, - [3953] = {.lex_state = 60}, - [3954] = {.lex_state = 65}, - [3955] = {.lex_state = 71}, - [3956] = {.lex_state = 65}, - [3957] = {.lex_state = 68}, - [3958] = {.lex_state = 60}, - [3959] = {.lex_state = 71}, - [3960] = {.lex_state = 68}, - [3961] = {.lex_state = 60}, - [3962] = {.lex_state = 44}, - [3963] = {.lex_state = 44}, - [3964] = {.lex_state = 44}, - [3965] = {.lex_state = 44}, - [3966] = {.lex_state = 44}, - [3967] = {.lex_state = 4}, - [3968] = {.lex_state = 4}, - [3969] = {.lex_state = 44}, - [3970] = {.lex_state = 44}, - [3971] = {.lex_state = 4}, - [3972] = {.lex_state = 44}, - [3973] = {.lex_state = 4}, - [3974] = {.lex_state = 4}, - [3975] = {.lex_state = 44}, - [3976] = {.lex_state = 44}, - [3977] = {.lex_state = 4}, - [3978] = {.lex_state = 4}, - [3979] = {.lex_state = 44}, - [3980] = {.lex_state = 44}, - [3981] = {.lex_state = 44}, - [3982] = {.lex_state = 44}, - [3983] = {.lex_state = 4}, - [3984] = {.lex_state = 44}, - [3985] = {.lex_state = 44}, - [3986] = {.lex_state = 4}, - [3987] = {.lex_state = 4}, - [3988] = {.lex_state = 44}, - [3989] = {.lex_state = 4}, - [3990] = {.lex_state = 44}, - [3991] = {.lex_state = 44}, - [3992] = {.lex_state = 44}, - [3993] = {.lex_state = 44}, - [3994] = {.lex_state = 4}, - [3995] = {.lex_state = 44}, - [3996] = {.lex_state = 4}, + [3921] = {.lex_state = 67}, + [3922] = {.lex_state = 70}, + [3923] = {.lex_state = 67}, + [3924] = {.lex_state = 59}, + [3925] = {.lex_state = 64}, + [3926] = {.lex_state = 59}, + [3927] = {.lex_state = 64}, + [3928] = {.lex_state = 64}, + [3929] = {.lex_state = 59}, + [3930] = {.lex_state = 67}, + [3931] = {.lex_state = 70}, + [3932] = {.lex_state = 43}, + [3933] = {.lex_state = 59}, + [3934] = {.lex_state = 67}, + [3935] = {.lex_state = 64}, + [3936] = {.lex_state = 70}, + [3937] = {.lex_state = 64}, + [3938] = {.lex_state = 70}, + [3939] = {.lex_state = 67}, + [3940] = {.lex_state = 64}, + [3941] = {.lex_state = 59}, + [3942] = {.lex_state = 67}, + [3943] = {.lex_state = 70}, + [3944] = {.lex_state = 59}, + [3945] = {.lex_state = 64}, + [3946] = {.lex_state = 67}, + [3947] = {.lex_state = 70}, + [3948] = {.lex_state = 67}, + [3949] = {.lex_state = 59}, + [3950] = {.lex_state = 59}, + [3951] = {.lex_state = 67}, + [3952] = {.lex_state = 70}, + [3953] = {.lex_state = 64}, + [3954] = {.lex_state = 43}, + [3955] = {.lex_state = 43}, + [3956] = {.lex_state = 50}, + [3957] = {.lex_state = 59}, + [3958] = {.lex_state = 64}, + [3959] = {.lex_state = 64}, + [3960] = {.lex_state = 59}, + [3961] = {.lex_state = 67}, + [3962] = {.lex_state = 70}, + [3963] = {.lex_state = 70}, + [3964] = {.lex_state = 67}, + [3965] = {.lex_state = 59}, + [3966] = {.lex_state = 64}, + [3967] = {.lex_state = 50}, + [3968] = {.lex_state = 64}, + [3969] = {.lex_state = 70}, + [3970] = {.lex_state = 64}, + [3971] = {.lex_state = 59}, + [3972] = {.lex_state = 64}, + [3973] = {.lex_state = 59}, + [3974] = {.lex_state = 67}, + [3975] = {.lex_state = 70}, + [3976] = {.lex_state = 67}, + [3977] = {.lex_state = 59}, + [3978] = {.lex_state = 64}, + [3979] = {.lex_state = 64}, + [3980] = {.lex_state = 59}, + [3981] = {.lex_state = 67}, + [3982] = {.lex_state = 43}, + [3983] = {.lex_state = 70}, + [3984] = {.lex_state = 50}, + [3985] = {.lex_state = 70}, + [3986] = {.lex_state = 50}, + [3987] = {.lex_state = 67}, + [3988] = {.lex_state = 59}, + [3989] = {.lex_state = 64}, + [3990] = {.lex_state = 70}, + [3991] = {.lex_state = 59}, + [3992] = {.lex_state = 50}, + [3993] = {.lex_state = 67}, + [3994] = {.lex_state = 59}, + [3995] = {.lex_state = 43}, + [3996] = {.lex_state = 43}, [3997] = {.lex_state = 4}, - [3998] = {.lex_state = 44}, + [3998] = {.lex_state = 4}, [3999] = {.lex_state = 44}, - [4000] = {.lex_state = 44}, + [4000] = {.lex_state = 4}, [4001] = {.lex_state = 44}, - [4002] = {.lex_state = 4}, - [4003] = {.lex_state = 44}, + [4002] = {.lex_state = 44}, + [4003] = {.lex_state = 4}, [4004] = {.lex_state = 44}, - [4005] = {.lex_state = 4}, + [4005] = {.lex_state = 44}, [4006] = {.lex_state = 44}, - [4007] = {.lex_state = 4}, + [4007] = {.lex_state = 44}, [4008] = {.lex_state = 44}, [4009] = {.lex_state = 44}, - [4010] = {.lex_state = 44}, + [4010] = {.lex_state = 4}, [4011] = {.lex_state = 4}, [4012] = {.lex_state = 4}, [4013] = {.lex_state = 44}, - [4014] = {.lex_state = 44}, - [4015] = {.lex_state = 44}, + [4014] = {.lex_state = 4}, + [4015] = {.lex_state = 4}, [4016] = {.lex_state = 44}, [4017] = {.lex_state = 44}, [4018] = {.lex_state = 44}, - [4019] = {.lex_state = 44}, + [4019] = {.lex_state = 4}, [4020] = {.lex_state = 44}, [4021] = {.lex_state = 44}, [4022] = {.lex_state = 4}, - [4023] = {.lex_state = 4}, - [4024] = {.lex_state = 44}, - [4025] = {.lex_state = 44}, + [4023] = {.lex_state = 44}, + [4024] = {.lex_state = 4}, + [4025] = {.lex_state = 4}, [4026] = {.lex_state = 44}, [4027] = {.lex_state = 44}, [4028] = {.lex_state = 4}, [4029] = {.lex_state = 44}, [4030] = {.lex_state = 44}, - [4031] = {.lex_state = 4}, + [4031] = {.lex_state = 44}, [4032] = {.lex_state = 44}, [4033] = {.lex_state = 44}, [4034] = {.lex_state = 44}, [4035] = {.lex_state = 4}, [4036] = {.lex_state = 44}, - [4037] = {.lex_state = 4}, + [4037] = {.lex_state = 44}, [4038] = {.lex_state = 44}, - [4039] = {.lex_state = 44}, + [4039] = {.lex_state = 4}, [4040] = {.lex_state = 4}, [4041] = {.lex_state = 44}, - [4042] = {.lex_state = 44}, + [4042] = {.lex_state = 4}, [4043] = {.lex_state = 4}, - [4044] = {.lex_state = 4}, + [4044] = {.lex_state = 44}, [4045] = {.lex_state = 44}, [4046] = {.lex_state = 44}, [4047] = {.lex_state = 44}, [4048] = {.lex_state = 44}, - [4049] = {.lex_state = 44}, + [4049] = {.lex_state = 4}, [4050] = {.lex_state = 4}, - [4051] = {.lex_state = 4}, - [4052] = {.lex_state = 4}, - [4053] = {.lex_state = 44}, + [4051] = {.lex_state = 44}, + [4052] = {.lex_state = 44}, + [4053] = {.lex_state = 4}, [4054] = {.lex_state = 44}, - [4055] = {.lex_state = 4}, - [4056] = {.lex_state = 4}, + [4055] = {.lex_state = 44}, + [4056] = {.lex_state = 44}, [4057] = {.lex_state = 44}, [4058] = {.lex_state = 4}, - [4059] = {.lex_state = 44}, + [4059] = {.lex_state = 4}, [4060] = {.lex_state = 44}, [4061] = {.lex_state = 44}, - [4062] = {.lex_state = 44}, + [4062] = {.lex_state = 4}, [4063] = {.lex_state = 44}, [4064] = {.lex_state = 44}, - [4065] = {.lex_state = 4}, + [4065] = {.lex_state = 44}, [4066] = {.lex_state = 44}, - [4067] = {.lex_state = 43}, - [4068] = {.lex_state = 43}, - [4069] = {.lex_state = 50}, - [4070] = {.lex_state = 1}, - [4071] = {.lex_state = 49}, - [4072] = {.lex_state = 50}, - [4073] = {.lex_state = 1}, - [4074] = {.lex_state = 60}, - [4075] = {.lex_state = 50}, - [4076] = {.lex_state = 50}, - [4077] = {.lex_state = 61}, - [4078] = {.lex_state = 1}, - [4079] = {.lex_state = 61}, - [4080] = {.lex_state = 61}, - [4081] = {.lex_state = 1}, - [4082] = {.lex_state = 50}, + [4067] = {.lex_state = 44}, + [4068] = {.lex_state = 4}, + [4069] = {.lex_state = 44}, + [4070] = {.lex_state = 44}, + [4071] = {.lex_state = 44}, + [4072] = {.lex_state = 4}, + [4073] = {.lex_state = 44}, + [4074] = {.lex_state = 44}, + [4075] = {.lex_state = 4}, + [4076] = {.lex_state = 44}, + [4077] = {.lex_state = 44}, + [4078] = {.lex_state = 44}, + [4079] = {.lex_state = 44}, + [4080] = {.lex_state = 4}, + [4081] = {.lex_state = 44}, + [4082] = {.lex_state = 44}, [4083] = {.lex_state = 44}, - [4084] = {.lex_state = 61}, - [4085] = {.lex_state = 71}, - [4086] = {.lex_state = 50}, - [4087] = {.lex_state = 61}, - [4088] = {.lex_state = 1}, - [4089] = {.lex_state = 50}, - [4090] = {.lex_state = 1}, - [4091] = {.lex_state = 50}, - [4092] = {.lex_state = 61}, - [4093] = {.lex_state = 68}, - [4094] = {.lex_state = 65}, - [4095] = {.lex_state = 68}, - [4096] = {.lex_state = 71}, - [4097] = {.lex_state = 1}, - [4098] = {.lex_state = 1}, - [4099] = {.lex_state = 61}, - [4100] = {.lex_state = 61}, - [4101] = {.lex_state = 61}, - [4102] = {.lex_state = 1}, - [4103] = {.lex_state = 50}, - [4104] = {.lex_state = 50}, - [4105] = {.lex_state = 1}, - [4106] = {.lex_state = 50}, - [4107] = {.lex_state = 1}, - [4108] = {.lex_state = 50}, - [4109] = {.lex_state = 49}, - [4110] = {.lex_state = 61}, + [4084] = {.lex_state = 44}, + [4085] = {.lex_state = 44}, + [4086] = {.lex_state = 44}, + [4087] = {.lex_state = 44}, + [4088] = {.lex_state = 44}, + [4089] = {.lex_state = 44}, + [4090] = {.lex_state = 44}, + [4091] = {.lex_state = 4}, + [4092] = {.lex_state = 4}, + [4093] = {.lex_state = 4}, + [4094] = {.lex_state = 4}, + [4095] = {.lex_state = 44}, + [4096] = {.lex_state = 44}, + [4097] = {.lex_state = 44}, + [4098] = {.lex_state = 4}, + [4099] = {.lex_state = 44}, + [4100] = {.lex_state = 4}, + [4101] = {.lex_state = 44}, + [4102] = {.lex_state = 43}, + [4103] = {.lex_state = 43}, + [4104] = {.lex_state = 51}, + [4105] = {.lex_state = 60}, + [4106] = {.lex_state = 51}, + [4107] = {.lex_state = 60}, + [4108] = {.lex_state = 1}, + [4109] = {.lex_state = 51}, + [4110] = {.lex_state = 60}, [4111] = {.lex_state = 1}, - [4112] = {.lex_state = 65}, - [4113] = {.lex_state = 50}, - [4114] = {.lex_state = 1}, - [4115] = {.lex_state = 50}, - [4116] = {.lex_state = 50}, - [4117] = {.lex_state = 1}, - [4118] = {.lex_state = 1}, - [4119] = {.lex_state = 61}, - [4120] = {.lex_state = 61}, - [4121] = {.lex_state = 61}, - [4122] = {.lex_state = 61}, - [4123] = {.lex_state = 50}, - [4124] = {.lex_state = 61}, - [4125] = {.lex_state = 44}, - [4126] = {.lex_state = 61}, - [4127] = {.lex_state = 1}, - [4128] = {.lex_state = 1}, - [4129] = {.lex_state = 50}, - [4130] = {.lex_state = 50}, - [4131] = {.lex_state = 1}, - [4132] = {.lex_state = 50}, - [4133] = {.lex_state = 50}, - [4134] = {.lex_state = 50}, - [4135] = {.lex_state = 1}, - [4136] = {.lex_state = 61}, - [4137] = {.lex_state = 61}, - [4138] = {.lex_state = 50}, + [4112] = {.lex_state = 60}, + [4113] = {.lex_state = 70}, + [4114] = {.lex_state = 60}, + [4115] = {.lex_state = 1}, + [4116] = {.lex_state = 51}, + [4117] = {.lex_state = 51}, + [4118] = {.lex_state = 60}, + [4119] = {.lex_state = 1}, + [4120] = {.lex_state = 60}, + [4121] = {.lex_state = 1}, + [4122] = {.lex_state = 51}, + [4123] = {.lex_state = 67}, + [4124] = {.lex_state = 59}, + [4125] = {.lex_state = 50}, + [4126] = {.lex_state = 60}, + [4127] = {.lex_state = 64}, + [4128] = {.lex_state = 60}, + [4129] = {.lex_state = 1}, + [4130] = {.lex_state = 1}, + [4131] = {.lex_state = 51}, + [4132] = {.lex_state = 51}, + [4133] = {.lex_state = 51}, + [4134] = {.lex_state = 1}, + [4135] = {.lex_state = 51}, + [4136] = {.lex_state = 1}, + [4137] = {.lex_state = 67}, + [4138] = {.lex_state = 51}, [4139] = {.lex_state = 60}, - [4140] = {.lex_state = 1}, - [4141] = {.lex_state = 61}, - [4142] = {.lex_state = 61}, - [4143] = {.lex_state = 50}, - [4144] = {.lex_state = 61}, - [4145] = {.lex_state = 61}, - [4146] = {.lex_state = 61}, - [4147] = {.lex_state = 50}, - [4148] = {.lex_state = 1}, - [4149] = {.lex_state = 1}, - [4150] = {.lex_state = 61}, - [4151] = {.lex_state = 50}, - [4152] = {.lex_state = 1}, - [4153] = {.lex_state = 50}, - [4154] = {.lex_state = 61}, - [4155] = {.lex_state = 61}, - [4156] = {.lex_state = 50}, - [4157] = {.lex_state = 1}, - [4158] = {.lex_state = 1}, - [4159] = {.lex_state = 50}, - [4160] = {.lex_state = 1}, - [4161] = {.lex_state = 50}, - [4162] = {.lex_state = 50}, - [4163] = {.lex_state = 1}, - [4164] = {.lex_state = 50}, - [4165] = {.lex_state = 61}, - [4166] = {.lex_state = 1}, + [4140] = {.lex_state = 60}, + [4141] = {.lex_state = 51}, + [4142] = {.lex_state = 51}, + [4143] = {.lex_state = 1}, + [4144] = {.lex_state = 70}, + [4145] = {.lex_state = 51}, + [4146] = {.lex_state = 1}, + [4147] = {.lex_state = 60}, + [4148] = {.lex_state = 51}, + [4149] = {.lex_state = 51}, + [4150] = {.lex_state = 50}, + [4151] = {.lex_state = 1}, + [4152] = {.lex_state = 51}, + [4153] = {.lex_state = 59}, + [4154] = {.lex_state = 1}, + [4155] = {.lex_state = 1}, + [4156] = {.lex_state = 60}, + [4157] = {.lex_state = 60}, + [4158] = {.lex_state = 64}, + [4159] = {.lex_state = 60}, + [4160] = {.lex_state = 60}, + [4161] = {.lex_state = 1}, + [4162] = {.lex_state = 1}, + [4163] = {.lex_state = 60}, + [4164] = {.lex_state = 60}, + [4165] = {.lex_state = 51}, + [4166] = {.lex_state = 51}, [4167] = {.lex_state = 1}, - [4168] = {.lex_state = 61}, - [4169] = {.lex_state = 61}, - [4170] = {.lex_state = 61}, - [4171] = {.lex_state = 61}, + [4168] = {.lex_state = 1}, + [4169] = {.lex_state = 60}, + [4170] = {.lex_state = 60}, + [4171] = {.lex_state = 60}, [4172] = {.lex_state = 1}, - [4173] = {.lex_state = 50}, - [4174] = {.lex_state = 1}, - [4175] = {.lex_state = 61}, - [4176] = {.lex_state = 50}, - [4177] = {.lex_state = 61}, - [4178] = {.lex_state = 1}, - [4179] = {.lex_state = 1}, - [4180] = {.lex_state = 61}, - [4181] = {.lex_state = 61}, - [4182] = {.lex_state = 1}, - [4183] = {.lex_state = 50}, - [4184] = {.lex_state = 50}, + [4173] = {.lex_state = 51}, + [4174] = {.lex_state = 60}, + [4175] = {.lex_state = 60}, + [4176] = {.lex_state = 51}, + [4177] = {.lex_state = 1}, + [4178] = {.lex_state = 51}, + [4179] = {.lex_state = 51}, + [4180] = {.lex_state = 1}, + [4181] = {.lex_state = 1}, + [4182] = {.lex_state = 51}, + [4183] = {.lex_state = 51}, + [4184] = {.lex_state = 1}, [4185] = {.lex_state = 1}, - [4186] = {.lex_state = 1}, - [4187] = {.lex_state = 61}, - [4188] = {.lex_state = 51}, - [4189] = {.lex_state = 1}, - [4190] = {.lex_state = 51}, - [4191] = {.lex_state = 50}, - [4192] = {.lex_state = 52}, - [4193] = {.lex_state = 52}, - [4194] = {.lex_state = 50}, - [4195] = {.lex_state = 61}, - [4196] = {.lex_state = 40}, - [4197] = {.lex_state = 68}, - [4198] = {.lex_state = 68}, - [4199] = {.lex_state = 42}, - [4200] = {.lex_state = 42}, - [4201] = {.lex_state = 40}, - [4202] = {.lex_state = 40}, - [4203] = {.lex_state = 40}, - [4204] = {.lex_state = 40}, - [4205] = {.lex_state = 40}, - [4206] = {.lex_state = 40}, - [4207] = {.lex_state = 40}, - [4208] = {.lex_state = 40}, - [4209] = {.lex_state = 42}, - [4210] = {.lex_state = 42}, - [4211] = {.lex_state = 40}, - [4212] = {.lex_state = 42}, - [4213] = {.lex_state = 42}, - [4214] = {.lex_state = 40}, - [4215] = {.lex_state = 40}, - [4216] = {.lex_state = 42}, - [4217] = {.lex_state = 65}, - [4218] = {.lex_state = 42}, - [4219] = {.lex_state = 42}, - [4220] = {.lex_state = 40}, - [4221] = {.lex_state = 42}, - [4222] = {.lex_state = 40}, - [4223] = {.lex_state = 42}, - [4224] = {.lex_state = 42}, - [4225] = {.lex_state = 42}, - [4226] = {.lex_state = 40}, - [4227] = {.lex_state = 42}, - [4228] = {.lex_state = 42}, - [4229] = {.lex_state = 71}, - [4230] = {.lex_state = 42}, - [4231] = {.lex_state = 40}, - [4232] = {.lex_state = 40}, - [4233] = {.lex_state = 40}, - [4234] = {.lex_state = 40}, - [4235] = {.lex_state = 40}, - [4236] = {.lex_state = 42}, - [4237] = {.lex_state = 40}, - [4238] = {.lex_state = 42}, - [4239] = {.lex_state = 42}, - [4240] = {.lex_state = 40}, - [4241] = {.lex_state = 40}, - [4242] = {.lex_state = 40}, - [4243] = {.lex_state = 42}, - [4244] = {.lex_state = 40}, - [4245] = {.lex_state = 42}, - [4246] = {.lex_state = 60}, - [4247] = {.lex_state = 40}, - [4248] = {.lex_state = 40}, - [4249] = {.lex_state = 42}, - [4250] = {.lex_state = 40}, - [4251] = {.lex_state = 42}, - [4252] = {.lex_state = 42}, - [4253] = {.lex_state = 71}, - [4254] = {.lex_state = 40}, - [4255] = {.lex_state = 71}, - [4256] = {.lex_state = 40}, - [4257] = {.lex_state = 42}, - [4258] = {.lex_state = 40}, - [4259] = {.lex_state = 41}, - [4260] = {.lex_state = 40}, - [4261] = {.lex_state = 40}, - [4262] = {.lex_state = 40}, - [4263] = {.lex_state = 40}, - [4264] = {.lex_state = 42}, - [4265] = {.lex_state = 42}, - [4266] = {.lex_state = 40}, - [4267] = {.lex_state = 40}, + [4186] = {.lex_state = 60}, + [4187] = {.lex_state = 60}, + [4188] = {.lex_state = 60}, + [4189] = {.lex_state = 60}, + [4190] = {.lex_state = 44}, + [4191] = {.lex_state = 60}, + [4192] = {.lex_state = 60}, + [4193] = {.lex_state = 60}, + [4194] = {.lex_state = 1}, + [4195] = {.lex_state = 1}, + [4196] = {.lex_state = 51}, + [4197] = {.lex_state = 51}, + [4198] = {.lex_state = 1}, + [4199] = {.lex_state = 60}, + [4200] = {.lex_state = 51}, + [4201] = {.lex_state = 44}, + [4202] = {.lex_state = 1}, + [4203] = {.lex_state = 1}, + [4204] = {.lex_state = 51}, + [4205] = {.lex_state = 51}, + [4206] = {.lex_state = 60}, + [4207] = {.lex_state = 1}, + [4208] = {.lex_state = 60}, + [4209] = {.lex_state = 1}, + [4210] = {.lex_state = 51}, + [4211] = {.lex_state = 1}, + [4212] = {.lex_state = 1}, + [4213] = {.lex_state = 51}, + [4214] = {.lex_state = 60}, + [4215] = {.lex_state = 1}, + [4216] = {.lex_state = 51}, + [4217] = {.lex_state = 51}, + [4218] = {.lex_state = 60}, + [4219] = {.lex_state = 51}, + [4220] = {.lex_state = 1}, + [4221] = {.lex_state = 53}, + [4222] = {.lex_state = 53}, + [4223] = {.lex_state = 53}, + [4224] = {.lex_state = 53}, + [4225] = {.lex_state = 53}, + [4226] = {.lex_state = 51}, + [4227] = {.lex_state = 52}, + [4228] = {.lex_state = 53}, + [4229] = {.lex_state = 53}, + [4230] = {.lex_state = 60}, + [4231] = {.lex_state = 53}, + [4232] = {.lex_state = 53}, + [4233] = {.lex_state = 53}, + [4234] = {.lex_state = 53}, + [4235] = {.lex_state = 53}, + [4236] = {.lex_state = 53}, + [4237] = {.lex_state = 53}, + [4238] = {.lex_state = 53}, + [4239] = {.lex_state = 52}, + [4240] = {.lex_state = 53}, + [4241] = {.lex_state = 53}, + [4242] = {.lex_state = 53}, + [4243] = {.lex_state = 54}, + [4244] = {.lex_state = 53}, + [4245] = {.lex_state = 51}, + [4246] = {.lex_state = 53}, + [4247] = {.lex_state = 53}, + [4248] = {.lex_state = 53}, + [4249] = {.lex_state = 53}, + [4250] = {.lex_state = 1}, + [4251] = {.lex_state = 53}, + [4252] = {.lex_state = 53}, + [4253] = {.lex_state = 53}, + [4254] = {.lex_state = 53}, + [4255] = {.lex_state = 53}, + [4256] = {.lex_state = 53}, + [4257] = {.lex_state = 60}, + [4258] = {.lex_state = 53}, + [4259] = {.lex_state = 53}, + [4260] = {.lex_state = 53}, + [4261] = {.lex_state = 53}, + [4262] = {.lex_state = 54}, + [4263] = {.lex_state = 53}, + [4264] = {.lex_state = 53}, + [4265] = {.lex_state = 53}, + [4266] = {.lex_state = 1}, + [4267] = {.lex_state = 53}, [4268] = {.lex_state = 42}, [4269] = {.lex_state = 42}, [4270] = {.lex_state = 40}, - [4271] = {.lex_state = 65}, + [4271] = {.lex_state = 42}, [4272] = {.lex_state = 42}, [4273] = {.lex_state = 40}, [4274] = {.lex_state = 40}, - [4275] = {.lex_state = 40}, + [4275] = {.lex_state = 42}, [4276] = {.lex_state = 40}, - [4277] = {.lex_state = 40}, - [4278] = {.lex_state = 42}, + [4277] = {.lex_state = 50}, + [4278] = {.lex_state = 50}, [4279] = {.lex_state = 40}, [4280] = {.lex_state = 42}, [4281] = {.lex_state = 42}, - [4282] = {.lex_state = 42}, - [4283] = {.lex_state = 40}, - [4284] = {.lex_state = 42}, - [4285] = {.lex_state = 42}, - [4286] = {.lex_state = 40}, - [4287] = {.lex_state = 65}, - [4288] = {.lex_state = 68}, - [4289] = {.lex_state = 42}, - [4290] = {.lex_state = 49}, - [4291] = {.lex_state = 40}, - [4292] = {.lex_state = 42}, - [4293] = {.lex_state = 42}, - [4294] = {.lex_state = 42}, + [4282] = {.lex_state = 40}, + [4283] = {.lex_state = 42}, + [4284] = {.lex_state = 64}, + [4285] = {.lex_state = 64}, + [4286] = {.lex_state = 50}, + [4287] = {.lex_state = 59}, + [4288] = {.lex_state = 59}, + [4289] = {.lex_state = 67}, + [4290] = {.lex_state = 40}, + [4291] = {.lex_state = 42}, + [4292] = {.lex_state = 67}, + [4293] = {.lex_state = 70}, + [4294] = {.lex_state = 40}, [4295] = {.lex_state = 40}, - [4296] = {.lex_state = 42}, + [4296] = {.lex_state = 40}, [4297] = {.lex_state = 42}, - [4298] = {.lex_state = 40}, - [4299] = {.lex_state = 40}, - [4300] = {.lex_state = 49}, + [4298] = {.lex_state = 70}, + [4299] = {.lex_state = 42}, + [4300] = {.lex_state = 42}, [4301] = {.lex_state = 40}, - [4302] = {.lex_state = 40}, + [4302] = {.lex_state = 42}, [4303] = {.lex_state = 40}, [4304] = {.lex_state = 42}, - [4305] = {.lex_state = 42}, - [4306] = {.lex_state = 41}, - [4307] = {.lex_state = 40}, - [4308] = {.lex_state = 41}, + [4305] = {.lex_state = 40}, + [4306] = {.lex_state = 40}, + [4307] = {.lex_state = 42}, + [4308] = {.lex_state = 42}, [4309] = {.lex_state = 42}, - [4310] = {.lex_state = 42}, - [4311] = {.lex_state = 42}, + [4310] = {.lex_state = 40}, + [4311] = {.lex_state = 40}, [4312] = {.lex_state = 40}, - [4313] = {.lex_state = 60}, + [4313] = {.lex_state = 42}, [4314] = {.lex_state = 40}, - [4315] = {.lex_state = 40}, - [4316] = {.lex_state = 42}, - [4317] = {.lex_state = 42}, + [4315] = {.lex_state = 42}, + [4316] = {.lex_state = 40}, + [4317] = {.lex_state = 40}, [4318] = {.lex_state = 40}, [4319] = {.lex_state = 40}, [4320] = {.lex_state = 42}, - [4321] = {.lex_state = 42}, + [4321] = {.lex_state = 40}, [4322] = {.lex_state = 40}, [4323] = {.lex_state = 40}, [4324] = {.lex_state = 40}, [4325] = {.lex_state = 40}, - [4326] = {.lex_state = 42}, - [4327] = {.lex_state = 42}, - [4328] = {.lex_state = 49}, - [4329] = {.lex_state = 40}, + [4326] = {.lex_state = 40}, + [4327] = {.lex_state = 40}, + [4328] = {.lex_state = 40}, + [4329] = {.lex_state = 70}, [4330] = {.lex_state = 40}, [4331] = {.lex_state = 40}, [4332] = {.lex_state = 40}, - [4333] = {.lex_state = 42}, - [4334] = {.lex_state = 41}, - [4335] = {.lex_state = 40}, - [4336] = {.lex_state = 40}, + [4333] = {.lex_state = 40}, + [4334] = {.lex_state = 40}, + [4335] = {.lex_state = 42}, + [4336] = {.lex_state = 41}, [4337] = {.lex_state = 40}, - [4338] = {.lex_state = 40}, + [4338] = {.lex_state = 42}, [4339] = {.lex_state = 40}, [4340] = {.lex_state = 42}, [4341] = {.lex_state = 40}, - [4342] = {.lex_state = 60}, + [4342] = {.lex_state = 42}, [4343] = {.lex_state = 42}, - [4344] = {.lex_state = 40}, + [4344] = {.lex_state = 41}, [4345] = {.lex_state = 42}, - [4346] = {.lex_state = 42}, - [4347] = {.lex_state = 40}, - [4348] = {.lex_state = 40}, - [4349] = {.lex_state = 42}, - [4350] = {.lex_state = 42}, - [4351] = {.lex_state = 42}, - [4352] = {.lex_state = 40}, + [4346] = {.lex_state = 40}, + [4347] = {.lex_state = 42}, + [4348] = {.lex_state = 42}, + [4349] = {.lex_state = 40}, + [4350] = {.lex_state = 40}, + [4351] = {.lex_state = 40}, + [4352] = {.lex_state = 42}, [4353] = {.lex_state = 42}, - [4354] = {.lex_state = 40}, + [4354] = {.lex_state = 42}, [4355] = {.lex_state = 42}, - [4356] = {.lex_state = 41}, + [4356] = {.lex_state = 40}, [4357] = {.lex_state = 42}, [4358] = {.lex_state = 40}, - [4359] = {.lex_state = 40}, + [4359] = {.lex_state = 42}, [4360] = {.lex_state = 40}, - [4361] = {.lex_state = 42}, - [4362] = {.lex_state = 42}, - [4363] = {.lex_state = 40}, - [4364] = {.lex_state = 42}, + [4361] = {.lex_state = 40}, + [4362] = {.lex_state = 40}, + [4363] = {.lex_state = 42}, + [4364] = {.lex_state = 40}, [4365] = {.lex_state = 40}, - [4366] = {.lex_state = 40}, - [4367] = {.lex_state = 42}, + [4366] = {.lex_state = 42}, + [4367] = {.lex_state = 40}, [4368] = {.lex_state = 42}, [4369] = {.lex_state = 40}, [4370] = {.lex_state = 42}, [4371] = {.lex_state = 42}, - [4372] = {.lex_state = 5}, - [4373] = {.lex_state = 5}, - [4374] = {.lex_state = 5}, - [4375] = {.lex_state = 5}, - [4376] = {.lex_state = 5}, - [4377] = {.lex_state = 5}, - [4378] = {.lex_state = 5}, - [4379] = {.lex_state = 5}, - [4380] = {.lex_state = 5}, - [4381] = {.lex_state = 5}, - [4382] = {.lex_state = 5}, - [4383] = {.lex_state = 5}, - [4384] = {.lex_state = 5}, - [4385] = {.lex_state = 5}, - [4386] = {.lex_state = 5}, - [4387] = {.lex_state = 5}, - [4388] = {.lex_state = 5}, - [4389] = {.lex_state = 5}, - [4390] = {.lex_state = 5}, - [4391] = {.lex_state = 5}, - [4392] = {.lex_state = 5}, - [4393] = {.lex_state = 5}, - [4394] = {.lex_state = 5}, - [4395] = {.lex_state = 5}, - [4396] = {.lex_state = 5}, - [4397] = {.lex_state = 5}, - [4398] = {.lex_state = 5}, - [4399] = {.lex_state = 5}, - [4400] = {.lex_state = 5}, - [4401] = {.lex_state = 5}, - [4402] = {.lex_state = 5}, - [4403] = {.lex_state = 5}, - [4404] = {.lex_state = 5}, - [4405] = {.lex_state = 5}, - [4406] = {.lex_state = 5}, - [4407] = {.lex_state = 5}, - [4408] = {.lex_state = 5}, - [4409] = {.lex_state = 5}, - [4410] = {.lex_state = 5}, - [4411] = {.lex_state = 5}, - [4412] = {.lex_state = 5}, - [4413] = {.lex_state = 5}, - [4414] = {.lex_state = 5}, - [4415] = {.lex_state = 43}, - [4416] = {.lex_state = 5}, - [4417] = {.lex_state = 5}, - [4418] = {.lex_state = 5}, - [4419] = {.lex_state = 5}, - [4420] = {.lex_state = 5}, - [4421] = {.lex_state = 5}, - [4422] = {.lex_state = 5}, - [4423] = {.lex_state = 5}, - [4424] = {.lex_state = 5}, - [4425] = {.lex_state = 5}, - [4426] = {.lex_state = 5}, - [4427] = {.lex_state = 5}, - [4428] = {.lex_state = 5}, - [4429] = {.lex_state = 5}, - [4430] = {.lex_state = 5}, - [4431] = {.lex_state = 5}, - [4432] = {.lex_state = 5}, - [4433] = {.lex_state = 5}, - [4434] = {.lex_state = 5}, - [4435] = {.lex_state = 5}, - [4436] = {.lex_state = 5}, - [4437] = {.lex_state = 5}, - [4438] = {.lex_state = 5}, - [4439] = {.lex_state = 5}, - [4440] = {.lex_state = 5}, - [4441] = {.lex_state = 5}, - [4442] = {.lex_state = 5}, - [4443] = {.lex_state = 5}, + [4372] = {.lex_state = 42}, + [4373] = {.lex_state = 40}, + [4374] = {.lex_state = 67}, + [4375] = {.lex_state = 41}, + [4376] = {.lex_state = 41}, + [4377] = {.lex_state = 42}, + [4378] = {.lex_state = 59}, + [4379] = {.lex_state = 40}, + [4380] = {.lex_state = 40}, + [4381] = {.lex_state = 42}, + [4382] = {.lex_state = 42}, + [4383] = {.lex_state = 42}, + [4384] = {.lex_state = 40}, + [4385] = {.lex_state = 40}, + [4386] = {.lex_state = 42}, + [4387] = {.lex_state = 42}, + [4388] = {.lex_state = 40}, + [4389] = {.lex_state = 42}, + [4390] = {.lex_state = 40}, + [4391] = {.lex_state = 42}, + [4392] = {.lex_state = 40}, + [4393] = {.lex_state = 40}, + [4394] = {.lex_state = 40}, + [4395] = {.lex_state = 64}, + [4396] = {.lex_state = 42}, + [4397] = {.lex_state = 40}, + [4398] = {.lex_state = 40}, + [4399] = {.lex_state = 42}, + [4400] = {.lex_state = 40}, + [4401] = {.lex_state = 42}, + [4402] = {.lex_state = 42}, + [4403] = {.lex_state = 40}, + [4404] = {.lex_state = 40}, + [4405] = {.lex_state = 42}, + [4406] = {.lex_state = 42}, + [4407] = {.lex_state = 40}, + [4408] = {.lex_state = 40}, + [4409] = {.lex_state = 42}, + [4410] = {.lex_state = 41}, + [4411] = {.lex_state = 42}, + [4412] = {.lex_state = 40}, + [4413] = {.lex_state = 42}, + [4414] = {.lex_state = 40}, + [4415] = {.lex_state = 42}, + [4416] = {.lex_state = 40}, + [4417] = {.lex_state = 42}, + [4418] = {.lex_state = 40}, + [4419] = {.lex_state = 42}, + [4420] = {.lex_state = 42}, + [4421] = {.lex_state = 40}, + [4422] = {.lex_state = 40}, + [4423] = {.lex_state = 40}, + [4424] = {.lex_state = 42}, + [4425] = {.lex_state = 42}, + [4426] = {.lex_state = 40}, + [4427] = {.lex_state = 40}, + [4428] = {.lex_state = 40}, + [4429] = {.lex_state = 42}, + [4430] = {.lex_state = 40}, + [4431] = {.lex_state = 42}, + [4432] = {.lex_state = 42}, + [4433] = {.lex_state = 40}, + [4434] = {.lex_state = 40}, + [4435] = {.lex_state = 40}, + [4436] = {.lex_state = 40}, + [4437] = {.lex_state = 42}, + [4438] = {.lex_state = 40}, + [4439] = {.lex_state = 40}, + [4440] = {.lex_state = 42}, + [4441] = {.lex_state = 42}, + [4442] = {.lex_state = 42}, + [4443] = {.lex_state = 42}, [4444] = {.lex_state = 5}, [4445] = {.lex_state = 5}, [4446] = {.lex_state = 5}, @@ -23238,7 +23568,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4461] = {.lex_state = 5}, [4462] = {.lex_state = 5}, [4463] = {.lex_state = 5}, - [4464] = {.lex_state = 5}, + [4464] = {.lex_state = 42}, [4465] = {.lex_state = 5}, [4466] = {.lex_state = 5}, [4467] = {.lex_state = 5}, @@ -23388,7 +23718,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4611] = {.lex_state = 5}, [4612] = {.lex_state = 5}, [4613] = {.lex_state = 5}, - [4614] = {.lex_state = 42}, + [4614] = {.lex_state = 5}, [4615] = {.lex_state = 5}, [4616] = {.lex_state = 5}, [4617] = {.lex_state = 5}, @@ -23448,7 +23778,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4671] = {.lex_state = 5}, [4672] = {.lex_state = 5}, [4673] = {.lex_state = 5}, - [4674] = {.lex_state = 5}, + [4674] = {.lex_state = 43}, [4675] = {.lex_state = 5}, [4676] = {.lex_state = 5}, [4677] = {.lex_state = 5}, @@ -23475,7 +23805,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4698] = {.lex_state = 5}, [4699] = {.lex_state = 5}, [4700] = {.lex_state = 5}, - [4701] = {.lex_state = 5}, + [4701] = {.lex_state = 42}, [4702] = {.lex_state = 5}, [4703] = {.lex_state = 5}, [4704] = {.lex_state = 5}, @@ -23515,7 +23845,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4738] = {.lex_state = 5}, [4739] = {.lex_state = 5}, [4740] = {.lex_state = 5}, - [4741] = {.lex_state = 40}, + [4741] = {.lex_state = 5}, [4742] = {.lex_state = 5}, [4743] = {.lex_state = 5}, [4744] = {.lex_state = 5}, @@ -23735,7 +24065,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4958] = {.lex_state = 5}, [4959] = {.lex_state = 5}, [4960] = {.lex_state = 5}, - [4961] = {.lex_state = 41}, + [4961] = {.lex_state = 5}, [4962] = {.lex_state = 5}, [4963] = {.lex_state = 5}, [4964] = {.lex_state = 5}, @@ -23748,7 +24078,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4971] = {.lex_state = 5}, [4972] = {.lex_state = 5}, [4973] = {.lex_state = 5}, - [4974] = {.lex_state = 42}, + [4974] = {.lex_state = 5}, [4975] = {.lex_state = 5}, [4976] = {.lex_state = 5}, [4977] = {.lex_state = 5}, @@ -23763,7 +24093,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4986] = {.lex_state = 5}, [4987] = {.lex_state = 5}, [4988] = {.lex_state = 5}, - [4989] = {.lex_state = 5}, + [4989] = {.lex_state = 40}, [4990] = {.lex_state = 5}, [4991] = {.lex_state = 5}, [4992] = {.lex_state = 5}, @@ -23792,7 +24122,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5015] = {.lex_state = 5}, [5016] = {.lex_state = 5}, [5017] = {.lex_state = 5}, - [5018] = {.lex_state = 5}, + [5018] = {.lex_state = 41}, [5019] = {.lex_state = 5}, [5020] = {.lex_state = 5}, [5021] = {.lex_state = 5}, @@ -23941,7 +24271,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5164] = {.lex_state = 5}, [5165] = {.lex_state = 5}, [5166] = {.lex_state = 5}, - [5167] = {.lex_state = 42}, + [5167] = {.lex_state = 5}, [5168] = {.lex_state = 5}, [5169] = {.lex_state = 5}, [5170] = {.lex_state = 5}, @@ -23966,7 +24296,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5189] = {.lex_state = 5}, [5190] = {.lex_state = 5}, [5191] = {.lex_state = 5}, - [5192] = {.lex_state = 5}, + [5192] = {.lex_state = 42}, [5193] = {.lex_state = 5}, [5194] = {.lex_state = 5}, [5195] = {.lex_state = 5}, @@ -24009,7 +24339,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5232] = {.lex_state = 5}, [5233] = {.lex_state = 5}, [5234] = {.lex_state = 5}, - [5235] = {.lex_state = 43}, + [5235] = {.lex_state = 5}, [5236] = {.lex_state = 5}, [5237] = {.lex_state = 5}, [5238] = {.lex_state = 5}, @@ -24051,7 +24381,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5274] = {.lex_state = 5}, [5275] = {.lex_state = 5}, [5276] = {.lex_state = 5}, - [5277] = {.lex_state = 5}, + [5277] = {.lex_state = 43}, [5278] = {.lex_state = 5}, [5279] = {.lex_state = 5}, [5280] = {.lex_state = 5}, @@ -24070,52 +24400,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5293] = {.lex_state = 5}, [5294] = {.lex_state = 5}, [5295] = {.lex_state = 5}, - [5296] = {.lex_state = 43}, - [5297] = {.lex_state = 43}, + [5296] = {.lex_state = 5}, + [5297] = {.lex_state = 5}, [5298] = {.lex_state = 5}, - [5299] = {.lex_state = 43}, - [5300] = {.lex_state = 43}, + [5299] = {.lex_state = 5}, + [5300] = {.lex_state = 5}, [5301] = {.lex_state = 5}, [5302] = {.lex_state = 5}, [5303] = {.lex_state = 5}, - [5304] = {.lex_state = 40}, + [5304] = {.lex_state = 5}, [5305] = {.lex_state = 5}, [5306] = {.lex_state = 5}, [5307] = {.lex_state = 5}, - [5308] = {.lex_state = 43}, - [5309] = {.lex_state = 43}, + [5308] = {.lex_state = 5}, + [5309] = {.lex_state = 5}, [5310] = {.lex_state = 5}, [5311] = {.lex_state = 5}, [5312] = {.lex_state = 5}, - [5313] = {.lex_state = 43}, - [5314] = {.lex_state = 43}, - [5315] = {.lex_state = 43}, + [5313] = {.lex_state = 5}, + [5314] = {.lex_state = 5}, + [5315] = {.lex_state = 5}, [5316] = {.lex_state = 5}, [5317] = {.lex_state = 5}, [5318] = {.lex_state = 5}, - [5319] = {.lex_state = 43}, + [5319] = {.lex_state = 5}, [5320] = {.lex_state = 5}, [5321] = {.lex_state = 5}, - [5322] = {.lex_state = 43}, + [5322] = {.lex_state = 5}, [5323] = {.lex_state = 5}, [5324] = {.lex_state = 5}, [5325] = {.lex_state = 5}, - [5326] = {.lex_state = 40}, + [5326] = {.lex_state = 5}, [5327] = {.lex_state = 5}, [5328] = {.lex_state = 5}, [5329] = {.lex_state = 5}, [5330] = {.lex_state = 5}, [5331] = {.lex_state = 5}, - [5332] = {.lex_state = 43}, + [5332] = {.lex_state = 5}, [5333] = {.lex_state = 5}, [5334] = {.lex_state = 5}, [5335] = {.lex_state = 5}, - [5336] = {.lex_state = 41}, - [5337] = {.lex_state = 43}, + [5336] = {.lex_state = 5}, + [5337] = {.lex_state = 5}, [5338] = {.lex_state = 5}, - [5339] = {.lex_state = 43}, + [5339] = {.lex_state = 5}, [5340] = {.lex_state = 5}, - [5341] = {.lex_state = 43}, + [5341] = {.lex_state = 5}, [5342] = {.lex_state = 5}, [5343] = {.lex_state = 5}, [5344] = {.lex_state = 5}, @@ -24126,1394 +24456,1536 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5349] = {.lex_state = 5}, [5350] = {.lex_state = 5}, [5351] = {.lex_state = 5}, - [5352] = {.lex_state = 43}, + [5352] = {.lex_state = 5}, [5353] = {.lex_state = 5}, [5354] = {.lex_state = 5}, [5355] = {.lex_state = 5}, - [5356] = {.lex_state = 43}, + [5356] = {.lex_state = 5}, [5357] = {.lex_state = 5}, - [5358] = {.lex_state = 43}, + [5358] = {.lex_state = 5}, [5359] = {.lex_state = 5}, [5360] = {.lex_state = 5}, [5361] = {.lex_state = 5}, - [5362] = {.lex_state = 43}, + [5362] = {.lex_state = 5}, [5363] = {.lex_state = 5}, [5364] = {.lex_state = 5}, - [5365] = {.lex_state = 43}, + [5365] = {.lex_state = 5}, [5366] = {.lex_state = 5}, [5367] = {.lex_state = 5}, - [5368] = {.lex_state = 41}, + [5368] = {.lex_state = 5}, [5369] = {.lex_state = 5}, - [5370] = {.lex_state = 41}, - [5371] = {.lex_state = 43}, + [5370] = {.lex_state = 5}, + [5371] = {.lex_state = 5}, [5372] = {.lex_state = 43}, - [5373] = {.lex_state = 5}, + [5373] = {.lex_state = 43}, [5374] = {.lex_state = 5}, [5375] = {.lex_state = 5}, [5376] = {.lex_state = 5}, [5377] = {.lex_state = 5}, - [5378] = {.lex_state = 5}, + [5378] = {.lex_state = 43}, [5379] = {.lex_state = 5}, - [5380] = {.lex_state = 5}, + [5380] = {.lex_state = 43}, [5381] = {.lex_state = 5}, - [5382] = {.lex_state = 5}, + [5382] = {.lex_state = 40}, [5383] = {.lex_state = 5}, [5384] = {.lex_state = 43}, - [5385] = {.lex_state = 43}, + [5385] = {.lex_state = 5}, [5386] = {.lex_state = 5}, [5387] = {.lex_state = 5}, - [5388] = {.lex_state = 5}, - [5389] = {.lex_state = 5}, + [5388] = {.lex_state = 43}, + [5389] = {.lex_state = 43}, [5390] = {.lex_state = 5}, - [5391] = {.lex_state = 5}, - [5392] = {.lex_state = 43}, - [5393] = {.lex_state = 43}, + [5391] = {.lex_state = 40}, + [5392] = {.lex_state = 5}, + [5393] = {.lex_state = 5}, [5394] = {.lex_state = 5}, [5395] = {.lex_state = 5}, [5396] = {.lex_state = 5}, - [5397] = {.lex_state = 5}, - [5398] = {.lex_state = 43}, + [5397] = {.lex_state = 43}, + [5398] = {.lex_state = 5}, [5399] = {.lex_state = 43}, [5400] = {.lex_state = 5}, - [5401] = {.lex_state = 43}, - [5402] = {.lex_state = 5}, + [5401] = {.lex_state = 5}, + [5402] = {.lex_state = 43}, [5403] = {.lex_state = 5}, [5404] = {.lex_state = 5}, - [5405] = {.lex_state = 43}, - [5406] = {.lex_state = 5}, - [5407] = {.lex_state = 5}, + [5405] = {.lex_state = 5}, + [5406] = {.lex_state = 43}, + [5407] = {.lex_state = 43}, [5408] = {.lex_state = 5}, - [5409] = {.lex_state = 40}, - [5410] = {.lex_state = 5}, + [5409] = {.lex_state = 5}, + [5410] = {.lex_state = 43}, [5411] = {.lex_state = 5}, [5412] = {.lex_state = 5}, - [5413] = {.lex_state = 5}, - [5414] = {.lex_state = 5}, + [5413] = {.lex_state = 43}, + [5414] = {.lex_state = 43}, [5415] = {.lex_state = 43}, [5416] = {.lex_state = 5}, - [5417] = {.lex_state = 43}, + [5417] = {.lex_state = 5}, [5418] = {.lex_state = 5}, [5419] = {.lex_state = 5}, - [5420] = {.lex_state = 5}, + [5420] = {.lex_state = 43}, [5421] = {.lex_state = 5}, - [5422] = {.lex_state = 43}, + [5422] = {.lex_state = 41}, [5423] = {.lex_state = 5}, [5424] = {.lex_state = 5}, [5425] = {.lex_state = 5}, - [5426] = {.lex_state = 43}, + [5426] = {.lex_state = 5}, [5427] = {.lex_state = 5}, [5428] = {.lex_state = 5}, - [5429] = {.lex_state = 5}, - [5430] = {.lex_state = 5}, + [5429] = {.lex_state = 43}, + [5430] = {.lex_state = 40}, [5431] = {.lex_state = 5}, [5432] = {.lex_state = 5}, - [5433] = {.lex_state = 43}, + [5433] = {.lex_state = 5}, [5434] = {.lex_state = 5}, [5435] = {.lex_state = 5}, [5436] = {.lex_state = 5}, [5437] = {.lex_state = 43}, - [5438] = {.lex_state = 5}, + [5438] = {.lex_state = 43}, [5439] = {.lex_state = 5}, [5440] = {.lex_state = 5}, [5441] = {.lex_state = 5}, - [5442] = {.lex_state = 43}, - [5443] = {.lex_state = 81}, - [5444] = {.lex_state = 78}, - [5445] = {.lex_state = 85}, - [5446] = {.lex_state = 87}, - [5447] = {.lex_state = 88}, - [5448] = {.lex_state = 86}, - [5449] = {.lex_state = 74}, - [5450] = {.lex_state = 76}, - [5451] = {.lex_state = 70}, - [5452] = {.lex_state = 89}, - [5453] = {.lex_state = 75}, + [5442] = {.lex_state = 5}, + [5443] = {.lex_state = 5}, + [5444] = {.lex_state = 43}, + [5445] = {.lex_state = 5}, + [5446] = {.lex_state = 5}, + [5447] = {.lex_state = 43}, + [5448] = {.lex_state = 5}, + [5449] = {.lex_state = 5}, + [5450] = {.lex_state = 5}, + [5451] = {.lex_state = 5}, + [5452] = {.lex_state = 5}, + [5453] = {.lex_state = 5}, [5454] = {.lex_state = 43}, - [5455] = {.lex_state = 91}, - [5456] = {.lex_state = 64}, - [5457] = {.lex_state = 67}, - [5458] = {.lex_state = 59}, - [5459] = {.lex_state = 73}, - [5460] = {.lex_state = 43}, - [5461] = {.lex_state = 4}, - [5462] = {.lex_state = 77}, - [5463] = {.lex_state = 79}, - [5464] = {.lex_state = 61}, - [5465] = {.lex_state = 81}, - [5466] = {.lex_state = 83}, - [5467] = {.lex_state = 90}, - [5468] = {.lex_state = 0}, - [5469] = {.lex_state = 92}, - [5470] = {.lex_state = 66}, - [5471] = {.lex_state = 77}, - [5472] = {.lex_state = 74}, - [5473] = {.lex_state = 74}, - [5474] = {.lex_state = 82}, - [5475] = {.lex_state = 0}, - [5476] = {.lex_state = 0}, - [5477] = {.lex_state = 72}, - [5478] = {.lex_state = 4}, - [5479] = {.lex_state = 73}, - [5480] = {.lex_state = 0}, - [5481] = {.lex_state = 69}, - [5482] = {.lex_state = 59}, - [5483] = {.lex_state = 67}, - [5484] = {.lex_state = 91}, - [5485] = {.lex_state = 75}, - [5486] = {.lex_state = 70}, - [5487] = {.lex_state = 74}, - [5488] = {.lex_state = 72}, - [5489] = {.lex_state = 80}, - [5490] = {.lex_state = 84}, - [5491] = {.lex_state = 54}, - [5492] = {.lex_state = 69}, - [5493] = {.lex_state = 54}, - [5494] = {.lex_state = 82}, - [5495] = {.lex_state = 74}, - [5496] = {.lex_state = 74}, - [5497] = {.lex_state = 76}, - [5498] = {.lex_state = 84}, - [5499] = {.lex_state = 90}, - [5500] = {.lex_state = 92}, - [5501] = {.lex_state = 66}, - [5502] = {.lex_state = 78}, - [5503] = {.lex_state = 86}, - [5504] = {.lex_state = 80}, - [5505] = {.lex_state = 89}, - [5506] = {.lex_state = 64}, - [5507] = {.lex_state = 77}, - [5508] = {.lex_state = 79}, - [5509] = {.lex_state = 61}, - [5510] = {.lex_state = 81}, - [5511] = {.lex_state = 83}, - [5512] = {.lex_state = 72}, - [5513] = {.lex_state = 74}, - [5514] = {.lex_state = 70}, - [5515] = {.lex_state = 75}, - [5516] = {.lex_state = 85}, - [5517] = {.lex_state = 87}, - [5518] = {.lex_state = 88}, - [5519] = {.lex_state = 91}, - [5520] = {.lex_state = 67}, - [5521] = {.lex_state = 59}, - [5522] = {.lex_state = 80}, - [5523] = {.lex_state = 73}, - [5524] = {.lex_state = 4}, - [5525] = {.lex_state = 43}, - [5526] = {.lex_state = 0}, - [5527] = {.lex_state = 0}, - [5528] = {.lex_state = 84}, - [5529] = {.lex_state = 54}, - [5530] = {.lex_state = 43}, - [5531] = {.lex_state = 43}, - [5532] = {.lex_state = 69}, - [5533] = {.lex_state = 82}, - [5534] = {.lex_state = 74}, - [5535] = {.lex_state = 43}, - [5536] = {.lex_state = 74}, - [5537] = {.lex_state = 76}, - [5538] = {.lex_state = 88}, - [5539] = {.lex_state = 87}, - [5540] = {.lex_state = 85}, - [5541] = {.lex_state = 83}, - [5542] = {.lex_state = 81}, - [5543] = {.lex_state = 61}, - [5544] = {.lex_state = 79}, - [5545] = {.lex_state = 86}, - [5546] = {.lex_state = 0}, + [5455] = {.lex_state = 43}, + [5456] = {.lex_state = 5}, + [5457] = {.lex_state = 5}, + [5458] = {.lex_state = 5}, + [5459] = {.lex_state = 5}, + [5460] = {.lex_state = 5}, + [5461] = {.lex_state = 43}, + [5462] = {.lex_state = 5}, + [5463] = {.lex_state = 5}, + [5464] = {.lex_state = 43}, + [5465] = {.lex_state = 5}, + [5466] = {.lex_state = 5}, + [5467] = {.lex_state = 5}, + [5468] = {.lex_state = 5}, + [5469] = {.lex_state = 5}, + [5470] = {.lex_state = 5}, + [5471] = {.lex_state = 5}, + [5472] = {.lex_state = 5}, + [5473] = {.lex_state = 41}, + [5474] = {.lex_state = 5}, + [5475] = {.lex_state = 43}, + [5476] = {.lex_state = 43}, + [5477] = {.lex_state = 41}, + [5478] = {.lex_state = 5}, + [5479] = {.lex_state = 5}, + [5480] = {.lex_state = 5}, + [5481] = {.lex_state = 5}, + [5482] = {.lex_state = 5}, + [5483] = {.lex_state = 5}, + [5484] = {.lex_state = 5}, + [5485] = {.lex_state = 43}, + [5486] = {.lex_state = 5}, + [5487] = {.lex_state = 5}, + [5488] = {.lex_state = 5}, + [5489] = {.lex_state = 5}, + [5490] = {.lex_state = 5}, + [5491] = {.lex_state = 5}, + [5492] = {.lex_state = 5}, + [5493] = {.lex_state = 5}, + [5494] = {.lex_state = 5}, + [5495] = {.lex_state = 43}, + [5496] = {.lex_state = 43}, + [5497] = {.lex_state = 43}, + [5498] = {.lex_state = 5}, + [5499] = {.lex_state = 5}, + [5500] = {.lex_state = 5}, + [5501] = {.lex_state = 43}, + [5502] = {.lex_state = 5}, + [5503] = {.lex_state = 5}, + [5504] = {.lex_state = 5}, + [5505] = {.lex_state = 43}, + [5506] = {.lex_state = 5}, + [5507] = {.lex_state = 5}, + [5508] = {.lex_state = 5}, + [5509] = {.lex_state = 43}, + [5510] = {.lex_state = 5}, + [5511] = {.lex_state = 5}, + [5512] = {.lex_state = 43}, + [5513] = {.lex_state = 5}, + [5514] = {.lex_state = 43}, + [5515] = {.lex_state = 62}, + [5516] = {.lex_state = 91}, + [5517] = {.lex_state = 94}, + [5518] = {.lex_state = 68}, + [5519] = {.lex_state = 83}, + [5520] = {.lex_state = 85}, + [5521] = {.lex_state = 72}, + [5522] = {.lex_state = 92}, + [5523] = {.lex_state = 82}, + [5524] = {.lex_state = 84}, + [5525] = {.lex_state = 60}, + [5526] = {.lex_state = 86}, + [5527] = {.lex_state = 87}, + [5528] = {.lex_state = 88}, + [5529] = {.lex_state = 89}, + [5530] = {.lex_state = 90}, + [5531] = {.lex_state = 52}, + [5532] = {.lex_state = 43}, + [5533] = {.lex_state = 43}, + [5534] = {.lex_state = 93}, + [5535] = {.lex_state = 73}, + [5536] = {.lex_state = 62}, + [5537] = {.lex_state = 62}, + [5538] = {.lex_state = 81}, + [5539] = {.lex_state = 75}, + [5540] = {.lex_state = 56}, + [5541] = {.lex_state = 79}, + [5542] = {.lex_state = 77}, + [5543] = {.lex_state = 65}, + [5544] = {.lex_state = 62}, + [5545] = {.lex_state = 80}, + [5546] = {.lex_state = 78}, [5547] = {.lex_state = 0}, - [5548] = {.lex_state = 64}, - [5549] = {.lex_state = 4}, - [5550] = {.lex_state = 73}, - [5551] = {.lex_state = 89}, - [5552] = {.lex_state = 61}, - [5553] = {.lex_state = 59}, - [5554] = {.lex_state = 67}, - [5555] = {.lex_state = 91}, - [5556] = {.lex_state = 75}, - [5557] = {.lex_state = 70}, - [5558] = {.lex_state = 74}, - [5559] = {.lex_state = 72}, - [5560] = {.lex_state = 80}, - [5561] = {.lex_state = 84}, - [5562] = {.lex_state = 54}, - [5563] = {.lex_state = 69}, - [5564] = {.lex_state = 43}, - [5565] = {.lex_state = 82}, - [5566] = {.lex_state = 74}, - [5567] = {.lex_state = 74}, - [5568] = {.lex_state = 76}, - [5569] = {.lex_state = 78}, - [5570] = {.lex_state = 90}, - [5571] = {.lex_state = 92}, - [5572] = {.lex_state = 66}, - [5573] = {.lex_state = 78}, - [5574] = {.lex_state = 86}, - [5575] = {.lex_state = 66}, - [5576] = {.lex_state = 89}, - [5577] = {.lex_state = 64}, - [5578] = {.lex_state = 77}, - [5579] = {.lex_state = 79}, - [5580] = {.lex_state = 61}, - [5581] = {.lex_state = 81}, - [5582] = {.lex_state = 83}, - [5583] = {.lex_state = 92}, - [5584] = {.lex_state = 90}, - [5585] = {.lex_state = 76}, - [5586] = {.lex_state = 74}, - [5587] = {.lex_state = 85}, - [5588] = {.lex_state = 87}, - [5589] = {.lex_state = 88}, - [5590] = {.lex_state = 74}, - [5591] = {.lex_state = 82}, - [5592] = {.lex_state = 69}, + [5548] = {.lex_state = 0}, + [5549] = {.lex_state = 93}, + [5550] = {.lex_state = 4}, + [5551] = {.lex_state = 76}, + [5552] = {.lex_state = 74}, + [5553] = {.lex_state = 69}, + [5554] = {.lex_state = 69}, + [5555] = {.lex_state = 74}, + [5556] = {.lex_state = 93}, + [5557] = {.lex_state = 78}, + [5558] = {.lex_state = 80}, + [5559] = {.lex_state = 62}, + [5560] = {.lex_state = 65}, + [5561] = {.lex_state = 77}, + [5562] = {.lex_state = 79}, + [5563] = {.lex_state = 56}, + [5564] = {.lex_state = 75}, + [5565] = {.lex_state = 76}, + [5566] = {.lex_state = 81}, + [5567] = {.lex_state = 62}, + [5568] = {.lex_state = 62}, + [5569] = {.lex_state = 73}, + [5570] = {.lex_state = 4}, + [5571] = {.lex_state = 91}, + [5572] = {.lex_state = 94}, + [5573] = {.lex_state = 68}, + [5574] = {.lex_state = 83}, + [5575] = {.lex_state = 85}, + [5576] = {.lex_state = 0}, + [5577] = {.lex_state = 72}, + [5578] = {.lex_state = 92}, + [5579] = {.lex_state = 82}, + [5580] = {.lex_state = 84}, + [5581] = {.lex_state = 60}, + [5582] = {.lex_state = 86}, + [5583] = {.lex_state = 87}, + [5584] = {.lex_state = 0}, + [5585] = {.lex_state = 43}, + [5586] = {.lex_state = 43}, + [5587] = {.lex_state = 52}, + [5588] = {.lex_state = 88}, + [5589] = {.lex_state = 89}, + [5590] = {.lex_state = 90}, + [5591] = {.lex_state = 90}, + [5592] = {.lex_state = 89}, [5593] = {.lex_state = 88}, - [5594] = {.lex_state = 54}, - [5595] = {.lex_state = 87}, - [5596] = {.lex_state = 43}, - [5597] = {.lex_state = 85}, - [5598] = {.lex_state = 84}, - [5599] = {.lex_state = 80}, - [5600] = {.lex_state = 72}, - [5601] = {.lex_state = 74}, - [5602] = {.lex_state = 43}, - [5603] = {.lex_state = 70}, - [5604] = {.lex_state = 75}, - [5605] = {.lex_state = 91}, - [5606] = {.lex_state = 67}, - [5607] = {.lex_state = 59}, - [5608] = {.lex_state = 73}, - [5609] = {.lex_state = 4}, - [5610] = {.lex_state = 0}, - [5611] = {.lex_state = 0}, - [5612] = {.lex_state = 90}, - [5613] = {.lex_state = 92}, - [5614] = {.lex_state = 66}, - [5615] = {.lex_state = 43}, - [5616] = {.lex_state = 78}, - [5617] = {.lex_state = 86}, - [5618] = {.lex_state = 89}, - [5619] = {.lex_state = 43}, - [5620] = {.lex_state = 64}, - [5621] = {.lex_state = 77}, - [5622] = {.lex_state = 79}, - [5623] = {.lex_state = 88}, - [5624] = {.lex_state = 87}, - [5625] = {.lex_state = 85}, - [5626] = {.lex_state = 83}, - [5627] = {.lex_state = 81}, - [5628] = {.lex_state = 61}, - [5629] = {.lex_state = 79}, - [5630] = {.lex_state = 77}, - [5631] = {.lex_state = 64}, - [5632] = {.lex_state = 89}, - [5633] = {.lex_state = 86}, - [5634] = {.lex_state = 78}, - [5635] = {.lex_state = 66}, - [5636] = {.lex_state = 92}, - [5637] = {.lex_state = 90}, - [5638] = {.lex_state = 76}, - [5639] = {.lex_state = 74}, - [5640] = {.lex_state = 74}, - [5641] = {.lex_state = 82}, - [5642] = {.lex_state = 61}, - [5643] = {.lex_state = 69}, - [5644] = {.lex_state = 54}, - [5645] = {.lex_state = 84}, - [5646] = {.lex_state = 80}, - [5647] = {.lex_state = 72}, - [5648] = {.lex_state = 74}, - [5649] = {.lex_state = 70}, - [5650] = {.lex_state = 75}, - [5651] = {.lex_state = 91}, - [5652] = {.lex_state = 67}, - [5653] = {.lex_state = 59}, - [5654] = {.lex_state = 81}, - [5655] = {.lex_state = 83}, - [5656] = {.lex_state = 73}, + [5594] = {.lex_state = 87}, + [5595] = {.lex_state = 86}, + [5596] = {.lex_state = 52}, + [5597] = {.lex_state = 60}, + [5598] = {.lex_state = 43}, + [5599] = {.lex_state = 84}, + [5600] = {.lex_state = 82}, + [5601] = {.lex_state = 92}, + [5602] = {.lex_state = 72}, + [5603] = {.lex_state = 85}, + [5604] = {.lex_state = 43}, + [5605] = {.lex_state = 83}, + [5606] = {.lex_state = 68}, + [5607] = {.lex_state = 94}, + [5608] = {.lex_state = 91}, + [5609] = {.lex_state = 73}, + [5610] = {.lex_state = 62}, + [5611] = {.lex_state = 62}, + [5612] = {.lex_state = 81}, + [5613] = {.lex_state = 75}, + [5614] = {.lex_state = 56}, + [5615] = {.lex_state = 79}, + [5616] = {.lex_state = 77}, + [5617] = {.lex_state = 65}, + [5618] = {.lex_state = 62}, + [5619] = {.lex_state = 0}, + [5620] = {.lex_state = 0}, + [5621] = {.lex_state = 80}, + [5622] = {.lex_state = 4}, + [5623] = {.lex_state = 76}, + [5624] = {.lex_state = 78}, + [5625] = {.lex_state = 90}, + [5626] = {.lex_state = 69}, + [5627] = {.lex_state = 74}, + [5628] = {.lex_state = 93}, + [5629] = {.lex_state = 78}, + [5630] = {.lex_state = 80}, + [5631] = {.lex_state = 62}, + [5632] = {.lex_state = 65}, + [5633] = {.lex_state = 77}, + [5634] = {.lex_state = 79}, + [5635] = {.lex_state = 56}, + [5636] = {.lex_state = 75}, + [5637] = {.lex_state = 43}, + [5638] = {.lex_state = 81}, + [5639] = {.lex_state = 62}, + [5640] = {.lex_state = 62}, + [5641] = {.lex_state = 73}, + [5642] = {.lex_state = 74}, + [5643] = {.lex_state = 91}, + [5644] = {.lex_state = 94}, + [5645] = {.lex_state = 68}, + [5646] = {.lex_state = 83}, + [5647] = {.lex_state = 85}, + [5648] = {.lex_state = 69}, + [5649] = {.lex_state = 72}, + [5650] = {.lex_state = 92}, + [5651] = {.lex_state = 82}, + [5652] = {.lex_state = 84}, + [5653] = {.lex_state = 60}, + [5654] = {.lex_state = 86}, + [5655] = {.lex_state = 87}, + [5656] = {.lex_state = 76}, [5657] = {.lex_state = 4}, [5658] = {.lex_state = 0}, [5659] = {.lex_state = 0}, - [5660] = {.lex_state = 83}, - [5661] = {.lex_state = 81}, - [5662] = {.lex_state = 43}, - [5663] = {.lex_state = 43}, - [5664] = {.lex_state = 74}, - [5665] = {.lex_state = 88}, - [5666] = {.lex_state = 87}, - [5667] = {.lex_state = 85}, - [5668] = {.lex_state = 83}, - [5669] = {.lex_state = 81}, - [5670] = {.lex_state = 61}, - [5671] = {.lex_state = 79}, - [5672] = {.lex_state = 77}, - [5673] = {.lex_state = 64}, - [5674] = {.lex_state = 89}, + [5660] = {.lex_state = 88}, + [5661] = {.lex_state = 89}, + [5662] = {.lex_state = 90}, + [5663] = {.lex_state = 94}, + [5664] = {.lex_state = 82}, + [5665] = {.lex_state = 43}, + [5666] = {.lex_state = 89}, + [5667] = {.lex_state = 52}, + [5668] = {.lex_state = 52}, + [5669] = {.lex_state = 88}, + [5670] = {.lex_state = 43}, + [5671] = {.lex_state = 90}, + [5672] = {.lex_state = 89}, + [5673] = {.lex_state = 88}, + [5674] = {.lex_state = 87}, [5675] = {.lex_state = 86}, - [5676] = {.lex_state = 78}, - [5677] = {.lex_state = 66}, - [5678] = {.lex_state = 92}, - [5679] = {.lex_state = 90}, - [5680] = {.lex_state = 76}, - [5681] = {.lex_state = 74}, - [5682] = {.lex_state = 0}, - [5683] = {.lex_state = 82}, - [5684] = {.lex_state = 85}, - [5685] = {.lex_state = 69}, - [5686] = {.lex_state = 54}, - [5687] = {.lex_state = 84}, - [5688] = {.lex_state = 80}, - [5689] = {.lex_state = 72}, - [5690] = {.lex_state = 74}, - [5691] = {.lex_state = 90}, - [5692] = {.lex_state = 70}, + [5676] = {.lex_state = 43}, + [5677] = {.lex_state = 60}, + [5678] = {.lex_state = 84}, + [5679] = {.lex_state = 82}, + [5680] = {.lex_state = 92}, + [5681] = {.lex_state = 72}, + [5682] = {.lex_state = 85}, + [5683] = {.lex_state = 83}, + [5684] = {.lex_state = 68}, + [5685] = {.lex_state = 94}, + [5686] = {.lex_state = 91}, + [5687] = {.lex_state = 73}, + [5688] = {.lex_state = 62}, + [5689] = {.lex_state = 62}, + [5690] = {.lex_state = 81}, + [5691] = {.lex_state = 75}, + [5692] = {.lex_state = 56}, [5693] = {.lex_state = 79}, - [5694] = {.lex_state = 75}, - [5695] = {.lex_state = 91}, - [5696] = {.lex_state = 67}, - [5697] = {.lex_state = 59}, - [5698] = {.lex_state = 0}, - [5699] = {.lex_state = 73}, - [5700] = {.lex_state = 4}, - [5701] = {.lex_state = 0}, - [5702] = {.lex_state = 0}, - [5703] = {.lex_state = 87}, - [5704] = {.lex_state = 43}, - [5705] = {.lex_state = 88}, + [5694] = {.lex_state = 77}, + [5695] = {.lex_state = 65}, + [5696] = {.lex_state = 62}, + [5697] = {.lex_state = 80}, + [5698] = {.lex_state = 78}, + [5699] = {.lex_state = 93}, + [5700] = {.lex_state = 74}, + [5701] = {.lex_state = 69}, + [5702] = {.lex_state = 76}, + [5703] = {.lex_state = 4}, + [5704] = {.lex_state = 0}, + [5705] = {.lex_state = 0}, [5706] = {.lex_state = 43}, - [5707] = {.lex_state = 43}, - [5708] = {.lex_state = 88}, - [5709] = {.lex_state = 87}, - [5710] = {.lex_state = 85}, - [5711] = {.lex_state = 83}, - [5712] = {.lex_state = 80}, - [5713] = {.lex_state = 61}, - [5714] = {.lex_state = 79}, - [5715] = {.lex_state = 77}, - [5716] = {.lex_state = 64}, - [5717] = {.lex_state = 89}, - [5718] = {.lex_state = 86}, - [5719] = {.lex_state = 78}, - [5720] = {.lex_state = 66}, - [5721] = {.lex_state = 92}, - [5722] = {.lex_state = 90}, - [5723] = {.lex_state = 77}, - [5724] = {.lex_state = 64}, - [5725] = {.lex_state = 89}, - [5726] = {.lex_state = 76}, - [5727] = {.lex_state = 74}, - [5728] = {.lex_state = 74}, - [5729] = {.lex_state = 82}, - [5730] = {.lex_state = 69}, - [5731] = {.lex_state = 54}, - [5732] = {.lex_state = 84}, - [5733] = {.lex_state = 80}, - [5734] = {.lex_state = 72}, - [5735] = {.lex_state = 74}, - [5736] = {.lex_state = 70}, - [5737] = {.lex_state = 75}, - [5738] = {.lex_state = 91}, - [5739] = {.lex_state = 67}, - [5740] = {.lex_state = 59}, - [5741] = {.lex_state = 43}, - [5742] = {.lex_state = 73}, - [5743] = {.lex_state = 4}, - [5744] = {.lex_state = 0}, - [5745] = {.lex_state = 76}, - [5746] = {.lex_state = 43}, - [5747] = {.lex_state = 43}, - [5748] = {.lex_state = 43}, - [5749] = {.lex_state = 88}, - [5750] = {.lex_state = 87}, - [5751] = {.lex_state = 85}, - [5752] = {.lex_state = 83}, - [5753] = {.lex_state = 81}, - [5754] = {.lex_state = 61}, - [5755] = {.lex_state = 79}, - [5756] = {.lex_state = 77}, - [5757] = {.lex_state = 86}, - [5758] = {.lex_state = 64}, - [5759] = {.lex_state = 89}, - [5760] = {.lex_state = 86}, - [5761] = {.lex_state = 78}, - [5762] = {.lex_state = 66}, - [5763] = {.lex_state = 92}, - [5764] = {.lex_state = 90}, - [5765] = {.lex_state = 76}, - [5766] = {.lex_state = 74}, - [5767] = {.lex_state = 74}, - [5768] = {.lex_state = 82}, - [5769] = {.lex_state = 69}, - [5770] = {.lex_state = 54}, - [5771] = {.lex_state = 84}, - [5772] = {.lex_state = 80}, - [5773] = {.lex_state = 72}, - [5774] = {.lex_state = 74}, - [5775] = {.lex_state = 70}, - [5776] = {.lex_state = 75}, - [5777] = {.lex_state = 91}, - [5778] = {.lex_state = 67}, - [5779] = {.lex_state = 59}, - [5780] = {.lex_state = 73}, - [5781] = {.lex_state = 4}, - [5782] = {.lex_state = 0}, - [5783] = {.lex_state = 0}, - [5784] = {.lex_state = 0}, - [5785] = {.lex_state = 43}, + [5707] = {.lex_state = 52}, + [5708] = {.lex_state = 43}, + [5709] = {.lex_state = 52}, + [5710] = {.lex_state = 43}, + [5711] = {.lex_state = 90}, + [5712] = {.lex_state = 89}, + [5713] = {.lex_state = 88}, + [5714] = {.lex_state = 87}, + [5715] = {.lex_state = 86}, + [5716] = {.lex_state = 60}, + [5717] = {.lex_state = 84}, + [5718] = {.lex_state = 82}, + [5719] = {.lex_state = 92}, + [5720] = {.lex_state = 72}, + [5721] = {.lex_state = 85}, + [5722] = {.lex_state = 83}, + [5723] = {.lex_state = 68}, + [5724] = {.lex_state = 52}, + [5725] = {.lex_state = 91}, + [5726] = {.lex_state = 73}, + [5727] = {.lex_state = 62}, + [5728] = {.lex_state = 62}, + [5729] = {.lex_state = 81}, + [5730] = {.lex_state = 75}, + [5731] = {.lex_state = 56}, + [5732] = {.lex_state = 79}, + [5733] = {.lex_state = 77}, + [5734] = {.lex_state = 87}, + [5735] = {.lex_state = 86}, + [5736] = {.lex_state = 60}, + [5737] = {.lex_state = 65}, + [5738] = {.lex_state = 62}, + [5739] = {.lex_state = 80}, + [5740] = {.lex_state = 78}, + [5741] = {.lex_state = 93}, + [5742] = {.lex_state = 74}, + [5743] = {.lex_state = 69}, + [5744] = {.lex_state = 76}, + [5745] = {.lex_state = 4}, + [5746] = {.lex_state = 0}, + [5747] = {.lex_state = 0}, + [5748] = {.lex_state = 0}, + [5749] = {.lex_state = 43}, + [5750] = {.lex_state = 43}, + [5751] = {.lex_state = 52}, + [5752] = {.lex_state = 90}, + [5753] = {.lex_state = 89}, + [5754] = {.lex_state = 88}, + [5755] = {.lex_state = 87}, + [5756] = {.lex_state = 86}, + [5757] = {.lex_state = 60}, + [5758] = {.lex_state = 84}, + [5759] = {.lex_state = 82}, + [5760] = {.lex_state = 92}, + [5761] = {.lex_state = 72}, + [5762] = {.lex_state = 85}, + [5763] = {.lex_state = 83}, + [5764] = {.lex_state = 68}, + [5765] = {.lex_state = 94}, + [5766] = {.lex_state = 91}, + [5767] = {.lex_state = 73}, + [5768] = {.lex_state = 84}, + [5769] = {.lex_state = 62}, + [5770] = {.lex_state = 62}, + [5771] = {.lex_state = 81}, + [5772] = {.lex_state = 43}, + [5773] = {.lex_state = 75}, + [5774] = {.lex_state = 56}, + [5775] = {.lex_state = 79}, + [5776] = {.lex_state = 77}, + [5777] = {.lex_state = 65}, + [5778] = {.lex_state = 62}, + [5779] = {.lex_state = 80}, + [5780] = {.lex_state = 78}, + [5781] = {.lex_state = 93}, + [5782] = {.lex_state = 74}, + [5783] = {.lex_state = 69}, + [5784] = {.lex_state = 76}, + [5785] = {.lex_state = 4}, [5786] = {.lex_state = 0}, - [5787] = {.lex_state = 78}, - [5788] = {.lex_state = 66}, - [5789] = {.lex_state = 92}, - [5790] = {.lex_state = 4}, - [5791] = {.lex_state = 73}, - [5792] = {.lex_state = 43}, - [5793] = {.lex_state = 59}, - [5794] = {.lex_state = 67}, - [5795] = {.lex_state = 88}, - [5796] = {.lex_state = 87}, - [5797] = {.lex_state = 85}, - [5798] = {.lex_state = 83}, - [5799] = {.lex_state = 81}, - [5800] = {.lex_state = 61}, - [5801] = {.lex_state = 79}, - [5802] = {.lex_state = 77}, - [5803] = {.lex_state = 64}, - [5804] = {.lex_state = 89}, - [5805] = {.lex_state = 86}, - [5806] = {.lex_state = 78}, - [5807] = {.lex_state = 66}, - [5808] = {.lex_state = 92}, - [5809] = {.lex_state = 90}, - [5810] = {.lex_state = 4}, - [5811] = {.lex_state = 74}, - [5812] = {.lex_state = 74}, - [5813] = {.lex_state = 82}, - [5814] = {.lex_state = 91}, - [5815] = {.lex_state = 69}, - [5816] = {.lex_state = 54}, - [5817] = {.lex_state = 84}, + [5787] = {.lex_state = 0}, + [5788] = {.lex_state = 43}, + [5789] = {.lex_state = 43}, + [5790] = {.lex_state = 88}, + [5791] = {.lex_state = 90}, + [5792] = {.lex_state = 89}, + [5793] = {.lex_state = 43}, + [5794] = {.lex_state = 87}, + [5795] = {.lex_state = 86}, + [5796] = {.lex_state = 60}, + [5797] = {.lex_state = 84}, + [5798] = {.lex_state = 82}, + [5799] = {.lex_state = 92}, + [5800] = {.lex_state = 92}, + [5801] = {.lex_state = 72}, + [5802] = {.lex_state = 72}, + [5803] = {.lex_state = 85}, + [5804] = {.lex_state = 83}, + [5805] = {.lex_state = 68}, + [5806] = {.lex_state = 94}, + [5807] = {.lex_state = 91}, + [5808] = {.lex_state = 73}, + [5809] = {.lex_state = 62}, + [5810] = {.lex_state = 62}, + [5811] = {.lex_state = 81}, + [5812] = {.lex_state = 75}, + [5813] = {.lex_state = 56}, + [5814] = {.lex_state = 79}, + [5815] = {.lex_state = 77}, + [5816] = {.lex_state = 65}, + [5817] = {.lex_state = 62}, [5818] = {.lex_state = 80}, - [5819] = {.lex_state = 80}, - [5820] = {.lex_state = 72}, - [5821] = {.lex_state = 76}, - [5822] = {.lex_state = 74}, - [5823] = {.lex_state = 70}, - [5824] = {.lex_state = 75}, - [5825] = {.lex_state = 91}, - [5826] = {.lex_state = 67}, - [5827] = {.lex_state = 59}, - [5828] = {.lex_state = 75}, - [5829] = {.lex_state = 70}, - [5830] = {.lex_state = 73}, - [5831] = {.lex_state = 69}, - [5832] = {.lex_state = 0}, - [5833] = {.lex_state = 0}, - [5834] = {.lex_state = 74}, - [5835] = {.lex_state = 72}, - [5836] = {.lex_state = 80}, - [5837] = {.lex_state = 43}, + [5819] = {.lex_state = 78}, + [5820] = {.lex_state = 93}, + [5821] = {.lex_state = 74}, + [5822] = {.lex_state = 69}, + [5823] = {.lex_state = 76}, + [5824] = {.lex_state = 4}, + [5825] = {.lex_state = 0}, + [5826] = {.lex_state = 0}, + [5827] = {.lex_state = 43}, + [5828] = {.lex_state = 43}, + [5829] = {.lex_state = 52}, + [5830] = {.lex_state = 90}, + [5831] = {.lex_state = 89}, + [5832] = {.lex_state = 88}, + [5833] = {.lex_state = 87}, + [5834] = {.lex_state = 85}, + [5835] = {.lex_state = 83}, + [5836] = {.lex_state = 86}, + [5837] = {.lex_state = 60}, [5838] = {.lex_state = 84}, - [5839] = {.lex_state = 54}, - [5840] = {.lex_state = 43}, - [5841] = {.lex_state = 69}, - [5842] = {.lex_state = 82}, - [5843] = {.lex_state = 74}, - [5844] = {.lex_state = 88}, - [5845] = {.lex_state = 87}, - [5846] = {.lex_state = 85}, - [5847] = {.lex_state = 83}, - [5848] = {.lex_state = 81}, - [5849] = {.lex_state = 61}, - [5850] = {.lex_state = 79}, - [5851] = {.lex_state = 77}, - [5852] = {.lex_state = 64}, - [5853] = {.lex_state = 74}, - [5854] = {.lex_state = 89}, - [5855] = {.lex_state = 86}, - [5856] = {.lex_state = 78}, - [5857] = {.lex_state = 66}, - [5858] = {.lex_state = 92}, - [5859] = {.lex_state = 90}, - [5860] = {.lex_state = 76}, - [5861] = {.lex_state = 74}, - [5862] = {.lex_state = 74}, - [5863] = {.lex_state = 82}, - [5864] = {.lex_state = 74}, - [5865] = {.lex_state = 69}, - [5866] = {.lex_state = 54}, - [5867] = {.lex_state = 84}, - [5868] = {.lex_state = 80}, - [5869] = {.lex_state = 72}, - [5870] = {.lex_state = 74}, - [5871] = {.lex_state = 70}, - [5872] = {.lex_state = 75}, - [5873] = {.lex_state = 91}, - [5874] = {.lex_state = 67}, - [5875] = {.lex_state = 59}, - [5876] = {.lex_state = 76}, - [5877] = {.lex_state = 73}, - [5878] = {.lex_state = 4}, - [5879] = {.lex_state = 0}, - [5880] = {.lex_state = 0}, - [5881] = {.lex_state = 90}, - [5882] = {.lex_state = 43}, - [5883] = {.lex_state = 74}, - [5884] = {.lex_state = 82}, - [5885] = {.lex_state = 69}, - [5886] = {.lex_state = 92}, - [5887] = {.lex_state = 66}, - [5888] = {.lex_state = 78}, - [5889] = {.lex_state = 86}, - [5890] = {.lex_state = 43}, - [5891] = {.lex_state = 89}, - [5892] = {.lex_state = 64}, - [5893] = {.lex_state = 88}, - [5894] = {.lex_state = 87}, - [5895] = {.lex_state = 85}, - [5896] = {.lex_state = 83}, - [5897] = {.lex_state = 81}, - [5898] = {.lex_state = 61}, - [5899] = {.lex_state = 79}, - [5900] = {.lex_state = 77}, - [5901] = {.lex_state = 64}, - [5902] = {.lex_state = 89}, - [5903] = {.lex_state = 86}, - [5904] = {.lex_state = 78}, - [5905] = {.lex_state = 66}, - [5906] = {.lex_state = 92}, - [5907] = {.lex_state = 90}, - [5908] = {.lex_state = 76}, - [5909] = {.lex_state = 74}, - [5910] = {.lex_state = 74}, - [5911] = {.lex_state = 82}, - [5912] = {.lex_state = 77}, + [5839] = {.lex_state = 82}, + [5840] = {.lex_state = 92}, + [5841] = {.lex_state = 72}, + [5842] = {.lex_state = 85}, + [5843] = {.lex_state = 83}, + [5844] = {.lex_state = 68}, + [5845] = {.lex_state = 94}, + [5846] = {.lex_state = 91}, + [5847] = {.lex_state = 73}, + [5848] = {.lex_state = 62}, + [5849] = {.lex_state = 62}, + [5850] = {.lex_state = 81}, + [5851] = {.lex_state = 75}, + [5852] = {.lex_state = 56}, + [5853] = {.lex_state = 79}, + [5854] = {.lex_state = 77}, + [5855] = {.lex_state = 65}, + [5856] = {.lex_state = 62}, + [5857] = {.lex_state = 80}, + [5858] = {.lex_state = 78}, + [5859] = {.lex_state = 93}, + [5860] = {.lex_state = 74}, + [5861] = {.lex_state = 69}, + [5862] = {.lex_state = 76}, + [5863] = {.lex_state = 4}, + [5864] = {.lex_state = 0}, + [5865] = {.lex_state = 0}, + [5866] = {.lex_state = 68}, + [5867] = {.lex_state = 94}, + [5868] = {.lex_state = 91}, + [5869] = {.lex_state = 82}, + [5870] = {.lex_state = 43}, + [5871] = {.lex_state = 52}, + [5872] = {.lex_state = 90}, + [5873] = {.lex_state = 89}, + [5874] = {.lex_state = 88}, + [5875] = {.lex_state = 87}, + [5876] = {.lex_state = 86}, + [5877] = {.lex_state = 60}, + [5878] = {.lex_state = 84}, + [5879] = {.lex_state = 82}, + [5880] = {.lex_state = 92}, + [5881] = {.lex_state = 72}, + [5882] = {.lex_state = 85}, + [5883] = {.lex_state = 83}, + [5884] = {.lex_state = 68}, + [5885] = {.lex_state = 94}, + [5886] = {.lex_state = 91}, + [5887] = {.lex_state = 73}, + [5888] = {.lex_state = 62}, + [5889] = {.lex_state = 62}, + [5890] = {.lex_state = 81}, + [5891] = {.lex_state = 75}, + [5892] = {.lex_state = 56}, + [5893] = {.lex_state = 79}, + [5894] = {.lex_state = 77}, + [5895] = {.lex_state = 65}, + [5896] = {.lex_state = 62}, + [5897] = {.lex_state = 80}, + [5898] = {.lex_state = 78}, + [5899] = {.lex_state = 65}, + [5900] = {.lex_state = 73}, + [5901] = {.lex_state = 93}, + [5902] = {.lex_state = 74}, + [5903] = {.lex_state = 69}, + [5904] = {.lex_state = 76}, + [5905] = {.lex_state = 4}, + [5906] = {.lex_state = 0}, + [5907] = {.lex_state = 0}, + [5908] = {.lex_state = 43}, + [5909] = {.lex_state = 43}, + [5910] = {.lex_state = 52}, + [5911] = {.lex_state = 90}, + [5912] = {.lex_state = 89}, [5913] = {.lex_state = 88}, - [5914] = {.lex_state = 54}, - [5915] = {.lex_state = 54}, - [5916] = {.lex_state = 84}, + [5914] = {.lex_state = 87}, + [5915] = {.lex_state = 86}, + [5916] = {.lex_state = 60}, [5917] = {.lex_state = 84}, - [5918] = {.lex_state = 80}, - [5919] = {.lex_state = 72}, - [5920] = {.lex_state = 74}, - [5921] = {.lex_state = 70}, - [5922] = {.lex_state = 75}, - [5923] = {.lex_state = 91}, - [5924] = {.lex_state = 67}, - [5925] = {.lex_state = 59}, - [5926] = {.lex_state = 79}, - [5927] = {.lex_state = 61}, - [5928] = {.lex_state = 73}, - [5929] = {.lex_state = 4}, - [5930] = {.lex_state = 0}, - [5931] = {.lex_state = 0}, - [5932] = {.lex_state = 81}, - [5933] = {.lex_state = 83}, - [5934] = {.lex_state = 43}, - [5935] = {.lex_state = 43}, - [5936] = {.lex_state = 85}, - [5937] = {.lex_state = 87}, - [5938] = {.lex_state = 64}, - [5939] = {.lex_state = 87}, - [5940] = {.lex_state = 85}, - [5941] = {.lex_state = 83}, - [5942] = {.lex_state = 81}, - [5943] = {.lex_state = 61}, - [5944] = {.lex_state = 79}, - [5945] = {.lex_state = 77}, - [5946] = {.lex_state = 64}, - [5947] = {.lex_state = 89}, - [5948] = {.lex_state = 72}, - [5949] = {.lex_state = 74}, - [5950] = {.lex_state = 86}, - [5951] = {.lex_state = 78}, - [5952] = {.lex_state = 66}, - [5953] = {.lex_state = 92}, - [5954] = {.lex_state = 90}, - [5955] = {.lex_state = 76}, - [5956] = {.lex_state = 74}, - [5957] = {.lex_state = 74}, - [5958] = {.lex_state = 82}, - [5959] = {.lex_state = 88}, - [5960] = {.lex_state = 69}, - [5961] = {.lex_state = 54}, - [5962] = {.lex_state = 84}, - [5963] = {.lex_state = 80}, - [5964] = {.lex_state = 72}, - [5965] = {.lex_state = 74}, - [5966] = {.lex_state = 70}, - [5967] = {.lex_state = 75}, - [5968] = {.lex_state = 91}, - [5969] = {.lex_state = 67}, - [5970] = {.lex_state = 59}, - [5971] = {.lex_state = 73}, - [5972] = {.lex_state = 4}, - [5973] = {.lex_state = 0}, - [5974] = {.lex_state = 0}, - [5975] = {.lex_state = 43}, - [5976] = {.lex_state = 43}, - [5977] = {.lex_state = 43}, - [5978] = {.lex_state = 43}, - [5979] = {.lex_state = 70}, - [5980] = {.lex_state = 75}, - [5981] = {.lex_state = 91}, - [5982] = {.lex_state = 88}, - [5983] = {.lex_state = 87}, - [5984] = {.lex_state = 85}, - [5985] = {.lex_state = 83}, - [5986] = {.lex_state = 81}, - [5987] = {.lex_state = 61}, - [5988] = {.lex_state = 79}, - [5989] = {.lex_state = 77}, - [5990] = {.lex_state = 72}, + [5918] = {.lex_state = 0}, + [5919] = {.lex_state = 92}, + [5920] = {.lex_state = 72}, + [5921] = {.lex_state = 85}, + [5922] = {.lex_state = 83}, + [5923] = {.lex_state = 68}, + [5924] = {.lex_state = 94}, + [5925] = {.lex_state = 91}, + [5926] = {.lex_state = 73}, + [5927] = {.lex_state = 62}, + [5928] = {.lex_state = 62}, + [5929] = {.lex_state = 81}, + [5930] = {.lex_state = 75}, + [5931] = {.lex_state = 56}, + [5932] = {.lex_state = 79}, + [5933] = {.lex_state = 62}, + [5934] = {.lex_state = 62}, + [5935] = {.lex_state = 77}, + [5936] = {.lex_state = 65}, + [5937] = {.lex_state = 62}, + [5938] = {.lex_state = 80}, + [5939] = {.lex_state = 78}, + [5940] = {.lex_state = 93}, + [5941] = {.lex_state = 74}, + [5942] = {.lex_state = 69}, + [5943] = {.lex_state = 76}, + [5944] = {.lex_state = 4}, + [5945] = {.lex_state = 75}, + [5946] = {.lex_state = 0}, + [5947] = {.lex_state = 43}, + [5948] = {.lex_state = 43}, + [5949] = {.lex_state = 52}, + [5950] = {.lex_state = 90}, + [5951] = {.lex_state = 89}, + [5952] = {.lex_state = 88}, + [5953] = {.lex_state = 87}, + [5954] = {.lex_state = 86}, + [5955] = {.lex_state = 60}, + [5956] = {.lex_state = 84}, + [5957] = {.lex_state = 82}, + [5958] = {.lex_state = 92}, + [5959] = {.lex_state = 72}, + [5960] = {.lex_state = 85}, + [5961] = {.lex_state = 83}, + [5962] = {.lex_state = 68}, + [5963] = {.lex_state = 94}, + [5964] = {.lex_state = 91}, + [5965] = {.lex_state = 81}, + [5966] = {.lex_state = 75}, + [5967] = {.lex_state = 56}, + [5968] = {.lex_state = 73}, + [5969] = {.lex_state = 62}, + [5970] = {.lex_state = 62}, + [5971] = {.lex_state = 81}, + [5972] = {.lex_state = 75}, + [5973] = {.lex_state = 56}, + [5974] = {.lex_state = 79}, + [5975] = {.lex_state = 77}, + [5976] = {.lex_state = 65}, + [5977] = {.lex_state = 62}, + [5978] = {.lex_state = 80}, + [5979] = {.lex_state = 78}, + [5980] = {.lex_state = 93}, + [5981] = {.lex_state = 74}, + [5982] = {.lex_state = 69}, + [5983] = {.lex_state = 76}, + [5984] = {.lex_state = 4}, + [5985] = {.lex_state = 0}, + [5986] = {.lex_state = 0}, + [5987] = {.lex_state = 43}, + [5988] = {.lex_state = 43}, + [5989] = {.lex_state = 52}, + [5990] = {.lex_state = 90}, [5991] = {.lex_state = 89}, - [5992] = {.lex_state = 86}, - [5993] = {.lex_state = 78}, - [5994] = {.lex_state = 66}, - [5995] = {.lex_state = 92}, - [5996] = {.lex_state = 90}, - [5997] = {.lex_state = 76}, - [5998] = {.lex_state = 74}, - [5999] = {.lex_state = 74}, - [6000] = {.lex_state = 82}, - [6001] = {.lex_state = 69}, - [6002] = {.lex_state = 54}, - [6003] = {.lex_state = 84}, - [6004] = {.lex_state = 80}, - [6005] = {.lex_state = 72}, - [6006] = {.lex_state = 74}, - [6007] = {.lex_state = 70}, - [6008] = {.lex_state = 75}, - [6009] = {.lex_state = 91}, - [6010] = {.lex_state = 67}, - [6011] = {.lex_state = 67}, - [6012] = {.lex_state = 59}, - [6013] = {.lex_state = 59}, - [6014] = {.lex_state = 73}, - [6015] = {.lex_state = 4}, - [6016] = {.lex_state = 0}, - [6017] = {.lex_state = 0}, - [6018] = {.lex_state = 43}, - [6019] = {.lex_state = 0}, - [6020] = {.lex_state = 0}, - [6021] = {.lex_state = 43}, - [6022] = {.lex_state = 4}, - [6023] = {.lex_state = 73}, - [6024] = {.lex_state = 88}, - [6025] = {.lex_state = 87}, - [6026] = {.lex_state = 85}, - [6027] = {.lex_state = 83}, - [6028] = {.lex_state = 81}, - [6029] = {.lex_state = 61}, - [6030] = {.lex_state = 79}, - [6031] = {.lex_state = 77}, - [6032] = {.lex_state = 64}, - [6033] = {.lex_state = 89}, - [6034] = {.lex_state = 86}, - [6035] = {.lex_state = 78}, - [6036] = {.lex_state = 66}, - [6037] = {.lex_state = 92}, - [6038] = {.lex_state = 90}, - [6039] = {.lex_state = 76}, - [6040] = {.lex_state = 74}, - [6041] = {.lex_state = 74}, - [6042] = {.lex_state = 82}, - [6043] = {.lex_state = 59}, - [6044] = {.lex_state = 69}, - [6045] = {.lex_state = 73}, - [6046] = {.lex_state = 54}, - [6047] = {.lex_state = 84}, - [6048] = {.lex_state = 80}, - [6049] = {.lex_state = 72}, - [6050] = {.lex_state = 74}, - [6051] = {.lex_state = 70}, - [6052] = {.lex_state = 75}, - [6053] = {.lex_state = 91}, - [6054] = {.lex_state = 67}, - [6055] = {.lex_state = 59}, - [6056] = {.lex_state = 67}, - [6057] = {.lex_state = 91}, - [6058] = {.lex_state = 73}, - [6059] = {.lex_state = 4}, - [6060] = {.lex_state = 0}, - [6061] = {.lex_state = 0}, - [6062] = {.lex_state = 75}, - [6063] = {.lex_state = 70}, - [6064] = {.lex_state = 74}, - [6065] = {.lex_state = 43}, + [5992] = {.lex_state = 88}, + [5993] = {.lex_state = 87}, + [5994] = {.lex_state = 86}, + [5995] = {.lex_state = 60}, + [5996] = {.lex_state = 84}, + [5997] = {.lex_state = 82}, + [5998] = {.lex_state = 92}, + [5999] = {.lex_state = 79}, + [6000] = {.lex_state = 77}, + [6001] = {.lex_state = 72}, + [6002] = {.lex_state = 85}, + [6003] = {.lex_state = 83}, + [6004] = {.lex_state = 68}, + [6005] = {.lex_state = 94}, + [6006] = {.lex_state = 91}, + [6007] = {.lex_state = 73}, + [6008] = {.lex_state = 62}, + [6009] = {.lex_state = 62}, + [6010] = {.lex_state = 81}, + [6011] = {.lex_state = 73}, + [6012] = {.lex_state = 56}, + [6013] = {.lex_state = 79}, + [6014] = {.lex_state = 77}, + [6015] = {.lex_state = 65}, + [6016] = {.lex_state = 62}, + [6017] = {.lex_state = 80}, + [6018] = {.lex_state = 78}, + [6019] = {.lex_state = 93}, + [6020] = {.lex_state = 74}, + [6021] = {.lex_state = 69}, + [6022] = {.lex_state = 76}, + [6023] = {.lex_state = 4}, + [6024] = {.lex_state = 0}, + [6025] = {.lex_state = 0}, + [6026] = {.lex_state = 43}, + [6027] = {.lex_state = 43}, + [6028] = {.lex_state = 52}, + [6029] = {.lex_state = 90}, + [6030] = {.lex_state = 89}, + [6031] = {.lex_state = 88}, + [6032] = {.lex_state = 62}, + [6033] = {.lex_state = 80}, + [6034] = {.lex_state = 87}, + [6035] = {.lex_state = 86}, + [6036] = {.lex_state = 60}, + [6037] = {.lex_state = 84}, + [6038] = {.lex_state = 82}, + [6039] = {.lex_state = 92}, + [6040] = {.lex_state = 72}, + [6041] = {.lex_state = 85}, + [6042] = {.lex_state = 83}, + [6043] = {.lex_state = 68}, + [6044] = {.lex_state = 94}, + [6045] = {.lex_state = 91}, + [6046] = {.lex_state = 84}, + [6047] = {.lex_state = 62}, + [6048] = {.lex_state = 62}, + [6049] = {.lex_state = 81}, + [6050] = {.lex_state = 75}, + [6051] = {.lex_state = 56}, + [6052] = {.lex_state = 79}, + [6053] = {.lex_state = 77}, + [6054] = {.lex_state = 65}, + [6055] = {.lex_state = 62}, + [6056] = {.lex_state = 80}, + [6057] = {.lex_state = 78}, + [6058] = {.lex_state = 93}, + [6059] = {.lex_state = 74}, + [6060] = {.lex_state = 69}, + [6061] = {.lex_state = 76}, + [6062] = {.lex_state = 4}, + [6063] = {.lex_state = 0}, + [6064] = {.lex_state = 78}, + [6065] = {.lex_state = 93}, [6066] = {.lex_state = 74}, - [6067] = {.lex_state = 80}, - [6068] = {.lex_state = 84}, - [6069] = {.lex_state = 54}, - [6070] = {.lex_state = 43}, - [6071] = {.lex_state = 69}, - [6072] = {.lex_state = 82}, - [6073] = {.lex_state = 81}, - [6074] = {.lex_state = 88}, - [6075] = {.lex_state = 87}, - [6076] = {.lex_state = 85}, - [6077] = {.lex_state = 4}, - [6078] = {.lex_state = 83}, - [6079] = {.lex_state = 81}, - [6080] = {.lex_state = 61}, - [6081] = {.lex_state = 79}, - [6082] = {.lex_state = 77}, - [6083] = {.lex_state = 64}, - [6084] = {.lex_state = 89}, - [6085] = {.lex_state = 86}, - [6086] = {.lex_state = 78}, - [6087] = {.lex_state = 66}, - [6088] = {.lex_state = 92}, - [6089] = {.lex_state = 90}, - [6090] = {.lex_state = 76}, - [6091] = {.lex_state = 74}, - [6092] = {.lex_state = 74}, - [6093] = {.lex_state = 82}, - [6094] = {.lex_state = 74}, - [6095] = {.lex_state = 69}, - [6096] = {.lex_state = 54}, - [6097] = {.lex_state = 84}, - [6098] = {.lex_state = 80}, - [6099] = {.lex_state = 72}, + [6067] = {.lex_state = 0}, + [6068] = {.lex_state = 43}, + [6069] = {.lex_state = 43}, + [6070] = {.lex_state = 52}, + [6071] = {.lex_state = 90}, + [6072] = {.lex_state = 89}, + [6073] = {.lex_state = 88}, + [6074] = {.lex_state = 87}, + [6075] = {.lex_state = 86}, + [6076] = {.lex_state = 60}, + [6077] = {.lex_state = 52}, + [6078] = {.lex_state = 82}, + [6079] = {.lex_state = 92}, + [6080] = {.lex_state = 72}, + [6081] = {.lex_state = 85}, + [6082] = {.lex_state = 83}, + [6083] = {.lex_state = 68}, + [6084] = {.lex_state = 94}, + [6085] = {.lex_state = 91}, + [6086] = {.lex_state = 73}, + [6087] = {.lex_state = 62}, + [6088] = {.lex_state = 62}, + [6089] = {.lex_state = 81}, + [6090] = {.lex_state = 75}, + [6091] = {.lex_state = 56}, + [6092] = {.lex_state = 79}, + [6093] = {.lex_state = 77}, + [6094] = {.lex_state = 65}, + [6095] = {.lex_state = 62}, + [6096] = {.lex_state = 80}, + [6097] = {.lex_state = 69}, + [6098] = {.lex_state = 78}, + [6099] = {.lex_state = 93}, [6100] = {.lex_state = 74}, - [6101] = {.lex_state = 70}, - [6102] = {.lex_state = 75}, - [6103] = {.lex_state = 91}, - [6104] = {.lex_state = 67}, - [6105] = {.lex_state = 59}, - [6106] = {.lex_state = 73}, - [6107] = {.lex_state = 4}, - [6108] = {.lex_state = 0}, - [6109] = {.lex_state = 0}, - [6110] = {.lex_state = 76}, - [6111] = {.lex_state = 90}, - [6112] = {.lex_state = 43}, - [6113] = {.lex_state = 92}, - [6114] = {.lex_state = 66}, - [6115] = {.lex_state = 78}, - [6116] = {.lex_state = 86}, - [6117] = {.lex_state = 43}, - [6118] = {.lex_state = 89}, - [6119] = {.lex_state = 64}, - [6120] = {.lex_state = 88}, - [6121] = {.lex_state = 87}, - [6122] = {.lex_state = 85}, - [6123] = {.lex_state = 83}, - [6124] = {.lex_state = 81}, - [6125] = {.lex_state = 61}, - [6126] = {.lex_state = 79}, - [6127] = {.lex_state = 77}, - [6128] = {.lex_state = 64}, - [6129] = {.lex_state = 89}, - [6130] = {.lex_state = 86}, - [6131] = {.lex_state = 78}, - [6132] = {.lex_state = 66}, - [6133] = {.lex_state = 92}, - [6134] = {.lex_state = 90}, - [6135] = {.lex_state = 76}, - [6136] = {.lex_state = 74}, - [6137] = {.lex_state = 74}, - [6138] = {.lex_state = 82}, - [6139] = {.lex_state = 0}, - [6140] = {.lex_state = 77}, - [6141] = {.lex_state = 69}, - [6142] = {.lex_state = 54}, - [6143] = {.lex_state = 84}, - [6144] = {.lex_state = 80}, - [6145] = {.lex_state = 72}, - [6146] = {.lex_state = 74}, - [6147] = {.lex_state = 70}, - [6148] = {.lex_state = 75}, - [6149] = {.lex_state = 91}, - [6150] = {.lex_state = 67}, - [6151] = {.lex_state = 59}, - [6152] = {.lex_state = 79}, - [6153] = {.lex_state = 61}, - [6154] = {.lex_state = 73}, - [6155] = {.lex_state = 4}, - [6156] = {.lex_state = 0}, - [6157] = {.lex_state = 0}, - [6158] = {.lex_state = 91}, - [6159] = {.lex_state = 83}, - [6160] = {.lex_state = 43}, - [6161] = {.lex_state = 43}, - [6162] = {.lex_state = 85}, - [6163] = {.lex_state = 87}, - [6164] = {.lex_state = 88}, - [6165] = {.lex_state = 88}, - [6166] = {.lex_state = 87}, - [6167] = {.lex_state = 85}, - [6168] = {.lex_state = 83}, - [6169] = {.lex_state = 81}, - [6170] = {.lex_state = 61}, - [6171] = {.lex_state = 0}, - [6172] = {.lex_state = 88}, - [6173] = {.lex_state = 79}, - [6174] = {.lex_state = 77}, - [6175] = {.lex_state = 64}, - [6176] = {.lex_state = 89}, - [6177] = {.lex_state = 86}, - [6178] = {.lex_state = 78}, - [6179] = {.lex_state = 66}, - [6180] = {.lex_state = 92}, - [6181] = {.lex_state = 90}, - [6182] = {.lex_state = 76}, - [6183] = {.lex_state = 74}, - [6184] = {.lex_state = 74}, - [6185] = {.lex_state = 82}, - [6186] = {.lex_state = 69}, - [6187] = {.lex_state = 54}, - [6188] = {.lex_state = 84}, - [6189] = {.lex_state = 80}, - [6190] = {.lex_state = 72}, - [6191] = {.lex_state = 74}, - [6192] = {.lex_state = 70}, - [6193] = {.lex_state = 75}, - [6194] = {.lex_state = 4}, - [6195] = {.lex_state = 67}, - [6196] = {.lex_state = 59}, - [6197] = {.lex_state = 73}, - [6198] = {.lex_state = 4}, - [6199] = {.lex_state = 0}, - [6200] = {.lex_state = 0}, - [6201] = {.lex_state = 43}, - [6202] = {.lex_state = 43}, - [6203] = {.lex_state = 43}, - [6204] = {.lex_state = 43}, - [6205] = {.lex_state = 88}, - [6206] = {.lex_state = 87}, - [6207] = {.lex_state = 85}, - [6208] = {.lex_state = 83}, - [6209] = {.lex_state = 81}, - [6210] = {.lex_state = 61}, - [6211] = {.lex_state = 79}, - [6212] = {.lex_state = 77}, - [6213] = {.lex_state = 64}, - [6214] = {.lex_state = 89}, - [6215] = {.lex_state = 86}, - [6216] = {.lex_state = 78}, - [6217] = {.lex_state = 66}, - [6218] = {.lex_state = 92}, - [6219] = {.lex_state = 90}, - [6220] = {.lex_state = 76}, - [6221] = {.lex_state = 74}, - [6222] = {.lex_state = 74}, - [6223] = {.lex_state = 82}, - [6224] = {.lex_state = 69}, - [6225] = {.lex_state = 54}, - [6226] = {.lex_state = 84}, - [6227] = {.lex_state = 80}, - [6228] = {.lex_state = 72}, - [6229] = {.lex_state = 74}, - [6230] = {.lex_state = 70}, - [6231] = {.lex_state = 75}, - [6232] = {.lex_state = 91}, - [6233] = {.lex_state = 67}, - [6234] = {.lex_state = 59}, - [6235] = {.lex_state = 73}, - [6236] = {.lex_state = 54}, - [6237] = {.lex_state = 0}, - [6238] = {.lex_state = 0}, - [6239] = {.lex_state = 43}, - [6240] = {.lex_state = 0}, - [6241] = {.lex_state = 0}, - [6242] = {.lex_state = 43}, - [6243] = {.lex_state = 4}, - [6244] = {.lex_state = 73}, - [6245] = {.lex_state = 88}, - [6246] = {.lex_state = 87}, - [6247] = {.lex_state = 85}, - [6248] = {.lex_state = 83}, - [6249] = {.lex_state = 81}, - [6250] = {.lex_state = 61}, - [6251] = {.lex_state = 79}, - [6252] = {.lex_state = 77}, - [6253] = {.lex_state = 64}, - [6254] = {.lex_state = 89}, - [6255] = {.lex_state = 86}, - [6256] = {.lex_state = 78}, - [6257] = {.lex_state = 66}, - [6258] = {.lex_state = 92}, - [6259] = {.lex_state = 90}, - [6260] = {.lex_state = 76}, - [6261] = {.lex_state = 74}, - [6262] = {.lex_state = 74}, - [6263] = {.lex_state = 82}, - [6264] = {.lex_state = 59}, - [6265] = {.lex_state = 69}, - [6266] = {.lex_state = 54}, - [6267] = {.lex_state = 84}, - [6268] = {.lex_state = 0}, - [6269] = {.lex_state = 80}, - [6270] = {.lex_state = 72}, - [6271] = {.lex_state = 74}, - [6272] = {.lex_state = 70}, - [6273] = {.lex_state = 75}, + [6101] = {.lex_state = 69}, + [6102] = {.lex_state = 76}, + [6103] = {.lex_state = 4}, + [6104] = {.lex_state = 0}, + [6105] = {.lex_state = 0}, + [6106] = {.lex_state = 43}, + [6107] = {.lex_state = 43}, + [6108] = {.lex_state = 52}, + [6109] = {.lex_state = 90}, + [6110] = {.lex_state = 89}, + [6111] = {.lex_state = 88}, + [6112] = {.lex_state = 87}, + [6113] = {.lex_state = 86}, + [6114] = {.lex_state = 60}, + [6115] = {.lex_state = 84}, + [6116] = {.lex_state = 82}, + [6117] = {.lex_state = 92}, + [6118] = {.lex_state = 72}, + [6119] = {.lex_state = 85}, + [6120] = {.lex_state = 83}, + [6121] = {.lex_state = 68}, + [6122] = {.lex_state = 94}, + [6123] = {.lex_state = 91}, + [6124] = {.lex_state = 73}, + [6125] = {.lex_state = 62}, + [6126] = {.lex_state = 62}, + [6127] = {.lex_state = 81}, + [6128] = {.lex_state = 75}, + [6129] = {.lex_state = 56}, + [6130] = {.lex_state = 79}, + [6131] = {.lex_state = 76}, + [6132] = {.lex_state = 77}, + [6133] = {.lex_state = 65}, + [6134] = {.lex_state = 62}, + [6135] = {.lex_state = 80}, + [6136] = {.lex_state = 78}, + [6137] = {.lex_state = 93}, + [6138] = {.lex_state = 74}, + [6139] = {.lex_state = 69}, + [6140] = {.lex_state = 76}, + [6141] = {.lex_state = 4}, + [6142] = {.lex_state = 0}, + [6143] = {.lex_state = 0}, + [6144] = {.lex_state = 43}, + [6145] = {.lex_state = 43}, + [6146] = {.lex_state = 78}, + [6147] = {.lex_state = 90}, + [6148] = {.lex_state = 89}, + [6149] = {.lex_state = 88}, + [6150] = {.lex_state = 87}, + [6151] = {.lex_state = 86}, + [6152] = {.lex_state = 60}, + [6153] = {.lex_state = 84}, + [6154] = {.lex_state = 82}, + [6155] = {.lex_state = 92}, + [6156] = {.lex_state = 72}, + [6157] = {.lex_state = 85}, + [6158] = {.lex_state = 83}, + [6159] = {.lex_state = 68}, + [6160] = {.lex_state = 94}, + [6161] = {.lex_state = 91}, + [6162] = {.lex_state = 73}, + [6163] = {.lex_state = 62}, + [6164] = {.lex_state = 4}, + [6165] = {.lex_state = 62}, + [6166] = {.lex_state = 81}, + [6167] = {.lex_state = 75}, + [6168] = {.lex_state = 56}, + [6169] = {.lex_state = 79}, + [6170] = {.lex_state = 77}, + [6171] = {.lex_state = 65}, + [6172] = {.lex_state = 62}, + [6173] = {.lex_state = 80}, + [6174] = {.lex_state = 0}, + [6175] = {.lex_state = 93}, + [6176] = {.lex_state = 74}, + [6177] = {.lex_state = 69}, + [6178] = {.lex_state = 76}, + [6179] = {.lex_state = 4}, + [6180] = {.lex_state = 0}, + [6181] = {.lex_state = 0}, + [6182] = {.lex_state = 43}, + [6183] = {.lex_state = 43}, + [6184] = {.lex_state = 52}, + [6185] = {.lex_state = 90}, + [6186] = {.lex_state = 89}, + [6187] = {.lex_state = 88}, + [6188] = {.lex_state = 87}, + [6189] = {.lex_state = 86}, + [6190] = {.lex_state = 60}, + [6191] = {.lex_state = 84}, + [6192] = {.lex_state = 82}, + [6193] = {.lex_state = 92}, + [6194] = {.lex_state = 72}, + [6195] = {.lex_state = 85}, + [6196] = {.lex_state = 83}, + [6197] = {.lex_state = 68}, + [6198] = {.lex_state = 0}, + [6199] = {.lex_state = 94}, + [6200] = {.lex_state = 91}, + [6201] = {.lex_state = 73}, + [6202] = {.lex_state = 62}, + [6203] = {.lex_state = 81}, + [6204] = {.lex_state = 75}, + [6205] = {.lex_state = 56}, + [6206] = {.lex_state = 79}, + [6207] = {.lex_state = 77}, + [6208] = {.lex_state = 65}, + [6209] = {.lex_state = 62}, + [6210] = {.lex_state = 80}, + [6211] = {.lex_state = 78}, + [6212] = {.lex_state = 93}, + [6213] = {.lex_state = 74}, + [6214] = {.lex_state = 69}, + [6215] = {.lex_state = 76}, + [6216] = {.lex_state = 4}, + [6217] = {.lex_state = 0}, + [6218] = {.lex_state = 93}, + [6219] = {.lex_state = 43}, + [6220] = {.lex_state = 43}, + [6221] = {.lex_state = 52}, + [6222] = {.lex_state = 90}, + [6223] = {.lex_state = 89}, + [6224] = {.lex_state = 88}, + [6225] = {.lex_state = 87}, + [6226] = {.lex_state = 86}, + [6227] = {.lex_state = 60}, + [6228] = {.lex_state = 84}, + [6229] = {.lex_state = 82}, + [6230] = {.lex_state = 92}, + [6231] = {.lex_state = 0}, + [6232] = {.lex_state = 72}, + [6233] = {.lex_state = 85}, + [6234] = {.lex_state = 83}, + [6235] = {.lex_state = 68}, + [6236] = {.lex_state = 94}, + [6237] = {.lex_state = 91}, + [6238] = {.lex_state = 73}, + [6239] = {.lex_state = 62}, + [6240] = {.lex_state = 62}, + [6241] = {.lex_state = 81}, + [6242] = {.lex_state = 75}, + [6243] = {.lex_state = 56}, + [6244] = {.lex_state = 79}, + [6245] = {.lex_state = 77}, + [6246] = {.lex_state = 65}, + [6247] = {.lex_state = 62}, + [6248] = {.lex_state = 80}, + [6249] = {.lex_state = 78}, + [6250] = {.lex_state = 93}, + [6251] = {.lex_state = 74}, + [6252] = {.lex_state = 69}, + [6253] = {.lex_state = 76}, + [6254] = {.lex_state = 4}, + [6255] = {.lex_state = 0}, + [6256] = {.lex_state = 0}, + [6257] = {.lex_state = 43}, + [6258] = {.lex_state = 43}, + [6259] = {.lex_state = 52}, + [6260] = {.lex_state = 90}, + [6261] = {.lex_state = 89}, + [6262] = {.lex_state = 88}, + [6263] = {.lex_state = 87}, + [6264] = {.lex_state = 86}, + [6265] = {.lex_state = 60}, + [6266] = {.lex_state = 84}, + [6267] = {.lex_state = 82}, + [6268] = {.lex_state = 92}, + [6269] = {.lex_state = 72}, + [6270] = {.lex_state = 85}, + [6271] = {.lex_state = 83}, + [6272] = {.lex_state = 68}, + [6273] = {.lex_state = 94}, [6274] = {.lex_state = 91}, - [6275] = {.lex_state = 67}, - [6276] = {.lex_state = 59}, - [6277] = {.lex_state = 67}, - [6278] = {.lex_state = 91}, - [6279] = {.lex_state = 73}, - [6280] = {.lex_state = 4}, - [6281] = {.lex_state = 0}, - [6282] = {.lex_state = 0}, - [6283] = {.lex_state = 75}, - [6284] = {.lex_state = 70}, - [6285] = {.lex_state = 43}, - [6286] = {.lex_state = 74}, - [6287] = {.lex_state = 72}, - [6288] = {.lex_state = 80}, - [6289] = {.lex_state = 84}, - [6290] = {.lex_state = 43}, - [6291] = {.lex_state = 54}, - [6292] = {.lex_state = 69}, - [6293] = {.lex_state = 82}, - [6294] = {.lex_state = 88}, - [6295] = {.lex_state = 87}, - [6296] = {.lex_state = 85}, - [6297] = {.lex_state = 83}, - [6298] = {.lex_state = 81}, - [6299] = {.lex_state = 61}, - [6300] = {.lex_state = 79}, - [6301] = {.lex_state = 77}, - [6302] = {.lex_state = 64}, - [6303] = {.lex_state = 89}, - [6304] = {.lex_state = 86}, - [6305] = {.lex_state = 78}, - [6306] = {.lex_state = 66}, - [6307] = {.lex_state = 92}, - [6308] = {.lex_state = 90}, - [6309] = {.lex_state = 76}, - [6310] = {.lex_state = 74}, - [6311] = {.lex_state = 74}, - [6312] = {.lex_state = 82}, - [6313] = {.lex_state = 74}, - [6314] = {.lex_state = 69}, - [6315] = {.lex_state = 91}, - [6316] = {.lex_state = 84}, - [6317] = {.lex_state = 80}, - [6318] = {.lex_state = 72}, - [6319] = {.lex_state = 74}, - [6320] = {.lex_state = 70}, - [6321] = {.lex_state = 75}, - [6322] = {.lex_state = 89}, - [6323] = {.lex_state = 67}, - [6324] = {.lex_state = 59}, + [6275] = {.lex_state = 73}, + [6276] = {.lex_state = 62}, + [6277] = {.lex_state = 62}, + [6278] = {.lex_state = 81}, + [6279] = {.lex_state = 75}, + [6280] = {.lex_state = 56}, + [6281] = {.lex_state = 79}, + [6282] = {.lex_state = 77}, + [6283] = {.lex_state = 65}, + [6284] = {.lex_state = 62}, + [6285] = {.lex_state = 80}, + [6286] = {.lex_state = 78}, + [6287] = {.lex_state = 60}, + [6288] = {.lex_state = 74}, + [6289] = {.lex_state = 69}, + [6290] = {.lex_state = 76}, + [6291] = {.lex_state = 4}, + [6292] = {.lex_state = 0}, + [6293] = {.lex_state = 0}, + [6294] = {.lex_state = 43}, + [6295] = {.lex_state = 43}, + [6296] = {.lex_state = 52}, + [6297] = {.lex_state = 90}, + [6298] = {.lex_state = 89}, + [6299] = {.lex_state = 88}, + [6300] = {.lex_state = 87}, + [6301] = {.lex_state = 86}, + [6302] = {.lex_state = 94}, + [6303] = {.lex_state = 84}, + [6304] = {.lex_state = 82}, + [6305] = {.lex_state = 92}, + [6306] = {.lex_state = 72}, + [6307] = {.lex_state = 85}, + [6308] = {.lex_state = 83}, + [6309] = {.lex_state = 68}, + [6310] = {.lex_state = 94}, + [6311] = {.lex_state = 91}, + [6312] = {.lex_state = 73}, + [6313] = {.lex_state = 62}, + [6314] = {.lex_state = 62}, + [6315] = {.lex_state = 81}, + [6316] = {.lex_state = 75}, + [6317] = {.lex_state = 56}, + [6318] = {.lex_state = 79}, + [6319] = {.lex_state = 77}, + [6320] = {.lex_state = 65}, + [6321] = {.lex_state = 62}, + [6322] = {.lex_state = 80}, + [6323] = {.lex_state = 78}, + [6324] = {.lex_state = 93}, [6325] = {.lex_state = 74}, - [6326] = {.lex_state = 73}, - [6327] = {.lex_state = 4}, - [6328] = {.lex_state = 0}, + [6326] = {.lex_state = 69}, + [6327] = {.lex_state = 76}, + [6328] = {.lex_state = 4}, [6329] = {.lex_state = 0}, - [6330] = {.lex_state = 76}, - [6331] = {.lex_state = 90}, + [6330] = {.lex_state = 0}, + [6331] = {.lex_state = 43}, [6332] = {.lex_state = 43}, - [6333] = {.lex_state = 92}, - [6334] = {.lex_state = 66}, - [6335] = {.lex_state = 78}, - [6336] = {.lex_state = 86}, - [6337] = {.lex_state = 43}, - [6338] = {.lex_state = 89}, - [6339] = {.lex_state = 64}, - [6340] = {.lex_state = 88}, - [6341] = {.lex_state = 87}, - [6342] = {.lex_state = 85}, - [6343] = {.lex_state = 83}, - [6344] = {.lex_state = 81}, - [6345] = {.lex_state = 61}, - [6346] = {.lex_state = 79}, - [6347] = {.lex_state = 77}, - [6348] = {.lex_state = 64}, - [6349] = {.lex_state = 89}, - [6350] = {.lex_state = 86}, - [6351] = {.lex_state = 78}, - [6352] = {.lex_state = 66}, - [6353] = {.lex_state = 92}, - [6354] = {.lex_state = 90}, - [6355] = {.lex_state = 76}, - [6356] = {.lex_state = 74}, - [6357] = {.lex_state = 74}, - [6358] = {.lex_state = 82}, - [6359] = {.lex_state = 77}, - [6360] = {.lex_state = 69}, - [6361] = {.lex_state = 54}, - [6362] = {.lex_state = 84}, - [6363] = {.lex_state = 80}, - [6364] = {.lex_state = 72}, - [6365] = {.lex_state = 74}, - [6366] = {.lex_state = 70}, - [6367] = {.lex_state = 75}, - [6368] = {.lex_state = 91}, - [6369] = {.lex_state = 67}, - [6370] = {.lex_state = 59}, - [6371] = {.lex_state = 79}, - [6372] = {.lex_state = 61}, - [6373] = {.lex_state = 73}, - [6374] = {.lex_state = 4}, - [6375] = {.lex_state = 0}, - [6376] = {.lex_state = 0}, - [6377] = {.lex_state = 81}, - [6378] = {.lex_state = 83}, - [6379] = {.lex_state = 43}, - [6380] = {.lex_state = 43}, - [6381] = {.lex_state = 85}, - [6382] = {.lex_state = 87}, - [6383] = {.lex_state = 88}, - [6384] = {.lex_state = 88}, - [6385] = {.lex_state = 87}, - [6386] = {.lex_state = 85}, - [6387] = {.lex_state = 83}, - [6388] = {.lex_state = 81}, - [6389] = {.lex_state = 61}, - [6390] = {.lex_state = 79}, - [6391] = {.lex_state = 77}, - [6392] = {.lex_state = 64}, - [6393] = {.lex_state = 67}, - [6394] = {.lex_state = 86}, - [6395] = {.lex_state = 78}, - [6396] = {.lex_state = 66}, - [6397] = {.lex_state = 92}, - [6398] = {.lex_state = 90}, - [6399] = {.lex_state = 76}, - [6400] = {.lex_state = 74}, + [6333] = {.lex_state = 52}, + [6334] = {.lex_state = 90}, + [6335] = {.lex_state = 89}, + [6336] = {.lex_state = 88}, + [6337] = {.lex_state = 87}, + [6338] = {.lex_state = 86}, + [6339] = {.lex_state = 60}, + [6340] = {.lex_state = 84}, + [6341] = {.lex_state = 82}, + [6342] = {.lex_state = 92}, + [6343] = {.lex_state = 72}, + [6344] = {.lex_state = 85}, + [6345] = {.lex_state = 83}, + [6346] = {.lex_state = 68}, + [6347] = {.lex_state = 88}, + [6348] = {.lex_state = 91}, + [6349] = {.lex_state = 73}, + [6350] = {.lex_state = 62}, + [6351] = {.lex_state = 62}, + [6352] = {.lex_state = 81}, + [6353] = {.lex_state = 75}, + [6354] = {.lex_state = 56}, + [6355] = {.lex_state = 79}, + [6356] = {.lex_state = 77}, + [6357] = {.lex_state = 65}, + [6358] = {.lex_state = 62}, + [6359] = {.lex_state = 80}, + [6360] = {.lex_state = 78}, + [6361] = {.lex_state = 0}, + [6362] = {.lex_state = 52}, + [6363] = {.lex_state = 93}, + [6364] = {.lex_state = 74}, + [6365] = {.lex_state = 69}, + [6366] = {.lex_state = 76}, + [6367] = {.lex_state = 4}, + [6368] = {.lex_state = 0}, + [6369] = {.lex_state = 0}, + [6370] = {.lex_state = 43}, + [6371] = {.lex_state = 43}, + [6372] = {.lex_state = 52}, + [6373] = {.lex_state = 90}, + [6374] = {.lex_state = 89}, + [6375] = {.lex_state = 88}, + [6376] = {.lex_state = 87}, + [6377] = {.lex_state = 86}, + [6378] = {.lex_state = 60}, + [6379] = {.lex_state = 84}, + [6380] = {.lex_state = 82}, + [6381] = {.lex_state = 92}, + [6382] = {.lex_state = 72}, + [6383] = {.lex_state = 85}, + [6384] = {.lex_state = 83}, + [6385] = {.lex_state = 68}, + [6386] = {.lex_state = 94}, + [6387] = {.lex_state = 91}, + [6388] = {.lex_state = 73}, + [6389] = {.lex_state = 62}, + [6390] = {.lex_state = 62}, + [6391] = {.lex_state = 81}, + [6392] = {.lex_state = 75}, + [6393] = {.lex_state = 56}, + [6394] = {.lex_state = 79}, + [6395] = {.lex_state = 77}, + [6396] = {.lex_state = 65}, + [6397] = {.lex_state = 62}, + [6398] = {.lex_state = 80}, + [6399] = {.lex_state = 78}, + [6400] = {.lex_state = 93}, [6401] = {.lex_state = 74}, - [6402] = {.lex_state = 82}, - [6403] = {.lex_state = 69}, - [6404] = {.lex_state = 54}, - [6405] = {.lex_state = 84}, - [6406] = {.lex_state = 80}, - [6407] = {.lex_state = 72}, - [6408] = {.lex_state = 74}, - [6409] = {.lex_state = 70}, - [6410] = {.lex_state = 75}, - [6411] = {.lex_state = 91}, - [6412] = {.lex_state = 67}, - [6413] = {.lex_state = 59}, - [6414] = {.lex_state = 73}, - [6415] = {.lex_state = 4}, - [6416] = {.lex_state = 0}, - [6417] = {.lex_state = 0}, - [6418] = {.lex_state = 43}, - [6419] = {.lex_state = 43}, - [6420] = {.lex_state = 43}, - [6421] = {.lex_state = 43}, - [6422] = {.lex_state = 88}, - [6423] = {.lex_state = 87}, - [6424] = {.lex_state = 85}, - [6425] = {.lex_state = 83}, - [6426] = {.lex_state = 81}, - [6427] = {.lex_state = 61}, - [6428] = {.lex_state = 79}, - [6429] = {.lex_state = 77}, - [6430] = {.lex_state = 64}, - [6431] = {.lex_state = 89}, - [6432] = {.lex_state = 86}, - [6433] = {.lex_state = 78}, - [6434] = {.lex_state = 66}, - [6435] = {.lex_state = 92}, - [6436] = {.lex_state = 90}, - [6437] = {.lex_state = 76}, + [6402] = {.lex_state = 69}, + [6403] = {.lex_state = 76}, + [6404] = {.lex_state = 4}, + [6405] = {.lex_state = 0}, + [6406] = {.lex_state = 0}, + [6407] = {.lex_state = 43}, + [6408] = {.lex_state = 43}, + [6409] = {.lex_state = 52}, + [6410] = {.lex_state = 90}, + [6411] = {.lex_state = 89}, + [6412] = {.lex_state = 56}, + [6413] = {.lex_state = 87}, + [6414] = {.lex_state = 86}, + [6415] = {.lex_state = 60}, + [6416] = {.lex_state = 84}, + [6417] = {.lex_state = 82}, + [6418] = {.lex_state = 92}, + [6419] = {.lex_state = 72}, + [6420] = {.lex_state = 85}, + [6421] = {.lex_state = 83}, + [6422] = {.lex_state = 68}, + [6423] = {.lex_state = 94}, + [6424] = {.lex_state = 91}, + [6425] = {.lex_state = 73}, + [6426] = {.lex_state = 62}, + [6427] = {.lex_state = 62}, + [6428] = {.lex_state = 81}, + [6429] = {.lex_state = 75}, + [6430] = {.lex_state = 43}, + [6431] = {.lex_state = 79}, + [6432] = {.lex_state = 77}, + [6433] = {.lex_state = 65}, + [6434] = {.lex_state = 62}, + [6435] = {.lex_state = 80}, + [6436] = {.lex_state = 78}, + [6437] = {.lex_state = 93}, [6438] = {.lex_state = 74}, - [6439] = {.lex_state = 74}, - [6440] = {.lex_state = 82}, - [6441] = {.lex_state = 69}, - [6442] = {.lex_state = 54}, - [6443] = {.lex_state = 84}, - [6444] = {.lex_state = 80}, - [6445] = {.lex_state = 72}, - [6446] = {.lex_state = 74}, - [6447] = {.lex_state = 70}, - [6448] = {.lex_state = 75}, - [6449] = {.lex_state = 91}, - [6450] = {.lex_state = 67}, - [6451] = {.lex_state = 59}, - [6452] = {.lex_state = 73}, - [6453] = {.lex_state = 4}, - [6454] = {.lex_state = 0}, - [6455] = {.lex_state = 0}, - [6456] = {.lex_state = 0}, - [6457] = {.lex_state = 43}, - [6458] = {.lex_state = 0}, - [6459] = {.lex_state = 4}, - [6460] = {.lex_state = 73}, - [6461] = {.lex_state = 43}, - [6462] = {.lex_state = 59}, - [6463] = {.lex_state = 90}, - [6464] = {.lex_state = 88}, - [6465] = {.lex_state = 87}, - [6466] = {.lex_state = 85}, - [6467] = {.lex_state = 83}, - [6468] = {.lex_state = 81}, - [6469] = {.lex_state = 61}, - [6470] = {.lex_state = 79}, - [6471] = {.lex_state = 77}, - [6472] = {.lex_state = 64}, - [6473] = {.lex_state = 89}, - [6474] = {.lex_state = 86}, - [6475] = {.lex_state = 78}, - [6476] = {.lex_state = 66}, - [6477] = {.lex_state = 92}, - [6478] = {.lex_state = 90}, - [6479] = {.lex_state = 76}, - [6480] = {.lex_state = 74}, - [6481] = {.lex_state = 74}, - [6482] = {.lex_state = 82}, - [6483] = {.lex_state = 69}, - [6484] = {.lex_state = 54}, - [6485] = {.lex_state = 84}, - [6486] = {.lex_state = 80}, - [6487] = {.lex_state = 72}, - [6488] = {.lex_state = 74}, - [6489] = {.lex_state = 70}, - [6490] = {.lex_state = 75}, - [6491] = {.lex_state = 91}, - [6492] = {.lex_state = 67}, - [6493] = {.lex_state = 59}, - [6494] = {.lex_state = 91}, - [6495] = {.lex_state = 75}, - [6496] = {.lex_state = 73}, - [6497] = {.lex_state = 4}, - [6498] = {.lex_state = 0}, - [6499] = {.lex_state = 0}, - [6500] = {.lex_state = 70}, - [6501] = {.lex_state = 74}, - [6502] = {.lex_state = 72}, - [6503] = {.lex_state = 43}, - [6504] = {.lex_state = 80}, - [6505] = {.lex_state = 84}, - [6506] = {.lex_state = 54}, - [6507] = {.lex_state = 43}, - [6508] = {.lex_state = 69}, - [6509] = {.lex_state = 82}, - [6510] = {.lex_state = 88}, - [6511] = {.lex_state = 87}, - [6512] = {.lex_state = 85}, - [6513] = {.lex_state = 83}, - [6514] = {.lex_state = 81}, - [6515] = {.lex_state = 61}, - [6516] = {.lex_state = 79}, - [6517] = {.lex_state = 77}, - [6518] = {.lex_state = 64}, - [6519] = {.lex_state = 89}, - [6520] = {.lex_state = 86}, - [6521] = {.lex_state = 78}, - [6522] = {.lex_state = 66}, - [6523] = {.lex_state = 92}, - [6524] = {.lex_state = 90}, - [6525] = {.lex_state = 76}, - [6526] = {.lex_state = 74}, - [6527] = {.lex_state = 74}, + [6439] = {.lex_state = 69}, + [6440] = {.lex_state = 76}, + [6441] = {.lex_state = 4}, + [6442] = {.lex_state = 0}, + [6443] = {.lex_state = 0}, + [6444] = {.lex_state = 43}, + [6445] = {.lex_state = 43}, + [6446] = {.lex_state = 52}, + [6447] = {.lex_state = 90}, + [6448] = {.lex_state = 89}, + [6449] = {.lex_state = 88}, + [6450] = {.lex_state = 87}, + [6451] = {.lex_state = 86}, + [6452] = {.lex_state = 60}, + [6453] = {.lex_state = 84}, + [6454] = {.lex_state = 82}, + [6455] = {.lex_state = 92}, + [6456] = {.lex_state = 72}, + [6457] = {.lex_state = 85}, + [6458] = {.lex_state = 83}, + [6459] = {.lex_state = 68}, + [6460] = {.lex_state = 94}, + [6461] = {.lex_state = 91}, + [6462] = {.lex_state = 73}, + [6463] = {.lex_state = 62}, + [6464] = {.lex_state = 62}, + [6465] = {.lex_state = 81}, + [6466] = {.lex_state = 75}, + [6467] = {.lex_state = 56}, + [6468] = {.lex_state = 79}, + [6469] = {.lex_state = 77}, + [6470] = {.lex_state = 65}, + [6471] = {.lex_state = 62}, + [6472] = {.lex_state = 80}, + [6473] = {.lex_state = 78}, + [6474] = {.lex_state = 93}, + [6475] = {.lex_state = 74}, + [6476] = {.lex_state = 69}, + [6477] = {.lex_state = 76}, + [6478] = {.lex_state = 4}, + [6479] = {.lex_state = 0}, + [6480] = {.lex_state = 0}, + [6481] = {.lex_state = 0}, + [6482] = {.lex_state = 43}, + [6483] = {.lex_state = 52}, + [6484] = {.lex_state = 90}, + [6485] = {.lex_state = 89}, + [6486] = {.lex_state = 88}, + [6487] = {.lex_state = 87}, + [6488] = {.lex_state = 86}, + [6489] = {.lex_state = 60}, + [6490] = {.lex_state = 84}, + [6491] = {.lex_state = 82}, + [6492] = {.lex_state = 92}, + [6493] = {.lex_state = 72}, + [6494] = {.lex_state = 85}, + [6495] = {.lex_state = 83}, + [6496] = {.lex_state = 68}, + [6497] = {.lex_state = 94}, + [6498] = {.lex_state = 91}, + [6499] = {.lex_state = 73}, + [6500] = {.lex_state = 62}, + [6501] = {.lex_state = 62}, + [6502] = {.lex_state = 81}, + [6503] = {.lex_state = 75}, + [6504] = {.lex_state = 56}, + [6505] = {.lex_state = 79}, + [6506] = {.lex_state = 77}, + [6507] = {.lex_state = 65}, + [6508] = {.lex_state = 62}, + [6509] = {.lex_state = 80}, + [6510] = {.lex_state = 78}, + [6511] = {.lex_state = 93}, + [6512] = {.lex_state = 74}, + [6513] = {.lex_state = 69}, + [6514] = {.lex_state = 76}, + [6515] = {.lex_state = 4}, + [6516] = {.lex_state = 0}, + [6517] = {.lex_state = 0}, + [6518] = {.lex_state = 43}, + [6519] = {.lex_state = 43}, + [6520] = {.lex_state = 52}, + [6521] = {.lex_state = 90}, + [6522] = {.lex_state = 89}, + [6523] = {.lex_state = 88}, + [6524] = {.lex_state = 87}, + [6525] = {.lex_state = 86}, + [6526] = {.lex_state = 60}, + [6527] = {.lex_state = 84}, [6528] = {.lex_state = 82}, - [6529] = {.lex_state = 74}, - [6530] = {.lex_state = 69}, - [6531] = {.lex_state = 54}, - [6532] = {.lex_state = 84}, - [6533] = {.lex_state = 80}, - [6534] = {.lex_state = 72}, - [6535] = {.lex_state = 74}, - [6536] = {.lex_state = 70}, - [6537] = {.lex_state = 75}, - [6538] = {.lex_state = 91}, - [6539] = {.lex_state = 67}, - [6540] = {.lex_state = 59}, - [6541] = {.lex_state = 74}, - [6542] = {.lex_state = 76}, - [6543] = {.lex_state = 73}, - [6544] = {.lex_state = 4}, - [6545] = {.lex_state = 0}, - [6546] = {.lex_state = 0}, - [6547] = {.lex_state = 54}, - [6548] = {.lex_state = 92}, - [6549] = {.lex_state = 43}, - [6550] = {.lex_state = 66}, - [6551] = {.lex_state = 78}, - [6552] = {.lex_state = 86}, - [6553] = {.lex_state = 43}, - [6554] = {.lex_state = 89}, - [6555] = {.lex_state = 64}, - [6556] = {.lex_state = 77}, - [6557] = {.lex_state = 88}, - [6558] = {.lex_state = 87}, - [6559] = {.lex_state = 85}, - [6560] = {.lex_state = 83}, - [6561] = {.lex_state = 81}, - [6562] = {.lex_state = 61}, - [6563] = {.lex_state = 79}, - [6564] = {.lex_state = 77}, - [6565] = {.lex_state = 64}, - [6566] = {.lex_state = 89}, - [6567] = {.lex_state = 86}, - [6568] = {.lex_state = 78}, - [6569] = {.lex_state = 66}, - [6570] = {.lex_state = 92}, - [6571] = {.lex_state = 90}, - [6572] = {.lex_state = 76}, - [6573] = {.lex_state = 74}, - [6574] = {.lex_state = 74}, - [6575] = {.lex_state = 82}, - [6576] = {.lex_state = 79}, - [6577] = {.lex_state = 69}, - [6578] = {.lex_state = 0}, - [6579] = {.lex_state = 84}, - [6580] = {.lex_state = 80}, - [6581] = {.lex_state = 72}, - [6582] = {.lex_state = 74}, - [6583] = {.lex_state = 70}, - [6584] = {.lex_state = 75}, - [6585] = {.lex_state = 91}, - [6586] = {.lex_state = 67}, - [6587] = {.lex_state = 59}, - [6588] = {.lex_state = 61}, - [6589] = {.lex_state = 81}, - [6590] = {.lex_state = 73}, - [6591] = {.lex_state = 4}, - [6592] = {.lex_state = 0}, - [6593] = {.lex_state = 0}, - [6594] = {.lex_state = 83}, - [6595] = {.lex_state = 43}, - [6596] = {.lex_state = 85}, - [6597] = {.lex_state = 87}, - [6598] = {.lex_state = 43}, - [6599] = {.lex_state = 88}, - [6600] = {.lex_state = 87}, - [6601] = {.lex_state = 85}, - [6602] = {.lex_state = 83}, - [6603] = {.lex_state = 81}, - [6604] = {.lex_state = 61}, - [6605] = {.lex_state = 79}, - [6606] = {.lex_state = 77}, - [6607] = {.lex_state = 64}, - [6608] = {.lex_state = 89}, - [6609] = {.lex_state = 86}, - [6610] = {.lex_state = 78}, - [6611] = {.lex_state = 66}, - [6612] = {.lex_state = 92}, - [6613] = {.lex_state = 90}, - [6614] = {.lex_state = 76}, - [6615] = {.lex_state = 74}, - [6616] = {.lex_state = 74}, - [6617] = {.lex_state = 82}, - [6618] = {.lex_state = 43}, - [6619] = {.lex_state = 69}, - [6620] = {.lex_state = 54}, - [6621] = {.lex_state = 42}, - [6622] = {.lex_state = 84}, - [6623] = {.lex_state = 80}, - [6624] = {.lex_state = 72}, - [6625] = {.lex_state = 74}, - [6626] = {.lex_state = 70}, - [6627] = {.lex_state = 75}, - [6628] = {.lex_state = 91}, - [6629] = {.lex_state = 67}, - [6630] = {.lex_state = 59}, - [6631] = {.lex_state = 43}, - [6632] = {.lex_state = 73}, - [6633] = {.lex_state = 4}, - [6634] = {.lex_state = 84}, - [6635] = {.lex_state = 0}, - [6636] = {.lex_state = 43}, - [6637] = {.lex_state = 43}, - [6638] = {.lex_state = 88}, - [6639] = {.lex_state = 87}, - [6640] = {.lex_state = 85}, - [6641] = {.lex_state = 83}, - [6642] = {.lex_state = 81}, - [6643] = {.lex_state = 61}, - [6644] = {.lex_state = 79}, - [6645] = {.lex_state = 77}, - [6646] = {.lex_state = 64}, - [6647] = {.lex_state = 89}, - [6648] = {.lex_state = 86}, - [6649] = {.lex_state = 78}, - [6650] = {.lex_state = 66}, - [6651] = {.lex_state = 92}, - [6652] = {.lex_state = 90}, - [6653] = {.lex_state = 76}, - [6654] = {.lex_state = 74}, - [6655] = {.lex_state = 74}, - [6656] = {.lex_state = 82}, - [6657] = {.lex_state = 69}, - [6658] = {.lex_state = 54}, - [6659] = {.lex_state = 84}, - [6660] = {.lex_state = 80}, - [6661] = {.lex_state = 72}, - [6662] = {.lex_state = 74}, - [6663] = {.lex_state = 70}, - [6664] = {.lex_state = 75}, - [6665] = {.lex_state = 91}, - [6666] = {.lex_state = 67}, - [6667] = {.lex_state = 59}, - [6668] = {.lex_state = 0}, - [6669] = {.lex_state = 73}, - [6670] = {.lex_state = 4}, - [6671] = {.lex_state = 0}, - [6672] = {.lex_state = 0}, - [6673] = {.lex_state = 0}, - [6674] = {.lex_state = 4}, - [6675] = {.lex_state = 43}, - [6676] = {.lex_state = 73}, - [6677] = {.lex_state = 59}, - [6678] = {.lex_state = 67}, - [6679] = {.lex_state = 91}, - [6680] = {.lex_state = 43}, - [6681] = {.lex_state = 75}, - [6682] = {.lex_state = 70}, - [6683] = {.lex_state = 74}, - [6684] = {.lex_state = 88}, - [6685] = {.lex_state = 87}, - [6686] = {.lex_state = 85}, - [6687] = {.lex_state = 83}, - [6688] = {.lex_state = 81}, - [6689] = {.lex_state = 61}, + [6529] = {.lex_state = 92}, + [6530] = {.lex_state = 72}, + [6531] = {.lex_state = 85}, + [6532] = {.lex_state = 83}, + [6533] = {.lex_state = 68}, + [6534] = {.lex_state = 94}, + [6535] = {.lex_state = 91}, + [6536] = {.lex_state = 73}, + [6537] = {.lex_state = 62}, + [6538] = {.lex_state = 62}, + [6539] = {.lex_state = 81}, + [6540] = {.lex_state = 75}, + [6541] = {.lex_state = 56}, + [6542] = {.lex_state = 79}, + [6543] = {.lex_state = 77}, + [6544] = {.lex_state = 65}, + [6545] = {.lex_state = 62}, + [6546] = {.lex_state = 80}, + [6547] = {.lex_state = 78}, + [6548] = {.lex_state = 93}, + [6549] = {.lex_state = 74}, + [6550] = {.lex_state = 69}, + [6551] = {.lex_state = 76}, + [6552] = {.lex_state = 4}, + [6553] = {.lex_state = 90}, + [6554] = {.lex_state = 0}, + [6555] = {.lex_state = 43}, + [6556] = {.lex_state = 43}, + [6557] = {.lex_state = 52}, + [6558] = {.lex_state = 75}, + [6559] = {.lex_state = 89}, + [6560] = {.lex_state = 88}, + [6561] = {.lex_state = 87}, + [6562] = {.lex_state = 86}, + [6563] = {.lex_state = 60}, + [6564] = {.lex_state = 84}, + [6565] = {.lex_state = 82}, + [6566] = {.lex_state = 92}, + [6567] = {.lex_state = 72}, + [6568] = {.lex_state = 85}, + [6569] = {.lex_state = 83}, + [6570] = {.lex_state = 68}, + [6571] = {.lex_state = 94}, + [6572] = {.lex_state = 91}, + [6573] = {.lex_state = 73}, + [6574] = {.lex_state = 62}, + [6575] = {.lex_state = 62}, + [6576] = {.lex_state = 81}, + [6577] = {.lex_state = 75}, + [6578] = {.lex_state = 56}, + [6579] = {.lex_state = 79}, + [6580] = {.lex_state = 77}, + [6581] = {.lex_state = 65}, + [6582] = {.lex_state = 62}, + [6583] = {.lex_state = 80}, + [6584] = {.lex_state = 78}, + [6585] = {.lex_state = 93}, + [6586] = {.lex_state = 74}, + [6587] = {.lex_state = 69}, + [6588] = {.lex_state = 76}, + [6589] = {.lex_state = 4}, + [6590] = {.lex_state = 0}, + [6591] = {.lex_state = 0}, + [6592] = {.lex_state = 43}, + [6593] = {.lex_state = 43}, + [6594] = {.lex_state = 52}, + [6595] = {.lex_state = 90}, + [6596] = {.lex_state = 89}, + [6597] = {.lex_state = 88}, + [6598] = {.lex_state = 87}, + [6599] = {.lex_state = 86}, + [6600] = {.lex_state = 60}, + [6601] = {.lex_state = 84}, + [6602] = {.lex_state = 82}, + [6603] = {.lex_state = 92}, + [6604] = {.lex_state = 72}, + [6605] = {.lex_state = 85}, + [6606] = {.lex_state = 83}, + [6607] = {.lex_state = 68}, + [6608] = {.lex_state = 94}, + [6609] = {.lex_state = 91}, + [6610] = {.lex_state = 73}, + [6611] = {.lex_state = 62}, + [6612] = {.lex_state = 62}, + [6613] = {.lex_state = 81}, + [6614] = {.lex_state = 84}, + [6615] = {.lex_state = 56}, + [6616] = {.lex_state = 79}, + [6617] = {.lex_state = 77}, + [6618] = {.lex_state = 65}, + [6619] = {.lex_state = 62}, + [6620] = {.lex_state = 80}, + [6621] = {.lex_state = 78}, + [6622] = {.lex_state = 93}, + [6623] = {.lex_state = 74}, + [6624] = {.lex_state = 69}, + [6625] = {.lex_state = 76}, + [6626] = {.lex_state = 4}, + [6627] = {.lex_state = 0}, + [6628] = {.lex_state = 0}, + [6629] = {.lex_state = 43}, + [6630] = {.lex_state = 43}, + [6631] = {.lex_state = 52}, + [6632] = {.lex_state = 90}, + [6633] = {.lex_state = 89}, + [6634] = {.lex_state = 88}, + [6635] = {.lex_state = 87}, + [6636] = {.lex_state = 86}, + [6637] = {.lex_state = 60}, + [6638] = {.lex_state = 84}, + [6639] = {.lex_state = 82}, + [6640] = {.lex_state = 92}, + [6641] = {.lex_state = 72}, + [6642] = {.lex_state = 85}, + [6643] = {.lex_state = 83}, + [6644] = {.lex_state = 68}, + [6645] = {.lex_state = 94}, + [6646] = {.lex_state = 91}, + [6647] = {.lex_state = 73}, + [6648] = {.lex_state = 62}, + [6649] = {.lex_state = 62}, + [6650] = {.lex_state = 81}, + [6651] = {.lex_state = 75}, + [6652] = {.lex_state = 56}, + [6653] = {.lex_state = 79}, + [6654] = {.lex_state = 77}, + [6655] = {.lex_state = 65}, + [6656] = {.lex_state = 62}, + [6657] = {.lex_state = 80}, + [6658] = {.lex_state = 78}, + [6659] = {.lex_state = 93}, + [6660] = {.lex_state = 74}, + [6661] = {.lex_state = 69}, + [6662] = {.lex_state = 76}, + [6663] = {.lex_state = 4}, + [6664] = {.lex_state = 0}, + [6665] = {.lex_state = 0}, + [6666] = {.lex_state = 43}, + [6667] = {.lex_state = 43}, + [6668] = {.lex_state = 52}, + [6669] = {.lex_state = 90}, + [6670] = {.lex_state = 89}, + [6671] = {.lex_state = 88}, + [6672] = {.lex_state = 87}, + [6673] = {.lex_state = 86}, + [6674] = {.lex_state = 60}, + [6675] = {.lex_state = 62}, + [6676] = {.lex_state = 82}, + [6677] = {.lex_state = 92}, + [6678] = {.lex_state = 72}, + [6679] = {.lex_state = 85}, + [6680] = {.lex_state = 83}, + [6681] = {.lex_state = 68}, + [6682] = {.lex_state = 94}, + [6683] = {.lex_state = 91}, + [6684] = {.lex_state = 73}, + [6685] = {.lex_state = 62}, + [6686] = {.lex_state = 43}, + [6687] = {.lex_state = 81}, + [6688] = {.lex_state = 75}, + [6689] = {.lex_state = 56}, [6690] = {.lex_state = 79}, [6691] = {.lex_state = 77}, - [6692] = {.lex_state = 64}, - [6693] = {.lex_state = 89}, - [6694] = {.lex_state = 86}, + [6692] = {.lex_state = 65}, + [6693] = {.lex_state = 62}, + [6694] = {.lex_state = 80}, [6695] = {.lex_state = 78}, - [6696] = {.lex_state = 66}, - [6697] = {.lex_state = 92}, - [6698] = {.lex_state = 90}, + [6696] = {.lex_state = 93}, + [6697] = {.lex_state = 74}, + [6698] = {.lex_state = 69}, [6699] = {.lex_state = 76}, - [6700] = {.lex_state = 74}, - [6701] = {.lex_state = 74}, - [6702] = {.lex_state = 82}, - [6703] = {.lex_state = 72}, - [6704] = {.lex_state = 69}, - [6705] = {.lex_state = 54}, - [6706] = {.lex_state = 42}, - [6707] = {.lex_state = 42}, - [6708] = {.lex_state = 42}, - [6709] = {.lex_state = 42}, - [6710] = {.lex_state = 42}, - [6711] = {.lex_state = 42}, - [6712] = {.lex_state = 42}, - [6713] = {.lex_state = 42}, - [6714] = {.lex_state = 42}, - [6715] = {.lex_state = 42}, - [6716] = {.lex_state = 42}, - [6717] = {.lex_state = 42}, - [6718] = {.lex_state = 42}, - [6719] = {.lex_state = 42}, - [6720] = {.lex_state = 42}, - [6721] = {.lex_state = 42}, - [6722] = {.lex_state = 42}, - [6723] = {.lex_state = 42}, - [6724] = {.lex_state = 42}, - [6725] = {.lex_state = 42}, + [6700] = {.lex_state = 4}, + [6701] = {.lex_state = 0}, + [6702] = {.lex_state = 0}, + [6703] = {.lex_state = 43}, + [6704] = {.lex_state = 43}, + [6705] = {.lex_state = 52}, + [6706] = {.lex_state = 90}, + [6707] = {.lex_state = 89}, + [6708] = {.lex_state = 88}, + [6709] = {.lex_state = 87}, + [6710] = {.lex_state = 86}, + [6711] = {.lex_state = 60}, + [6712] = {.lex_state = 84}, + [6713] = {.lex_state = 82}, + [6714] = {.lex_state = 92}, + [6715] = {.lex_state = 72}, + [6716] = {.lex_state = 85}, + [6717] = {.lex_state = 83}, + [6718] = {.lex_state = 68}, + [6719] = {.lex_state = 94}, + [6720] = {.lex_state = 91}, + [6721] = {.lex_state = 73}, + [6722] = {.lex_state = 62}, + [6723] = {.lex_state = 62}, + [6724] = {.lex_state = 81}, + [6725] = {.lex_state = 75}, [6726] = {.lex_state = 42}, - [6727] = {.lex_state = 42}, - [6728] = {.lex_state = 42}, - [6729] = {.lex_state = 42}, - [6730] = {.lex_state = 42}, - [6731] = {.lex_state = 42}, - [6732] = {.lex_state = 42}, - [6733] = {.lex_state = 42}, - [6734] = {.lex_state = 42}, - [6735] = {.lex_state = 42}, - [6736] = {.lex_state = 42}, - [6737] = {.lex_state = 42}, - [6738] = {.lex_state = 42}, - [6739] = {.lex_state = 42}, + [6727] = {.lex_state = 56}, + [6728] = {.lex_state = 79}, + [6729] = {.lex_state = 77}, + [6730] = {.lex_state = 65}, + [6731] = {.lex_state = 62}, + [6732] = {.lex_state = 80}, + [6733] = {.lex_state = 78}, + [6734] = {.lex_state = 93}, + [6735] = {.lex_state = 74}, + [6736] = {.lex_state = 69}, + [6737] = {.lex_state = 76}, + [6738] = {.lex_state = 4}, + [6739] = {.lex_state = 0}, + [6740] = {.lex_state = 0}, + [6741] = {.lex_state = 43}, + [6742] = {.lex_state = 0}, + [6743] = {.lex_state = 52}, + [6744] = {.lex_state = 90}, + [6745] = {.lex_state = 89}, + [6746] = {.lex_state = 88}, + [6747] = {.lex_state = 87}, + [6748] = {.lex_state = 86}, + [6749] = {.lex_state = 60}, + [6750] = {.lex_state = 84}, + [6751] = {.lex_state = 82}, + [6752] = {.lex_state = 92}, + [6753] = {.lex_state = 72}, + [6754] = {.lex_state = 85}, + [6755] = {.lex_state = 83}, + [6756] = {.lex_state = 68}, + [6757] = {.lex_state = 94}, + [6758] = {.lex_state = 91}, + [6759] = {.lex_state = 73}, + [6760] = {.lex_state = 62}, + [6761] = {.lex_state = 62}, + [6762] = {.lex_state = 81}, + [6763] = {.lex_state = 75}, + [6764] = {.lex_state = 56}, + [6765] = {.lex_state = 79}, + [6766] = {.lex_state = 77}, + [6767] = {.lex_state = 65}, + [6768] = {.lex_state = 62}, + [6769] = {.lex_state = 80}, + [6770] = {.lex_state = 78}, + [6771] = {.lex_state = 93}, + [6772] = {.lex_state = 74}, + [6773] = {.lex_state = 69}, + [6774] = {.lex_state = 76}, + [6775] = {.lex_state = 4}, + [6776] = {.lex_state = 0}, + [6777] = {.lex_state = 0}, + [6778] = {.lex_state = 43}, + [6779] = {.lex_state = 43}, + [6780] = {.lex_state = 52}, + [6781] = {.lex_state = 90}, + [6782] = {.lex_state = 89}, + [6783] = {.lex_state = 88}, + [6784] = {.lex_state = 87}, + [6785] = {.lex_state = 86}, + [6786] = {.lex_state = 60}, + [6787] = {.lex_state = 84}, + [6788] = {.lex_state = 82}, + [6789] = {.lex_state = 92}, + [6790] = {.lex_state = 72}, + [6791] = {.lex_state = 85}, + [6792] = {.lex_state = 83}, + [6793] = {.lex_state = 68}, + [6794] = {.lex_state = 94}, + [6795] = {.lex_state = 91}, + [6796] = {.lex_state = 73}, + [6797] = {.lex_state = 62}, + [6798] = {.lex_state = 62}, + [6799] = {.lex_state = 81}, + [6800] = {.lex_state = 75}, + [6801] = {.lex_state = 56}, + [6802] = {.lex_state = 79}, + [6803] = {.lex_state = 77}, + [6804] = {.lex_state = 65}, + [6805] = {.lex_state = 62}, + [6806] = {.lex_state = 80}, + [6807] = {.lex_state = 78}, + [6808] = {.lex_state = 93}, + [6809] = {.lex_state = 74}, + [6810] = {.lex_state = 69}, + [6811] = {.lex_state = 76}, + [6812] = {.lex_state = 4}, + [6813] = {.lex_state = 0}, + [6814] = {.lex_state = 42}, + [6815] = {.lex_state = 52}, + [6816] = {.lex_state = 42}, + [6817] = {.lex_state = 52}, + [6818] = {.lex_state = 42}, + [6819] = {.lex_state = 52}, + [6820] = {.lex_state = 42}, + [6821] = {.lex_state = 52}, + [6822] = {.lex_state = 42}, + [6823] = {.lex_state = 52}, + [6824] = {.lex_state = 42}, + [6825] = {.lex_state = 52}, + [6826] = {.lex_state = 42}, + [6827] = {.lex_state = 52}, + [6828] = {.lex_state = 42}, + [6829] = {.lex_state = 52}, + [6830] = {.lex_state = 42}, + [6831] = {.lex_state = 52}, + [6832] = {.lex_state = 42}, + [6833] = {.lex_state = 52}, + [6834] = {.lex_state = 42}, + [6835] = {.lex_state = 52}, + [6836] = {.lex_state = 42}, + [6837] = {.lex_state = 52}, + [6838] = {.lex_state = 42}, + [6839] = {.lex_state = 52}, + [6840] = {.lex_state = 42}, + [6841] = {.lex_state = 52}, + [6842] = {.lex_state = 42}, + [6843] = {.lex_state = 52}, + [6844] = {.lex_state = 42}, + [6845] = {.lex_state = 52}, + [6846] = {.lex_state = 42}, + [6847] = {.lex_state = 52}, + [6848] = {.lex_state = 42}, + [6849] = {.lex_state = 52}, + [6850] = {.lex_state = 42}, + [6851] = {.lex_state = 52}, + [6852] = {.lex_state = 42}, + [6853] = {.lex_state = 52}, + [6854] = {.lex_state = 42}, + [6855] = {.lex_state = 52}, + [6856] = {.lex_state = 42}, + [6857] = {.lex_state = 52}, + [6858] = {.lex_state = 42}, + [6859] = {.lex_state = 52}, + [6860] = {.lex_state = 42}, + [6861] = {.lex_state = 52}, + [6862] = {.lex_state = 42}, + [6863] = {.lex_state = 52}, + [6864] = {.lex_state = 42}, + [6865] = {.lex_state = 52}, + [6866] = {.lex_state = 42}, + [6867] = {.lex_state = 52}, + [6868] = {.lex_state = 42}, + [6869] = {.lex_state = 52}, + [6870] = {.lex_state = 42}, + [6871] = {.lex_state = 52}, + [6872] = {.lex_state = 42}, + [6873] = {.lex_state = 52}, + [6874] = {.lex_state = 42}, + [6875] = {.lex_state = 52}, + [6876] = {.lex_state = 42}, + [6877] = {.lex_state = 52}, + [6878] = {.lex_state = 42}, + [6879] = {.lex_state = 52}, + [6880] = {.lex_state = 42}, + [6881] = {.lex_state = 52}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -25612,6 +26084,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATendteleport] = ACTIONS(1), [anon_sym_ATvolt] = ACTIONS(1), [anon_sym_ATendvolt] = ACTIONS(1), + [aux_sym_alpine_js_token1] = ACTIONS(1), + [aux_sym_alpine_js_token2] = ACTIONS(1), [anon_sym_LPAREN2] = ACTIONS(1), [anon_sym_RPAREN2] = ACTIONS(1), [aux_sym__section_parameter_token1] = ACTIONS(1), @@ -25620,71 +26094,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(1), }, [1] = { - [sym_blade] = STATE(6268), - [sym__definition] = STATE(423), - [sym_keyword] = STATE(423), - [sym_php_statement] = STATE(423), - [sym__escaped] = STATE(1938), - [sym__unescaped] = STATE(1938), - [sym__raw] = STATE(1938), - [sym__inline_raw] = STATE(1938), - [sym__multi_line_raw] = STATE(1938), - [sym_attribute] = STATE(423), - [sym__inline_directive] = STATE(423), - [sym__nested_directive] = STATE(423), - [sym_fragment] = STATE(423), - [sym_section] = STATE(423), - [sym_inlineSection] = STATE(423), - [sym_once] = STATE(423), - [sym_verbatim] = STATE(423), - [sym_stack] = STATE(423), - [sym__push] = STATE(1939), - [sym__pushOnce] = STATE(1939), - [sym__pushIf] = STATE(1939), - [sym__prepend] = STATE(1939), - [sym__prependOnce] = STATE(1939), - [sym_conditional] = STATE(423), - [sym__if] = STATE(1940), - [sym__unless] = STATE(1940), - [sym__isset] = STATE(1940), - [sym__empty] = STATE(1940), - [sym__auth] = STATE(1940), - [sym__guest] = STATE(1940), - [sym__production] = STATE(1940), - [sym__env] = STATE(1940), - [sym__hasSection] = STATE(1940), - [sym__sectionMissing] = STATE(1940), - [sym__error] = STATE(1940), - [sym_authorization] = STATE(1940), - [sym__can] = STATE(2000), - [sym__cannot] = STATE(2000), - [sym__canany] = STATE(2000), - [sym__feature] = STATE(1940), - [sym__custom] = STATE(1940), - [sym_switch] = STATE(423), - [sym_loop] = STATE(423), - [sym_loop_operator] = STATE(423), - [sym__for] = STATE(2077), - [sym__foreach] = STATE(2077), - [sym__forelse] = STATE(2077), - [sym__while] = STATE(2077), - [sym_envoy] = STATE(423), - [sym__setup] = STATE(1938), - [sym__task] = STATE(2085), - [sym__story] = STATE(2085), - [sym__hooks] = STATE(1938), - [sym__before] = STATE(1938), - [sym__after] = STATE(1938), - [sym__envoy_error] = STATE(1938), - [sym__success] = STATE(1938), - [sym__finished] = STATE(1938), - [sym_livewire] = STATE(423), - [sym__persist] = STATE(3158), - [sym__teleport] = STATE(3158), - [sym__volt] = STATE(3158), - [sym_text] = STATE(423), + [sym_blade] = STATE(6361), + [sym__definition] = STATE(355), + [sym_keyword] = STATE(355), + [sym_php_statement] = STATE(355), + [sym__escaped] = STATE(3487), + [sym__unescaped] = STATE(3487), + [sym__raw] = STATE(3487), + [sym__inline_raw] = STATE(3487), + [sym__multi_line_raw] = STATE(3487), + [sym_attribute] = STATE(355), + [sym__inline_directive] = STATE(355), + [sym__nested_directive] = STATE(355), + [sym_fragment] = STATE(355), + [sym_section] = STATE(355), + [sym_inlineSection] = STATE(355), + [sym_once] = STATE(355), + [sym_verbatim] = STATE(355), + [sym_stack] = STATE(355), + [sym__push] = STATE(3483), + [sym__pushOnce] = STATE(3483), + [sym__pushIf] = STATE(3483), + [sym__prepend] = STATE(3483), + [sym__prependOnce] = STATE(3483), + [sym_conditional] = STATE(355), + [sym__if] = STATE(3482), + [sym__unless] = STATE(3482), + [sym__isset] = STATE(3482), + [sym__empty] = STATE(3482), + [sym__auth] = STATE(3482), + [sym__guest] = STATE(3482), + [sym__production] = STATE(3482), + [sym__env] = STATE(3482), + [sym__hasSection] = STATE(3482), + [sym__sectionMissing] = STATE(3482), + [sym__error] = STATE(3482), + [sym_authorization] = STATE(3482), + [sym__can] = STATE(3478), + [sym__cannot] = STATE(3478), + [sym__canany] = STATE(3478), + [sym__feature] = STATE(3482), + [sym__custom] = STATE(3482), + [sym_switch] = STATE(355), + [sym_loop] = STATE(355), + [sym_loop_operator] = STATE(355), + [sym__for] = STATE(3477), + [sym__foreach] = STATE(3477), + [sym__forelse] = STATE(3477), + [sym__while] = STATE(3477), + [sym_envoy] = STATE(355), + [sym__setup] = STATE(3487), + [sym__task] = STATE(3408), + [sym__story] = STATE(3408), + [sym__hooks] = STATE(3487), + [sym__before] = STATE(3487), + [sym__after] = STATE(3487), + [sym__envoy_error] = STATE(3487), + [sym__success] = STATE(3487), + [sym__finished] = STATE(3487), + [sym_livewire] = STATE(355), + [sym__persist] = STATE(3459), + [sym__teleport] = STATE(3459), + [sym__volt] = STATE(3459), + [sym_alpine_js] = STATE(355), + [sym_text] = STATE(355), [sym__text] = STATE(752), - [aux_sym_blade_repeat1] = STATE(423), + [aux_sym_blade_repeat1] = STATE(355), [aux_sym_php_only_repeat1] = STATE(752), [ts_builtin_sym_end] = ACTIONS(3), [sym_comment] = ACTIONS(5), @@ -25736,259 +26211,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATpersist] = ACTIONS(97), [anon_sym_ATteleport] = ACTIONS(99), [anon_sym_ATvolt] = ACTIONS(101), - [aux_sym__text_token1] = ACTIONS(103), - [aux_sym__text_token2] = ACTIONS(103), - [aux_sym__text_token3] = ACTIONS(105), + [aux_sym_alpine_js_token1] = ACTIONS(103), + [aux_sym__text_token1] = ACTIONS(105), + [aux_sym__text_token2] = ACTIONS(105), + [aux_sym__text_token3] = ACTIONS(107), }, [2] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6441), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6392), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [3] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5563), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5636), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [4] = { [sym__definition] = STATE(72), @@ -26027,22 +26507,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -26050,70 +26530,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5562), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5635), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [5] = { [sym__definition] = STATE(72), @@ -26152,22 +26634,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -26175,195 +26657,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5529), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6801), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [6] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5492), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5564), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [7] = { [sym__definition] = STATE(72), @@ -26402,22 +26888,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -26425,320 +26911,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5491), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5563), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [8] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5532), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6800), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [9] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5481), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5539), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [10] = { [sym__definition] = STATE(72), @@ -26777,22 +27269,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -26800,195 +27292,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5839), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6764), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [11] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5841), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6763), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [12] = { [sym__definition] = STATE(72), @@ -27027,22 +27523,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -27050,70 +27546,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5493), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5540), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [13] = { [sym__definition] = STATE(72), @@ -27152,22 +27650,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -27175,195 +27673,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6069), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6727), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [14] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5592), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5613), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [15] = { [sym__definition] = STATE(72), @@ -27402,22 +27904,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -27425,320 +27927,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5594), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5614), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [16] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6071), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6725), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [17] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5643), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5691), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [18] = { [sym__definition] = STATE(72), @@ -27777,22 +28285,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -27800,70 +28308,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5644), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5692), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [19] = { [sym__definition] = STATE(72), @@ -27902,22 +28412,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -27925,195 +28435,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6291), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6689), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [20] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6292), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6688), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [21] = { [sym__definition] = STATE(72), @@ -28152,22 +28666,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -28175,195 +28689,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5915), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5967), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [22] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5885), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5966), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [23] = { [sym__definition] = STATE(72), @@ -28402,22 +28920,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -28425,195 +28943,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6506), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6652), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [24] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5685), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5730), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [25] = { [sym__definition] = STATE(72), @@ -28652,22 +29174,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -28675,320 +29197,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5686), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5731), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [26] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6508), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6651), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [27] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5730), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5773), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [28] = { [sym__definition] = STATE(72), @@ -29027,22 +29555,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -29050,70 +29578,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5731), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5774), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [29] = { [sym__definition] = STATE(72), @@ -29152,22 +29682,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -29175,195 +29705,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6705), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6615), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [30] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5769), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5812), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [31] = { [sym__definition] = STATE(72), @@ -29402,22 +29936,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -29425,320 +29959,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5770), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5813), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [32] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6704), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6558), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [33] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5815), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5851), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [34] = { [sym__definition] = STATE(72), @@ -29777,22 +30317,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -29800,70 +30340,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5816), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5852), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [35] = { [sym__definition] = STATE(72), @@ -29902,22 +30444,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -29925,195 +30467,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6658), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6578), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [36] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5865), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5891), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [37] = { [sym__definition] = STATE(72), @@ -30152,22 +30698,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -30175,320 +30721,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5866), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5892), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [38] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6657), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6577), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [39] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5831), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5930), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [40] = { [sym__definition] = STATE(72), @@ -30527,22 +31079,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -30550,70 +31102,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5914), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5931), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [41] = { [sym__definition] = STATE(72), @@ -30652,22 +31206,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -30675,195 +31229,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6620), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6541), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [42] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5960), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5972), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [43] = { [sym__definition] = STATE(72), @@ -30902,22 +31460,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -30925,320 +31483,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5961), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5973), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [44] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6619), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6540), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [45] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6001), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5945), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [46] = { [sym__definition] = STATE(72), @@ -31277,22 +31841,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -31300,70 +31864,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6002), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6012), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [47] = { [sym__definition] = STATE(72), @@ -31402,22 +31968,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -31425,195 +31991,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6547), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6504), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [48] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6044), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6050), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [49] = { [sym__definition] = STATE(72), @@ -31652,22 +32222,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -31675,320 +32245,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6046), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6051), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [50] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6577), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6503), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [51] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6095), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6090), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [52] = { [sym__definition] = STATE(72), @@ -32027,22 +32603,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -32050,70 +32626,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6096), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6091), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [53] = { [sym__definition] = STATE(72), @@ -32152,22 +32730,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -32175,195 +32753,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6531), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6467), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [54] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6141), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6128), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [55] = { [sym__definition] = STATE(72), @@ -32402,22 +32984,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -32425,447 +33007,328 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6142), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6129), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [56] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6530), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6466), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [57] = { - [sym__definition] = STATE(72), - [sym_keyword] = STATE(72), - [sym_php_statement] = STATE(72), - [sym__escaped] = STATE(766), - [sym__unescaped] = STATE(766), - [sym__raw] = STATE(766), - [sym__inline_raw] = STATE(766), - [sym__multi_line_raw] = STATE(766), - [sym_attribute] = STATE(72), - [sym__inline_directive] = STATE(72), - [sym__nested_directive] = STATE(72), - [sym_fragment] = STATE(72), - [sym_section] = STATE(72), - [sym_inlineSection] = STATE(72), - [sym_once] = STATE(72), - [sym_verbatim] = STATE(72), - [sym_stack] = STATE(72), - [sym__push] = STATE(767), - [sym__pushOnce] = STATE(767), - [sym__pushIf] = STATE(767), - [sym__prepend] = STATE(767), - [sym__prependOnce] = STATE(767), - [sym_conditional] = STATE(72), - [sym_conditional_keyword] = STATE(72), - [sym__if] = STATE(768), - [sym__unless] = STATE(768), - [sym__isset] = STATE(768), - [sym__empty] = STATE(768), - [sym__auth] = STATE(768), - [sym__guest] = STATE(768), - [sym__production] = STATE(768), - [sym__env] = STATE(768), - [sym__hasSection] = STATE(768), - [sym__sectionMissing] = STATE(768), - [sym__error] = STATE(768), - [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), - [sym__feature] = STATE(768), - [sym__custom] = STATE(768), - [sym_switch] = STATE(72), - [sym_loop] = STATE(72), - [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(72), - [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(766), - [sym__before] = STATE(766), - [sym__after] = STATE(766), - [sym__envoy_error] = STATE(766), - [sym__success] = STATE(766), - [sym__finished] = STATE(766), - [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6484), - [sym__directive_parameter] = STATE(172), - [sym_text] = STATE(72), - [sym__text] = STATE(706), - [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6167), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [58] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6186), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), - }, - [59] = { [sym__definition] = STATE(72), [sym_keyword] = STATE(72), [sym_php_statement] = STATE(72), @@ -32902,22 +33365,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -32925,322 +33388,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6187), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6412), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), - }, - [60] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6483), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), - }, - [61] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6224), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, - [62] = { + [59] = { [sym__definition] = STATE(72), [sym_keyword] = STATE(72), [sym_php_statement] = STATE(72), @@ -33277,22 +33492,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -33300,70 +33515,453 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6225), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6168), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), + }, + [60] = { + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6429), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), + }, + [61] = { + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6204), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), + }, + [62] = { + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(766), + [sym__unescaped] = STATE(766), + [sym__raw] = STATE(766), + [sym__inline_raw] = STATE(766), + [sym__multi_line_raw] = STATE(766), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(767), + [sym__pushOnce] = STATE(767), + [sym__pushIf] = STATE(767), + [sym__prepend] = STATE(767), + [sym__prependOnce] = STATE(767), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(768), + [sym__unless] = STATE(768), + [sym__isset] = STATE(768), + [sym__empty] = STATE(768), + [sym__auth] = STATE(768), + [sym__guest] = STATE(768), + [sym__production] = STATE(768), + [sym__env] = STATE(768), + [sym__hasSection] = STATE(768), + [sym__sectionMissing] = STATE(768), + [sym__error] = STATE(768), + [sym_authorization] = STATE(768), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), + [sym__feature] = STATE(768), + [sym__custom] = STATE(768), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(766), + [sym__task] = STATE(771), + [sym__story] = STATE(771), + [sym__hooks] = STATE(766), + [sym__before] = STATE(766), + [sym__after] = STATE(766), + [sym__envoy_error] = STATE(766), + [sym__success] = STATE(766), + [sym__finished] = STATE(766), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6205), + [sym__directive_parameter] = STATE(171), + [sym_text] = STATE(72), + [sym__text] = STATE(711), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [63] = { [sym__definition] = STATE(72), @@ -33402,22 +34000,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -33425,195 +34023,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6442), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6393), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [64] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6265), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6242), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [65] = { [sym__definition] = STATE(72), @@ -33652,22 +34254,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -33675,195 +34277,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6266), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6243), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [66] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6314), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6279), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [67] = { [sym__definition] = STATE(72), @@ -33902,22 +34508,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -33925,195 +34531,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6236), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6280), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [68] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6360), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6316), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [69] = { [sym__definition] = STATE(72), @@ -34152,22 +34762,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -34175,195 +34785,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6361), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6317), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [70] = { - [sym__definition] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6403), - [sym__directive_parameter] = STATE(179), - [sym_text] = STATE(75), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(75), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(81), + [sym_keyword] = STATE(81), + [sym_php_statement] = STATE(81), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(81), + [sym__inline_directive] = STATE(81), + [sym__nested_directive] = STATE(81), + [sym_fragment] = STATE(81), + [sym_section] = STATE(81), + [sym_inlineSection] = STATE(81), + [sym_once] = STATE(81), + [sym_verbatim] = STATE(81), + [sym_stack] = STATE(81), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(81), + [sym_conditional_keyword] = STATE(81), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(81), + [sym_loop] = STATE(81), + [sym_loop_operator] = STATE(81), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(81), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(81), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(81), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6353), + [sym__directive_parameter] = STATE(183), + [sym_text] = STATE(81), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(81), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(109), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [71] = { [sym__definition] = STATE(72), @@ -34402,22 +35016,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), [sym_switch] = STATE(72), [sym_loop] = STATE(72), [sym_loop_operator] = STATE(72), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), [sym_envoy] = STATE(72), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), @@ -34425,96 +35039,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__success] = STATE(766), [sym__finished] = STATE(766), [sym_livewire] = STATE(72), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6404), - [sym__directive_parameter] = STATE(172), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(72), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6354), + [sym__directive_parameter] = STATE(171), [sym_text] = STATE(72), - [sym__text] = STATE(706), + [sym__text] = STATE(711), [aux_sym__if_statement_directive_body_repeat1] = STATE(72), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(219), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(213), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [72] = { - [sym__definition] = STATE(105), - [sym_keyword] = STATE(105), - [sym_php_statement] = STATE(105), + [sym__definition] = STATE(103), + [sym_keyword] = STATE(103), + [sym_php_statement] = STATE(103), [sym__escaped] = STATE(766), [sym__unescaped] = STATE(766), [sym__raw] = STATE(766), [sym__inline_raw] = STATE(766), [sym__multi_line_raw] = STATE(766), - [sym_attribute] = STATE(105), - [sym__inline_directive] = STATE(105), - [sym__nested_directive] = STATE(105), - [sym_fragment] = STATE(105), - [sym_section] = STATE(105), - [sym_inlineSection] = STATE(105), - [sym_once] = STATE(105), - [sym_verbatim] = STATE(105), - [sym_stack] = STATE(105), + [sym_attribute] = STATE(103), + [sym__inline_directive] = STATE(103), + [sym__nested_directive] = STATE(103), + [sym_fragment] = STATE(103), + [sym_section] = STATE(103), + [sym_inlineSection] = STATE(103), + [sym_once] = STATE(103), + [sym_verbatim] = STATE(103), + [sym_stack] = STATE(103), [sym__push] = STATE(767), [sym__pushOnce] = STATE(767), [sym__pushIf] = STATE(767), [sym__prepend] = STATE(767), [sym__prependOnce] = STATE(767), - [sym_conditional] = STATE(105), - [sym_conditional_keyword] = STATE(105), + [sym_conditional] = STATE(103), + [sym_conditional_keyword] = STATE(103), [sym__if] = STATE(768), [sym__unless] = STATE(768), [sym__isset] = STATE(768), @@ -34527,716 +35143,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), - [sym_switch] = STATE(105), - [sym_loop] = STATE(105), - [sym_loop_operator] = STATE(105), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(105), + [sym_switch] = STATE(103), + [sym_loop] = STATE(103), + [sym_loop_operator] = STATE(103), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), + [sym_envoy] = STATE(103), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), [sym__envoy_error] = STATE(766), [sym__success] = STATE(766), [sym__finished] = STATE(766), - [sym_livewire] = STATE(105), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym_text] = STATE(105), - [sym__text] = STATE(706), - [aux_sym__if_statement_directive_body_repeat1] = STATE(105), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATendauth] = ACTIONS(323), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [sym_livewire] = STATE(103), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(103), + [sym_text] = STATE(103), + [sym__text] = STATE(711), + [aux_sym__if_statement_directive_body_repeat1] = STATE(103), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(327), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATendauth] = ACTIONS(329), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), }, [73] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(375), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__definition] = STATE(107), + [sym_keyword] = STATE(107), + [sym_php_statement] = STATE(107), + [sym__escaped] = STATE(1264), + [sym__unescaped] = STATE(1264), + [sym__raw] = STATE(1264), + [sym__inline_raw] = STATE(1264), + [sym__multi_line_raw] = STATE(1264), + [sym_attribute] = STATE(107), + [sym__inline_directive] = STATE(107), + [sym__nested_directive] = STATE(107), + [sym_fragment] = STATE(107), + [sym_section] = STATE(107), + [sym_inlineSection] = STATE(107), + [sym_once] = STATE(107), + [sym_verbatim] = STATE(107), + [sym_stack] = STATE(107), + [sym__push] = STATE(1265), + [sym__pushOnce] = STATE(1265), + [sym__pushIf] = STATE(1265), + [sym__prepend] = STATE(1265), + [sym__prependOnce] = STATE(1265), + [sym_conditional] = STATE(107), + [sym_conditional_keyword] = STATE(107), + [sym__if] = STATE(1266), + [sym__unless] = STATE(1266), + [sym__isset] = STATE(1266), + [sym__empty] = STATE(1266), + [sym__auth] = STATE(1266), + [sym__guest] = STATE(1266), + [sym__production] = STATE(1266), + [sym__env] = STATE(1266), + [sym__hasSection] = STATE(1266), + [sym__sectionMissing] = STATE(1266), + [sym__error] = STATE(1266), + [sym_authorization] = STATE(1266), + [sym__can] = STATE(1267), + [sym__cannot] = STATE(1267), + [sym__canany] = STATE(1267), + [sym__feature] = STATE(1266), + [sym__custom] = STATE(1266), + [sym_switch] = STATE(107), + [sym_loop] = STATE(107), + [sym_loop_operator] = STATE(107), + [sym__for] = STATE(1268), + [sym__foreach] = STATE(1268), + [sym__forelse] = STATE(1268), + [sym__while] = STATE(1268), + [sym_envoy] = STATE(107), + [sym__setup] = STATE(1264), + [sym__task] = STATE(1269), + [sym__story] = STATE(1269), + [sym__hooks] = STATE(1264), + [sym__before] = STATE(1264), + [sym__after] = STATE(1264), + [sym__envoy_error] = STATE(1264), + [sym__success] = STATE(1264), + [sym__finished] = STATE(1264), + [sym_livewire] = STATE(107), + [sym__persist] = STATE(1270), + [sym__teleport] = STATE(1270), + [sym__volt] = STATE(1270), + [sym_alpine_js] = STATE(107), + [sym_text] = STATE(107), + [sym__text] = STATE(672), + [aux_sym__if_statement_directive_body_repeat1] = STATE(107), + [aux_sym_php_only_repeat1] = STATE(672), + [sym_comment] = ACTIONS(331), + [aux_sym_keyword_token1] = ACTIONS(333), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(337), + [anon_sym_ATphp] = ACTIONS(339), + [aux_sym_attribute_token1] = ACTIONS(341), + [aux_sym__inline_directive_token1] = ACTIONS(343), + [anon_sym_ATfragment] = ACTIONS(345), + [anon_sym_ATsection] = ACTIONS(347), + [anon_sym_ATonce] = ACTIONS(349), + [anon_sym_ATverbatim] = ACTIONS(351), + [anon_sym_ATpush] = ACTIONS(353), + [anon_sym_ATpushOnce] = ACTIONS(355), + [anon_sym_ATpushIf] = ACTIONS(357), + [anon_sym_ATprepend] = ACTIONS(359), + [anon_sym_ATprependOnce] = ACTIONS(361), + [anon_sym_ATelse] = ACTIONS(363), + [aux_sym_conditional_keyword_token1] = ACTIONS(365), + [anon_sym_ATif] = ACTIONS(367), + [anon_sym_ATendif] = ACTIONS(369), + [anon_sym_ATunless] = ACTIONS(371), + [anon_sym_ATisset] = ACTIONS(373), + [anon_sym_ATempty] = ACTIONS(375), + [anon_sym_ATauth] = ACTIONS(377), + [anon_sym_ATguest] = ACTIONS(379), + [anon_sym_ATproduction] = ACTIONS(381), + [anon_sym_ATenv] = ACTIONS(383), + [anon_sym_AThasSection] = ACTIONS(385), + [anon_sym_ATsectionMissing] = ACTIONS(387), + [anon_sym_ATerror] = ACTIONS(389), + [anon_sym_ATcan] = ACTIONS(391), + [anon_sym_ATcannot] = ACTIONS(393), + [anon_sym_ATcanany] = ACTIONS(395), + [anon_sym_ATfeature] = ACTIONS(397), + [aux_sym__custom_token1] = ACTIONS(399), + [aux_sym__custom_token2] = ACTIONS(401), + [anon_sym_ATswitch] = ACTIONS(403), + [aux_sym_loop_operator_token1] = ACTIONS(405), + [anon_sym_ATfor] = ACTIONS(407), + [anon_sym_ATforeach] = ACTIONS(409), + [anon_sym_ATforelse] = ACTIONS(411), + [anon_sym_ATwhile] = ACTIONS(413), + [anon_sym_ATsetup] = ACTIONS(415), + [anon_sym_ATtask] = ACTIONS(417), + [anon_sym_ATstory] = ACTIONS(419), + [anon_sym_ATbefore] = ACTIONS(421), + [anon_sym_ATafter] = ACTIONS(423), + [anon_sym_ATsuccess] = ACTIONS(425), + [anon_sym_ATfinished] = ACTIONS(427), + [anon_sym_ATpersist] = ACTIONS(429), + [anon_sym_ATteleport] = ACTIONS(431), + [anon_sym_ATvolt] = ACTIONS(433), + [aux_sym_alpine_js_token1] = ACTIONS(435), + [aux_sym__text_token1] = ACTIONS(437), + [aux_sym__text_token2] = ACTIONS(437), + [aux_sym__text_token3] = ACTIONS(439), }, [74] = { - [sym__definition] = STATE(124), - [sym_keyword] = STATE(124), - [sym_php_statement] = STATE(124), - [sym__escaped] = STATE(1925), - [sym__unescaped] = STATE(1925), - [sym__raw] = STATE(1925), - [sym__inline_raw] = STATE(1925), - [sym__multi_line_raw] = STATE(1925), - [sym_attribute] = STATE(124), - [sym__inline_directive] = STATE(124), - [sym__nested_directive] = STATE(124), - [sym_fragment] = STATE(124), - [sym_section] = STATE(124), - [sym_inlineSection] = STATE(124), - [sym_once] = STATE(124), - [sym_verbatim] = STATE(124), - [sym_stack] = STATE(124), - [sym__push] = STATE(1926), - [sym__pushOnce] = STATE(1926), - [sym__pushIf] = STATE(1926), - [sym__prepend] = STATE(1926), - [sym__prependOnce] = STATE(1926), - [sym_conditional] = STATE(124), - [sym_conditional_keyword] = STATE(124), - [sym__if] = STATE(1927), - [sym__unless] = STATE(1927), - [sym__isset] = STATE(1927), - [sym__empty] = STATE(1927), - [sym__auth] = STATE(1927), - [sym__guest] = STATE(1927), - [sym__production] = STATE(1927), - [sym__env] = STATE(1927), - [sym__hasSection] = STATE(1927), - [sym__sectionMissing] = STATE(1927), - [sym__error] = STATE(1927), - [sym_authorization] = STATE(1927), - [sym__can] = STATE(1928), - [sym__cannot] = STATE(1928), - [sym__canany] = STATE(1928), - [sym__feature] = STATE(1927), - [sym__custom] = STATE(1927), - [sym_switch] = STATE(124), - [sym_loop] = STATE(124), - [sym_loop_operator] = STATE(124), - [sym__for] = STATE(1929), - [sym__foreach] = STATE(1929), - [sym__forelse] = STATE(1929), - [sym__while] = STATE(1929), - [sym_envoy] = STATE(124), - [sym__setup] = STATE(1925), - [sym__task] = STATE(1930), - [sym__story] = STATE(1930), - [sym__hooks] = STATE(1925), - [sym__before] = STATE(1925), - [sym__after] = STATE(1925), - [sym__envoy_error] = STATE(1925), - [sym__success] = STATE(1925), - [sym__finished] = STATE(1925), - [sym_livewire] = STATE(124), - [sym__persist] = STATE(1931), - [sym__teleport] = STATE(1931), - [sym__volt] = STATE(1931), - [sym_text] = STATE(124), - [sym__text] = STATE(679), - [aux_sym__if_statement_directive_body_repeat1] = STATE(124), - [aux_sym_php_only_repeat1] = STATE(679), - [sym_comment] = ACTIONS(433), - [aux_sym_keyword_token1] = ACTIONS(435), - [anon_sym_LBRACE_LBRACE] = ACTIONS(437), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(439), - [anon_sym_ATphp] = ACTIONS(441), - [aux_sym_attribute_token1] = ACTIONS(443), - [aux_sym__inline_directive_token1] = ACTIONS(445), - [anon_sym_ATfragment] = ACTIONS(447), - [anon_sym_ATsection] = ACTIONS(449), - [anon_sym_ATonce] = ACTIONS(451), - [anon_sym_ATverbatim] = ACTIONS(453), - [anon_sym_ATpush] = ACTIONS(455), - [anon_sym_ATpushOnce] = ACTIONS(457), - [anon_sym_ATpushIf] = ACTIONS(459), - [anon_sym_ATprepend] = ACTIONS(461), - [anon_sym_ATprependOnce] = ACTIONS(463), - [anon_sym_ATelse] = ACTIONS(465), - [aux_sym_conditional_keyword_token1] = ACTIONS(467), - [anon_sym_ATif] = ACTIONS(469), - [anon_sym_ATunless] = ACTIONS(471), - [anon_sym_ATisset] = ACTIONS(473), - [anon_sym_ATempty] = ACTIONS(475), - [anon_sym_ATauth] = ACTIONS(477), - [anon_sym_ATguest] = ACTIONS(479), - [anon_sym_ATproduction] = ACTIONS(481), - [anon_sym_ATenv] = ACTIONS(483), - [anon_sym_AThasSection] = ACTIONS(485), - [anon_sym_ATsectionMissing] = ACTIONS(487), - [anon_sym_ATerror] = ACTIONS(489), - [anon_sym_ATcan] = ACTIONS(491), - [anon_sym_ATcannot] = ACTIONS(493), - [anon_sym_ATcanany] = ACTIONS(495), - [anon_sym_ATendcanany] = ACTIONS(497), - [anon_sym_ATfeature] = ACTIONS(499), - [aux_sym__custom_token1] = ACTIONS(501), - [aux_sym__custom_token2] = ACTIONS(503), - [anon_sym_ATswitch] = ACTIONS(505), - [aux_sym_loop_operator_token1] = ACTIONS(507), - [anon_sym_ATfor] = ACTIONS(509), - [anon_sym_ATforeach] = ACTIONS(511), - [anon_sym_ATforelse] = ACTIONS(513), - [anon_sym_ATwhile] = ACTIONS(515), - [anon_sym_ATsetup] = ACTIONS(517), - [anon_sym_ATtask] = ACTIONS(519), - [anon_sym_ATstory] = ACTIONS(521), - [anon_sym_ATbefore] = ACTIONS(523), - [anon_sym_ATafter] = ACTIONS(525), - [anon_sym_ATsuccess] = ACTIONS(527), - [anon_sym_ATfinished] = ACTIONS(529), - [anon_sym_ATpersist] = ACTIONS(531), - [anon_sym_ATteleport] = ACTIONS(533), - [anon_sym_ATvolt] = ACTIONS(535), - [aux_sym__text_token1] = ACTIONS(537), - [aux_sym__text_token2] = ACTIONS(537), - [aux_sym__text_token3] = ACTIONS(539), - }, - [75] = { - [sym__definition] = STATE(90), - [sym_keyword] = STATE(90), - [sym_php_statement] = STATE(90), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(90), - [sym__inline_directive] = STATE(90), - [sym__nested_directive] = STATE(90), - [sym_fragment] = STATE(90), - [sym_section] = STATE(90), - [sym_inlineSection] = STATE(90), - [sym_once] = STATE(90), - [sym_verbatim] = STATE(90), - [sym_stack] = STATE(90), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(90), - [sym_conditional_keyword] = STATE(90), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(90), - [sym_loop] = STATE(90), - [sym_loop_operator] = STATE(90), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(90), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(90), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym_text] = STATE(90), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(90), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(541), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATendguest] = ACTIONS(323), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), - }, - [76] = { - [sym__definition] = STATE(76), - [sym_keyword] = STATE(76), - [sym_php_statement] = STATE(76), - [sym__escaped] = STATE(1762), - [sym__unescaped] = STATE(1762), - [sym__raw] = STATE(1762), - [sym__inline_raw] = STATE(1762), - [sym__multi_line_raw] = STATE(1762), - [sym_attribute] = STATE(76), - [sym__inline_directive] = STATE(76), - [sym__nested_directive] = STATE(76), - [sym_fragment] = STATE(76), - [sym_section] = STATE(76), - [sym_inlineSection] = STATE(76), - [sym_once] = STATE(76), - [sym_verbatim] = STATE(76), - [sym_stack] = STATE(76), - [sym__push] = STATE(1763), - [sym__pushOnce] = STATE(1763), - [sym__pushIf] = STATE(1763), - [sym__prepend] = STATE(1763), - [sym__prependOnce] = STATE(1763), - [sym_conditional] = STATE(76), - [sym_conditional_keyword] = STATE(76), - [sym__if] = STATE(1764), - [sym__unless] = STATE(1764), - [sym__isset] = STATE(1764), - [sym__empty] = STATE(1764), - [sym__auth] = STATE(1764), - [sym__guest] = STATE(1764), - [sym__production] = STATE(1764), - [sym__env] = STATE(1764), - [sym__hasSection] = STATE(1764), - [sym__sectionMissing] = STATE(1764), - [sym__error] = STATE(1764), - [sym_authorization] = STATE(1764), - [sym__can] = STATE(1765), - [sym__cannot] = STATE(1765), - [sym__canany] = STATE(1765), - [sym__feature] = STATE(1764), - [sym__custom] = STATE(1764), - [sym_switch] = STATE(76), - [sym_loop] = STATE(76), - [sym_loop_operator] = STATE(76), - [sym__for] = STATE(1766), - [sym__foreach] = STATE(1766), - [sym__forelse] = STATE(1766), - [sym__while] = STATE(1766), - [sym_envoy] = STATE(76), - [sym__setup] = STATE(1762), - [sym__task] = STATE(1767), - [sym__story] = STATE(1767), - [sym__hooks] = STATE(1762), - [sym__before] = STATE(1762), - [sym__after] = STATE(1762), - [sym__envoy_error] = STATE(1762), - [sym__success] = STATE(1762), - [sym__finished] = STATE(1762), - [sym_livewire] = STATE(76), - [sym__persist] = STATE(1768), - [sym__teleport] = STATE(1768), - [sym__volt] = STATE(1768), - [sym_text] = STATE(76), - [sym__text] = STATE(725), - [aux_sym__if_statement_directive_body_repeat1] = STATE(76), - [aux_sym_php_only_repeat1] = STATE(725), - [sym_comment] = ACTIONS(543), - [aux_sym_keyword_token1] = ACTIONS(546), - [anon_sym_LBRACE_LBRACE] = ACTIONS(549), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(552), - [anon_sym_ATphp] = ACTIONS(555), - [aux_sym_attribute_token1] = ACTIONS(558), - [aux_sym__inline_directive_token1] = ACTIONS(561), - [anon_sym_ATfragment] = ACTIONS(564), - [anon_sym_ATsection] = ACTIONS(567), - [anon_sym_ATonce] = ACTIONS(570), - [anon_sym_ATverbatim] = ACTIONS(573), - [anon_sym_ATpush] = ACTIONS(576), - [anon_sym_ATpushOnce] = ACTIONS(579), - [anon_sym_ATpushIf] = ACTIONS(582), - [anon_sym_ATprepend] = ACTIONS(585), - [anon_sym_ATprependOnce] = ACTIONS(588), - [anon_sym_ATelse] = ACTIONS(591), - [aux_sym_conditional_keyword_token1] = ACTIONS(594), - [anon_sym_ATif] = ACTIONS(597), - [anon_sym_ATunless] = ACTIONS(600), - [anon_sym_ATisset] = ACTIONS(603), - [anon_sym_ATempty] = ACTIONS(606), - [anon_sym_ATauth] = ACTIONS(609), - [anon_sym_ATguest] = ACTIONS(612), - [anon_sym_ATproduction] = ACTIONS(615), - [anon_sym_ATenv] = ACTIONS(618), - [anon_sym_AThasSection] = ACTIONS(621), - [anon_sym_ATsectionMissing] = ACTIONS(624), - [anon_sym_ATerror] = ACTIONS(627), - [anon_sym_ATcan] = ACTIONS(630), - [anon_sym_ATendcan] = ACTIONS(633), - [anon_sym_ATcannot] = ACTIONS(635), - [anon_sym_ATcanany] = ACTIONS(638), - [anon_sym_ATfeature] = ACTIONS(641), - [aux_sym__custom_token1] = ACTIONS(644), - [aux_sym__custom_token2] = ACTIONS(647), - [anon_sym_ATswitch] = ACTIONS(650), - [aux_sym_loop_operator_token1] = ACTIONS(653), - [anon_sym_ATfor] = ACTIONS(656), - [anon_sym_ATforeach] = ACTIONS(659), - [anon_sym_ATforelse] = ACTIONS(662), - [anon_sym_ATwhile] = ACTIONS(665), - [anon_sym_ATsetup] = ACTIONS(668), - [anon_sym_ATtask] = ACTIONS(671), - [anon_sym_ATstory] = ACTIONS(674), - [anon_sym_ATbefore] = ACTIONS(677), - [anon_sym_ATafter] = ACTIONS(680), - [anon_sym_ATsuccess] = ACTIONS(683), - [anon_sym_ATfinished] = ACTIONS(686), - [anon_sym_ATpersist] = ACTIONS(689), - [anon_sym_ATteleport] = ACTIONS(692), - [anon_sym_ATvolt] = ACTIONS(695), - [aux_sym__text_token1] = ACTIONS(698), - [aux_sym__text_token2] = ACTIONS(698), - [aux_sym__text_token3] = ACTIONS(701), - }, - [77] = { - [sym__definition] = STATE(74), - [sym_keyword] = STATE(74), - [sym_php_statement] = STATE(74), - [sym__escaped] = STATE(1925), - [sym__unescaped] = STATE(1925), - [sym__raw] = STATE(1925), - [sym__inline_raw] = STATE(1925), - [sym__multi_line_raw] = STATE(1925), - [sym_attribute] = STATE(74), - [sym__inline_directive] = STATE(74), - [sym__nested_directive] = STATE(74), - [sym_fragment] = STATE(74), - [sym_section] = STATE(74), - [sym_inlineSection] = STATE(74), - [sym_once] = STATE(74), - [sym_verbatim] = STATE(74), - [sym_stack] = STATE(74), - [sym__push] = STATE(1926), - [sym__pushOnce] = STATE(1926), - [sym__pushIf] = STATE(1926), - [sym__prepend] = STATE(1926), - [sym__prependOnce] = STATE(1926), - [sym_conditional] = STATE(74), - [sym_conditional_keyword] = STATE(74), - [sym__if] = STATE(1927), - [sym__unless] = STATE(1927), - [sym__isset] = STATE(1927), - [sym__empty] = STATE(1927), - [sym__auth] = STATE(1927), - [sym__guest] = STATE(1927), - [sym__production] = STATE(1927), - [sym__env] = STATE(1927), - [sym__hasSection] = STATE(1927), - [sym__sectionMissing] = STATE(1927), - [sym__error] = STATE(1927), - [sym_authorization] = STATE(1927), - [sym__can] = STATE(1928), - [sym__cannot] = STATE(1928), - [sym__canany] = STATE(1928), - [sym__feature] = STATE(1927), - [sym__custom] = STATE(1927), - [sym_switch] = STATE(74), - [sym_loop] = STATE(74), - [sym_loop_operator] = STATE(74), - [sym__for] = STATE(1929), - [sym__foreach] = STATE(1929), - [sym__forelse] = STATE(1929), - [sym__while] = STATE(1929), - [sym_envoy] = STATE(74), - [sym__setup] = STATE(1925), - [sym__task] = STATE(1930), - [sym__story] = STATE(1930), - [sym__hooks] = STATE(1925), - [sym__before] = STATE(1925), - [sym__after] = STATE(1925), - [sym__envoy_error] = STATE(1925), - [sym__success] = STATE(1925), - [sym__finished] = STATE(1925), - [sym_livewire] = STATE(74), - [sym__persist] = STATE(1931), - [sym__teleport] = STATE(1931), - [sym__volt] = STATE(1931), - [sym_text] = STATE(74), - [sym__text] = STATE(679), - [aux_sym__if_statement_directive_body_repeat1] = STATE(74), - [aux_sym_php_only_repeat1] = STATE(679), - [sym_comment] = ACTIONS(704), - [aux_sym_keyword_token1] = ACTIONS(435), - [anon_sym_LBRACE_LBRACE] = ACTIONS(437), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(439), - [anon_sym_ATphp] = ACTIONS(441), - [aux_sym_attribute_token1] = ACTIONS(443), - [aux_sym__inline_directive_token1] = ACTIONS(445), - [anon_sym_ATfragment] = ACTIONS(447), - [anon_sym_ATsection] = ACTIONS(449), - [anon_sym_ATonce] = ACTIONS(451), - [anon_sym_ATverbatim] = ACTIONS(453), - [anon_sym_ATpush] = ACTIONS(455), - [anon_sym_ATpushOnce] = ACTIONS(457), - [anon_sym_ATpushIf] = ACTIONS(459), - [anon_sym_ATprepend] = ACTIONS(461), - [anon_sym_ATprependOnce] = ACTIONS(463), - [anon_sym_ATelse] = ACTIONS(465), - [aux_sym_conditional_keyword_token1] = ACTIONS(467), - [anon_sym_ATif] = ACTIONS(469), - [anon_sym_ATunless] = ACTIONS(471), - [anon_sym_ATisset] = ACTIONS(473), - [anon_sym_ATempty] = ACTIONS(475), - [anon_sym_ATauth] = ACTIONS(477), - [anon_sym_ATguest] = ACTIONS(479), - [anon_sym_ATproduction] = ACTIONS(481), - [anon_sym_ATenv] = ACTIONS(483), - [anon_sym_AThasSection] = ACTIONS(485), - [anon_sym_ATsectionMissing] = ACTIONS(487), - [anon_sym_ATerror] = ACTIONS(489), - [anon_sym_ATcan] = ACTIONS(491), - [anon_sym_ATcannot] = ACTIONS(493), - [anon_sym_ATcanany] = ACTIONS(495), - [anon_sym_ATendcanany] = ACTIONS(706), - [anon_sym_ATfeature] = ACTIONS(499), - [aux_sym__custom_token1] = ACTIONS(501), - [aux_sym__custom_token2] = ACTIONS(503), - [anon_sym_ATswitch] = ACTIONS(505), - [aux_sym_loop_operator_token1] = ACTIONS(507), - [anon_sym_ATfor] = ACTIONS(509), - [anon_sym_ATforeach] = ACTIONS(511), - [anon_sym_ATforelse] = ACTIONS(513), - [anon_sym_ATwhile] = ACTIONS(515), - [anon_sym_ATsetup] = ACTIONS(517), - [anon_sym_ATtask] = ACTIONS(519), - [anon_sym_ATstory] = ACTIONS(521), - [anon_sym_ATbefore] = ACTIONS(523), - [anon_sym_ATafter] = ACTIONS(525), - [anon_sym_ATsuccess] = ACTIONS(527), - [anon_sym_ATfinished] = ACTIONS(529), - [anon_sym_ATpersist] = ACTIONS(531), - [anon_sym_ATteleport] = ACTIONS(533), - [anon_sym_ATvolt] = ACTIONS(535), - [aux_sym__text_token1] = ACTIONS(537), - [aux_sym__text_token2] = ACTIONS(537), - [aux_sym__text_token3] = ACTIONS(539), - }, - [78] = { [sym__definition] = STATE(85), [sym_keyword] = STATE(85), [sym_php_statement] = STATE(85), - [sym__escaped] = STATE(1338), - [sym__unescaped] = STATE(1338), - [sym__raw] = STATE(1338), - [sym__inline_raw] = STATE(1338), - [sym__multi_line_raw] = STATE(1338), + [sym__escaped] = STATE(1354), + [sym__unescaped] = STATE(1354), + [sym__raw] = STATE(1354), + [sym__inline_raw] = STATE(1354), + [sym__multi_line_raw] = STATE(1354), [sym_attribute] = STATE(85), [sym__inline_directive] = STATE(85), [sym__nested_directive] = STATE(85), @@ -35246,735 +35374,3122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(85), [sym_verbatim] = STATE(85), [sym_stack] = STATE(85), - [sym__push] = STATE(1339), - [sym__pushOnce] = STATE(1339), - [sym__pushIf] = STATE(1339), - [sym__prepend] = STATE(1339), - [sym__prependOnce] = STATE(1339), + [sym__push] = STATE(1355), + [sym__pushOnce] = STATE(1355), + [sym__pushIf] = STATE(1355), + [sym__prepend] = STATE(1355), + [sym__prependOnce] = STATE(1355), [sym_conditional] = STATE(85), [sym_conditional_keyword] = STATE(85), - [sym__if] = STATE(1340), - [sym__unless] = STATE(1340), - [sym__isset] = STATE(1340), - [sym__empty] = STATE(1340), - [sym__auth] = STATE(1340), - [sym__guest] = STATE(1340), - [sym__production] = STATE(1340), - [sym__env] = STATE(1340), - [sym__hasSection] = STATE(1340), - [sym__sectionMissing] = STATE(1340), - [sym__error] = STATE(1340), - [sym_authorization] = STATE(1340), - [sym__can] = STATE(1341), - [sym__cannot] = STATE(1341), - [sym__canany] = STATE(1341), - [sym__feature] = STATE(1340), - [sym__custom] = STATE(1340), + [sym__if] = STATE(1356), + [sym__unless] = STATE(1356), + [sym__isset] = STATE(1356), + [sym__empty] = STATE(1356), + [sym__auth] = STATE(1356), + [sym__guest] = STATE(1356), + [sym__production] = STATE(1356), + [sym__env] = STATE(1356), + [sym__hasSection] = STATE(1356), + [sym__sectionMissing] = STATE(1356), + [sym__error] = STATE(1356), + [sym_authorization] = STATE(1356), + [sym__can] = STATE(1357), + [sym__cannot] = STATE(1357), + [sym__canany] = STATE(1357), + [sym__feature] = STATE(1356), + [sym__custom] = STATE(1356), [sym_switch] = STATE(85), [sym_loop] = STATE(85), [sym_loop_operator] = STATE(85), - [sym__for] = STATE(1342), - [sym__foreach] = STATE(1342), - [sym__forelse] = STATE(1342), - [sym__while] = STATE(1342), + [sym__for] = STATE(1358), + [sym__foreach] = STATE(1358), + [sym__forelse] = STATE(1358), + [sym__while] = STATE(1358), [sym_envoy] = STATE(85), - [sym__setup] = STATE(1338), - [sym__task] = STATE(1343), - [sym__story] = STATE(1343), - [sym__hooks] = STATE(1338), - [sym__before] = STATE(1338), - [sym__after] = STATE(1338), - [sym__envoy_error] = STATE(1338), - [sym__success] = STATE(1338), - [sym__finished] = STATE(1338), + [sym__setup] = STATE(1354), + [sym__task] = STATE(1359), + [sym__story] = STATE(1359), + [sym__hooks] = STATE(1354), + [sym__before] = STATE(1354), + [sym__after] = STATE(1354), + [sym__envoy_error] = STATE(1354), + [sym__success] = STATE(1354), + [sym__finished] = STATE(1354), [sym_livewire] = STATE(85), - [sym__persist] = STATE(1344), - [sym__teleport] = STATE(1344), - [sym__volt] = STATE(1344), + [sym__persist] = STATE(1360), + [sym__teleport] = STATE(1360), + [sym__volt] = STATE(1360), + [sym_alpine_js] = STATE(85), [sym_text] = STATE(85), - [sym__text] = STATE(686), + [sym__text] = STATE(685), [aux_sym__if_statement_directive_body_repeat1] = STATE(85), - [aux_sym_php_only_repeat1] = STATE(686), - [sym_comment] = ACTIONS(708), - [aux_sym_keyword_token1] = ACTIONS(710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(712), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(714), - [anon_sym_ATphp] = ACTIONS(716), - [aux_sym_attribute_token1] = ACTIONS(718), - [aux_sym__inline_directive_token1] = ACTIONS(720), - [anon_sym_ATfragment] = ACTIONS(722), - [anon_sym_ATsection] = ACTIONS(724), - [anon_sym_ATonce] = ACTIONS(726), - [anon_sym_ATverbatim] = ACTIONS(728), - [anon_sym_ATpush] = ACTIONS(730), - [anon_sym_ATpushOnce] = ACTIONS(732), - [anon_sym_ATpushIf] = ACTIONS(734), - [anon_sym_ATprepend] = ACTIONS(736), - [anon_sym_ATprependOnce] = ACTIONS(738), - [anon_sym_ATelse] = ACTIONS(740), - [aux_sym_conditional_keyword_token1] = ACTIONS(742), - [anon_sym_ATif] = ACTIONS(744), - [anon_sym_ATunless] = ACTIONS(746), - [anon_sym_ATendunless] = ACTIONS(706), - [anon_sym_ATisset] = ACTIONS(748), - [anon_sym_ATempty] = ACTIONS(750), - [anon_sym_ATauth] = ACTIONS(752), - [anon_sym_ATguest] = ACTIONS(754), - [anon_sym_ATproduction] = ACTIONS(756), - [anon_sym_ATenv] = ACTIONS(758), - [anon_sym_AThasSection] = ACTIONS(760), - [anon_sym_ATsectionMissing] = ACTIONS(762), - [anon_sym_ATerror] = ACTIONS(764), - [anon_sym_ATcan] = ACTIONS(766), - [anon_sym_ATcannot] = ACTIONS(768), - [anon_sym_ATcanany] = ACTIONS(770), - [anon_sym_ATfeature] = ACTIONS(772), - [aux_sym__custom_token1] = ACTIONS(774), - [aux_sym__custom_token2] = ACTIONS(776), - [anon_sym_ATswitch] = ACTIONS(778), - [aux_sym_loop_operator_token1] = ACTIONS(780), - [anon_sym_ATfor] = ACTIONS(782), - [anon_sym_ATforeach] = ACTIONS(784), - [anon_sym_ATforelse] = ACTIONS(786), - [anon_sym_ATwhile] = ACTIONS(788), - [anon_sym_ATsetup] = ACTIONS(790), - [anon_sym_ATtask] = ACTIONS(792), - [anon_sym_ATstory] = ACTIONS(794), - [anon_sym_ATbefore] = ACTIONS(796), - [anon_sym_ATafter] = ACTIONS(798), - [anon_sym_ATsuccess] = ACTIONS(800), - [anon_sym_ATfinished] = ACTIONS(802), - [anon_sym_ATpersist] = ACTIONS(804), - [anon_sym_ATteleport] = ACTIONS(806), - [anon_sym_ATvolt] = ACTIONS(808), - [aux_sym__text_token1] = ACTIONS(810), - [aux_sym__text_token2] = ACTIONS(810), - [aux_sym__text_token3] = ACTIONS(812), + [aux_sym_php_only_repeat1] = STATE(685), + [sym_comment] = ACTIONS(441), + [aux_sym_keyword_token1] = ACTIONS(443), + [anon_sym_LBRACE_LBRACE] = ACTIONS(445), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(447), + [anon_sym_ATphp] = ACTIONS(449), + [aux_sym_attribute_token1] = ACTIONS(451), + [aux_sym__inline_directive_token1] = ACTIONS(453), + [anon_sym_ATfragment] = ACTIONS(455), + [anon_sym_ATsection] = ACTIONS(457), + [anon_sym_ATonce] = ACTIONS(459), + [anon_sym_ATverbatim] = ACTIONS(461), + [anon_sym_ATpush] = ACTIONS(463), + [anon_sym_ATpushOnce] = ACTIONS(465), + [anon_sym_ATpushIf] = ACTIONS(467), + [anon_sym_ATprepend] = ACTIONS(469), + [anon_sym_ATprependOnce] = ACTIONS(471), + [anon_sym_ATelse] = ACTIONS(473), + [aux_sym_conditional_keyword_token1] = ACTIONS(475), + [anon_sym_ATif] = ACTIONS(477), + [anon_sym_ATunless] = ACTIONS(479), + [anon_sym_ATendunless] = ACTIONS(481), + [anon_sym_ATisset] = ACTIONS(483), + [anon_sym_ATempty] = ACTIONS(485), + [anon_sym_ATauth] = ACTIONS(487), + [anon_sym_ATguest] = ACTIONS(489), + [anon_sym_ATproduction] = ACTIONS(491), + [anon_sym_ATenv] = ACTIONS(493), + [anon_sym_AThasSection] = ACTIONS(495), + [anon_sym_ATsectionMissing] = ACTIONS(497), + [anon_sym_ATerror] = ACTIONS(499), + [anon_sym_ATcan] = ACTIONS(501), + [anon_sym_ATcannot] = ACTIONS(503), + [anon_sym_ATcanany] = ACTIONS(505), + [anon_sym_ATfeature] = ACTIONS(507), + [aux_sym__custom_token1] = ACTIONS(509), + [aux_sym__custom_token2] = ACTIONS(511), + [anon_sym_ATswitch] = ACTIONS(513), + [aux_sym_loop_operator_token1] = ACTIONS(515), + [anon_sym_ATfor] = ACTIONS(517), + [anon_sym_ATforeach] = ACTIONS(519), + [anon_sym_ATforelse] = ACTIONS(521), + [anon_sym_ATwhile] = ACTIONS(523), + [anon_sym_ATsetup] = ACTIONS(525), + [anon_sym_ATtask] = ACTIONS(527), + [anon_sym_ATstory] = ACTIONS(529), + [anon_sym_ATbefore] = ACTIONS(531), + [anon_sym_ATafter] = ACTIONS(533), + [anon_sym_ATsuccess] = ACTIONS(535), + [anon_sym_ATfinished] = ACTIONS(537), + [anon_sym_ATpersist] = ACTIONS(539), + [anon_sym_ATteleport] = ACTIONS(541), + [anon_sym_ATvolt] = ACTIONS(543), + [aux_sym_alpine_js_token1] = ACTIONS(545), + [aux_sym__text_token1] = ACTIONS(547), + [aux_sym__text_token2] = ACTIONS(547), + [aux_sym__text_token3] = ACTIONS(549), + }, + [75] = { + [sym__definition] = STATE(89), + [sym_keyword] = STATE(89), + [sym_php_statement] = STATE(89), + [sym__escaped] = STATE(1467), + [sym__unescaped] = STATE(1467), + [sym__raw] = STATE(1467), + [sym__inline_raw] = STATE(1467), + [sym__multi_line_raw] = STATE(1467), + [sym_attribute] = STATE(89), + [sym__inline_directive] = STATE(89), + [sym__nested_directive] = STATE(89), + [sym_fragment] = STATE(89), + [sym_section] = STATE(89), + [sym_inlineSection] = STATE(89), + [sym_once] = STATE(89), + [sym_verbatim] = STATE(89), + [sym_stack] = STATE(89), + [sym__push] = STATE(1380), + [sym__pushOnce] = STATE(1380), + [sym__pushIf] = STATE(1380), + [sym__prepend] = STATE(1380), + [sym__prependOnce] = STATE(1380), + [sym_conditional] = STATE(89), + [sym_conditional_keyword] = STATE(89), + [sym__if] = STATE(1290), + [sym__unless] = STATE(1290), + [sym__isset] = STATE(1290), + [sym__empty] = STATE(1290), + [sym__auth] = STATE(1290), + [sym__guest] = STATE(1290), + [sym__production] = STATE(1290), + [sym__env] = STATE(1290), + [sym__hasSection] = STATE(1290), + [sym__sectionMissing] = STATE(1290), + [sym__error] = STATE(1290), + [sym_authorization] = STATE(1290), + [sym__can] = STATE(1282), + [sym__cannot] = STATE(1282), + [sym__canany] = STATE(1282), + [sym__feature] = STATE(1290), + [sym__custom] = STATE(1290), + [sym_switch] = STATE(89), + [sym_loop] = STATE(89), + [sym_loop_operator] = STATE(89), + [sym__for] = STATE(1260), + [sym__foreach] = STATE(1260), + [sym__forelse] = STATE(1260), + [sym__while] = STATE(1260), + [sym_envoy] = STATE(89), + [sym__setup] = STATE(1467), + [sym__task] = STATE(1259), + [sym__story] = STATE(1259), + [sym__hooks] = STATE(1467), + [sym__before] = STATE(1467), + [sym__after] = STATE(1467), + [sym__envoy_error] = STATE(1467), + [sym__success] = STATE(1467), + [sym__finished] = STATE(1467), + [sym_livewire] = STATE(89), + [sym__persist] = STATE(1258), + [sym__teleport] = STATE(1258), + [sym__volt] = STATE(1258), + [sym_alpine_js] = STATE(89), + [sym_text] = STATE(89), + [sym__text] = STATE(678), + [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [aux_sym_php_only_repeat1] = STATE(678), + [sym_comment] = ACTIONS(551), + [aux_sym_keyword_token1] = ACTIONS(553), + [anon_sym_LBRACE_LBRACE] = ACTIONS(555), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(557), + [anon_sym_ATphp] = ACTIONS(559), + [aux_sym_attribute_token1] = ACTIONS(561), + [aux_sym__inline_directive_token1] = ACTIONS(563), + [anon_sym_ATfragment] = ACTIONS(565), + [anon_sym_ATsection] = ACTIONS(567), + [anon_sym_ATonce] = ACTIONS(569), + [anon_sym_ATverbatim] = ACTIONS(571), + [anon_sym_ATpush] = ACTIONS(573), + [anon_sym_ATpushOnce] = ACTIONS(575), + [anon_sym_ATpushIf] = ACTIONS(577), + [anon_sym_ATprepend] = ACTIONS(579), + [anon_sym_ATprependOnce] = ACTIONS(581), + [anon_sym_ATelse] = ACTIONS(583), + [aux_sym_conditional_keyword_token1] = ACTIONS(585), + [anon_sym_ATif] = ACTIONS(587), + [anon_sym_ATunless] = ACTIONS(589), + [anon_sym_ATisset] = ACTIONS(591), + [anon_sym_ATempty] = ACTIONS(593), + [anon_sym_ATauth] = ACTIONS(595), + [anon_sym_ATguest] = ACTIONS(597), + [anon_sym_ATproduction] = ACTIONS(599), + [anon_sym_ATenv] = ACTIONS(601), + [anon_sym_AThasSection] = ACTIONS(603), + [anon_sym_ATsectionMissing] = ACTIONS(605), + [anon_sym_ATerror] = ACTIONS(607), + [anon_sym_ATcan] = ACTIONS(609), + [anon_sym_ATcannot] = ACTIONS(611), + [anon_sym_ATcanany] = ACTIONS(613), + [anon_sym_ATendcanany] = ACTIONS(481), + [anon_sym_ATfeature] = ACTIONS(615), + [aux_sym__custom_token1] = ACTIONS(617), + [aux_sym__custom_token2] = ACTIONS(619), + [anon_sym_ATswitch] = ACTIONS(621), + [aux_sym_loop_operator_token1] = ACTIONS(623), + [anon_sym_ATfor] = ACTIONS(625), + [anon_sym_ATforeach] = ACTIONS(627), + [anon_sym_ATforelse] = ACTIONS(629), + [anon_sym_ATwhile] = ACTIONS(631), + [anon_sym_ATsetup] = ACTIONS(633), + [anon_sym_ATtask] = ACTIONS(635), + [anon_sym_ATstory] = ACTIONS(637), + [anon_sym_ATbefore] = ACTIONS(639), + [anon_sym_ATafter] = ACTIONS(641), + [anon_sym_ATsuccess] = ACTIONS(643), + [anon_sym_ATfinished] = ACTIONS(645), + [anon_sym_ATpersist] = ACTIONS(647), + [anon_sym_ATteleport] = ACTIONS(649), + [anon_sym_ATvolt] = ACTIONS(651), + [aux_sym_alpine_js_token1] = ACTIONS(653), + [aux_sym__text_token1] = ACTIONS(655), + [aux_sym__text_token2] = ACTIONS(655), + [aux_sym__text_token3] = ACTIONS(657), + }, + [76] = { + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(709), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), + }, + [77] = { + [sym__definition] = STATE(117), + [sym_keyword] = STATE(117), + [sym_php_statement] = STATE(117), + [sym__escaped] = STATE(1783), + [sym__unescaped] = STATE(1783), + [sym__raw] = STATE(1783), + [sym__inline_raw] = STATE(1783), + [sym__multi_line_raw] = STATE(1783), + [sym_attribute] = STATE(117), + [sym__inline_directive] = STATE(117), + [sym__nested_directive] = STATE(117), + [sym_fragment] = STATE(117), + [sym_section] = STATE(117), + [sym_inlineSection] = STATE(117), + [sym_once] = STATE(117), + [sym_verbatim] = STATE(117), + [sym_stack] = STATE(117), + [sym__push] = STATE(1784), + [sym__pushOnce] = STATE(1784), + [sym__pushIf] = STATE(1784), + [sym__prepend] = STATE(1784), + [sym__prependOnce] = STATE(1784), + [sym_conditional] = STATE(117), + [sym_conditional_keyword] = STATE(117), + [sym__if] = STATE(1785), + [sym__unless] = STATE(1785), + [sym__isset] = STATE(1785), + [sym__empty] = STATE(1785), + [sym__auth] = STATE(1785), + [sym__guest] = STATE(1785), + [sym__production] = STATE(1785), + [sym__env] = STATE(1785), + [sym__hasSection] = STATE(1785), + [sym__sectionMissing] = STATE(1785), + [sym__error] = STATE(1785), + [sym_authorization] = STATE(1785), + [sym__can] = STATE(1786), + [sym__cannot] = STATE(1786), + [sym__canany] = STATE(1786), + [sym__feature] = STATE(1785), + [sym__custom] = STATE(1785), + [sym_switch] = STATE(117), + [sym_loop] = STATE(117), + [sym_loop_operator] = STATE(117), + [sym__for] = STATE(1787), + [sym__foreach] = STATE(1787), + [sym__forelse] = STATE(1787), + [sym__while] = STATE(1787), + [sym_envoy] = STATE(117), + [sym__setup] = STATE(1783), + [sym__task] = STATE(1788), + [sym__story] = STATE(1788), + [sym__hooks] = STATE(1783), + [sym__before] = STATE(1783), + [sym__after] = STATE(1783), + [sym__envoy_error] = STATE(1783), + [sym__success] = STATE(1783), + [sym__finished] = STATE(1783), + [sym_livewire] = STATE(117), + [sym__persist] = STATE(1789), + [sym__teleport] = STATE(1789), + [sym__volt] = STATE(1789), + [sym_alpine_js] = STATE(117), + [sym_text] = STATE(117), + [sym__text] = STATE(691), + [aux_sym__if_statement_directive_body_repeat1] = STATE(117), + [aux_sym_php_only_repeat1] = STATE(691), + [sym_comment] = ACTIONS(769), + [aux_sym_keyword_token1] = ACTIONS(771), + [anon_sym_LBRACE_LBRACE] = ACTIONS(773), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(775), + [anon_sym_ATphp] = ACTIONS(777), + [aux_sym_attribute_token1] = ACTIONS(779), + [aux_sym__inline_directive_token1] = ACTIONS(781), + [anon_sym_ATfragment] = ACTIONS(783), + [anon_sym_ATsection] = ACTIONS(785), + [anon_sym_ATonce] = ACTIONS(787), + [anon_sym_ATverbatim] = ACTIONS(789), + [anon_sym_ATpush] = ACTIONS(791), + [anon_sym_ATpushOnce] = ACTIONS(793), + [anon_sym_ATpushIf] = ACTIONS(795), + [anon_sym_ATprepend] = ACTIONS(797), + [anon_sym_ATprependOnce] = ACTIONS(799), + [anon_sym_ATelse] = ACTIONS(801), + [aux_sym_conditional_keyword_token1] = ACTIONS(803), + [anon_sym_ATif] = ACTIONS(805), + [anon_sym_ATunless] = ACTIONS(807), + [anon_sym_ATisset] = ACTIONS(809), + [anon_sym_ATempty] = ACTIONS(811), + [anon_sym_ATauth] = ACTIONS(813), + [anon_sym_ATguest] = ACTIONS(815), + [anon_sym_ATproduction] = ACTIONS(817), + [anon_sym_ATenv] = ACTIONS(819), + [anon_sym_AThasSection] = ACTIONS(821), + [anon_sym_ATsectionMissing] = ACTIONS(823), + [anon_sym_ATerror] = ACTIONS(825), + [anon_sym_ATcan] = ACTIONS(827), + [anon_sym_ATendcan] = ACTIONS(481), + [anon_sym_ATcannot] = ACTIONS(829), + [anon_sym_ATcanany] = ACTIONS(831), + [anon_sym_ATfeature] = ACTIONS(833), + [aux_sym__custom_token1] = ACTIONS(835), + [aux_sym__custom_token2] = ACTIONS(837), + [anon_sym_ATswitch] = ACTIONS(839), + [aux_sym_loop_operator_token1] = ACTIONS(841), + [anon_sym_ATfor] = ACTIONS(843), + [anon_sym_ATforeach] = ACTIONS(845), + [anon_sym_ATforelse] = ACTIONS(847), + [anon_sym_ATwhile] = ACTIONS(849), + [anon_sym_ATsetup] = ACTIONS(851), + [anon_sym_ATtask] = ACTIONS(853), + [anon_sym_ATstory] = ACTIONS(855), + [anon_sym_ATbefore] = ACTIONS(857), + [anon_sym_ATafter] = ACTIONS(859), + [anon_sym_ATsuccess] = ACTIONS(861), + [anon_sym_ATfinished] = ACTIONS(863), + [anon_sym_ATpersist] = ACTIONS(865), + [anon_sym_ATteleport] = ACTIONS(867), + [anon_sym_ATvolt] = ACTIONS(869), + [aux_sym_alpine_js_token1] = ACTIONS(871), + [aux_sym__text_token1] = ACTIONS(873), + [aux_sym__text_token2] = ACTIONS(873), + [aux_sym__text_token3] = ACTIONS(875), + }, + [78] = { + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(877), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [79] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(814), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__definition] = STATE(79), + [sym_keyword] = STATE(79), + [sym_php_statement] = STATE(79), + [sym__escaped] = STATE(1699), + [sym__unescaped] = STATE(1699), + [sym__raw] = STATE(1699), + [sym__inline_raw] = STATE(1699), + [sym__multi_line_raw] = STATE(1699), + [sym_attribute] = STATE(79), + [sym__inline_directive] = STATE(79), + [sym__nested_directive] = STATE(79), + [sym_fragment] = STATE(79), + [sym_section] = STATE(79), + [sym_inlineSection] = STATE(79), + [sym_once] = STATE(79), + [sym_verbatim] = STATE(79), + [sym_stack] = STATE(79), + [sym__push] = STATE(1700), + [sym__pushOnce] = STATE(1700), + [sym__pushIf] = STATE(1700), + [sym__prepend] = STATE(1700), + [sym__prependOnce] = STATE(1700), + [sym_conditional] = STATE(79), + [sym_conditional_keyword] = STATE(79), + [sym__if] = STATE(1701), + [sym__unless] = STATE(1701), + [sym__isset] = STATE(1701), + [sym__empty] = STATE(1701), + [sym__auth] = STATE(1701), + [sym__guest] = STATE(1701), + [sym__production] = STATE(1701), + [sym__env] = STATE(1701), + [sym__hasSection] = STATE(1701), + [sym__sectionMissing] = STATE(1701), + [sym__error] = STATE(1701), + [sym_authorization] = STATE(1701), + [sym__can] = STATE(1702), + [sym__cannot] = STATE(1702), + [sym__canany] = STATE(1702), + [sym__feature] = STATE(1701), + [sym__custom] = STATE(1701), + [sym_switch] = STATE(79), + [sym_loop] = STATE(79), + [sym_loop_operator] = STATE(79), + [sym__for] = STATE(1703), + [sym__foreach] = STATE(1703), + [sym__forelse] = STATE(1703), + [sym__while] = STATE(1703), + [sym_envoy] = STATE(79), + [sym__setup] = STATE(1699), + [sym__task] = STATE(1704), + [sym__story] = STATE(1704), + [sym__hooks] = STATE(1699), + [sym__before] = STATE(1699), + [sym__after] = STATE(1699), + [sym__envoy_error] = STATE(1699), + [sym__success] = STATE(1699), + [sym__finished] = STATE(1699), + [sym_livewire] = STATE(79), + [sym__persist] = STATE(1705), + [sym__teleport] = STATE(1705), + [sym__volt] = STATE(1705), + [sym_alpine_js] = STATE(79), + [sym_text] = STATE(79), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(79), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(879), + [aux_sym_keyword_token1] = ACTIONS(882), + [anon_sym_LBRACE_LBRACE] = ACTIONS(885), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(888), + [anon_sym_ATphp] = ACTIONS(891), + [aux_sym_attribute_token1] = ACTIONS(894), + [aux_sym__inline_directive_token1] = ACTIONS(897), + [anon_sym_ATfragment] = ACTIONS(900), + [anon_sym_ATsection] = ACTIONS(903), + [anon_sym_ATonce] = ACTIONS(906), + [anon_sym_ATverbatim] = ACTIONS(909), + [anon_sym_ATpush] = ACTIONS(912), + [anon_sym_ATpushOnce] = ACTIONS(915), + [anon_sym_ATpushIf] = ACTIONS(918), + [anon_sym_ATprepend] = ACTIONS(921), + [anon_sym_ATprependOnce] = ACTIONS(924), + [anon_sym_ATelse] = ACTIONS(927), + [aux_sym_conditional_keyword_token1] = ACTIONS(930), + [anon_sym_ATif] = ACTIONS(933), + [anon_sym_ATunless] = ACTIONS(936), + [anon_sym_ATisset] = ACTIONS(939), + [anon_sym_ATempty] = ACTIONS(942), + [anon_sym_ATauth] = ACTIONS(945), + [anon_sym_ATguest] = ACTIONS(948), + [anon_sym_ATproduction] = ACTIONS(951), + [anon_sym_ATenv] = ACTIONS(954), + [anon_sym_AThasSection] = ACTIONS(957), + [anon_sym_ATsectionMissing] = ACTIONS(960), + [anon_sym_ATerror] = ACTIONS(963), + [anon_sym_ATenderror] = ACTIONS(966), + [anon_sym_ATcan] = ACTIONS(968), + [anon_sym_ATcannot] = ACTIONS(971), + [anon_sym_ATcanany] = ACTIONS(974), + [anon_sym_ATfeature] = ACTIONS(977), + [aux_sym__custom_token1] = ACTIONS(980), + [aux_sym__custom_token2] = ACTIONS(983), + [anon_sym_ATswitch] = ACTIONS(986), + [aux_sym_loop_operator_token1] = ACTIONS(989), + [anon_sym_ATfor] = ACTIONS(992), + [anon_sym_ATforeach] = ACTIONS(995), + [anon_sym_ATforelse] = ACTIONS(998), + [anon_sym_ATwhile] = ACTIONS(1001), + [anon_sym_ATsetup] = ACTIONS(1004), + [anon_sym_ATtask] = ACTIONS(1007), + [anon_sym_ATstory] = ACTIONS(1010), + [anon_sym_ATbefore] = ACTIONS(1013), + [anon_sym_ATafter] = ACTIONS(1016), + [anon_sym_ATsuccess] = ACTIONS(1019), + [anon_sym_ATfinished] = ACTIONS(1022), + [anon_sym_ATpersist] = ACTIONS(1025), + [anon_sym_ATteleport] = ACTIONS(1028), + [anon_sym_ATvolt] = ACTIONS(1031), + [aux_sym_alpine_js_token1] = ACTIONS(1034), + [aux_sym__text_token1] = ACTIONS(1037), + [aux_sym__text_token2] = ACTIONS(1037), + [aux_sym__text_token3] = ACTIONS(1040), }, [80] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(816), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(1043), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [81] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), + [sym__definition] = STATE(91), + [sym_keyword] = STATE(91), + [sym_php_statement] = STATE(91), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(91), + [sym__inline_directive] = STATE(91), + [sym__nested_directive] = STATE(91), + [sym_fragment] = STATE(91), + [sym_section] = STATE(91), + [sym_inlineSection] = STATE(91), + [sym_once] = STATE(91), + [sym_verbatim] = STATE(91), + [sym_stack] = STATE(91), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(91), + [sym_conditional_keyword] = STATE(91), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(91), + [sym_loop] = STATE(91), + [sym_loop_operator] = STATE(91), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(91), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(91), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(91), + [sym_text] = STATE(91), [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(91), [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(818), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym_comment] = ACTIONS(1045), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATendguest] = ACTIONS(329), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [82] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(820), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(1047), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [83] = { - [sym__definition] = STATE(112), - [sym_keyword] = STATE(112), - [sym_php_statement] = STATE(112), - [sym__escaped] = STATE(1249), - [sym__unescaped] = STATE(1249), - [sym__raw] = STATE(1249), - [sym__inline_raw] = STATE(1249), - [sym__multi_line_raw] = STATE(1249), - [sym_attribute] = STATE(112), - [sym__inline_directive] = STATE(112), - [sym__nested_directive] = STATE(112), - [sym_fragment] = STATE(112), - [sym_section] = STATE(112), - [sym_inlineSection] = STATE(112), - [sym_once] = STATE(112), - [sym_verbatim] = STATE(112), - [sym_stack] = STATE(112), - [sym__push] = STATE(1250), - [sym__pushOnce] = STATE(1250), - [sym__pushIf] = STATE(1250), - [sym__prepend] = STATE(1250), - [sym__prependOnce] = STATE(1250), - [sym_conditional] = STATE(112), - [sym_conditional_keyword] = STATE(112), - [sym__if] = STATE(1251), - [sym__unless] = STATE(1251), - [sym__isset] = STATE(1251), - [sym__empty] = STATE(1251), - [sym__auth] = STATE(1251), - [sym__guest] = STATE(1251), - [sym__production] = STATE(1251), - [sym__env] = STATE(1251), - [sym__hasSection] = STATE(1251), - [sym__sectionMissing] = STATE(1251), - [sym__error] = STATE(1251), - [sym_authorization] = STATE(1251), - [sym__can] = STATE(1252), - [sym__cannot] = STATE(1252), - [sym__canany] = STATE(1252), - [sym__feature] = STATE(1251), - [sym__custom] = STATE(1251), - [sym_switch] = STATE(112), - [sym_loop] = STATE(112), - [sym_loop_operator] = STATE(112), - [sym__for] = STATE(1253), - [sym__foreach] = STATE(1253), - [sym__forelse] = STATE(1253), - [sym__while] = STATE(1253), - [sym_envoy] = STATE(112), - [sym__setup] = STATE(1249), - [sym__task] = STATE(1254), - [sym__story] = STATE(1254), - [sym__hooks] = STATE(1249), - [sym__before] = STATE(1249), - [sym__after] = STATE(1249), - [sym__envoy_error] = STATE(1249), - [sym__success] = STATE(1249), - [sym__finished] = STATE(1249), - [sym_livewire] = STATE(112), - [sym__persist] = STATE(1255), - [sym__teleport] = STATE(1255), - [sym__volt] = STATE(1255), - [sym_text] = STATE(112), - [sym__text] = STATE(692), - [aux_sym__if_statement_directive_body_repeat1] = STATE(112), - [aux_sym_php_only_repeat1] = STATE(692), - [sym_comment] = ACTIONS(822), - [aux_sym_keyword_token1] = ACTIONS(824), - [anon_sym_LBRACE_LBRACE] = ACTIONS(826), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(828), - [anon_sym_ATphp] = ACTIONS(830), - [aux_sym_attribute_token1] = ACTIONS(832), - [aux_sym__inline_directive_token1] = ACTIONS(834), - [anon_sym_ATfragment] = ACTIONS(836), - [anon_sym_ATsection] = ACTIONS(838), - [anon_sym_ATonce] = ACTIONS(840), - [anon_sym_ATverbatim] = ACTIONS(842), - [anon_sym_ATpush] = ACTIONS(844), - [anon_sym_ATpushOnce] = ACTIONS(846), - [anon_sym_ATpushIf] = ACTIONS(848), - [anon_sym_ATprepend] = ACTIONS(850), - [anon_sym_ATprependOnce] = ACTIONS(852), - [anon_sym_ATelse] = ACTIONS(854), - [aux_sym_conditional_keyword_token1] = ACTIONS(856), - [anon_sym_ATif] = ACTIONS(858), - [anon_sym_ATendif] = ACTIONS(706), - [anon_sym_ATunless] = ACTIONS(860), - [anon_sym_ATisset] = ACTIONS(862), - [anon_sym_ATempty] = ACTIONS(864), - [anon_sym_ATauth] = ACTIONS(866), - [anon_sym_ATguest] = ACTIONS(868), - [anon_sym_ATproduction] = ACTIONS(870), - [anon_sym_ATenv] = ACTIONS(872), - [anon_sym_AThasSection] = ACTIONS(874), - [anon_sym_ATsectionMissing] = ACTIONS(876), - [anon_sym_ATerror] = ACTIONS(878), - [anon_sym_ATcan] = ACTIONS(880), - [anon_sym_ATcannot] = ACTIONS(882), - [anon_sym_ATcanany] = ACTIONS(884), - [anon_sym_ATfeature] = ACTIONS(886), - [aux_sym__custom_token1] = ACTIONS(888), - [aux_sym__custom_token2] = ACTIONS(890), - [anon_sym_ATswitch] = ACTIONS(892), - [aux_sym_loop_operator_token1] = ACTIONS(894), - [anon_sym_ATfor] = ACTIONS(896), - [anon_sym_ATforeach] = ACTIONS(898), - [anon_sym_ATforelse] = ACTIONS(900), - [anon_sym_ATwhile] = ACTIONS(902), - [anon_sym_ATsetup] = ACTIONS(904), - [anon_sym_ATtask] = ACTIONS(906), - [anon_sym_ATstory] = ACTIONS(908), - [anon_sym_ATbefore] = ACTIONS(910), - [anon_sym_ATafter] = ACTIONS(912), - [anon_sym_ATsuccess] = ACTIONS(914), - [anon_sym_ATfinished] = ACTIONS(916), - [anon_sym_ATpersist] = ACTIONS(918), - [anon_sym_ATteleport] = ACTIONS(920), - [anon_sym_ATvolt] = ACTIONS(922), - [aux_sym__text_token1] = ACTIONS(924), - [aux_sym__text_token2] = ACTIONS(924), - [aux_sym__text_token3] = ACTIONS(926), + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(1049), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [84] = { + [sym__definition] = STATE(73), + [sym_keyword] = STATE(73), + [sym_php_statement] = STATE(73), + [sym__escaped] = STATE(1264), + [sym__unescaped] = STATE(1264), + [sym__raw] = STATE(1264), + [sym__inline_raw] = STATE(1264), + [sym__multi_line_raw] = STATE(1264), + [sym_attribute] = STATE(73), + [sym__inline_directive] = STATE(73), + [sym__nested_directive] = STATE(73), + [sym_fragment] = STATE(73), + [sym_section] = STATE(73), + [sym_inlineSection] = STATE(73), + [sym_once] = STATE(73), + [sym_verbatim] = STATE(73), + [sym_stack] = STATE(73), + [sym__push] = STATE(1265), + [sym__pushOnce] = STATE(1265), + [sym__pushIf] = STATE(1265), + [sym__prepend] = STATE(1265), + [sym__prependOnce] = STATE(1265), + [sym_conditional] = STATE(73), + [sym_conditional_keyword] = STATE(73), + [sym__if] = STATE(1266), + [sym__unless] = STATE(1266), + [sym__isset] = STATE(1266), + [sym__empty] = STATE(1266), + [sym__auth] = STATE(1266), + [sym__guest] = STATE(1266), + [sym__production] = STATE(1266), + [sym__env] = STATE(1266), + [sym__hasSection] = STATE(1266), + [sym__sectionMissing] = STATE(1266), + [sym__error] = STATE(1266), + [sym_authorization] = STATE(1266), + [sym__can] = STATE(1267), + [sym__cannot] = STATE(1267), + [sym__canany] = STATE(1267), + [sym__feature] = STATE(1266), + [sym__custom] = STATE(1266), + [sym_switch] = STATE(73), + [sym_loop] = STATE(73), + [sym_loop_operator] = STATE(73), + [sym__for] = STATE(1268), + [sym__foreach] = STATE(1268), + [sym__forelse] = STATE(1268), + [sym__while] = STATE(1268), + [sym_envoy] = STATE(73), + [sym__setup] = STATE(1264), + [sym__task] = STATE(1269), + [sym__story] = STATE(1269), + [sym__hooks] = STATE(1264), + [sym__before] = STATE(1264), + [sym__after] = STATE(1264), + [sym__envoy_error] = STATE(1264), + [sym__success] = STATE(1264), + [sym__finished] = STATE(1264), + [sym_livewire] = STATE(73), + [sym__persist] = STATE(1270), + [sym__teleport] = STATE(1270), + [sym__volt] = STATE(1270), + [sym_alpine_js] = STATE(73), + [sym_text] = STATE(73), + [sym__text] = STATE(672), + [aux_sym__if_statement_directive_body_repeat1] = STATE(73), + [aux_sym_php_only_repeat1] = STATE(672), + [sym_comment] = ACTIONS(1051), + [aux_sym_keyword_token1] = ACTIONS(333), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(337), + [anon_sym_ATphp] = ACTIONS(339), + [aux_sym_attribute_token1] = ACTIONS(341), + [aux_sym__inline_directive_token1] = ACTIONS(343), + [anon_sym_ATfragment] = ACTIONS(345), + [anon_sym_ATsection] = ACTIONS(347), + [anon_sym_ATonce] = ACTIONS(349), + [anon_sym_ATverbatim] = ACTIONS(351), + [anon_sym_ATpush] = ACTIONS(353), + [anon_sym_ATpushOnce] = ACTIONS(355), + [anon_sym_ATpushIf] = ACTIONS(357), + [anon_sym_ATprepend] = ACTIONS(359), + [anon_sym_ATprependOnce] = ACTIONS(361), + [anon_sym_ATelse] = ACTIONS(363), + [aux_sym_conditional_keyword_token1] = ACTIONS(365), + [anon_sym_ATif] = ACTIONS(367), + [anon_sym_ATendif] = ACTIONS(481), + [anon_sym_ATunless] = ACTIONS(371), + [anon_sym_ATisset] = ACTIONS(373), + [anon_sym_ATempty] = ACTIONS(375), + [anon_sym_ATauth] = ACTIONS(377), + [anon_sym_ATguest] = ACTIONS(379), + [anon_sym_ATproduction] = ACTIONS(381), + [anon_sym_ATenv] = ACTIONS(383), + [anon_sym_AThasSection] = ACTIONS(385), + [anon_sym_ATsectionMissing] = ACTIONS(387), + [anon_sym_ATerror] = ACTIONS(389), + [anon_sym_ATcan] = ACTIONS(391), + [anon_sym_ATcannot] = ACTIONS(393), + [anon_sym_ATcanany] = ACTIONS(395), + [anon_sym_ATfeature] = ACTIONS(397), + [aux_sym__custom_token1] = ACTIONS(399), + [aux_sym__custom_token2] = ACTIONS(401), + [anon_sym_ATswitch] = ACTIONS(403), + [aux_sym_loop_operator_token1] = ACTIONS(405), + [anon_sym_ATfor] = ACTIONS(407), + [anon_sym_ATforeach] = ACTIONS(409), + [anon_sym_ATforelse] = ACTIONS(411), + [anon_sym_ATwhile] = ACTIONS(413), + [anon_sym_ATsetup] = ACTIONS(415), + [anon_sym_ATtask] = ACTIONS(417), + [anon_sym_ATstory] = ACTIONS(419), + [anon_sym_ATbefore] = ACTIONS(421), + [anon_sym_ATafter] = ACTIONS(423), + [anon_sym_ATsuccess] = ACTIONS(425), + [anon_sym_ATfinished] = ACTIONS(427), + [anon_sym_ATpersist] = ACTIONS(429), + [anon_sym_ATteleport] = ACTIONS(431), + [anon_sym_ATvolt] = ACTIONS(433), + [aux_sym_alpine_js_token1] = ACTIONS(435), + [aux_sym__text_token1] = ACTIONS(437), + [aux_sym__text_token2] = ACTIONS(437), + [aux_sym__text_token3] = ACTIONS(439), + }, + [85] = { + [sym__definition] = STATE(130), + [sym_keyword] = STATE(130), + [sym_php_statement] = STATE(130), + [sym__escaped] = STATE(1354), + [sym__unescaped] = STATE(1354), + [sym__raw] = STATE(1354), + [sym__inline_raw] = STATE(1354), + [sym__multi_line_raw] = STATE(1354), + [sym_attribute] = STATE(130), + [sym__inline_directive] = STATE(130), + [sym__nested_directive] = STATE(130), + [sym_fragment] = STATE(130), + [sym_section] = STATE(130), + [sym_inlineSection] = STATE(130), + [sym_once] = STATE(130), + [sym_verbatim] = STATE(130), + [sym_stack] = STATE(130), + [sym__push] = STATE(1355), + [sym__pushOnce] = STATE(1355), + [sym__pushIf] = STATE(1355), + [sym__prepend] = STATE(1355), + [sym__prependOnce] = STATE(1355), + [sym_conditional] = STATE(130), + [sym_conditional_keyword] = STATE(130), + [sym__if] = STATE(1356), + [sym__unless] = STATE(1356), + [sym__isset] = STATE(1356), + [sym__empty] = STATE(1356), + [sym__auth] = STATE(1356), + [sym__guest] = STATE(1356), + [sym__production] = STATE(1356), + [sym__env] = STATE(1356), + [sym__hasSection] = STATE(1356), + [sym__sectionMissing] = STATE(1356), + [sym__error] = STATE(1356), + [sym_authorization] = STATE(1356), + [sym__can] = STATE(1357), + [sym__cannot] = STATE(1357), + [sym__canany] = STATE(1357), + [sym__feature] = STATE(1356), + [sym__custom] = STATE(1356), + [sym_switch] = STATE(130), + [sym_loop] = STATE(130), + [sym_loop_operator] = STATE(130), + [sym__for] = STATE(1358), + [sym__foreach] = STATE(1358), + [sym__forelse] = STATE(1358), + [sym__while] = STATE(1358), + [sym_envoy] = STATE(130), + [sym__setup] = STATE(1354), + [sym__task] = STATE(1359), + [sym__story] = STATE(1359), + [sym__hooks] = STATE(1354), + [sym__before] = STATE(1354), + [sym__after] = STATE(1354), + [sym__envoy_error] = STATE(1354), + [sym__success] = STATE(1354), + [sym__finished] = STATE(1354), + [sym_livewire] = STATE(130), + [sym__persist] = STATE(1360), + [sym__teleport] = STATE(1360), + [sym__volt] = STATE(1360), + [sym_alpine_js] = STATE(130), + [sym_text] = STATE(130), + [sym__text] = STATE(685), + [aux_sym__if_statement_directive_body_repeat1] = STATE(130), + [aux_sym_php_only_repeat1] = STATE(685), + [sym_comment] = ACTIONS(1053), + [aux_sym_keyword_token1] = ACTIONS(443), + [anon_sym_LBRACE_LBRACE] = ACTIONS(445), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(447), + [anon_sym_ATphp] = ACTIONS(449), + [aux_sym_attribute_token1] = ACTIONS(451), + [aux_sym__inline_directive_token1] = ACTIONS(453), + [anon_sym_ATfragment] = ACTIONS(455), + [anon_sym_ATsection] = ACTIONS(457), + [anon_sym_ATonce] = ACTIONS(459), + [anon_sym_ATverbatim] = ACTIONS(461), + [anon_sym_ATpush] = ACTIONS(463), + [anon_sym_ATpushOnce] = ACTIONS(465), + [anon_sym_ATpushIf] = ACTIONS(467), + [anon_sym_ATprepend] = ACTIONS(469), + [anon_sym_ATprependOnce] = ACTIONS(471), + [anon_sym_ATelse] = ACTIONS(473), + [aux_sym_conditional_keyword_token1] = ACTIONS(475), + [anon_sym_ATif] = ACTIONS(477), + [anon_sym_ATunless] = ACTIONS(479), + [anon_sym_ATendunless] = ACTIONS(369), + [anon_sym_ATisset] = ACTIONS(483), + [anon_sym_ATempty] = ACTIONS(485), + [anon_sym_ATauth] = ACTIONS(487), + [anon_sym_ATguest] = ACTIONS(489), + [anon_sym_ATproduction] = ACTIONS(491), + [anon_sym_ATenv] = ACTIONS(493), + [anon_sym_AThasSection] = ACTIONS(495), + [anon_sym_ATsectionMissing] = ACTIONS(497), + [anon_sym_ATerror] = ACTIONS(499), + [anon_sym_ATcan] = ACTIONS(501), + [anon_sym_ATcannot] = ACTIONS(503), + [anon_sym_ATcanany] = ACTIONS(505), + [anon_sym_ATfeature] = ACTIONS(507), + [aux_sym__custom_token1] = ACTIONS(509), + [aux_sym__custom_token2] = ACTIONS(511), + [anon_sym_ATswitch] = ACTIONS(513), + [aux_sym_loop_operator_token1] = ACTIONS(515), + [anon_sym_ATfor] = ACTIONS(517), + [anon_sym_ATforeach] = ACTIONS(519), + [anon_sym_ATforelse] = ACTIONS(521), + [anon_sym_ATwhile] = ACTIONS(523), + [anon_sym_ATsetup] = ACTIONS(525), + [anon_sym_ATtask] = ACTIONS(527), + [anon_sym_ATstory] = ACTIONS(529), + [anon_sym_ATbefore] = ACTIONS(531), + [anon_sym_ATafter] = ACTIONS(533), + [anon_sym_ATsuccess] = ACTIONS(535), + [anon_sym_ATfinished] = ACTIONS(537), + [anon_sym_ATpersist] = ACTIONS(539), + [anon_sym_ATteleport] = ACTIONS(541), + [anon_sym_ATvolt] = ACTIONS(543), + [aux_sym_alpine_js_token1] = ACTIONS(545), + [aux_sym__text_token1] = ACTIONS(547), + [aux_sym__text_token2] = ACTIONS(547), + [aux_sym__text_token3] = ACTIONS(549), + }, + [86] = { + [sym__definition] = STATE(122), + [sym_keyword] = STATE(122), + [sym_php_statement] = STATE(122), + [sym__escaped] = STATE(1867), + [sym__unescaped] = STATE(1867), + [sym__raw] = STATE(1867), + [sym__inline_raw] = STATE(1867), + [sym__multi_line_raw] = STATE(1867), + [sym_attribute] = STATE(122), + [sym__inline_directive] = STATE(122), + [sym__nested_directive] = STATE(122), + [sym_fragment] = STATE(122), + [sym_section] = STATE(122), + [sym_inlineSection] = STATE(122), + [sym_once] = STATE(122), + [sym_verbatim] = STATE(122), + [sym_stack] = STATE(122), + [sym__push] = STATE(1868), + [sym__pushOnce] = STATE(1868), + [sym__pushIf] = STATE(1868), + [sym__prepend] = STATE(1868), + [sym__prependOnce] = STATE(1868), + [sym_conditional] = STATE(122), + [sym_conditional_keyword] = STATE(122), + [sym__if] = STATE(1869), + [sym__unless] = STATE(1869), + [sym__isset] = STATE(1869), + [sym__empty] = STATE(1869), + [sym__auth] = STATE(1869), + [sym__guest] = STATE(1869), + [sym__production] = STATE(1869), + [sym__env] = STATE(1869), + [sym__hasSection] = STATE(1869), + [sym__sectionMissing] = STATE(1869), + [sym__error] = STATE(1869), + [sym_authorization] = STATE(1869), + [sym__can] = STATE(1870), + [sym__cannot] = STATE(1870), + [sym__canany] = STATE(1870), + [sym__feature] = STATE(1869), + [sym__custom] = STATE(1869), + [sym_switch] = STATE(122), + [sym_loop] = STATE(122), + [sym_loop_operator] = STATE(122), + [sym__for] = STATE(1871), + [sym__foreach] = STATE(1871), + [sym__forelse] = STATE(1871), + [sym__while] = STATE(1871), + [sym_envoy] = STATE(122), + [sym__setup] = STATE(1867), + [sym__task] = STATE(1872), + [sym__story] = STATE(1872), + [sym__hooks] = STATE(1867), + [sym__before] = STATE(1867), + [sym__after] = STATE(1867), + [sym__envoy_error] = STATE(1867), + [sym__success] = STATE(1867), + [sym__finished] = STATE(1867), + [sym_livewire] = STATE(122), + [sym__persist] = STATE(1873), + [sym__teleport] = STATE(1873), + [sym__volt] = STATE(1873), + [sym_alpine_js] = STATE(122), + [sym_text] = STATE(122), + [sym__text] = STATE(693), + [aux_sym__if_statement_directive_body_repeat1] = STATE(122), + [aux_sym_php_only_repeat1] = STATE(693), + [sym_comment] = ACTIONS(1055), + [aux_sym_keyword_token1] = ACTIONS(1057), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1061), + [anon_sym_ATphp] = ACTIONS(1063), + [aux_sym_attribute_token1] = ACTIONS(1065), + [aux_sym__inline_directive_token1] = ACTIONS(1067), + [anon_sym_ATfragment] = ACTIONS(1069), + [anon_sym_ATsection] = ACTIONS(1071), + [anon_sym_ATonce] = ACTIONS(1073), + [anon_sym_ATverbatim] = ACTIONS(1075), + [anon_sym_ATpush] = ACTIONS(1077), + [anon_sym_ATpushOnce] = ACTIONS(1079), + [anon_sym_ATpushIf] = ACTIONS(1081), + [anon_sym_ATprepend] = ACTIONS(1083), + [anon_sym_ATprependOnce] = ACTIONS(1085), + [anon_sym_ATelse] = ACTIONS(1087), + [aux_sym_conditional_keyword_token1] = ACTIONS(1089), + [anon_sym_ATif] = ACTIONS(1091), + [anon_sym_ATunless] = ACTIONS(1093), + [anon_sym_ATisset] = ACTIONS(1095), + [anon_sym_ATempty] = ACTIONS(1097), + [anon_sym_ATauth] = ACTIONS(1099), + [anon_sym_ATguest] = ACTIONS(1101), + [anon_sym_ATproduction] = ACTIONS(1103), + [anon_sym_ATenv] = ACTIONS(1105), + [anon_sym_AThasSection] = ACTIONS(1107), + [anon_sym_ATsectionMissing] = ACTIONS(1109), + [anon_sym_ATerror] = ACTIONS(1111), + [anon_sym_ATcan] = ACTIONS(1113), + [anon_sym_ATcannot] = ACTIONS(1115), + [anon_sym_ATendcannot] = ACTIONS(369), + [anon_sym_ATcanany] = ACTIONS(1117), + [anon_sym_ATfeature] = ACTIONS(1119), + [aux_sym__custom_token1] = ACTIONS(1121), + [aux_sym__custom_token2] = ACTIONS(1123), + [anon_sym_ATswitch] = ACTIONS(1125), + [aux_sym_loop_operator_token1] = ACTIONS(1127), + [anon_sym_ATfor] = ACTIONS(1129), + [anon_sym_ATforeach] = ACTIONS(1131), + [anon_sym_ATforelse] = ACTIONS(1133), + [anon_sym_ATwhile] = ACTIONS(1135), + [anon_sym_ATsetup] = ACTIONS(1137), + [anon_sym_ATtask] = ACTIONS(1139), + [anon_sym_ATstory] = ACTIONS(1141), + [anon_sym_ATbefore] = ACTIONS(1143), + [anon_sym_ATafter] = ACTIONS(1145), + [anon_sym_ATsuccess] = ACTIONS(1147), + [anon_sym_ATfinished] = ACTIONS(1149), + [anon_sym_ATpersist] = ACTIONS(1151), + [anon_sym_ATteleport] = ACTIONS(1153), + [anon_sym_ATvolt] = ACTIONS(1155), + [aux_sym_alpine_js_token1] = ACTIONS(1157), + [aux_sym__text_token1] = ACTIONS(1159), + [aux_sym__text_token2] = ACTIONS(1159), + [aux_sym__text_token3] = ACTIONS(1161), + }, + [87] = { + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(1163), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), + }, + [88] = { + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(1165), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), + }, + [89] = { + [sym__definition] = STATE(125), + [sym_keyword] = STATE(125), + [sym_php_statement] = STATE(125), + [sym__escaped] = STATE(1467), + [sym__unescaped] = STATE(1467), + [sym__raw] = STATE(1467), + [sym__inline_raw] = STATE(1467), + [sym__multi_line_raw] = STATE(1467), + [sym_attribute] = STATE(125), + [sym__inline_directive] = STATE(125), + [sym__nested_directive] = STATE(125), + [sym_fragment] = STATE(125), + [sym_section] = STATE(125), + [sym_inlineSection] = STATE(125), + [sym_once] = STATE(125), + [sym_verbatim] = STATE(125), + [sym_stack] = STATE(125), + [sym__push] = STATE(1380), + [sym__pushOnce] = STATE(1380), + [sym__pushIf] = STATE(1380), + [sym__prepend] = STATE(1380), + [sym__prependOnce] = STATE(1380), + [sym_conditional] = STATE(125), + [sym_conditional_keyword] = STATE(125), + [sym__if] = STATE(1290), + [sym__unless] = STATE(1290), + [sym__isset] = STATE(1290), + [sym__empty] = STATE(1290), + [sym__auth] = STATE(1290), + [sym__guest] = STATE(1290), + [sym__production] = STATE(1290), + [sym__env] = STATE(1290), + [sym__hasSection] = STATE(1290), + [sym__sectionMissing] = STATE(1290), + [sym__error] = STATE(1290), + [sym_authorization] = STATE(1290), + [sym__can] = STATE(1282), + [sym__cannot] = STATE(1282), + [sym__canany] = STATE(1282), + [sym__feature] = STATE(1290), + [sym__custom] = STATE(1290), + [sym_switch] = STATE(125), + [sym_loop] = STATE(125), + [sym_loop_operator] = STATE(125), + [sym__for] = STATE(1260), + [sym__foreach] = STATE(1260), + [sym__forelse] = STATE(1260), + [sym__while] = STATE(1260), + [sym_envoy] = STATE(125), + [sym__setup] = STATE(1467), + [sym__task] = STATE(1259), + [sym__story] = STATE(1259), + [sym__hooks] = STATE(1467), + [sym__before] = STATE(1467), + [sym__after] = STATE(1467), + [sym__envoy_error] = STATE(1467), + [sym__success] = STATE(1467), + [sym__finished] = STATE(1467), + [sym_livewire] = STATE(125), + [sym__persist] = STATE(1258), + [sym__teleport] = STATE(1258), + [sym__volt] = STATE(1258), + [sym_alpine_js] = STATE(125), + [sym_text] = STATE(125), + [sym__text] = STATE(678), + [aux_sym__if_statement_directive_body_repeat1] = STATE(125), + [aux_sym_php_only_repeat1] = STATE(678), + [sym_comment] = ACTIONS(1167), + [aux_sym_keyword_token1] = ACTIONS(553), + [anon_sym_LBRACE_LBRACE] = ACTIONS(555), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(557), + [anon_sym_ATphp] = ACTIONS(559), + [aux_sym_attribute_token1] = ACTIONS(561), + [aux_sym__inline_directive_token1] = ACTIONS(563), + [anon_sym_ATfragment] = ACTIONS(565), + [anon_sym_ATsection] = ACTIONS(567), + [anon_sym_ATonce] = ACTIONS(569), + [anon_sym_ATverbatim] = ACTIONS(571), + [anon_sym_ATpush] = ACTIONS(573), + [anon_sym_ATpushOnce] = ACTIONS(575), + [anon_sym_ATpushIf] = ACTIONS(577), + [anon_sym_ATprepend] = ACTIONS(579), + [anon_sym_ATprependOnce] = ACTIONS(581), + [anon_sym_ATelse] = ACTIONS(583), + [aux_sym_conditional_keyword_token1] = ACTIONS(585), + [anon_sym_ATif] = ACTIONS(587), + [anon_sym_ATunless] = ACTIONS(589), + [anon_sym_ATisset] = ACTIONS(591), + [anon_sym_ATempty] = ACTIONS(593), + [anon_sym_ATauth] = ACTIONS(595), + [anon_sym_ATguest] = ACTIONS(597), + [anon_sym_ATproduction] = ACTIONS(599), + [anon_sym_ATenv] = ACTIONS(601), + [anon_sym_AThasSection] = ACTIONS(603), + [anon_sym_ATsectionMissing] = ACTIONS(605), + [anon_sym_ATerror] = ACTIONS(607), + [anon_sym_ATcan] = ACTIONS(609), + [anon_sym_ATcannot] = ACTIONS(611), + [anon_sym_ATcanany] = ACTIONS(613), + [anon_sym_ATendcanany] = ACTIONS(369), + [anon_sym_ATfeature] = ACTIONS(615), + [aux_sym__custom_token1] = ACTIONS(617), + [aux_sym__custom_token2] = ACTIONS(619), + [anon_sym_ATswitch] = ACTIONS(621), + [aux_sym_loop_operator_token1] = ACTIONS(623), + [anon_sym_ATfor] = ACTIONS(625), + [anon_sym_ATforeach] = ACTIONS(627), + [anon_sym_ATforelse] = ACTIONS(629), + [anon_sym_ATwhile] = ACTIONS(631), + [anon_sym_ATsetup] = ACTIONS(633), + [anon_sym_ATtask] = ACTIONS(635), + [anon_sym_ATstory] = ACTIONS(637), + [anon_sym_ATbefore] = ACTIONS(639), + [anon_sym_ATafter] = ACTIONS(641), + [anon_sym_ATsuccess] = ACTIONS(643), + [anon_sym_ATfinished] = ACTIONS(645), + [anon_sym_ATpersist] = ACTIONS(647), + [anon_sym_ATteleport] = ACTIONS(649), + [anon_sym_ATvolt] = ACTIONS(651), + [aux_sym_alpine_js_token1] = ACTIONS(653), + [aux_sym__text_token1] = ACTIONS(655), + [aux_sym__text_token2] = ACTIONS(655), + [aux_sym__text_token3] = ACTIONS(657), + }, + [90] = { + [sym__definition] = STATE(91), + [sym_keyword] = STATE(91), + [sym_php_statement] = STATE(91), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(91), + [sym__inline_directive] = STATE(91), + [sym__nested_directive] = STATE(91), + [sym_fragment] = STATE(91), + [sym_section] = STATE(91), + [sym_inlineSection] = STATE(91), + [sym_once] = STATE(91), + [sym_verbatim] = STATE(91), + [sym_stack] = STATE(91), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(91), + [sym_conditional_keyword] = STATE(91), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(91), + [sym_loop] = STATE(91), + [sym_loop_operator] = STATE(91), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(91), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(91), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(91), + [sym_text] = STATE(91), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(91), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(1045), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATendguest] = ACTIONS(1169), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), + }, + [91] = { + [sym__definition] = STATE(91), + [sym_keyword] = STATE(91), + [sym_php_statement] = STATE(91), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(91), + [sym__inline_directive] = STATE(91), + [sym__nested_directive] = STATE(91), + [sym_fragment] = STATE(91), + [sym_section] = STATE(91), + [sym_inlineSection] = STATE(91), + [sym_once] = STATE(91), + [sym_verbatim] = STATE(91), + [sym_stack] = STATE(91), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(91), + [sym_conditional_keyword] = STATE(91), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(91), + [sym_loop] = STATE(91), + [sym_loop_operator] = STATE(91), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(91), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(91), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(91), + [sym_text] = STATE(91), + [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(91), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(1171), + [aux_sym_keyword_token1] = ACTIONS(1174), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1177), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1180), + [anon_sym_ATphp] = ACTIONS(1183), + [aux_sym_attribute_token1] = ACTIONS(1186), + [aux_sym__inline_directive_token1] = ACTIONS(1189), + [anon_sym_ATfragment] = ACTIONS(1192), + [anon_sym_ATsection] = ACTIONS(1195), + [anon_sym_ATonce] = ACTIONS(1198), + [anon_sym_ATverbatim] = ACTIONS(1201), + [anon_sym_ATpush] = ACTIONS(1204), + [anon_sym_ATpushOnce] = ACTIONS(1207), + [anon_sym_ATpushIf] = ACTIONS(1210), + [anon_sym_ATprepend] = ACTIONS(1213), + [anon_sym_ATprependOnce] = ACTIONS(1216), + [anon_sym_ATelse] = ACTIONS(1219), + [aux_sym_conditional_keyword_token1] = ACTIONS(1222), + [anon_sym_ATif] = ACTIONS(1225), + [anon_sym_ATunless] = ACTIONS(1228), + [anon_sym_ATisset] = ACTIONS(1231), + [anon_sym_ATempty] = ACTIONS(1234), + [anon_sym_ATauth] = ACTIONS(1237), + [anon_sym_ATguest] = ACTIONS(1240), + [anon_sym_ATendguest] = ACTIONS(966), + [anon_sym_ATproduction] = ACTIONS(1243), + [anon_sym_ATenv] = ACTIONS(1246), + [anon_sym_AThasSection] = ACTIONS(1249), + [anon_sym_ATsectionMissing] = ACTIONS(1252), + [anon_sym_ATerror] = ACTIONS(1255), + [anon_sym_ATcan] = ACTIONS(1258), + [anon_sym_ATcannot] = ACTIONS(1261), + [anon_sym_ATcanany] = ACTIONS(1264), + [anon_sym_ATfeature] = ACTIONS(1267), + [aux_sym__custom_token1] = ACTIONS(1270), + [aux_sym__custom_token2] = ACTIONS(1273), + [anon_sym_ATswitch] = ACTIONS(1276), + [aux_sym_loop_operator_token1] = ACTIONS(1279), + [anon_sym_ATfor] = ACTIONS(1282), + [anon_sym_ATforeach] = ACTIONS(1285), + [anon_sym_ATforelse] = ACTIONS(1288), + [anon_sym_ATwhile] = ACTIONS(1291), + [anon_sym_ATsetup] = ACTIONS(1294), + [anon_sym_ATtask] = ACTIONS(1297), + [anon_sym_ATstory] = ACTIONS(1300), + [anon_sym_ATbefore] = ACTIONS(1303), + [anon_sym_ATafter] = ACTIONS(1306), + [anon_sym_ATsuccess] = ACTIONS(1309), + [anon_sym_ATfinished] = ACTIONS(1312), + [anon_sym_ATpersist] = ACTIONS(1315), + [anon_sym_ATteleport] = ACTIONS(1318), + [anon_sym_ATvolt] = ACTIONS(1321), + [aux_sym_alpine_js_token1] = ACTIONS(1324), + [aux_sym__text_token1] = ACTIONS(1327), + [aux_sym__text_token2] = ACTIONS(1327), + [aux_sym__text_token3] = ACTIONS(1330), + }, + [92] = { + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(1333), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), + }, + [93] = { + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(1335), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), + }, + [94] = { + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(1337), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), + }, + [95] = { + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(1339), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), + }, + [96] = { + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(1341), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), + }, + [97] = { + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(1343), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), + }, + [98] = { + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(1345), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), + }, + [99] = { [sym__definition] = STATE(102), [sym_keyword] = STATE(102), [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), + [sym__escaped] = STATE(1443), + [sym__unescaped] = STATE(1443), + [sym__raw] = STATE(1443), + [sym__inline_raw] = STATE(1443), + [sym__multi_line_raw] = STATE(1443), [sym_attribute] = STATE(102), [sym__inline_directive] = STATE(102), [sym__nested_directive] = STATE(102), @@ -35984,2334 +38499,372 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(102), [sym_verbatim] = STATE(102), [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), + [sym__push] = STATE(1444), + [sym__pushOnce] = STATE(1444), + [sym__pushIf] = STATE(1444), + [sym__prepend] = STATE(1444), + [sym__prependOnce] = STATE(1444), [sym_conditional] = STATE(102), [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), + [sym__if] = STATE(1445), + [sym__unless] = STATE(1445), + [sym__isset] = STATE(1445), + [sym__empty] = STATE(1445), + [sym__auth] = STATE(1445), + [sym__guest] = STATE(1445), + [sym__production] = STATE(1445), + [sym__env] = STATE(1445), + [sym__hasSection] = STATE(1445), + [sym__sectionMissing] = STATE(1445), + [sym__error] = STATE(1445), + [sym_authorization] = STATE(1445), + [sym__can] = STATE(1446), + [sym__cannot] = STATE(1446), + [sym__canany] = STATE(1446), + [sym__feature] = STATE(1445), + [sym__custom] = STATE(1445), [sym_switch] = STATE(102), [sym_loop] = STATE(102), [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), + [sym__for] = STATE(1447), + [sym__foreach] = STATE(1447), + [sym__forelse] = STATE(1447), + [sym__while] = STATE(1447), [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), + [sym__setup] = STATE(1443), + [sym__task] = STATE(1448), + [sym__story] = STATE(1448), + [sym__hooks] = STATE(1443), + [sym__before] = STATE(1443), + [sym__after] = STATE(1443), + [sym__envoy_error] = STATE(1443), + [sym__success] = STATE(1443), + [sym__finished] = STATE(1443), [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym__persist] = STATE(1449), + [sym__teleport] = STATE(1449), + [sym__volt] = STATE(1449), + [sym_alpine_js] = STATE(102), [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(928), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__text] = STATE(680), + [aux_sym__if_statement_directive_body_repeat1] = STATE(102), + [aux_sym_php_only_repeat1] = STATE(680), + [sym_comment] = ACTIONS(1347), + [aux_sym_keyword_token1] = ACTIONS(1349), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1351), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1353), + [anon_sym_ATphp] = ACTIONS(1355), + [aux_sym_attribute_token1] = ACTIONS(1357), + [aux_sym__inline_directive_token1] = ACTIONS(1359), + [anon_sym_ATfragment] = ACTIONS(1361), + [anon_sym_ATsection] = ACTIONS(1363), + [anon_sym_ATonce] = ACTIONS(1365), + [anon_sym_ATverbatim] = ACTIONS(1367), + [anon_sym_ATpush] = ACTIONS(1369), + [anon_sym_ATpushOnce] = ACTIONS(1371), + [anon_sym_ATpushIf] = ACTIONS(1373), + [anon_sym_ATprepend] = ACTIONS(1375), + [anon_sym_ATprependOnce] = ACTIONS(1377), + [anon_sym_ATelse] = ACTIONS(1379), + [aux_sym_conditional_keyword_token1] = ACTIONS(1381), + [anon_sym_ATif] = ACTIONS(1383), + [anon_sym_ATunless] = ACTIONS(1385), + [anon_sym_ATisset] = ACTIONS(1387), + [anon_sym_ATendisset] = ACTIONS(481), + [anon_sym_ATempty] = ACTIONS(1389), + [anon_sym_ATauth] = ACTIONS(1391), + [anon_sym_ATguest] = ACTIONS(1393), + [anon_sym_ATproduction] = ACTIONS(1395), + [anon_sym_ATenv] = ACTIONS(1397), + [anon_sym_AThasSection] = ACTIONS(1399), + [anon_sym_ATsectionMissing] = ACTIONS(1401), + [anon_sym_ATerror] = ACTIONS(1403), + [anon_sym_ATcan] = ACTIONS(1405), + [anon_sym_ATcannot] = ACTIONS(1407), + [anon_sym_ATcanany] = ACTIONS(1409), + [anon_sym_ATfeature] = ACTIONS(1411), + [aux_sym__custom_token1] = ACTIONS(1413), + [aux_sym__custom_token2] = ACTIONS(1415), + [anon_sym_ATswitch] = ACTIONS(1417), + [aux_sym_loop_operator_token1] = ACTIONS(1419), + [anon_sym_ATfor] = ACTIONS(1421), + [anon_sym_ATforeach] = ACTIONS(1423), + [anon_sym_ATforelse] = ACTIONS(1425), + [anon_sym_ATwhile] = ACTIONS(1427), + [anon_sym_ATsetup] = ACTIONS(1429), + [anon_sym_ATtask] = ACTIONS(1431), + [anon_sym_ATstory] = ACTIONS(1433), + [anon_sym_ATbefore] = ACTIONS(1435), + [anon_sym_ATafter] = ACTIONS(1437), + [anon_sym_ATsuccess] = ACTIONS(1439), + [anon_sym_ATfinished] = ACTIONS(1441), + [anon_sym_ATpersist] = ACTIONS(1443), + [anon_sym_ATteleport] = ACTIONS(1445), + [anon_sym_ATvolt] = ACTIONS(1447), + [aux_sym_alpine_js_token1] = ACTIONS(1449), + [aux_sym__text_token1] = ACTIONS(1451), + [aux_sym__text_token2] = ACTIONS(1451), + [aux_sym__text_token3] = ACTIONS(1453), }, - [85] = { - [sym__definition] = STATE(146), - [sym_keyword] = STATE(146), - [sym_php_statement] = STATE(146), - [sym__escaped] = STATE(1338), - [sym__unescaped] = STATE(1338), - [sym__raw] = STATE(1338), - [sym__inline_raw] = STATE(1338), - [sym__multi_line_raw] = STATE(1338), - [sym_attribute] = STATE(146), - [sym__inline_directive] = STATE(146), - [sym__nested_directive] = STATE(146), - [sym_fragment] = STATE(146), - [sym_section] = STATE(146), - [sym_inlineSection] = STATE(146), - [sym_once] = STATE(146), - [sym_verbatim] = STATE(146), - [sym_stack] = STATE(146), - [sym__push] = STATE(1339), - [sym__pushOnce] = STATE(1339), - [sym__pushIf] = STATE(1339), - [sym__prepend] = STATE(1339), - [sym__prependOnce] = STATE(1339), - [sym_conditional] = STATE(146), - [sym_conditional_keyword] = STATE(146), - [sym__if] = STATE(1340), - [sym__unless] = STATE(1340), - [sym__isset] = STATE(1340), - [sym__empty] = STATE(1340), - [sym__auth] = STATE(1340), - [sym__guest] = STATE(1340), - [sym__production] = STATE(1340), - [sym__env] = STATE(1340), - [sym__hasSection] = STATE(1340), - [sym__sectionMissing] = STATE(1340), - [sym__error] = STATE(1340), - [sym_authorization] = STATE(1340), - [sym__can] = STATE(1341), - [sym__cannot] = STATE(1341), - [sym__canany] = STATE(1341), - [sym__feature] = STATE(1340), - [sym__custom] = STATE(1340), - [sym_switch] = STATE(146), - [sym_loop] = STATE(146), - [sym_loop_operator] = STATE(146), - [sym__for] = STATE(1342), - [sym__foreach] = STATE(1342), - [sym__forelse] = STATE(1342), - [sym__while] = STATE(1342), - [sym_envoy] = STATE(146), - [sym__setup] = STATE(1338), - [sym__task] = STATE(1343), - [sym__story] = STATE(1343), - [sym__hooks] = STATE(1338), - [sym__before] = STATE(1338), - [sym__after] = STATE(1338), - [sym__envoy_error] = STATE(1338), - [sym__success] = STATE(1338), - [sym__finished] = STATE(1338), - [sym_livewire] = STATE(146), - [sym__persist] = STATE(1344), - [sym__teleport] = STATE(1344), - [sym__volt] = STATE(1344), - [sym_text] = STATE(146), - [sym__text] = STATE(686), - [aux_sym__if_statement_directive_body_repeat1] = STATE(146), - [aux_sym_php_only_repeat1] = STATE(686), - [sym_comment] = ACTIONS(930), - [aux_sym_keyword_token1] = ACTIONS(710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(712), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(714), - [anon_sym_ATphp] = ACTIONS(716), - [aux_sym_attribute_token1] = ACTIONS(718), - [aux_sym__inline_directive_token1] = ACTIONS(720), - [anon_sym_ATfragment] = ACTIONS(722), - [anon_sym_ATsection] = ACTIONS(724), - [anon_sym_ATonce] = ACTIONS(726), - [anon_sym_ATverbatim] = ACTIONS(728), - [anon_sym_ATpush] = ACTIONS(730), - [anon_sym_ATpushOnce] = ACTIONS(732), - [anon_sym_ATpushIf] = ACTIONS(734), - [anon_sym_ATprepend] = ACTIONS(736), - [anon_sym_ATprependOnce] = ACTIONS(738), - [anon_sym_ATelse] = ACTIONS(740), - [aux_sym_conditional_keyword_token1] = ACTIONS(742), - [anon_sym_ATif] = ACTIONS(744), - [anon_sym_ATunless] = ACTIONS(746), - [anon_sym_ATendunless] = ACTIONS(497), - [anon_sym_ATisset] = ACTIONS(748), - [anon_sym_ATempty] = ACTIONS(750), - [anon_sym_ATauth] = ACTIONS(752), - [anon_sym_ATguest] = ACTIONS(754), - [anon_sym_ATproduction] = ACTIONS(756), - [anon_sym_ATenv] = ACTIONS(758), - [anon_sym_AThasSection] = ACTIONS(760), - [anon_sym_ATsectionMissing] = ACTIONS(762), - [anon_sym_ATerror] = ACTIONS(764), - [anon_sym_ATcan] = ACTIONS(766), - [anon_sym_ATcannot] = ACTIONS(768), - [anon_sym_ATcanany] = ACTIONS(770), - [anon_sym_ATfeature] = ACTIONS(772), - [aux_sym__custom_token1] = ACTIONS(774), - [aux_sym__custom_token2] = ACTIONS(776), - [anon_sym_ATswitch] = ACTIONS(778), - [aux_sym_loop_operator_token1] = ACTIONS(780), - [anon_sym_ATfor] = ACTIONS(782), - [anon_sym_ATforeach] = ACTIONS(784), - [anon_sym_ATforelse] = ACTIONS(786), - [anon_sym_ATwhile] = ACTIONS(788), - [anon_sym_ATsetup] = ACTIONS(790), - [anon_sym_ATtask] = ACTIONS(792), - [anon_sym_ATstory] = ACTIONS(794), - [anon_sym_ATbefore] = ACTIONS(796), - [anon_sym_ATafter] = ACTIONS(798), - [anon_sym_ATsuccess] = ACTIONS(800), - [anon_sym_ATfinished] = ACTIONS(802), - [anon_sym_ATpersist] = ACTIONS(804), - [anon_sym_ATteleport] = ACTIONS(806), - [anon_sym_ATvolt] = ACTIONS(808), - [aux_sym__text_token1] = ACTIONS(810), - [aux_sym__text_token2] = ACTIONS(810), - [aux_sym__text_token3] = ACTIONS(812), - }, - [86] = { - [sym__definition] = STATE(86), - [sym_keyword] = STATE(86), - [sym_php_statement] = STATE(86), - [sym__escaped] = STATE(1679), - [sym__unescaped] = STATE(1679), - [sym__raw] = STATE(1679), - [sym__inline_raw] = STATE(1679), - [sym__multi_line_raw] = STATE(1679), - [sym_attribute] = STATE(86), - [sym__inline_directive] = STATE(86), - [sym__nested_directive] = STATE(86), - [sym_fragment] = STATE(86), - [sym_section] = STATE(86), - [sym_inlineSection] = STATE(86), - [sym_once] = STATE(86), - [sym_verbatim] = STATE(86), - [sym_stack] = STATE(86), - [sym__push] = STATE(1680), - [sym__pushOnce] = STATE(1680), - [sym__pushIf] = STATE(1680), - [sym__prepend] = STATE(1680), - [sym__prependOnce] = STATE(1680), - [sym_conditional] = STATE(86), - [sym_conditional_keyword] = STATE(86), - [sym__if] = STATE(1681), - [sym__unless] = STATE(1681), - [sym__isset] = STATE(1681), - [sym__empty] = STATE(1681), - [sym__auth] = STATE(1681), - [sym__guest] = STATE(1681), - [sym__production] = STATE(1681), - [sym__env] = STATE(1681), - [sym__hasSection] = STATE(1681), - [sym__sectionMissing] = STATE(1681), - [sym__error] = STATE(1681), - [sym_authorization] = STATE(1681), - [sym__can] = STATE(1682), - [sym__cannot] = STATE(1682), - [sym__canany] = STATE(1682), - [sym__feature] = STATE(1681), - [sym__custom] = STATE(1681), - [sym_switch] = STATE(86), - [sym_loop] = STATE(86), - [sym_loop_operator] = STATE(86), - [sym__for] = STATE(749), - [sym__foreach] = STATE(749), - [sym__forelse] = STATE(749), - [sym__while] = STATE(749), - [sym_envoy] = STATE(86), - [sym__setup] = STATE(1679), - [sym__task] = STATE(1684), - [sym__story] = STATE(1684), - [sym__hooks] = STATE(1679), - [sym__before] = STATE(1679), - [sym__after] = STATE(1679), - [sym__envoy_error] = STATE(1679), - [sym__success] = STATE(1679), - [sym__finished] = STATE(1679), - [sym_livewire] = STATE(86), - [sym__persist] = STATE(1685), - [sym__teleport] = STATE(1685), - [sym__volt] = STATE(1685), - [sym_text] = STATE(86), + [100] = { + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), [sym__text] = STATE(710), - [aux_sym__if_statement_directive_body_repeat1] = STATE(86), [aux_sym_php_only_repeat1] = STATE(710), - [sym_comment] = ACTIONS(932), - [aux_sym_keyword_token1] = ACTIONS(935), - [anon_sym_LBRACE_LBRACE] = ACTIONS(938), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(941), - [anon_sym_ATphp] = ACTIONS(944), - [aux_sym_attribute_token1] = ACTIONS(947), - [aux_sym__inline_directive_token1] = ACTIONS(950), - [anon_sym_ATfragment] = ACTIONS(953), - [anon_sym_ATsection] = ACTIONS(956), - [anon_sym_ATonce] = ACTIONS(959), - [anon_sym_ATverbatim] = ACTIONS(962), - [anon_sym_ATpush] = ACTIONS(965), - [anon_sym_ATpushOnce] = ACTIONS(968), - [anon_sym_ATpushIf] = ACTIONS(971), - [anon_sym_ATprepend] = ACTIONS(974), - [anon_sym_ATprependOnce] = ACTIONS(977), - [anon_sym_ATelse] = ACTIONS(980), - [aux_sym_conditional_keyword_token1] = ACTIONS(983), - [anon_sym_ATif] = ACTIONS(986), - [anon_sym_ATunless] = ACTIONS(989), - [anon_sym_ATisset] = ACTIONS(992), - [anon_sym_ATempty] = ACTIONS(995), - [anon_sym_ATauth] = ACTIONS(998), - [anon_sym_ATguest] = ACTIONS(1001), - [anon_sym_ATproduction] = ACTIONS(1004), - [anon_sym_ATenv] = ACTIONS(1007), - [anon_sym_AThasSection] = ACTIONS(1010), - [anon_sym_ATsectionMissing] = ACTIONS(1013), - [anon_sym_ATerror] = ACTIONS(1016), - [anon_sym_ATenderror] = ACTIONS(633), - [anon_sym_ATcan] = ACTIONS(1019), - [anon_sym_ATcannot] = ACTIONS(1022), - [anon_sym_ATcanany] = ACTIONS(1025), - [anon_sym_ATfeature] = ACTIONS(1028), - [aux_sym__custom_token1] = ACTIONS(1031), - [aux_sym__custom_token2] = ACTIONS(1034), - [anon_sym_ATswitch] = ACTIONS(1037), - [aux_sym_loop_operator_token1] = ACTIONS(1040), - [anon_sym_ATfor] = ACTIONS(1043), - [anon_sym_ATforeach] = ACTIONS(1046), - [anon_sym_ATforelse] = ACTIONS(1049), - [anon_sym_ATwhile] = ACTIONS(1052), - [anon_sym_ATsetup] = ACTIONS(1055), - [anon_sym_ATtask] = ACTIONS(1058), - [anon_sym_ATstory] = ACTIONS(1061), - [anon_sym_ATbefore] = ACTIONS(1064), - [anon_sym_ATafter] = ACTIONS(1067), - [anon_sym_ATsuccess] = ACTIONS(1070), - [anon_sym_ATfinished] = ACTIONS(1073), - [anon_sym_ATpersist] = ACTIONS(1076), - [anon_sym_ATteleport] = ACTIONS(1079), - [anon_sym_ATvolt] = ACTIONS(1082), - [aux_sym__text_token1] = ACTIONS(1085), - [aux_sym__text_token2] = ACTIONS(1085), - [aux_sym__text_token3] = ACTIONS(1088), - }, - [87] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(1091), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), - }, - [88] = { - [sym__definition] = STATE(120), - [sym_keyword] = STATE(120), - [sym_php_statement] = STATE(120), - [sym__escaped] = STATE(1175), - [sym__unescaped] = STATE(1175), - [sym__raw] = STATE(1175), - [sym__inline_raw] = STATE(1175), - [sym__multi_line_raw] = STATE(1175), - [sym_attribute] = STATE(120), - [sym__inline_directive] = STATE(120), - [sym__nested_directive] = STATE(120), - [sym_fragment] = STATE(120), - [sym_section] = STATE(120), - [sym_inlineSection] = STATE(120), - [sym_once] = STATE(120), - [sym_verbatim] = STATE(120), - [sym_stack] = STATE(120), - [sym__push] = STATE(1174), - [sym__pushOnce] = STATE(1174), - [sym__pushIf] = STATE(1174), - [sym__prepend] = STATE(1174), - [sym__prependOnce] = STATE(1174), - [sym_conditional] = STATE(120), - [sym_conditional_keyword] = STATE(120), - [sym__if] = STATE(1173), - [sym__unless] = STATE(1173), - [sym__isset] = STATE(1173), - [sym__empty] = STATE(1173), - [sym__auth] = STATE(1173), - [sym__guest] = STATE(1173), - [sym__production] = STATE(1173), - [sym__env] = STATE(1173), - [sym__hasSection] = STATE(1173), - [sym__sectionMissing] = STATE(1173), - [sym__error] = STATE(1173), - [sym_authorization] = STATE(1173), - [sym__can] = STATE(1172), - [sym__cannot] = STATE(1172), - [sym__canany] = STATE(1172), - [sym__feature] = STATE(1173), - [sym__custom] = STATE(1173), - [sym_switch] = STATE(120), - [sym_loop] = STATE(120), - [sym_loop_operator] = STATE(120), - [sym__for] = STATE(1171), - [sym__foreach] = STATE(1171), - [sym__forelse] = STATE(1171), - [sym__while] = STATE(1171), - [sym_envoy] = STATE(120), - [sym__setup] = STATE(1175), - [sym__task] = STATE(1170), - [sym__story] = STATE(1170), - [sym__hooks] = STATE(1175), - [sym__before] = STATE(1175), - [sym__after] = STATE(1175), - [sym__envoy_error] = STATE(1175), - [sym__success] = STATE(1175), - [sym__finished] = STATE(1175), - [sym_livewire] = STATE(120), - [sym__persist] = STATE(1168), - [sym__teleport] = STATE(1168), - [sym__volt] = STATE(1168), - [sym_text] = STATE(120), - [sym__text] = STATE(683), - [aux_sym__if_statement_directive_body_repeat1] = STATE(120), - [aux_sym_php_only_repeat1] = STATE(683), - [sym_comment] = ACTIONS(1093), - [aux_sym_keyword_token1] = ACTIONS(1095), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1097), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1099), - [anon_sym_ATphp] = ACTIONS(1101), - [aux_sym_attribute_token1] = ACTIONS(1103), - [aux_sym__inline_directive_token1] = ACTIONS(1105), - [anon_sym_ATfragment] = ACTIONS(1107), - [anon_sym_ATsection] = ACTIONS(1109), - [anon_sym_ATonce] = ACTIONS(1111), - [anon_sym_ATverbatim] = ACTIONS(1113), - [anon_sym_ATpush] = ACTIONS(1115), - [anon_sym_ATpushOnce] = ACTIONS(1117), - [anon_sym_ATpushIf] = ACTIONS(1119), - [anon_sym_ATprepend] = ACTIONS(1121), - [anon_sym_ATprependOnce] = ACTIONS(1123), - [anon_sym_ATelse] = ACTIONS(1125), - [aux_sym_conditional_keyword_token1] = ACTIONS(1127), - [anon_sym_ATif] = ACTIONS(1129), - [anon_sym_ATunless] = ACTIONS(1131), - [anon_sym_ATisset] = ACTIONS(1133), - [anon_sym_ATempty] = ACTIONS(1135), - [anon_sym_ATauth] = ACTIONS(1137), - [anon_sym_ATguest] = ACTIONS(1139), - [anon_sym_ATproduction] = ACTIONS(1141), - [anon_sym_ATenv] = ACTIONS(1143), - [anon_sym_AThasSection] = ACTIONS(1145), - [anon_sym_ATsectionMissing] = ACTIONS(1147), - [anon_sym_ATerror] = ACTIONS(1149), - [anon_sym_ATcan] = ACTIONS(1151), - [anon_sym_ATcannot] = ACTIONS(1153), - [anon_sym_ATcanany] = ACTIONS(1155), - [anon_sym_ATfeature] = ACTIONS(1157), - [anon_sym_ATendfeature] = ACTIONS(706), - [aux_sym__custom_token1] = ACTIONS(1159), - [aux_sym__custom_token2] = ACTIONS(1161), - [anon_sym_ATswitch] = ACTIONS(1163), - [aux_sym_loop_operator_token1] = ACTIONS(1165), - [anon_sym_ATfor] = ACTIONS(1167), - [anon_sym_ATforeach] = ACTIONS(1169), - [anon_sym_ATforelse] = ACTIONS(1171), - [anon_sym_ATwhile] = ACTIONS(1173), - [anon_sym_ATsetup] = ACTIONS(1175), - [anon_sym_ATtask] = ACTIONS(1177), - [anon_sym_ATstory] = ACTIONS(1179), - [anon_sym_ATbefore] = ACTIONS(1181), - [anon_sym_ATafter] = ACTIONS(1183), - [anon_sym_ATsuccess] = ACTIONS(1185), - [anon_sym_ATfinished] = ACTIONS(1187), - [anon_sym_ATpersist] = ACTIONS(1189), - [anon_sym_ATteleport] = ACTIONS(1191), - [anon_sym_ATvolt] = ACTIONS(1193), - [aux_sym__text_token1] = ACTIONS(1195), - [aux_sym__text_token2] = ACTIONS(1195), - [aux_sym__text_token3] = ACTIONS(1197), - }, - [89] = { - [sym__definition] = STATE(90), - [sym_keyword] = STATE(90), - [sym_php_statement] = STATE(90), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(90), - [sym__inline_directive] = STATE(90), - [sym__nested_directive] = STATE(90), - [sym_fragment] = STATE(90), - [sym_section] = STATE(90), - [sym_inlineSection] = STATE(90), - [sym_once] = STATE(90), - [sym_verbatim] = STATE(90), - [sym_stack] = STATE(90), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(90), - [sym_conditional_keyword] = STATE(90), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(90), - [sym_loop] = STATE(90), - [sym_loop_operator] = STATE(90), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(90), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(90), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym_text] = STATE(90), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(90), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(541), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATendguest] = ACTIONS(1199), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), - }, - [90] = { - [sym__definition] = STATE(90), - [sym_keyword] = STATE(90), - [sym_php_statement] = STATE(90), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(90), - [sym__inline_directive] = STATE(90), - [sym__nested_directive] = STATE(90), - [sym_fragment] = STATE(90), - [sym_section] = STATE(90), - [sym_inlineSection] = STATE(90), - [sym_once] = STATE(90), - [sym_verbatim] = STATE(90), - [sym_stack] = STATE(90), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(90), - [sym_conditional_keyword] = STATE(90), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(90), - [sym_loop] = STATE(90), - [sym_loop_operator] = STATE(90), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(90), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(90), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym_text] = STATE(90), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(90), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(1201), - [aux_sym_keyword_token1] = ACTIONS(1204), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1207), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1210), - [anon_sym_ATphp] = ACTIONS(1213), - [aux_sym_attribute_token1] = ACTIONS(1216), - [aux_sym__inline_directive_token1] = ACTIONS(1219), - [anon_sym_ATfragment] = ACTIONS(1222), - [anon_sym_ATsection] = ACTIONS(1225), - [anon_sym_ATonce] = ACTIONS(1228), - [anon_sym_ATverbatim] = ACTIONS(1231), - [anon_sym_ATpush] = ACTIONS(1234), - [anon_sym_ATpushOnce] = ACTIONS(1237), - [anon_sym_ATpushIf] = ACTIONS(1240), - [anon_sym_ATprepend] = ACTIONS(1243), - [anon_sym_ATprependOnce] = ACTIONS(1246), - [anon_sym_ATelse] = ACTIONS(1249), - [aux_sym_conditional_keyword_token1] = ACTIONS(1252), - [anon_sym_ATif] = ACTIONS(1255), - [anon_sym_ATunless] = ACTIONS(1258), - [anon_sym_ATisset] = ACTIONS(1261), - [anon_sym_ATempty] = ACTIONS(1264), - [anon_sym_ATauth] = ACTIONS(1267), - [anon_sym_ATguest] = ACTIONS(1270), - [anon_sym_ATendguest] = ACTIONS(633), - [anon_sym_ATproduction] = ACTIONS(1273), - [anon_sym_ATenv] = ACTIONS(1276), - [anon_sym_AThasSection] = ACTIONS(1279), - [anon_sym_ATsectionMissing] = ACTIONS(1282), - [anon_sym_ATerror] = ACTIONS(1285), - [anon_sym_ATcan] = ACTIONS(1288), - [anon_sym_ATcannot] = ACTIONS(1291), - [anon_sym_ATcanany] = ACTIONS(1294), - [anon_sym_ATfeature] = ACTIONS(1297), - [aux_sym__custom_token1] = ACTIONS(1300), - [aux_sym__custom_token2] = ACTIONS(1303), - [anon_sym_ATswitch] = ACTIONS(1306), - [aux_sym_loop_operator_token1] = ACTIONS(1309), - [anon_sym_ATfor] = ACTIONS(1312), - [anon_sym_ATforeach] = ACTIONS(1315), - [anon_sym_ATforelse] = ACTIONS(1318), - [anon_sym_ATwhile] = ACTIONS(1321), - [anon_sym_ATsetup] = ACTIONS(1324), - [anon_sym_ATtask] = ACTIONS(1327), - [anon_sym_ATstory] = ACTIONS(1330), - [anon_sym_ATbefore] = ACTIONS(1333), - [anon_sym_ATafter] = ACTIONS(1336), - [anon_sym_ATsuccess] = ACTIONS(1339), - [anon_sym_ATfinished] = ACTIONS(1342), - [anon_sym_ATpersist] = ACTIONS(1345), - [anon_sym_ATteleport] = ACTIONS(1348), - [anon_sym_ATvolt] = ACTIONS(1351), - [aux_sym__text_token1] = ACTIONS(1354), - [aux_sym__text_token2] = ACTIONS(1354), - [aux_sym__text_token3] = ACTIONS(1357), - }, - [91] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(1360), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), - }, - [92] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(1362), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), - }, - [93] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(1364), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), - }, - [94] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(1366), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), - }, - [95] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(1368), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), - }, - [96] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(1370), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), - }, - [97] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(1372), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), - }, - [98] = { - [sym__definition] = STATE(103), - [sym_keyword] = STATE(103), - [sym_php_statement] = STATE(103), - [sym__escaped] = STATE(1426), - [sym__unescaped] = STATE(1426), - [sym__raw] = STATE(1426), - [sym__inline_raw] = STATE(1426), - [sym__multi_line_raw] = STATE(1426), - [sym_attribute] = STATE(103), - [sym__inline_directive] = STATE(103), - [sym__nested_directive] = STATE(103), - [sym_fragment] = STATE(103), - [sym_section] = STATE(103), - [sym_inlineSection] = STATE(103), - [sym_once] = STATE(103), - [sym_verbatim] = STATE(103), - [sym_stack] = STATE(103), - [sym__push] = STATE(1427), - [sym__pushOnce] = STATE(1427), - [sym__pushIf] = STATE(1427), - [sym__prepend] = STATE(1427), - [sym__prependOnce] = STATE(1427), - [sym_conditional] = STATE(103), - [sym_conditional_keyword] = STATE(103), - [sym__if] = STATE(1428), - [sym__unless] = STATE(1428), - [sym__isset] = STATE(1428), - [sym__empty] = STATE(1428), - [sym__auth] = STATE(1428), - [sym__guest] = STATE(1428), - [sym__production] = STATE(1428), - [sym__env] = STATE(1428), - [sym__hasSection] = STATE(1428), - [sym__sectionMissing] = STATE(1428), - [sym__error] = STATE(1428), - [sym_authorization] = STATE(1428), - [sym__can] = STATE(1429), - [sym__cannot] = STATE(1429), - [sym__canany] = STATE(1429), - [sym__feature] = STATE(1428), - [sym__custom] = STATE(1428), - [sym_switch] = STATE(103), - [sym_loop] = STATE(103), - [sym_loop_operator] = STATE(103), - [sym__for] = STATE(1430), - [sym__foreach] = STATE(1430), - [sym__forelse] = STATE(1430), - [sym__while] = STATE(1430), - [sym_envoy] = STATE(103), - [sym__setup] = STATE(1426), - [sym__task] = STATE(1431), - [sym__story] = STATE(1431), - [sym__hooks] = STATE(1426), - [sym__before] = STATE(1426), - [sym__after] = STATE(1426), - [sym__envoy_error] = STATE(1426), - [sym__success] = STATE(1426), - [sym__finished] = STATE(1426), - [sym_livewire] = STATE(103), - [sym__persist] = STATE(1432), - [sym__teleport] = STATE(1432), - [sym__volt] = STATE(1432), - [sym_text] = STATE(103), - [sym__text] = STATE(681), - [aux_sym__if_statement_directive_body_repeat1] = STATE(103), - [aux_sym_php_only_repeat1] = STATE(681), - [sym_comment] = ACTIONS(1374), - [aux_sym_keyword_token1] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1378), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1380), - [anon_sym_ATphp] = ACTIONS(1382), - [aux_sym_attribute_token1] = ACTIONS(1384), - [aux_sym__inline_directive_token1] = ACTIONS(1386), - [anon_sym_ATfragment] = ACTIONS(1388), - [anon_sym_ATsection] = ACTIONS(1390), - [anon_sym_ATonce] = ACTIONS(1392), - [anon_sym_ATverbatim] = ACTIONS(1394), - [anon_sym_ATpush] = ACTIONS(1396), - [anon_sym_ATpushOnce] = ACTIONS(1398), - [anon_sym_ATpushIf] = ACTIONS(1400), - [anon_sym_ATprepend] = ACTIONS(1402), - [anon_sym_ATprependOnce] = ACTIONS(1404), - [anon_sym_ATelse] = ACTIONS(1406), - [aux_sym_conditional_keyword_token1] = ACTIONS(1408), - [anon_sym_ATif] = ACTIONS(1410), - [anon_sym_ATunless] = ACTIONS(1412), - [anon_sym_ATisset] = ACTIONS(1414), - [anon_sym_ATendisset] = ACTIONS(706), - [anon_sym_ATempty] = ACTIONS(1416), - [anon_sym_ATauth] = ACTIONS(1418), - [anon_sym_ATguest] = ACTIONS(1420), - [anon_sym_ATproduction] = ACTIONS(1422), - [anon_sym_ATenv] = ACTIONS(1424), - [anon_sym_AThasSection] = ACTIONS(1426), - [anon_sym_ATsectionMissing] = ACTIONS(1428), - [anon_sym_ATerror] = ACTIONS(1430), - [anon_sym_ATcan] = ACTIONS(1432), - [anon_sym_ATcannot] = ACTIONS(1434), - [anon_sym_ATcanany] = ACTIONS(1436), - [anon_sym_ATfeature] = ACTIONS(1438), - [aux_sym__custom_token1] = ACTIONS(1440), - [aux_sym__custom_token2] = ACTIONS(1442), - [anon_sym_ATswitch] = ACTIONS(1444), - [aux_sym_loop_operator_token1] = ACTIONS(1446), - [anon_sym_ATfor] = ACTIONS(1448), - [anon_sym_ATforeach] = ACTIONS(1450), - [anon_sym_ATforelse] = ACTIONS(1452), - [anon_sym_ATwhile] = ACTIONS(1454), - [anon_sym_ATsetup] = ACTIONS(1456), - [anon_sym_ATtask] = ACTIONS(1458), - [anon_sym_ATstory] = ACTIONS(1460), - [anon_sym_ATbefore] = ACTIONS(1462), - [anon_sym_ATafter] = ACTIONS(1464), - [anon_sym_ATsuccess] = ACTIONS(1466), - [anon_sym_ATfinished] = ACTIONS(1468), - [anon_sym_ATpersist] = ACTIONS(1470), - [anon_sym_ATteleport] = ACTIONS(1472), - [anon_sym_ATvolt] = ACTIONS(1474), - [aux_sym__text_token1] = ACTIONS(1476), - [aux_sym__text_token2] = ACTIONS(1476), - [aux_sym__text_token3] = ACTIONS(1478), - }, - [99] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(1480), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), - }, - [100] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(1482), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym_comment] = ACTIONS(1455), + [aux_sym_keyword_token1] = ACTIONS(1458), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1461), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1464), + [anon_sym_ATphp] = ACTIONS(1467), + [aux_sym_attribute_token1] = ACTIONS(1470), + [aux_sym__inline_directive_token1] = ACTIONS(1473), + [anon_sym_ATfragment] = ACTIONS(1476), + [anon_sym_ATsection] = ACTIONS(1479), + [anon_sym_ATonce] = ACTIONS(1482), + [anon_sym_ATverbatim] = ACTIONS(1485), + [anon_sym_ATpush] = ACTIONS(1488), + [anon_sym_ATpushOnce] = ACTIONS(1491), + [anon_sym_ATpushIf] = ACTIONS(1494), + [anon_sym_ATprepend] = ACTIONS(1497), + [anon_sym_ATprependOnce] = ACTIONS(1500), + [anon_sym_ATelse] = ACTIONS(1503), + [aux_sym_conditional_keyword_token1] = ACTIONS(1506), + [anon_sym_ATif] = ACTIONS(1509), + [anon_sym_ATunless] = ACTIONS(1512), + [anon_sym_ATisset] = ACTIONS(1515), + [anon_sym_ATempty] = ACTIONS(1518), + [anon_sym_ATauth] = ACTIONS(1521), + [anon_sym_ATguest] = ACTIONS(1524), + [anon_sym_ATproduction] = ACTIONS(1527), + [anon_sym_ATendproduction] = ACTIONS(1530), + [anon_sym_ATenv] = ACTIONS(1532), + [anon_sym_AThasSection] = ACTIONS(1535), + [anon_sym_ATsectionMissing] = ACTIONS(1538), + [anon_sym_ATerror] = ACTIONS(1541), + [anon_sym_ATcan] = ACTIONS(1544), + [anon_sym_ATcannot] = ACTIONS(1547), + [anon_sym_ATcanany] = ACTIONS(1550), + [anon_sym_ATfeature] = ACTIONS(1553), + [aux_sym__custom_token1] = ACTIONS(1556), + [aux_sym__custom_token2] = ACTIONS(1559), + [anon_sym_ATswitch] = ACTIONS(1562), + [aux_sym_loop_operator_token1] = ACTIONS(1565), + [anon_sym_ATfor] = ACTIONS(1568), + [anon_sym_ATforeach] = ACTIONS(1571), + [anon_sym_ATforelse] = ACTIONS(1574), + [anon_sym_ATwhile] = ACTIONS(1577), + [anon_sym_ATsetup] = ACTIONS(1580), + [anon_sym_ATtask] = ACTIONS(1583), + [anon_sym_ATstory] = ACTIONS(1586), + [anon_sym_ATbefore] = ACTIONS(1589), + [anon_sym_ATafter] = ACTIONS(1592), + [anon_sym_ATsuccess] = ACTIONS(1595), + [anon_sym_ATfinished] = ACTIONS(1598), + [anon_sym_ATpersist] = ACTIONS(1601), + [anon_sym_ATteleport] = ACTIONS(1604), + [anon_sym_ATvolt] = ACTIONS(1607), + [aux_sym_alpine_js_token1] = ACTIONS(1610), + [aux_sym__text_token1] = ACTIONS(1613), + [aux_sym__text_token2] = ACTIONS(1613), + [aux_sym__text_token3] = ACTIONS(1616), }, [101] = { - [sym__definition] = STATE(101), - [sym_keyword] = STATE(101), - [sym_php_statement] = STATE(101), - [sym__escaped] = STATE(1596), - [sym__unescaped] = STATE(1596), - [sym__raw] = STATE(1596), - [sym__inline_raw] = STATE(1596), - [sym__multi_line_raw] = STATE(1596), - [sym_attribute] = STATE(101), - [sym__inline_directive] = STATE(101), - [sym__nested_directive] = STATE(101), - [sym_fragment] = STATE(101), - [sym_section] = STATE(101), - [sym_inlineSection] = STATE(101), - [sym_once] = STATE(101), - [sym_verbatim] = STATE(101), - [sym_stack] = STATE(101), - [sym__push] = STATE(1597), - [sym__pushOnce] = STATE(1597), - [sym__pushIf] = STATE(1597), - [sym__prepend] = STATE(1597), - [sym__prependOnce] = STATE(1597), - [sym_conditional] = STATE(101), - [sym_conditional_keyword] = STATE(101), - [sym__if] = STATE(1598), - [sym__unless] = STATE(1598), - [sym__isset] = STATE(1598), - [sym__empty] = STATE(1598), - [sym__auth] = STATE(1598), - [sym__guest] = STATE(1598), - [sym__production] = STATE(1598), - [sym__env] = STATE(1598), - [sym__hasSection] = STATE(1598), - [sym__sectionMissing] = STATE(1598), - [sym__error] = STATE(1598), - [sym_authorization] = STATE(1598), - [sym__can] = STATE(1599), - [sym__cannot] = STATE(1599), - [sym__canany] = STATE(1599), - [sym__feature] = STATE(1598), - [sym__custom] = STATE(1598), - [sym_switch] = STATE(101), - [sym_loop] = STATE(101), - [sym_loop_operator] = STATE(101), - [sym__for] = STATE(1600), - [sym__foreach] = STATE(1600), - [sym__forelse] = STATE(1600), - [sym__while] = STATE(1600), - [sym_envoy] = STATE(101), - [sym__setup] = STATE(1596), - [sym__task] = STATE(1601), - [sym__story] = STATE(1601), - [sym__hooks] = STATE(1596), - [sym__before] = STATE(1596), - [sym__after] = STATE(1596), - [sym__envoy_error] = STATE(1596), - [sym__success] = STATE(1596), - [sym__finished] = STATE(1596), - [sym_livewire] = STATE(101), - [sym__persist] = STATE(1602), - [sym__teleport] = STATE(1602), - [sym__volt] = STATE(1602), - [sym_text] = STATE(101), - [sym__text] = STATE(674), - [aux_sym__if_statement_directive_body_repeat1] = STATE(101), - [aux_sym_php_only_repeat1] = STATE(674), - [sym_comment] = ACTIONS(1484), - [aux_sym_keyword_token1] = ACTIONS(1487), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1490), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1493), - [anon_sym_ATphp] = ACTIONS(1496), - [aux_sym_attribute_token1] = ACTIONS(1499), - [aux_sym__inline_directive_token1] = ACTIONS(1502), - [anon_sym_ATfragment] = ACTIONS(1505), - [anon_sym_ATsection] = ACTIONS(1508), - [anon_sym_ATonce] = ACTIONS(1511), - [anon_sym_ATverbatim] = ACTIONS(1514), - [anon_sym_ATpush] = ACTIONS(1517), - [anon_sym_ATpushOnce] = ACTIONS(1520), - [anon_sym_ATpushIf] = ACTIONS(1523), - [anon_sym_ATprepend] = ACTIONS(1526), - [anon_sym_ATprependOnce] = ACTIONS(1529), - [anon_sym_ATelse] = ACTIONS(1532), - [aux_sym_conditional_keyword_token1] = ACTIONS(1535), - [anon_sym_ATif] = ACTIONS(1538), - [anon_sym_ATunless] = ACTIONS(1541), - [anon_sym_ATisset] = ACTIONS(1544), - [anon_sym_ATempty] = ACTIONS(1547), - [anon_sym_ATauth] = ACTIONS(1550), - [anon_sym_ATguest] = ACTIONS(1553), - [anon_sym_ATproduction] = ACTIONS(1556), - [anon_sym_ATenv] = ACTIONS(1559), - [anon_sym_ATendenv] = ACTIONS(633), - [anon_sym_AThasSection] = ACTIONS(1562), - [anon_sym_ATsectionMissing] = ACTIONS(1565), - [anon_sym_ATerror] = ACTIONS(1568), - [anon_sym_ATcan] = ACTIONS(1571), - [anon_sym_ATcannot] = ACTIONS(1574), - [anon_sym_ATcanany] = ACTIONS(1577), - [anon_sym_ATfeature] = ACTIONS(1580), - [aux_sym__custom_token1] = ACTIONS(1583), - [aux_sym__custom_token2] = ACTIONS(1586), - [anon_sym_ATswitch] = ACTIONS(1589), - [aux_sym_loop_operator_token1] = ACTIONS(1592), - [anon_sym_ATfor] = ACTIONS(1595), - [anon_sym_ATforeach] = ACTIONS(1598), - [anon_sym_ATforelse] = ACTIONS(1601), - [anon_sym_ATwhile] = ACTIONS(1604), - [anon_sym_ATsetup] = ACTIONS(1607), - [anon_sym_ATtask] = ACTIONS(1610), - [anon_sym_ATstory] = ACTIONS(1613), - [anon_sym_ATbefore] = ACTIONS(1616), - [anon_sym_ATafter] = ACTIONS(1619), - [anon_sym_ATsuccess] = ACTIONS(1622), - [anon_sym_ATfinished] = ACTIONS(1625), - [anon_sym_ATpersist] = ACTIONS(1628), - [anon_sym_ATteleport] = ACTIONS(1631), - [anon_sym_ATvolt] = ACTIONS(1634), - [aux_sym__text_token1] = ACTIONS(1637), - [aux_sym__text_token2] = ACTIONS(1637), - [aux_sym__text_token3] = ACTIONS(1640), + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(1619), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [102] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(1643), - [aux_sym_keyword_token1] = ACTIONS(1646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1649), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1652), - [anon_sym_ATphp] = ACTIONS(1655), - [aux_sym_attribute_token1] = ACTIONS(1658), - [aux_sym__inline_directive_token1] = ACTIONS(1661), - [anon_sym_ATfragment] = ACTIONS(1664), - [anon_sym_ATsection] = ACTIONS(1667), - [anon_sym_ATonce] = ACTIONS(1670), - [anon_sym_ATverbatim] = ACTIONS(1673), - [anon_sym_ATpush] = ACTIONS(1676), - [anon_sym_ATpushOnce] = ACTIONS(1679), - [anon_sym_ATpushIf] = ACTIONS(1682), - [anon_sym_ATprepend] = ACTIONS(1685), - [anon_sym_ATprependOnce] = ACTIONS(1688), - [anon_sym_ATelse] = ACTIONS(1691), - [aux_sym_conditional_keyword_token1] = ACTIONS(1694), - [anon_sym_ATif] = ACTIONS(1697), - [anon_sym_ATunless] = ACTIONS(1700), - [anon_sym_ATisset] = ACTIONS(1703), - [anon_sym_ATempty] = ACTIONS(1706), - [anon_sym_ATauth] = ACTIONS(1709), - [anon_sym_ATguest] = ACTIONS(1712), - [anon_sym_ATproduction] = ACTIONS(1715), - [anon_sym_ATendproduction] = ACTIONS(1718), - [anon_sym_ATenv] = ACTIONS(1720), - [anon_sym_AThasSection] = ACTIONS(1723), - [anon_sym_ATsectionMissing] = ACTIONS(1726), - [anon_sym_ATerror] = ACTIONS(1729), - [anon_sym_ATcan] = ACTIONS(1732), - [anon_sym_ATcannot] = ACTIONS(1735), - [anon_sym_ATcanany] = ACTIONS(1738), - [anon_sym_ATfeature] = ACTIONS(1741), - [aux_sym__custom_token1] = ACTIONS(1744), - [aux_sym__custom_token2] = ACTIONS(1747), - [anon_sym_ATswitch] = ACTIONS(1750), - [aux_sym_loop_operator_token1] = ACTIONS(1753), - [anon_sym_ATfor] = ACTIONS(1756), - [anon_sym_ATforeach] = ACTIONS(1759), - [anon_sym_ATforelse] = ACTIONS(1762), - [anon_sym_ATwhile] = ACTIONS(1765), - [anon_sym_ATsetup] = ACTIONS(1768), - [anon_sym_ATtask] = ACTIONS(1771), - [anon_sym_ATstory] = ACTIONS(1774), - [anon_sym_ATbefore] = ACTIONS(1777), - [anon_sym_ATafter] = ACTIONS(1780), - [anon_sym_ATsuccess] = ACTIONS(1783), - [anon_sym_ATfinished] = ACTIONS(1786), - [anon_sym_ATpersist] = ACTIONS(1789), - [anon_sym_ATteleport] = ACTIONS(1792), - [anon_sym_ATvolt] = ACTIONS(1795), - [aux_sym__text_token1] = ACTIONS(1798), - [aux_sym__text_token2] = ACTIONS(1798), - [aux_sym__text_token3] = ACTIONS(1801), - }, - [103] = { [sym__definition] = STATE(136), [sym_keyword] = STATE(136), [sym_php_statement] = STATE(136), - [sym__escaped] = STATE(1426), - [sym__unescaped] = STATE(1426), - [sym__raw] = STATE(1426), - [sym__inline_raw] = STATE(1426), - [sym__multi_line_raw] = STATE(1426), + [sym__escaped] = STATE(1443), + [sym__unescaped] = STATE(1443), + [sym__raw] = STATE(1443), + [sym__inline_raw] = STATE(1443), + [sym__multi_line_raw] = STATE(1443), [sym_attribute] = STATE(136), [sym__inline_directive] = STATE(136), [sym__nested_directive] = STATE(136), @@ -38321,259 +38874,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(136), [sym_verbatim] = STATE(136), [sym_stack] = STATE(136), - [sym__push] = STATE(1427), - [sym__pushOnce] = STATE(1427), - [sym__pushIf] = STATE(1427), - [sym__prepend] = STATE(1427), - [sym__prependOnce] = STATE(1427), + [sym__push] = STATE(1444), + [sym__pushOnce] = STATE(1444), + [sym__pushIf] = STATE(1444), + [sym__prepend] = STATE(1444), + [sym__prependOnce] = STATE(1444), [sym_conditional] = STATE(136), [sym_conditional_keyword] = STATE(136), - [sym__if] = STATE(1428), - [sym__unless] = STATE(1428), - [sym__isset] = STATE(1428), - [sym__empty] = STATE(1428), - [sym__auth] = STATE(1428), - [sym__guest] = STATE(1428), - [sym__production] = STATE(1428), - [sym__env] = STATE(1428), - [sym__hasSection] = STATE(1428), - [sym__sectionMissing] = STATE(1428), - [sym__error] = STATE(1428), - [sym_authorization] = STATE(1428), - [sym__can] = STATE(1429), - [sym__cannot] = STATE(1429), - [sym__canany] = STATE(1429), - [sym__feature] = STATE(1428), - [sym__custom] = STATE(1428), + [sym__if] = STATE(1445), + [sym__unless] = STATE(1445), + [sym__isset] = STATE(1445), + [sym__empty] = STATE(1445), + [sym__auth] = STATE(1445), + [sym__guest] = STATE(1445), + [sym__production] = STATE(1445), + [sym__env] = STATE(1445), + [sym__hasSection] = STATE(1445), + [sym__sectionMissing] = STATE(1445), + [sym__error] = STATE(1445), + [sym_authorization] = STATE(1445), + [sym__can] = STATE(1446), + [sym__cannot] = STATE(1446), + [sym__canany] = STATE(1446), + [sym__feature] = STATE(1445), + [sym__custom] = STATE(1445), [sym_switch] = STATE(136), [sym_loop] = STATE(136), [sym_loop_operator] = STATE(136), - [sym__for] = STATE(1430), - [sym__foreach] = STATE(1430), - [sym__forelse] = STATE(1430), - [sym__while] = STATE(1430), + [sym__for] = STATE(1447), + [sym__foreach] = STATE(1447), + [sym__forelse] = STATE(1447), + [sym__while] = STATE(1447), [sym_envoy] = STATE(136), - [sym__setup] = STATE(1426), - [sym__task] = STATE(1431), - [sym__story] = STATE(1431), - [sym__hooks] = STATE(1426), - [sym__before] = STATE(1426), - [sym__after] = STATE(1426), - [sym__envoy_error] = STATE(1426), - [sym__success] = STATE(1426), - [sym__finished] = STATE(1426), + [sym__setup] = STATE(1443), + [sym__task] = STATE(1448), + [sym__story] = STATE(1448), + [sym__hooks] = STATE(1443), + [sym__before] = STATE(1443), + [sym__after] = STATE(1443), + [sym__envoy_error] = STATE(1443), + [sym__success] = STATE(1443), + [sym__finished] = STATE(1443), [sym_livewire] = STATE(136), - [sym__persist] = STATE(1432), - [sym__teleport] = STATE(1432), - [sym__volt] = STATE(1432), + [sym__persist] = STATE(1449), + [sym__teleport] = STATE(1449), + [sym__volt] = STATE(1449), + [sym_alpine_js] = STATE(136), [sym_text] = STATE(136), - [sym__text] = STATE(681), + [sym__text] = STATE(680), [aux_sym__if_statement_directive_body_repeat1] = STATE(136), - [aux_sym_php_only_repeat1] = STATE(681), - [sym_comment] = ACTIONS(1804), - [aux_sym_keyword_token1] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1378), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1380), - [anon_sym_ATphp] = ACTIONS(1382), - [aux_sym_attribute_token1] = ACTIONS(1384), - [aux_sym__inline_directive_token1] = ACTIONS(1386), - [anon_sym_ATfragment] = ACTIONS(1388), - [anon_sym_ATsection] = ACTIONS(1390), - [anon_sym_ATonce] = ACTIONS(1392), - [anon_sym_ATverbatim] = ACTIONS(1394), - [anon_sym_ATpush] = ACTIONS(1396), - [anon_sym_ATpushOnce] = ACTIONS(1398), - [anon_sym_ATpushIf] = ACTIONS(1400), - [anon_sym_ATprepend] = ACTIONS(1402), - [anon_sym_ATprependOnce] = ACTIONS(1404), - [anon_sym_ATelse] = ACTIONS(1406), - [aux_sym_conditional_keyword_token1] = ACTIONS(1408), - [anon_sym_ATif] = ACTIONS(1410), - [anon_sym_ATunless] = ACTIONS(1412), - [anon_sym_ATisset] = ACTIONS(1414), - [anon_sym_ATendisset] = ACTIONS(497), - [anon_sym_ATempty] = ACTIONS(1416), - [anon_sym_ATauth] = ACTIONS(1418), - [anon_sym_ATguest] = ACTIONS(1420), - [anon_sym_ATproduction] = ACTIONS(1422), - [anon_sym_ATenv] = ACTIONS(1424), - [anon_sym_AThasSection] = ACTIONS(1426), - [anon_sym_ATsectionMissing] = ACTIONS(1428), - [anon_sym_ATerror] = ACTIONS(1430), - [anon_sym_ATcan] = ACTIONS(1432), - [anon_sym_ATcannot] = ACTIONS(1434), - [anon_sym_ATcanany] = ACTIONS(1436), - [anon_sym_ATfeature] = ACTIONS(1438), - [aux_sym__custom_token1] = ACTIONS(1440), - [aux_sym__custom_token2] = ACTIONS(1442), - [anon_sym_ATswitch] = ACTIONS(1444), - [aux_sym_loop_operator_token1] = ACTIONS(1446), - [anon_sym_ATfor] = ACTIONS(1448), - [anon_sym_ATforeach] = ACTIONS(1450), - [anon_sym_ATforelse] = ACTIONS(1452), - [anon_sym_ATwhile] = ACTIONS(1454), - [anon_sym_ATsetup] = ACTIONS(1456), - [anon_sym_ATtask] = ACTIONS(1458), - [anon_sym_ATstory] = ACTIONS(1460), - [anon_sym_ATbefore] = ACTIONS(1462), - [anon_sym_ATafter] = ACTIONS(1464), - [anon_sym_ATsuccess] = ACTIONS(1466), - [anon_sym_ATfinished] = ACTIONS(1468), - [anon_sym_ATpersist] = ACTIONS(1470), - [anon_sym_ATteleport] = ACTIONS(1472), - [anon_sym_ATvolt] = ACTIONS(1474), - [aux_sym__text_token1] = ACTIONS(1476), - [aux_sym__text_token2] = ACTIONS(1476), - [aux_sym__text_token3] = ACTIONS(1478), - }, - [104] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(1806), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [aux_sym_php_only_repeat1] = STATE(680), + [sym_comment] = ACTIONS(1621), + [aux_sym_keyword_token1] = ACTIONS(1349), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1351), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1353), + [anon_sym_ATphp] = ACTIONS(1355), + [aux_sym_attribute_token1] = ACTIONS(1357), + [aux_sym__inline_directive_token1] = ACTIONS(1359), + [anon_sym_ATfragment] = ACTIONS(1361), + [anon_sym_ATsection] = ACTIONS(1363), + [anon_sym_ATonce] = ACTIONS(1365), + [anon_sym_ATverbatim] = ACTIONS(1367), + [anon_sym_ATpush] = ACTIONS(1369), + [anon_sym_ATpushOnce] = ACTIONS(1371), + [anon_sym_ATpushIf] = ACTIONS(1373), + [anon_sym_ATprepend] = ACTIONS(1375), + [anon_sym_ATprependOnce] = ACTIONS(1377), + [anon_sym_ATelse] = ACTIONS(1379), + [aux_sym_conditional_keyword_token1] = ACTIONS(1381), + [anon_sym_ATif] = ACTIONS(1383), + [anon_sym_ATunless] = ACTIONS(1385), + [anon_sym_ATisset] = ACTIONS(1387), + [anon_sym_ATendisset] = ACTIONS(369), + [anon_sym_ATempty] = ACTIONS(1389), + [anon_sym_ATauth] = ACTIONS(1391), + [anon_sym_ATguest] = ACTIONS(1393), + [anon_sym_ATproduction] = ACTIONS(1395), + [anon_sym_ATenv] = ACTIONS(1397), + [anon_sym_AThasSection] = ACTIONS(1399), + [anon_sym_ATsectionMissing] = ACTIONS(1401), + [anon_sym_ATerror] = ACTIONS(1403), + [anon_sym_ATcan] = ACTIONS(1405), + [anon_sym_ATcannot] = ACTIONS(1407), + [anon_sym_ATcanany] = ACTIONS(1409), + [anon_sym_ATfeature] = ACTIONS(1411), + [aux_sym__custom_token1] = ACTIONS(1413), + [aux_sym__custom_token2] = ACTIONS(1415), + [anon_sym_ATswitch] = ACTIONS(1417), + [aux_sym_loop_operator_token1] = ACTIONS(1419), + [anon_sym_ATfor] = ACTIONS(1421), + [anon_sym_ATforeach] = ACTIONS(1423), + [anon_sym_ATforelse] = ACTIONS(1425), + [anon_sym_ATwhile] = ACTIONS(1427), + [anon_sym_ATsetup] = ACTIONS(1429), + [anon_sym_ATtask] = ACTIONS(1431), + [anon_sym_ATstory] = ACTIONS(1433), + [anon_sym_ATbefore] = ACTIONS(1435), + [anon_sym_ATafter] = ACTIONS(1437), + [anon_sym_ATsuccess] = ACTIONS(1439), + [anon_sym_ATfinished] = ACTIONS(1441), + [anon_sym_ATpersist] = ACTIONS(1443), + [anon_sym_ATteleport] = ACTIONS(1445), + [anon_sym_ATvolt] = ACTIONS(1447), + [aux_sym_alpine_js_token1] = ACTIONS(1449), + [aux_sym__text_token1] = ACTIONS(1451), + [aux_sym__text_token2] = ACTIONS(1451), + [aux_sym__text_token3] = ACTIONS(1453), }, - [105] = { - [sym__definition] = STATE(105), - [sym_keyword] = STATE(105), - [sym_php_statement] = STATE(105), + [103] = { + [sym__definition] = STATE(103), + [sym_keyword] = STATE(103), + [sym_php_statement] = STATE(103), [sym__escaped] = STATE(766), [sym__unescaped] = STATE(766), [sym__raw] = STATE(766), [sym__inline_raw] = STATE(766), [sym__multi_line_raw] = STATE(766), - [sym_attribute] = STATE(105), - [sym__inline_directive] = STATE(105), - [sym__nested_directive] = STATE(105), - [sym_fragment] = STATE(105), - [sym_section] = STATE(105), - [sym_inlineSection] = STATE(105), - [sym_once] = STATE(105), - [sym_verbatim] = STATE(105), - [sym_stack] = STATE(105), + [sym_attribute] = STATE(103), + [sym__inline_directive] = STATE(103), + [sym__nested_directive] = STATE(103), + [sym_fragment] = STATE(103), + [sym_section] = STATE(103), + [sym_inlineSection] = STATE(103), + [sym_once] = STATE(103), + [sym_verbatim] = STATE(103), + [sym_stack] = STATE(103), [sym__push] = STATE(767), [sym__pushOnce] = STATE(767), [sym__pushIf] = STATE(767), [sym__prepend] = STATE(767), [sym__prependOnce] = STATE(767), - [sym_conditional] = STATE(105), - [sym_conditional_keyword] = STATE(105), + [sym_conditional] = STATE(103), + [sym_conditional_keyword] = STATE(103), [sym__if] = STATE(768), [sym__unless] = STATE(768), [sym__isset] = STATE(768), @@ -38586,117 +39018,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), - [sym_switch] = STATE(105), - [sym_loop] = STATE(105), - [sym_loop_operator] = STATE(105), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(105), + [sym_switch] = STATE(103), + [sym_loop] = STATE(103), + [sym_loop_operator] = STATE(103), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), + [sym_envoy] = STATE(103), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), [sym__envoy_error] = STATE(766), [sym__success] = STATE(766), [sym__finished] = STATE(766), - [sym_livewire] = STATE(105), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym_text] = STATE(105), - [sym__text] = STATE(706), - [aux_sym__if_statement_directive_body_repeat1] = STATE(105), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(1808), - [aux_sym_keyword_token1] = ACTIONS(1811), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1817), - [anon_sym_ATphp] = ACTIONS(1820), - [aux_sym_attribute_token1] = ACTIONS(1823), - [aux_sym__inline_directive_token1] = ACTIONS(1826), - [anon_sym_ATfragment] = ACTIONS(1829), - [anon_sym_ATsection] = ACTIONS(1832), - [anon_sym_ATonce] = ACTIONS(1835), - [anon_sym_ATverbatim] = ACTIONS(1838), - [anon_sym_ATpush] = ACTIONS(1841), - [anon_sym_ATpushOnce] = ACTIONS(1844), - [anon_sym_ATpushIf] = ACTIONS(1847), - [anon_sym_ATprepend] = ACTIONS(1850), - [anon_sym_ATprependOnce] = ACTIONS(1853), - [anon_sym_ATelse] = ACTIONS(1856), - [aux_sym_conditional_keyword_token1] = ACTIONS(1859), - [anon_sym_ATif] = ACTIONS(1862), - [anon_sym_ATunless] = ACTIONS(1865), - [anon_sym_ATisset] = ACTIONS(1868), - [anon_sym_ATempty] = ACTIONS(1871), - [anon_sym_ATauth] = ACTIONS(1874), - [anon_sym_ATendauth] = ACTIONS(633), - [anon_sym_ATguest] = ACTIONS(1877), - [anon_sym_ATproduction] = ACTIONS(1880), - [anon_sym_ATenv] = ACTIONS(1883), - [anon_sym_AThasSection] = ACTIONS(1886), - [anon_sym_ATsectionMissing] = ACTIONS(1889), - [anon_sym_ATerror] = ACTIONS(1892), - [anon_sym_ATcan] = ACTIONS(1895), - [anon_sym_ATcannot] = ACTIONS(1898), - [anon_sym_ATcanany] = ACTIONS(1901), - [anon_sym_ATfeature] = ACTIONS(1904), - [aux_sym__custom_token1] = ACTIONS(1907), - [aux_sym__custom_token2] = ACTIONS(1910), - [anon_sym_ATswitch] = ACTIONS(1913), - [aux_sym_loop_operator_token1] = ACTIONS(1916), - [anon_sym_ATfor] = ACTIONS(1919), - [anon_sym_ATforeach] = ACTIONS(1922), - [anon_sym_ATforelse] = ACTIONS(1925), - [anon_sym_ATwhile] = ACTIONS(1928), - [anon_sym_ATsetup] = ACTIONS(1931), - [anon_sym_ATtask] = ACTIONS(1934), - [anon_sym_ATstory] = ACTIONS(1937), - [anon_sym_ATbefore] = ACTIONS(1940), - [anon_sym_ATafter] = ACTIONS(1943), - [anon_sym_ATsuccess] = ACTIONS(1946), - [anon_sym_ATfinished] = ACTIONS(1949), - [anon_sym_ATpersist] = ACTIONS(1952), - [anon_sym_ATteleport] = ACTIONS(1955), - [anon_sym_ATvolt] = ACTIONS(1958), - [aux_sym__text_token1] = ACTIONS(1961), - [aux_sym__text_token2] = ACTIONS(1961), - [aux_sym__text_token3] = ACTIONS(1964), + [sym_livewire] = STATE(103), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(103), + [sym_text] = STATE(103), + [sym__text] = STATE(711), + [aux_sym__if_statement_directive_body_repeat1] = STATE(103), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(1623), + [aux_sym_keyword_token1] = ACTIONS(1626), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1629), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1632), + [anon_sym_ATphp] = ACTIONS(1635), + [aux_sym_attribute_token1] = ACTIONS(1638), + [aux_sym__inline_directive_token1] = ACTIONS(1641), + [anon_sym_ATfragment] = ACTIONS(1644), + [anon_sym_ATsection] = ACTIONS(1647), + [anon_sym_ATonce] = ACTIONS(1650), + [anon_sym_ATverbatim] = ACTIONS(1653), + [anon_sym_ATpush] = ACTIONS(1656), + [anon_sym_ATpushOnce] = ACTIONS(1659), + [anon_sym_ATpushIf] = ACTIONS(1662), + [anon_sym_ATprepend] = ACTIONS(1665), + [anon_sym_ATprependOnce] = ACTIONS(1668), + [anon_sym_ATelse] = ACTIONS(1671), + [aux_sym_conditional_keyword_token1] = ACTIONS(1674), + [anon_sym_ATif] = ACTIONS(1677), + [anon_sym_ATunless] = ACTIONS(1680), + [anon_sym_ATisset] = ACTIONS(1683), + [anon_sym_ATempty] = ACTIONS(1686), + [anon_sym_ATauth] = ACTIONS(1689), + [anon_sym_ATendauth] = ACTIONS(966), + [anon_sym_ATguest] = ACTIONS(1692), + [anon_sym_ATproduction] = ACTIONS(1695), + [anon_sym_ATenv] = ACTIONS(1698), + [anon_sym_AThasSection] = ACTIONS(1701), + [anon_sym_ATsectionMissing] = ACTIONS(1704), + [anon_sym_ATerror] = ACTIONS(1707), + [anon_sym_ATcan] = ACTIONS(1710), + [anon_sym_ATcannot] = ACTIONS(1713), + [anon_sym_ATcanany] = ACTIONS(1716), + [anon_sym_ATfeature] = ACTIONS(1719), + [aux_sym__custom_token1] = ACTIONS(1722), + [aux_sym__custom_token2] = ACTIONS(1725), + [anon_sym_ATswitch] = ACTIONS(1728), + [aux_sym_loop_operator_token1] = ACTIONS(1731), + [anon_sym_ATfor] = ACTIONS(1734), + [anon_sym_ATforeach] = ACTIONS(1737), + [anon_sym_ATforelse] = ACTIONS(1740), + [anon_sym_ATwhile] = ACTIONS(1743), + [anon_sym_ATsetup] = ACTIONS(1746), + [anon_sym_ATtask] = ACTIONS(1749), + [anon_sym_ATstory] = ACTIONS(1752), + [anon_sym_ATbefore] = ACTIONS(1755), + [anon_sym_ATafter] = ACTIONS(1758), + [anon_sym_ATsuccess] = ACTIONS(1761), + [anon_sym_ATfinished] = ACTIONS(1764), + [anon_sym_ATpersist] = ACTIONS(1767), + [anon_sym_ATteleport] = ACTIONS(1770), + [anon_sym_ATvolt] = ACTIONS(1773), + [aux_sym_alpine_js_token1] = ACTIONS(1776), + [aux_sym__text_token1] = ACTIONS(1779), + [aux_sym__text_token2] = ACTIONS(1779), + [aux_sym__text_token3] = ACTIONS(1782), }, - [106] = { - [sym__definition] = STATE(105), - [sym_keyword] = STATE(105), - [sym_php_statement] = STATE(105), + [104] = { + [sym__definition] = STATE(103), + [sym_keyword] = STATE(103), + [sym_php_statement] = STATE(103), [sym__escaped] = STATE(766), [sym__unescaped] = STATE(766), [sym__raw] = STATE(766), [sym__inline_raw] = STATE(766), [sym__multi_line_raw] = STATE(766), - [sym_attribute] = STATE(105), - [sym__inline_directive] = STATE(105), - [sym__nested_directive] = STATE(105), - [sym_fragment] = STATE(105), - [sym_section] = STATE(105), - [sym_inlineSection] = STATE(105), - [sym_once] = STATE(105), - [sym_verbatim] = STATE(105), - [sym_stack] = STATE(105), + [sym_attribute] = STATE(103), + [sym__inline_directive] = STATE(103), + [sym__nested_directive] = STATE(103), + [sym_fragment] = STATE(103), + [sym_section] = STATE(103), + [sym_inlineSection] = STATE(103), + [sym_once] = STATE(103), + [sym_verbatim] = STATE(103), + [sym_stack] = STATE(103), [sym__push] = STATE(767), [sym__pushOnce] = STATE(767), [sym__pushIf] = STATE(767), [sym__prepend] = STATE(767), [sym__prependOnce] = STATE(767), - [sym_conditional] = STATE(105), - [sym_conditional_keyword] = STATE(105), + [sym_conditional] = STATE(103), + [sym_conditional_keyword] = STATE(103), [sym__if] = STATE(768), [sym__unless] = STATE(768), [sym__isset] = STATE(768), @@ -38709,101 +39143,353 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), - [sym_switch] = STATE(105), - [sym_loop] = STATE(105), - [sym_loop_operator] = STATE(105), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(105), + [sym_switch] = STATE(103), + [sym_loop] = STATE(103), + [sym_loop_operator] = STATE(103), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), + [sym_envoy] = STATE(103), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), [sym__envoy_error] = STATE(766), [sym__success] = STATE(766), [sym__finished] = STATE(766), - [sym_livewire] = STATE(105), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym_text] = STATE(105), - [sym__text] = STATE(706), - [aux_sym__if_statement_directive_body_repeat1] = STATE(105), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATendauth] = ACTIONS(1199), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [sym_livewire] = STATE(103), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(103), + [sym_text] = STATE(103), + [sym__text] = STATE(711), + [aux_sym__if_statement_directive_body_repeat1] = STATE(103), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(327), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATendauth] = ACTIONS(1169), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), + }, + [105] = { + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(1785), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), + }, + [106] = { + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(1787), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [107] = { [sym__definition] = STATE(107), [sym_keyword] = STATE(107), [sym_php_statement] = STATE(107), - [sym__escaped] = STATE(1249), - [sym__unescaped] = STATE(1249), - [sym__raw] = STATE(1249), - [sym__inline_raw] = STATE(1249), - [sym__multi_line_raw] = STATE(1249), + [sym__escaped] = STATE(1264), + [sym__unescaped] = STATE(1264), + [sym__raw] = STATE(1264), + [sym__inline_raw] = STATE(1264), + [sym__multi_line_raw] = STATE(1264), [sym_attribute] = STATE(107), [sym__inline_directive] = STATE(107), [sym__nested_directive] = STATE(107), @@ -38813,858 +39499,747 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(107), [sym_verbatim] = STATE(107), [sym_stack] = STATE(107), - [sym__push] = STATE(1250), - [sym__pushOnce] = STATE(1250), - [sym__pushIf] = STATE(1250), - [sym__prepend] = STATE(1250), - [sym__prependOnce] = STATE(1250), + [sym__push] = STATE(1265), + [sym__pushOnce] = STATE(1265), + [sym__pushIf] = STATE(1265), + [sym__prepend] = STATE(1265), + [sym__prependOnce] = STATE(1265), [sym_conditional] = STATE(107), [sym_conditional_keyword] = STATE(107), - [sym__if] = STATE(1251), - [sym__unless] = STATE(1251), - [sym__isset] = STATE(1251), - [sym__empty] = STATE(1251), - [sym__auth] = STATE(1251), - [sym__guest] = STATE(1251), - [sym__production] = STATE(1251), - [sym__env] = STATE(1251), - [sym__hasSection] = STATE(1251), - [sym__sectionMissing] = STATE(1251), - [sym__error] = STATE(1251), - [sym_authorization] = STATE(1251), - [sym__can] = STATE(1252), - [sym__cannot] = STATE(1252), - [sym__canany] = STATE(1252), - [sym__feature] = STATE(1251), - [sym__custom] = STATE(1251), + [sym__if] = STATE(1266), + [sym__unless] = STATE(1266), + [sym__isset] = STATE(1266), + [sym__empty] = STATE(1266), + [sym__auth] = STATE(1266), + [sym__guest] = STATE(1266), + [sym__production] = STATE(1266), + [sym__env] = STATE(1266), + [sym__hasSection] = STATE(1266), + [sym__sectionMissing] = STATE(1266), + [sym__error] = STATE(1266), + [sym_authorization] = STATE(1266), + [sym__can] = STATE(1267), + [sym__cannot] = STATE(1267), + [sym__canany] = STATE(1267), + [sym__feature] = STATE(1266), + [sym__custom] = STATE(1266), [sym_switch] = STATE(107), [sym_loop] = STATE(107), [sym_loop_operator] = STATE(107), - [sym__for] = STATE(1253), - [sym__foreach] = STATE(1253), - [sym__forelse] = STATE(1253), - [sym__while] = STATE(1253), + [sym__for] = STATE(1268), + [sym__foreach] = STATE(1268), + [sym__forelse] = STATE(1268), + [sym__while] = STATE(1268), [sym_envoy] = STATE(107), - [sym__setup] = STATE(1249), - [sym__task] = STATE(1254), - [sym__story] = STATE(1254), - [sym__hooks] = STATE(1249), - [sym__before] = STATE(1249), - [sym__after] = STATE(1249), - [sym__envoy_error] = STATE(1249), - [sym__success] = STATE(1249), - [sym__finished] = STATE(1249), + [sym__setup] = STATE(1264), + [sym__task] = STATE(1269), + [sym__story] = STATE(1269), + [sym__hooks] = STATE(1264), + [sym__before] = STATE(1264), + [sym__after] = STATE(1264), + [sym__envoy_error] = STATE(1264), + [sym__success] = STATE(1264), + [sym__finished] = STATE(1264), [sym_livewire] = STATE(107), - [sym__persist] = STATE(1255), - [sym__teleport] = STATE(1255), - [sym__volt] = STATE(1255), + [sym__persist] = STATE(1270), + [sym__teleport] = STATE(1270), + [sym__volt] = STATE(1270), + [sym_alpine_js] = STATE(107), [sym_text] = STATE(107), - [sym__text] = STATE(692), + [sym__text] = STATE(672), [aux_sym__if_statement_directive_body_repeat1] = STATE(107), - [aux_sym_php_only_repeat1] = STATE(692), - [sym_comment] = ACTIONS(1967), - [aux_sym_keyword_token1] = ACTIONS(1970), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1973), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1976), - [anon_sym_ATphp] = ACTIONS(1979), - [aux_sym_attribute_token1] = ACTIONS(1982), - [aux_sym__inline_directive_token1] = ACTIONS(1985), - [anon_sym_ATfragment] = ACTIONS(1988), - [anon_sym_ATsection] = ACTIONS(1991), - [anon_sym_ATonce] = ACTIONS(1994), - [anon_sym_ATverbatim] = ACTIONS(1997), - [anon_sym_ATpush] = ACTIONS(2000), - [anon_sym_ATpushOnce] = ACTIONS(2003), - [anon_sym_ATpushIf] = ACTIONS(2006), - [anon_sym_ATprepend] = ACTIONS(2009), - [anon_sym_ATprependOnce] = ACTIONS(2012), - [anon_sym_ATelse] = ACTIONS(2015), - [aux_sym_conditional_keyword_token1] = ACTIONS(2018), - [anon_sym_ATif] = ACTIONS(2021), - [anon_sym_ATendif] = ACTIONS(633), - [anon_sym_ATunless] = ACTIONS(2024), - [anon_sym_ATisset] = ACTIONS(2027), - [anon_sym_ATempty] = ACTIONS(2030), - [anon_sym_ATauth] = ACTIONS(2033), - [anon_sym_ATguest] = ACTIONS(2036), - [anon_sym_ATproduction] = ACTIONS(2039), - [anon_sym_ATenv] = ACTIONS(2042), - [anon_sym_AThasSection] = ACTIONS(2045), - [anon_sym_ATsectionMissing] = ACTIONS(2048), - [anon_sym_ATerror] = ACTIONS(2051), - [anon_sym_ATcan] = ACTIONS(2054), - [anon_sym_ATcannot] = ACTIONS(2057), - [anon_sym_ATcanany] = ACTIONS(2060), - [anon_sym_ATfeature] = ACTIONS(2063), - [aux_sym__custom_token1] = ACTIONS(2066), - [aux_sym__custom_token2] = ACTIONS(2069), - [anon_sym_ATswitch] = ACTIONS(2072), - [aux_sym_loop_operator_token1] = ACTIONS(2075), - [anon_sym_ATfor] = ACTIONS(2078), - [anon_sym_ATforeach] = ACTIONS(2081), - [anon_sym_ATforelse] = ACTIONS(2084), - [anon_sym_ATwhile] = ACTIONS(2087), - [anon_sym_ATsetup] = ACTIONS(2090), - [anon_sym_ATtask] = ACTIONS(2093), - [anon_sym_ATstory] = ACTIONS(2096), - [anon_sym_ATbefore] = ACTIONS(2099), - [anon_sym_ATafter] = ACTIONS(2102), - [anon_sym_ATsuccess] = ACTIONS(2105), - [anon_sym_ATfinished] = ACTIONS(2108), - [anon_sym_ATpersist] = ACTIONS(2111), - [anon_sym_ATteleport] = ACTIONS(2114), - [anon_sym_ATvolt] = ACTIONS(2117), - [aux_sym__text_token1] = ACTIONS(2120), - [aux_sym__text_token2] = ACTIONS(2120), - [aux_sym__text_token3] = ACTIONS(2123), + [aux_sym_php_only_repeat1] = STATE(672), + [sym_comment] = ACTIONS(1789), + [aux_sym_keyword_token1] = ACTIONS(1792), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1795), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1798), + [anon_sym_ATphp] = ACTIONS(1801), + [aux_sym_attribute_token1] = ACTIONS(1804), + [aux_sym__inline_directive_token1] = ACTIONS(1807), + [anon_sym_ATfragment] = ACTIONS(1810), + [anon_sym_ATsection] = ACTIONS(1813), + [anon_sym_ATonce] = ACTIONS(1816), + [anon_sym_ATverbatim] = ACTIONS(1819), + [anon_sym_ATpush] = ACTIONS(1822), + [anon_sym_ATpushOnce] = ACTIONS(1825), + [anon_sym_ATpushIf] = ACTIONS(1828), + [anon_sym_ATprepend] = ACTIONS(1831), + [anon_sym_ATprependOnce] = ACTIONS(1834), + [anon_sym_ATelse] = ACTIONS(1837), + [aux_sym_conditional_keyword_token1] = ACTIONS(1840), + [anon_sym_ATif] = ACTIONS(1843), + [anon_sym_ATendif] = ACTIONS(966), + [anon_sym_ATunless] = ACTIONS(1846), + [anon_sym_ATisset] = ACTIONS(1849), + [anon_sym_ATempty] = ACTIONS(1852), + [anon_sym_ATauth] = ACTIONS(1855), + [anon_sym_ATguest] = ACTIONS(1858), + [anon_sym_ATproduction] = ACTIONS(1861), + [anon_sym_ATenv] = ACTIONS(1864), + [anon_sym_AThasSection] = ACTIONS(1867), + [anon_sym_ATsectionMissing] = ACTIONS(1870), + [anon_sym_ATerror] = ACTIONS(1873), + [anon_sym_ATcan] = ACTIONS(1876), + [anon_sym_ATcannot] = ACTIONS(1879), + [anon_sym_ATcanany] = ACTIONS(1882), + [anon_sym_ATfeature] = ACTIONS(1885), + [aux_sym__custom_token1] = ACTIONS(1888), + [aux_sym__custom_token2] = ACTIONS(1891), + [anon_sym_ATswitch] = ACTIONS(1894), + [aux_sym_loop_operator_token1] = ACTIONS(1897), + [anon_sym_ATfor] = ACTIONS(1900), + [anon_sym_ATforeach] = ACTIONS(1903), + [anon_sym_ATforelse] = ACTIONS(1906), + [anon_sym_ATwhile] = ACTIONS(1909), + [anon_sym_ATsetup] = ACTIONS(1912), + [anon_sym_ATtask] = ACTIONS(1915), + [anon_sym_ATstory] = ACTIONS(1918), + [anon_sym_ATbefore] = ACTIONS(1921), + [anon_sym_ATafter] = ACTIONS(1924), + [anon_sym_ATsuccess] = ACTIONS(1927), + [anon_sym_ATfinished] = ACTIONS(1930), + [anon_sym_ATpersist] = ACTIONS(1933), + [anon_sym_ATteleport] = ACTIONS(1936), + [anon_sym_ATvolt] = ACTIONS(1939), + [aux_sym_alpine_js_token1] = ACTIONS(1942), + [aux_sym__text_token1] = ACTIONS(1945), + [aux_sym__text_token2] = ACTIONS(1945), + [aux_sym__text_token3] = ACTIONS(1948), }, [108] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(2126), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(1951), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [109] = { - [sym__definition] = STATE(121), - [sym_keyword] = STATE(121), - [sym_php_statement] = STATE(121), - [sym__escaped] = STATE(1845), - [sym__unescaped] = STATE(1845), - [sym__raw] = STATE(1845), - [sym__inline_raw] = STATE(1845), - [sym__multi_line_raw] = STATE(1845), - [sym_attribute] = STATE(121), - [sym__inline_directive] = STATE(121), - [sym__nested_directive] = STATE(121), - [sym_fragment] = STATE(121), - [sym_section] = STATE(121), - [sym_inlineSection] = STATE(121), - [sym_once] = STATE(121), - [sym_verbatim] = STATE(121), - [sym_stack] = STATE(121), - [sym__push] = STATE(1846), - [sym__pushOnce] = STATE(1846), - [sym__pushIf] = STATE(1846), - [sym__prepend] = STATE(1846), - [sym__prependOnce] = STATE(1846), - [sym_conditional] = STATE(121), - [sym_conditional_keyword] = STATE(121), - [sym__if] = STATE(1847), - [sym__unless] = STATE(1847), - [sym__isset] = STATE(1847), - [sym__empty] = STATE(1847), - [sym__auth] = STATE(1847), - [sym__guest] = STATE(1847), - [sym__production] = STATE(1847), - [sym__env] = STATE(1847), - [sym__hasSection] = STATE(1847), - [sym__sectionMissing] = STATE(1847), - [sym__error] = STATE(1847), - [sym_authorization] = STATE(1847), - [sym__can] = STATE(1848), - [sym__cannot] = STATE(1848), - [sym__canany] = STATE(1848), - [sym__feature] = STATE(1847), - [sym__custom] = STATE(1847), - [sym_switch] = STATE(121), - [sym_loop] = STATE(121), - [sym_loop_operator] = STATE(121), - [sym__for] = STATE(1849), - [sym__foreach] = STATE(1849), - [sym__forelse] = STATE(1849), - [sym__while] = STATE(1849), - [sym_envoy] = STATE(121), - [sym__setup] = STATE(1845), - [sym__task] = STATE(1850), - [sym__story] = STATE(1850), - [sym__hooks] = STATE(1845), - [sym__before] = STATE(1845), - [sym__after] = STATE(1845), - [sym__envoy_error] = STATE(1845), - [sym__success] = STATE(1845), - [sym__finished] = STATE(1845), - [sym_livewire] = STATE(121), - [sym__persist] = STATE(1851), - [sym__teleport] = STATE(1851), - [sym__volt] = STATE(1851), - [sym_text] = STATE(121), - [sym__text] = STATE(712), - [aux_sym__if_statement_directive_body_repeat1] = STATE(121), - [aux_sym_php_only_repeat1] = STATE(712), - [sym_comment] = ACTIONS(2128), - [aux_sym_keyword_token1] = ACTIONS(2130), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2132), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2134), - [anon_sym_ATphp] = ACTIONS(2136), - [aux_sym_attribute_token1] = ACTIONS(2138), - [aux_sym__inline_directive_token1] = ACTIONS(2140), - [anon_sym_ATfragment] = ACTIONS(2142), - [anon_sym_ATsection] = ACTIONS(2144), - [anon_sym_ATonce] = ACTIONS(2146), - [anon_sym_ATverbatim] = ACTIONS(2148), - [anon_sym_ATpush] = ACTIONS(2150), - [anon_sym_ATpushOnce] = ACTIONS(2152), - [anon_sym_ATpushIf] = ACTIONS(2154), - [anon_sym_ATprepend] = ACTIONS(2156), - [anon_sym_ATprependOnce] = ACTIONS(2158), - [anon_sym_ATelse] = ACTIONS(2160), - [aux_sym_conditional_keyword_token1] = ACTIONS(2162), - [anon_sym_ATif] = ACTIONS(2164), - [anon_sym_ATunless] = ACTIONS(2166), - [anon_sym_ATisset] = ACTIONS(2168), - [anon_sym_ATempty] = ACTIONS(2170), - [anon_sym_ATauth] = ACTIONS(2172), - [anon_sym_ATguest] = ACTIONS(2174), - [anon_sym_ATproduction] = ACTIONS(2176), - [anon_sym_ATenv] = ACTIONS(2178), - [anon_sym_AThasSection] = ACTIONS(2180), - [anon_sym_ATsectionMissing] = ACTIONS(2182), - [anon_sym_ATerror] = ACTIONS(2184), - [anon_sym_ATcan] = ACTIONS(2186), - [anon_sym_ATcannot] = ACTIONS(2188), - [anon_sym_ATendcannot] = ACTIONS(497), - [anon_sym_ATcanany] = ACTIONS(2190), - [anon_sym_ATfeature] = ACTIONS(2192), - [aux_sym__custom_token1] = ACTIONS(2194), - [aux_sym__custom_token2] = ACTIONS(2196), - [anon_sym_ATswitch] = ACTIONS(2198), - [aux_sym_loop_operator_token1] = ACTIONS(2200), - [anon_sym_ATfor] = ACTIONS(2202), - [anon_sym_ATforeach] = ACTIONS(2204), - [anon_sym_ATforelse] = ACTIONS(2206), - [anon_sym_ATwhile] = ACTIONS(2208), - [anon_sym_ATsetup] = ACTIONS(2210), - [anon_sym_ATtask] = ACTIONS(2212), - [anon_sym_ATstory] = ACTIONS(2214), - [anon_sym_ATbefore] = ACTIONS(2216), - [anon_sym_ATafter] = ACTIONS(2218), - [anon_sym_ATsuccess] = ACTIONS(2220), - [anon_sym_ATfinished] = ACTIONS(2222), - [anon_sym_ATpersist] = ACTIONS(2224), - [anon_sym_ATteleport] = ACTIONS(2226), - [anon_sym_ATvolt] = ACTIONS(2228), - [aux_sym__text_token1] = ACTIONS(2230), - [aux_sym__text_token2] = ACTIONS(2230), - [aux_sym__text_token3] = ACTIONS(2232), + [sym__definition] = STATE(86), + [sym_keyword] = STATE(86), + [sym_php_statement] = STATE(86), + [sym__escaped] = STATE(1867), + [sym__unescaped] = STATE(1867), + [sym__raw] = STATE(1867), + [sym__inline_raw] = STATE(1867), + [sym__multi_line_raw] = STATE(1867), + [sym_attribute] = STATE(86), + [sym__inline_directive] = STATE(86), + [sym__nested_directive] = STATE(86), + [sym_fragment] = STATE(86), + [sym_section] = STATE(86), + [sym_inlineSection] = STATE(86), + [sym_once] = STATE(86), + [sym_verbatim] = STATE(86), + [sym_stack] = STATE(86), + [sym__push] = STATE(1868), + [sym__pushOnce] = STATE(1868), + [sym__pushIf] = STATE(1868), + [sym__prepend] = STATE(1868), + [sym__prependOnce] = STATE(1868), + [sym_conditional] = STATE(86), + [sym_conditional_keyword] = STATE(86), + [sym__if] = STATE(1869), + [sym__unless] = STATE(1869), + [sym__isset] = STATE(1869), + [sym__empty] = STATE(1869), + [sym__auth] = STATE(1869), + [sym__guest] = STATE(1869), + [sym__production] = STATE(1869), + [sym__env] = STATE(1869), + [sym__hasSection] = STATE(1869), + [sym__sectionMissing] = STATE(1869), + [sym__error] = STATE(1869), + [sym_authorization] = STATE(1869), + [sym__can] = STATE(1870), + [sym__cannot] = STATE(1870), + [sym__canany] = STATE(1870), + [sym__feature] = STATE(1869), + [sym__custom] = STATE(1869), + [sym_switch] = STATE(86), + [sym_loop] = STATE(86), + [sym_loop_operator] = STATE(86), + [sym__for] = STATE(1871), + [sym__foreach] = STATE(1871), + [sym__forelse] = STATE(1871), + [sym__while] = STATE(1871), + [sym_envoy] = STATE(86), + [sym__setup] = STATE(1867), + [sym__task] = STATE(1872), + [sym__story] = STATE(1872), + [sym__hooks] = STATE(1867), + [sym__before] = STATE(1867), + [sym__after] = STATE(1867), + [sym__envoy_error] = STATE(1867), + [sym__success] = STATE(1867), + [sym__finished] = STATE(1867), + [sym_livewire] = STATE(86), + [sym__persist] = STATE(1873), + [sym__teleport] = STATE(1873), + [sym__volt] = STATE(1873), + [sym_alpine_js] = STATE(86), + [sym_text] = STATE(86), + [sym__text] = STATE(693), + [aux_sym__if_statement_directive_body_repeat1] = STATE(86), + [aux_sym_php_only_repeat1] = STATE(693), + [sym_comment] = ACTIONS(1953), + [aux_sym_keyword_token1] = ACTIONS(1057), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1061), + [anon_sym_ATphp] = ACTIONS(1063), + [aux_sym_attribute_token1] = ACTIONS(1065), + [aux_sym__inline_directive_token1] = ACTIONS(1067), + [anon_sym_ATfragment] = ACTIONS(1069), + [anon_sym_ATsection] = ACTIONS(1071), + [anon_sym_ATonce] = ACTIONS(1073), + [anon_sym_ATverbatim] = ACTIONS(1075), + [anon_sym_ATpush] = ACTIONS(1077), + [anon_sym_ATpushOnce] = ACTIONS(1079), + [anon_sym_ATpushIf] = ACTIONS(1081), + [anon_sym_ATprepend] = ACTIONS(1083), + [anon_sym_ATprependOnce] = ACTIONS(1085), + [anon_sym_ATelse] = ACTIONS(1087), + [aux_sym_conditional_keyword_token1] = ACTIONS(1089), + [anon_sym_ATif] = ACTIONS(1091), + [anon_sym_ATunless] = ACTIONS(1093), + [anon_sym_ATisset] = ACTIONS(1095), + [anon_sym_ATempty] = ACTIONS(1097), + [anon_sym_ATauth] = ACTIONS(1099), + [anon_sym_ATguest] = ACTIONS(1101), + [anon_sym_ATproduction] = ACTIONS(1103), + [anon_sym_ATenv] = ACTIONS(1105), + [anon_sym_AThasSection] = ACTIONS(1107), + [anon_sym_ATsectionMissing] = ACTIONS(1109), + [anon_sym_ATerror] = ACTIONS(1111), + [anon_sym_ATcan] = ACTIONS(1113), + [anon_sym_ATcannot] = ACTIONS(1115), + [anon_sym_ATendcannot] = ACTIONS(481), + [anon_sym_ATcanany] = ACTIONS(1117), + [anon_sym_ATfeature] = ACTIONS(1119), + [aux_sym__custom_token1] = ACTIONS(1121), + [aux_sym__custom_token2] = ACTIONS(1123), + [anon_sym_ATswitch] = ACTIONS(1125), + [aux_sym_loop_operator_token1] = ACTIONS(1127), + [anon_sym_ATfor] = ACTIONS(1129), + [anon_sym_ATforeach] = ACTIONS(1131), + [anon_sym_ATforelse] = ACTIONS(1133), + [anon_sym_ATwhile] = ACTIONS(1135), + [anon_sym_ATsetup] = ACTIONS(1137), + [anon_sym_ATtask] = ACTIONS(1139), + [anon_sym_ATstory] = ACTIONS(1141), + [anon_sym_ATbefore] = ACTIONS(1143), + [anon_sym_ATafter] = ACTIONS(1145), + [anon_sym_ATsuccess] = ACTIONS(1147), + [anon_sym_ATfinished] = ACTIONS(1149), + [anon_sym_ATpersist] = ACTIONS(1151), + [anon_sym_ATteleport] = ACTIONS(1153), + [anon_sym_ATvolt] = ACTIONS(1155), + [aux_sym_alpine_js_token1] = ACTIONS(1157), + [aux_sym__text_token1] = ACTIONS(1159), + [aux_sym__text_token2] = ACTIONS(1159), + [aux_sym__text_token3] = ACTIONS(1161), }, [110] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(2234), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(1955), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [111] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(2236), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(1957), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [112] = { - [sym__definition] = STATE(107), - [sym_keyword] = STATE(107), - [sym_php_statement] = STATE(107), - [sym__escaped] = STATE(1249), - [sym__unescaped] = STATE(1249), - [sym__raw] = STATE(1249), - [sym__inline_raw] = STATE(1249), - [sym__multi_line_raw] = STATE(1249), - [sym_attribute] = STATE(107), - [sym__inline_directive] = STATE(107), - [sym__nested_directive] = STATE(107), - [sym_fragment] = STATE(107), - [sym_section] = STATE(107), - [sym_inlineSection] = STATE(107), - [sym_once] = STATE(107), - [sym_verbatim] = STATE(107), - [sym_stack] = STATE(107), - [sym__push] = STATE(1250), - [sym__pushOnce] = STATE(1250), - [sym__pushIf] = STATE(1250), - [sym__prepend] = STATE(1250), - [sym__prependOnce] = STATE(1250), - [sym_conditional] = STATE(107), - [sym_conditional_keyword] = STATE(107), - [sym__if] = STATE(1251), - [sym__unless] = STATE(1251), - [sym__isset] = STATE(1251), - [sym__empty] = STATE(1251), - [sym__auth] = STATE(1251), - [sym__guest] = STATE(1251), - [sym__production] = STATE(1251), - [sym__env] = STATE(1251), - [sym__hasSection] = STATE(1251), - [sym__sectionMissing] = STATE(1251), - [sym__error] = STATE(1251), - [sym_authorization] = STATE(1251), - [sym__can] = STATE(1252), - [sym__cannot] = STATE(1252), - [sym__canany] = STATE(1252), - [sym__feature] = STATE(1251), - [sym__custom] = STATE(1251), - [sym_switch] = STATE(107), - [sym_loop] = STATE(107), - [sym_loop_operator] = STATE(107), - [sym__for] = STATE(1253), - [sym__foreach] = STATE(1253), - [sym__forelse] = STATE(1253), - [sym__while] = STATE(1253), - [sym_envoy] = STATE(107), - [sym__setup] = STATE(1249), - [sym__task] = STATE(1254), - [sym__story] = STATE(1254), - [sym__hooks] = STATE(1249), - [sym__before] = STATE(1249), - [sym__after] = STATE(1249), - [sym__envoy_error] = STATE(1249), - [sym__success] = STATE(1249), - [sym__finished] = STATE(1249), - [sym_livewire] = STATE(107), - [sym__persist] = STATE(1255), - [sym__teleport] = STATE(1255), - [sym__volt] = STATE(1255), - [sym_text] = STATE(107), - [sym__text] = STATE(692), - [aux_sym__if_statement_directive_body_repeat1] = STATE(107), - [aux_sym_php_only_repeat1] = STATE(692), - [sym_comment] = ACTIONS(2238), - [aux_sym_keyword_token1] = ACTIONS(824), - [anon_sym_LBRACE_LBRACE] = ACTIONS(826), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(828), - [anon_sym_ATphp] = ACTIONS(830), - [aux_sym_attribute_token1] = ACTIONS(832), - [aux_sym__inline_directive_token1] = ACTIONS(834), - [anon_sym_ATfragment] = ACTIONS(836), - [anon_sym_ATsection] = ACTIONS(838), - [anon_sym_ATonce] = ACTIONS(840), - [anon_sym_ATverbatim] = ACTIONS(842), - [anon_sym_ATpush] = ACTIONS(844), - [anon_sym_ATpushOnce] = ACTIONS(846), - [anon_sym_ATpushIf] = ACTIONS(848), - [anon_sym_ATprepend] = ACTIONS(850), - [anon_sym_ATprependOnce] = ACTIONS(852), - [anon_sym_ATelse] = ACTIONS(854), - [aux_sym_conditional_keyword_token1] = ACTIONS(856), - [anon_sym_ATif] = ACTIONS(858), - [anon_sym_ATendif] = ACTIONS(497), - [anon_sym_ATunless] = ACTIONS(860), - [anon_sym_ATisset] = ACTIONS(862), - [anon_sym_ATempty] = ACTIONS(864), - [anon_sym_ATauth] = ACTIONS(866), - [anon_sym_ATguest] = ACTIONS(868), - [anon_sym_ATproduction] = ACTIONS(870), - [anon_sym_ATenv] = ACTIONS(872), - [anon_sym_AThasSection] = ACTIONS(874), - [anon_sym_ATsectionMissing] = ACTIONS(876), - [anon_sym_ATerror] = ACTIONS(878), - [anon_sym_ATcan] = ACTIONS(880), - [anon_sym_ATcannot] = ACTIONS(882), - [anon_sym_ATcanany] = ACTIONS(884), - [anon_sym_ATfeature] = ACTIONS(886), - [aux_sym__custom_token1] = ACTIONS(888), - [aux_sym__custom_token2] = ACTIONS(890), - [anon_sym_ATswitch] = ACTIONS(892), - [aux_sym_loop_operator_token1] = ACTIONS(894), - [anon_sym_ATfor] = ACTIONS(896), - [anon_sym_ATforeach] = ACTIONS(898), - [anon_sym_ATforelse] = ACTIONS(900), - [anon_sym_ATwhile] = ACTIONS(902), - [anon_sym_ATsetup] = ACTIONS(904), - [anon_sym_ATtask] = ACTIONS(906), - [anon_sym_ATstory] = ACTIONS(908), - [anon_sym_ATbefore] = ACTIONS(910), - [anon_sym_ATafter] = ACTIONS(912), - [anon_sym_ATsuccess] = ACTIONS(914), - [anon_sym_ATfinished] = ACTIONS(916), - [anon_sym_ATpersist] = ACTIONS(918), - [anon_sym_ATteleport] = ACTIONS(920), - [anon_sym_ATvolt] = ACTIONS(922), - [aux_sym__text_token1] = ACTIONS(924), - [aux_sym__text_token2] = ACTIONS(924), - [aux_sym__text_token3] = ACTIONS(926), + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(1959), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [113] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(2240), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), - }, - [114] = { [sym__definition] = STATE(118), [sym_keyword] = STATE(118), [sym_php_statement] = STATE(118), - [sym__escaped] = STATE(1511), - [sym__unescaped] = STATE(1511), - [sym__raw] = STATE(1511), - [sym__inline_raw] = STATE(1511), - [sym__multi_line_raw] = STATE(1511), + [sym__escaped] = STATE(1529), + [sym__unescaped] = STATE(1529), + [sym__raw] = STATE(1529), + [sym__inline_raw] = STATE(1529), + [sym__multi_line_raw] = STATE(1529), [sym_attribute] = STATE(118), [sym__inline_directive] = STATE(118), [sym__nested_directive] = STATE(118), @@ -39674,489 +40249,622 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(118), [sym_verbatim] = STATE(118), [sym_stack] = STATE(118), - [sym__push] = STATE(1512), - [sym__pushOnce] = STATE(1512), - [sym__pushIf] = STATE(1512), - [sym__prepend] = STATE(1512), - [sym__prependOnce] = STATE(1512), + [sym__push] = STATE(1530), + [sym__pushOnce] = STATE(1530), + [sym__pushIf] = STATE(1530), + [sym__prepend] = STATE(1530), + [sym__prependOnce] = STATE(1530), [sym_conditional] = STATE(118), [sym_conditional_keyword] = STATE(118), - [sym__if] = STATE(1513), - [sym__unless] = STATE(1513), - [sym__isset] = STATE(1513), - [sym__empty] = STATE(1513), - [sym__auth] = STATE(1513), - [sym__guest] = STATE(1513), - [sym__production] = STATE(1513), - [sym__env] = STATE(1513), - [sym__hasSection] = STATE(1513), - [sym__sectionMissing] = STATE(1513), - [sym__error] = STATE(1513), - [sym_authorization] = STATE(1513), - [sym__can] = STATE(1514), - [sym__cannot] = STATE(1514), - [sym__canany] = STATE(1514), - [sym__feature] = STATE(1513), - [sym__custom] = STATE(1513), + [sym__if] = STATE(1531), + [sym__unless] = STATE(1531), + [sym__isset] = STATE(1531), + [sym__empty] = STATE(1531), + [sym__auth] = STATE(1531), + [sym__guest] = STATE(1531), + [sym__production] = STATE(1531), + [sym__env] = STATE(1531), + [sym__hasSection] = STATE(1531), + [sym__sectionMissing] = STATE(1531), + [sym__error] = STATE(1531), + [sym_authorization] = STATE(1531), + [sym__can] = STATE(1532), + [sym__cannot] = STATE(1532), + [sym__canany] = STATE(1532), + [sym__feature] = STATE(1531), + [sym__custom] = STATE(1531), [sym_switch] = STATE(118), [sym_loop] = STATE(118), [sym_loop_operator] = STATE(118), - [sym__for] = STATE(1515), - [sym__foreach] = STATE(1515), - [sym__forelse] = STATE(1515), - [sym__while] = STATE(1515), + [sym__for] = STATE(1533), + [sym__foreach] = STATE(1533), + [sym__forelse] = STATE(1533), + [sym__while] = STATE(1533), [sym_envoy] = STATE(118), - [sym__setup] = STATE(1511), - [sym__task] = STATE(1516), - [sym__story] = STATE(1516), - [sym__hooks] = STATE(1511), - [sym__before] = STATE(1511), - [sym__after] = STATE(1511), - [sym__envoy_error] = STATE(1511), - [sym__success] = STATE(1511), - [sym__finished] = STATE(1511), + [sym__setup] = STATE(1529), + [sym__task] = STATE(1534), + [sym__story] = STATE(1534), + [sym__hooks] = STATE(1529), + [sym__before] = STATE(1529), + [sym__after] = STATE(1529), + [sym__envoy_error] = STATE(1529), + [sym__success] = STATE(1529), + [sym__finished] = STATE(1529), [sym_livewire] = STATE(118), - [sym__persist] = STATE(1517), - [sym__teleport] = STATE(1517), - [sym__volt] = STATE(1517), + [sym__persist] = STATE(1535), + [sym__teleport] = STATE(1535), + [sym__volt] = STATE(1535), + [sym_alpine_js] = STATE(118), [sym_text] = STATE(118), - [sym__text] = STATE(677), + [sym__text] = STATE(676), [aux_sym__if_statement_directive_body_repeat1] = STATE(118), - [aux_sym_php_only_repeat1] = STATE(677), - [sym_comment] = ACTIONS(2242), - [aux_sym_keyword_token1] = ACTIONS(2244), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2246), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2248), - [anon_sym_ATphp] = ACTIONS(2250), - [aux_sym_attribute_token1] = ACTIONS(2252), - [aux_sym__inline_directive_token1] = ACTIONS(2254), - [anon_sym_ATfragment] = ACTIONS(2256), - [anon_sym_ATsection] = ACTIONS(2258), - [anon_sym_ATonce] = ACTIONS(2260), - [anon_sym_ATverbatim] = ACTIONS(2262), - [anon_sym_ATpush] = ACTIONS(2264), - [anon_sym_ATpushOnce] = ACTIONS(2266), - [anon_sym_ATpushIf] = ACTIONS(2268), - [anon_sym_ATprepend] = ACTIONS(2270), - [anon_sym_ATprependOnce] = ACTIONS(2272), - [anon_sym_ATelse] = ACTIONS(2274), - [aux_sym_conditional_keyword_token1] = ACTIONS(2276), - [anon_sym_ATif] = ACTIONS(2278), - [anon_sym_ATunless] = ACTIONS(2280), - [anon_sym_ATisset] = ACTIONS(2282), - [anon_sym_ATempty] = ACTIONS(2284), - [anon_sym_ATendempty] = ACTIONS(706), - [anon_sym_ATauth] = ACTIONS(2286), - [anon_sym_ATguest] = ACTIONS(2288), - [anon_sym_ATproduction] = ACTIONS(2290), - [anon_sym_ATenv] = ACTIONS(2292), - [anon_sym_AThasSection] = ACTIONS(2294), - [anon_sym_ATsectionMissing] = ACTIONS(2296), - [anon_sym_ATerror] = ACTIONS(2298), - [anon_sym_ATcan] = ACTIONS(2300), - [anon_sym_ATcannot] = ACTIONS(2302), - [anon_sym_ATcanany] = ACTIONS(2304), - [anon_sym_ATfeature] = ACTIONS(2306), - [aux_sym__custom_token1] = ACTIONS(2308), - [aux_sym__custom_token2] = ACTIONS(2310), - [anon_sym_ATswitch] = ACTIONS(2312), - [aux_sym_loop_operator_token1] = ACTIONS(2314), - [anon_sym_ATfor] = ACTIONS(2316), - [anon_sym_ATforeach] = ACTIONS(2318), - [anon_sym_ATforelse] = ACTIONS(2320), - [anon_sym_ATwhile] = ACTIONS(2322), - [anon_sym_ATsetup] = ACTIONS(2324), - [anon_sym_ATtask] = ACTIONS(2326), - [anon_sym_ATstory] = ACTIONS(2328), - [anon_sym_ATbefore] = ACTIONS(2330), - [anon_sym_ATafter] = ACTIONS(2332), - [anon_sym_ATsuccess] = ACTIONS(2334), - [anon_sym_ATfinished] = ACTIONS(2336), - [anon_sym_ATpersist] = ACTIONS(2338), - [anon_sym_ATteleport] = ACTIONS(2340), - [anon_sym_ATvolt] = ACTIONS(2342), - [aux_sym__text_token1] = ACTIONS(2344), - [aux_sym__text_token2] = ACTIONS(2344), - [aux_sym__text_token3] = ACTIONS(2346), + [aux_sym_php_only_repeat1] = STATE(676), + [sym_comment] = ACTIONS(1961), + [aux_sym_keyword_token1] = ACTIONS(1963), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1965), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1967), + [anon_sym_ATphp] = ACTIONS(1969), + [aux_sym_attribute_token1] = ACTIONS(1971), + [aux_sym__inline_directive_token1] = ACTIONS(1973), + [anon_sym_ATfragment] = ACTIONS(1975), + [anon_sym_ATsection] = ACTIONS(1977), + [anon_sym_ATonce] = ACTIONS(1979), + [anon_sym_ATverbatim] = ACTIONS(1981), + [anon_sym_ATpush] = ACTIONS(1983), + [anon_sym_ATpushOnce] = ACTIONS(1985), + [anon_sym_ATpushIf] = ACTIONS(1987), + [anon_sym_ATprepend] = ACTIONS(1989), + [anon_sym_ATprependOnce] = ACTIONS(1991), + [anon_sym_ATelse] = ACTIONS(1993), + [aux_sym_conditional_keyword_token1] = ACTIONS(1995), + [anon_sym_ATif] = ACTIONS(1997), + [anon_sym_ATunless] = ACTIONS(1999), + [anon_sym_ATisset] = ACTIONS(2001), + [anon_sym_ATempty] = ACTIONS(2003), + [anon_sym_ATendempty] = ACTIONS(481), + [anon_sym_ATauth] = ACTIONS(2005), + [anon_sym_ATguest] = ACTIONS(2007), + [anon_sym_ATproduction] = ACTIONS(2009), + [anon_sym_ATenv] = ACTIONS(2011), + [anon_sym_AThasSection] = ACTIONS(2013), + [anon_sym_ATsectionMissing] = ACTIONS(2015), + [anon_sym_ATerror] = ACTIONS(2017), + [anon_sym_ATcan] = ACTIONS(2019), + [anon_sym_ATcannot] = ACTIONS(2021), + [anon_sym_ATcanany] = ACTIONS(2023), + [anon_sym_ATfeature] = ACTIONS(2025), + [aux_sym__custom_token1] = ACTIONS(2027), + [aux_sym__custom_token2] = ACTIONS(2029), + [anon_sym_ATswitch] = ACTIONS(2031), + [aux_sym_loop_operator_token1] = ACTIONS(2033), + [anon_sym_ATfor] = ACTIONS(2035), + [anon_sym_ATforeach] = ACTIONS(2037), + [anon_sym_ATforelse] = ACTIONS(2039), + [anon_sym_ATwhile] = ACTIONS(2041), + [anon_sym_ATsetup] = ACTIONS(2043), + [anon_sym_ATtask] = ACTIONS(2045), + [anon_sym_ATstory] = ACTIONS(2047), + [anon_sym_ATbefore] = ACTIONS(2049), + [anon_sym_ATafter] = ACTIONS(2051), + [anon_sym_ATsuccess] = ACTIONS(2053), + [anon_sym_ATfinished] = ACTIONS(2055), + [anon_sym_ATpersist] = ACTIONS(2057), + [anon_sym_ATteleport] = ACTIONS(2059), + [anon_sym_ATvolt] = ACTIONS(2061), + [aux_sym_alpine_js_token1] = ACTIONS(2063), + [aux_sym__text_token1] = ACTIONS(2065), + [aux_sym__text_token2] = ACTIONS(2065), + [aux_sym__text_token3] = ACTIONS(2067), + }, + [114] = { + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(2069), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [115] = { - [sym__definition] = STATE(109), - [sym_keyword] = STATE(109), - [sym_php_statement] = STATE(109), - [sym__escaped] = STATE(1845), - [sym__unescaped] = STATE(1845), - [sym__raw] = STATE(1845), - [sym__inline_raw] = STATE(1845), - [sym__multi_line_raw] = STATE(1845), - [sym_attribute] = STATE(109), - [sym__inline_directive] = STATE(109), - [sym__nested_directive] = STATE(109), - [sym_fragment] = STATE(109), - [sym_section] = STATE(109), - [sym_inlineSection] = STATE(109), - [sym_once] = STATE(109), - [sym_verbatim] = STATE(109), - [sym_stack] = STATE(109), - [sym__push] = STATE(1846), - [sym__pushOnce] = STATE(1846), - [sym__pushIf] = STATE(1846), - [sym__prepend] = STATE(1846), - [sym__prependOnce] = STATE(1846), - [sym_conditional] = STATE(109), - [sym_conditional_keyword] = STATE(109), - [sym__if] = STATE(1847), - [sym__unless] = STATE(1847), - [sym__isset] = STATE(1847), - [sym__empty] = STATE(1847), - [sym__auth] = STATE(1847), - [sym__guest] = STATE(1847), - [sym__production] = STATE(1847), - [sym__env] = STATE(1847), - [sym__hasSection] = STATE(1847), - [sym__sectionMissing] = STATE(1847), - [sym__error] = STATE(1847), - [sym_authorization] = STATE(1847), - [sym__can] = STATE(1848), - [sym__cannot] = STATE(1848), - [sym__canany] = STATE(1848), - [sym__feature] = STATE(1847), - [sym__custom] = STATE(1847), - [sym_switch] = STATE(109), - [sym_loop] = STATE(109), - [sym_loop_operator] = STATE(109), - [sym__for] = STATE(1849), - [sym__foreach] = STATE(1849), - [sym__forelse] = STATE(1849), - [sym__while] = STATE(1849), - [sym_envoy] = STATE(109), - [sym__setup] = STATE(1845), - [sym__task] = STATE(1850), - [sym__story] = STATE(1850), - [sym__hooks] = STATE(1845), - [sym__before] = STATE(1845), - [sym__after] = STATE(1845), - [sym__envoy_error] = STATE(1845), - [sym__success] = STATE(1845), - [sym__finished] = STATE(1845), - [sym_livewire] = STATE(109), - [sym__persist] = STATE(1851), - [sym__teleport] = STATE(1851), - [sym__volt] = STATE(1851), - [sym_text] = STATE(109), - [sym__text] = STATE(712), - [aux_sym__if_statement_directive_body_repeat1] = STATE(109), - [aux_sym_php_only_repeat1] = STATE(712), - [sym_comment] = ACTIONS(2348), - [aux_sym_keyword_token1] = ACTIONS(2130), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2132), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2134), - [anon_sym_ATphp] = ACTIONS(2136), - [aux_sym_attribute_token1] = ACTIONS(2138), - [aux_sym__inline_directive_token1] = ACTIONS(2140), - [anon_sym_ATfragment] = ACTIONS(2142), - [anon_sym_ATsection] = ACTIONS(2144), - [anon_sym_ATonce] = ACTIONS(2146), - [anon_sym_ATverbatim] = ACTIONS(2148), - [anon_sym_ATpush] = ACTIONS(2150), - [anon_sym_ATpushOnce] = ACTIONS(2152), - [anon_sym_ATpushIf] = ACTIONS(2154), - [anon_sym_ATprepend] = ACTIONS(2156), - [anon_sym_ATprependOnce] = ACTIONS(2158), - [anon_sym_ATelse] = ACTIONS(2160), - [aux_sym_conditional_keyword_token1] = ACTIONS(2162), - [anon_sym_ATif] = ACTIONS(2164), - [anon_sym_ATunless] = ACTIONS(2166), - [anon_sym_ATisset] = ACTIONS(2168), - [anon_sym_ATempty] = ACTIONS(2170), - [anon_sym_ATauth] = ACTIONS(2172), - [anon_sym_ATguest] = ACTIONS(2174), - [anon_sym_ATproduction] = ACTIONS(2176), - [anon_sym_ATenv] = ACTIONS(2178), - [anon_sym_AThasSection] = ACTIONS(2180), - [anon_sym_ATsectionMissing] = ACTIONS(2182), - [anon_sym_ATerror] = ACTIONS(2184), - [anon_sym_ATcan] = ACTIONS(2186), - [anon_sym_ATcannot] = ACTIONS(2188), - [anon_sym_ATendcannot] = ACTIONS(706), - [anon_sym_ATcanany] = ACTIONS(2190), - [anon_sym_ATfeature] = ACTIONS(2192), - [aux_sym__custom_token1] = ACTIONS(2194), - [aux_sym__custom_token2] = ACTIONS(2196), - [anon_sym_ATswitch] = ACTIONS(2198), - [aux_sym_loop_operator_token1] = ACTIONS(2200), - [anon_sym_ATfor] = ACTIONS(2202), - [anon_sym_ATforeach] = ACTIONS(2204), - [anon_sym_ATforelse] = ACTIONS(2206), - [anon_sym_ATwhile] = ACTIONS(2208), - [anon_sym_ATsetup] = ACTIONS(2210), - [anon_sym_ATtask] = ACTIONS(2212), - [anon_sym_ATstory] = ACTIONS(2214), - [anon_sym_ATbefore] = ACTIONS(2216), - [anon_sym_ATafter] = ACTIONS(2218), - [anon_sym_ATsuccess] = ACTIONS(2220), - [anon_sym_ATfinished] = ACTIONS(2222), - [anon_sym_ATpersist] = ACTIONS(2224), - [anon_sym_ATteleport] = ACTIONS(2226), - [anon_sym_ATvolt] = ACTIONS(2228), - [aux_sym__text_token1] = ACTIONS(2230), - [aux_sym__text_token2] = ACTIONS(2230), - [aux_sym__text_token3] = ACTIONS(2232), + [sym__definition] = STATE(115), + [sym_keyword] = STATE(115), + [sym_php_statement] = STATE(115), + [sym__escaped] = STATE(1615), + [sym__unescaped] = STATE(1615), + [sym__raw] = STATE(1615), + [sym__inline_raw] = STATE(1615), + [sym__multi_line_raw] = STATE(1615), + [sym_attribute] = STATE(115), + [sym__inline_directive] = STATE(115), + [sym__nested_directive] = STATE(115), + [sym_fragment] = STATE(115), + [sym_section] = STATE(115), + [sym_inlineSection] = STATE(115), + [sym_once] = STATE(115), + [sym_verbatim] = STATE(115), + [sym_stack] = STATE(115), + [sym__push] = STATE(1616), + [sym__pushOnce] = STATE(1616), + [sym__pushIf] = STATE(1616), + [sym__prepend] = STATE(1616), + [sym__prependOnce] = STATE(1616), + [sym_conditional] = STATE(115), + [sym_conditional_keyword] = STATE(115), + [sym__if] = STATE(1617), + [sym__unless] = STATE(1617), + [sym__isset] = STATE(1617), + [sym__empty] = STATE(1617), + [sym__auth] = STATE(1617), + [sym__guest] = STATE(1617), + [sym__production] = STATE(1617), + [sym__env] = STATE(1617), + [sym__hasSection] = STATE(1617), + [sym__sectionMissing] = STATE(1617), + [sym__error] = STATE(1617), + [sym_authorization] = STATE(1617), + [sym__can] = STATE(1618), + [sym__cannot] = STATE(1618), + [sym__canany] = STATE(1618), + [sym__feature] = STATE(1617), + [sym__custom] = STATE(1617), + [sym_switch] = STATE(115), + [sym_loop] = STATE(115), + [sym_loop_operator] = STATE(115), + [sym__for] = STATE(1619), + [sym__foreach] = STATE(1619), + [sym__forelse] = STATE(1619), + [sym__while] = STATE(1619), + [sym_envoy] = STATE(115), + [sym__setup] = STATE(1615), + [sym__task] = STATE(1620), + [sym__story] = STATE(1620), + [sym__hooks] = STATE(1615), + [sym__before] = STATE(1615), + [sym__after] = STATE(1615), + [sym__envoy_error] = STATE(1615), + [sym__success] = STATE(1615), + [sym__finished] = STATE(1615), + [sym_livewire] = STATE(115), + [sym__persist] = STATE(1621), + [sym__teleport] = STATE(1621), + [sym__volt] = STATE(1621), + [sym_alpine_js] = STATE(115), + [sym_text] = STATE(115), + [sym__text] = STATE(699), + [aux_sym__if_statement_directive_body_repeat1] = STATE(115), + [aux_sym_php_only_repeat1] = STATE(699), + [sym_comment] = ACTIONS(2071), + [aux_sym_keyword_token1] = ACTIONS(2074), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2080), + [anon_sym_ATphp] = ACTIONS(2083), + [aux_sym_attribute_token1] = ACTIONS(2086), + [aux_sym__inline_directive_token1] = ACTIONS(2089), + [anon_sym_ATfragment] = ACTIONS(2092), + [anon_sym_ATsection] = ACTIONS(2095), + [anon_sym_ATonce] = ACTIONS(2098), + [anon_sym_ATverbatim] = ACTIONS(2101), + [anon_sym_ATpush] = ACTIONS(2104), + [anon_sym_ATpushOnce] = ACTIONS(2107), + [anon_sym_ATpushIf] = ACTIONS(2110), + [anon_sym_ATprepend] = ACTIONS(2113), + [anon_sym_ATprependOnce] = ACTIONS(2116), + [anon_sym_ATelse] = ACTIONS(2119), + [aux_sym_conditional_keyword_token1] = ACTIONS(2122), + [anon_sym_ATif] = ACTIONS(2125), + [anon_sym_ATunless] = ACTIONS(2128), + [anon_sym_ATisset] = ACTIONS(2131), + [anon_sym_ATempty] = ACTIONS(2134), + [anon_sym_ATauth] = ACTIONS(2137), + [anon_sym_ATguest] = ACTIONS(2140), + [anon_sym_ATproduction] = ACTIONS(2143), + [anon_sym_ATenv] = ACTIONS(2146), + [anon_sym_ATendenv] = ACTIONS(966), + [anon_sym_AThasSection] = ACTIONS(2149), + [anon_sym_ATsectionMissing] = ACTIONS(2152), + [anon_sym_ATerror] = ACTIONS(2155), + [anon_sym_ATcan] = ACTIONS(2158), + [anon_sym_ATcannot] = ACTIONS(2161), + [anon_sym_ATcanany] = ACTIONS(2164), + [anon_sym_ATfeature] = ACTIONS(2167), + [aux_sym__custom_token1] = ACTIONS(2170), + [aux_sym__custom_token2] = ACTIONS(2173), + [anon_sym_ATswitch] = ACTIONS(2176), + [aux_sym_loop_operator_token1] = ACTIONS(2179), + [anon_sym_ATfor] = ACTIONS(2182), + [anon_sym_ATforeach] = ACTIONS(2185), + [anon_sym_ATforelse] = ACTIONS(2188), + [anon_sym_ATwhile] = ACTIONS(2191), + [anon_sym_ATsetup] = ACTIONS(2194), + [anon_sym_ATtask] = ACTIONS(2197), + [anon_sym_ATstory] = ACTIONS(2200), + [anon_sym_ATbefore] = ACTIONS(2203), + [anon_sym_ATafter] = ACTIONS(2206), + [anon_sym_ATsuccess] = ACTIONS(2209), + [anon_sym_ATfinished] = ACTIONS(2212), + [anon_sym_ATpersist] = ACTIONS(2215), + [anon_sym_ATteleport] = ACTIONS(2218), + [anon_sym_ATvolt] = ACTIONS(2221), + [aux_sym_alpine_js_token1] = ACTIONS(2224), + [aux_sym__text_token1] = ACTIONS(2227), + [aux_sym__text_token2] = ACTIONS(2227), + [aux_sym__text_token3] = ACTIONS(2230), }, [116] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(2350), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(2233), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [117] = { - [sym__definition] = STATE(76), - [sym_keyword] = STATE(76), - [sym_php_statement] = STATE(76), - [sym__escaped] = STATE(1762), - [sym__unescaped] = STATE(1762), - [sym__raw] = STATE(1762), - [sym__inline_raw] = STATE(1762), - [sym__multi_line_raw] = STATE(1762), - [sym_attribute] = STATE(76), - [sym__inline_directive] = STATE(76), - [sym__nested_directive] = STATE(76), - [sym_fragment] = STATE(76), - [sym_section] = STATE(76), - [sym_inlineSection] = STATE(76), - [sym_once] = STATE(76), - [sym_verbatim] = STATE(76), - [sym_stack] = STATE(76), - [sym__push] = STATE(1763), - [sym__pushOnce] = STATE(1763), - [sym__pushIf] = STATE(1763), - [sym__prepend] = STATE(1763), - [sym__prependOnce] = STATE(1763), - [sym_conditional] = STATE(76), - [sym_conditional_keyword] = STATE(76), - [sym__if] = STATE(1764), - [sym__unless] = STATE(1764), - [sym__isset] = STATE(1764), - [sym__empty] = STATE(1764), - [sym__auth] = STATE(1764), - [sym__guest] = STATE(1764), - [sym__production] = STATE(1764), - [sym__env] = STATE(1764), - [sym__hasSection] = STATE(1764), - [sym__sectionMissing] = STATE(1764), - [sym__error] = STATE(1764), - [sym_authorization] = STATE(1764), - [sym__can] = STATE(1765), - [sym__cannot] = STATE(1765), - [sym__canany] = STATE(1765), - [sym__feature] = STATE(1764), - [sym__custom] = STATE(1764), - [sym_switch] = STATE(76), - [sym_loop] = STATE(76), - [sym_loop_operator] = STATE(76), - [sym__for] = STATE(1766), - [sym__foreach] = STATE(1766), - [sym__forelse] = STATE(1766), - [sym__while] = STATE(1766), - [sym_envoy] = STATE(76), - [sym__setup] = STATE(1762), - [sym__task] = STATE(1767), - [sym__story] = STATE(1767), - [sym__hooks] = STATE(1762), - [sym__before] = STATE(1762), - [sym__after] = STATE(1762), - [sym__envoy_error] = STATE(1762), - [sym__success] = STATE(1762), - [sym__finished] = STATE(1762), - [sym_livewire] = STATE(76), - [sym__persist] = STATE(1768), - [sym__teleport] = STATE(1768), - [sym__volt] = STATE(1768), - [sym_text] = STATE(76), - [sym__text] = STATE(725), - [aux_sym__if_statement_directive_body_repeat1] = STATE(76), - [aux_sym_php_only_repeat1] = STATE(725), - [sym_comment] = ACTIONS(2352), - [aux_sym_keyword_token1] = ACTIONS(2354), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2356), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2358), - [anon_sym_ATphp] = ACTIONS(2360), - [aux_sym_attribute_token1] = ACTIONS(2362), - [aux_sym__inline_directive_token1] = ACTIONS(2364), - [anon_sym_ATfragment] = ACTIONS(2366), - [anon_sym_ATsection] = ACTIONS(2368), - [anon_sym_ATonce] = ACTIONS(2370), - [anon_sym_ATverbatim] = ACTIONS(2372), - [anon_sym_ATpush] = ACTIONS(2374), - [anon_sym_ATpushOnce] = ACTIONS(2376), - [anon_sym_ATpushIf] = ACTIONS(2378), - [anon_sym_ATprepend] = ACTIONS(2380), - [anon_sym_ATprependOnce] = ACTIONS(2382), - [anon_sym_ATelse] = ACTIONS(2384), - [aux_sym_conditional_keyword_token1] = ACTIONS(2386), - [anon_sym_ATif] = ACTIONS(2388), - [anon_sym_ATunless] = ACTIONS(2390), - [anon_sym_ATisset] = ACTIONS(2392), - [anon_sym_ATempty] = ACTIONS(2394), - [anon_sym_ATauth] = ACTIONS(2396), - [anon_sym_ATguest] = ACTIONS(2398), - [anon_sym_ATproduction] = ACTIONS(2400), - [anon_sym_ATenv] = ACTIONS(2402), - [anon_sym_AThasSection] = ACTIONS(2404), - [anon_sym_ATsectionMissing] = ACTIONS(2406), - [anon_sym_ATerror] = ACTIONS(2408), - [anon_sym_ATcan] = ACTIONS(2410), - [anon_sym_ATendcan] = ACTIONS(497), - [anon_sym_ATcannot] = ACTIONS(2412), - [anon_sym_ATcanany] = ACTIONS(2414), - [anon_sym_ATfeature] = ACTIONS(2416), - [aux_sym__custom_token1] = ACTIONS(2418), - [aux_sym__custom_token2] = ACTIONS(2420), - [anon_sym_ATswitch] = ACTIONS(2422), - [aux_sym_loop_operator_token1] = ACTIONS(2424), - [anon_sym_ATfor] = ACTIONS(2426), - [anon_sym_ATforeach] = ACTIONS(2428), - [anon_sym_ATforelse] = ACTIONS(2430), - [anon_sym_ATwhile] = ACTIONS(2432), - [anon_sym_ATsetup] = ACTIONS(2434), - [anon_sym_ATtask] = ACTIONS(2436), - [anon_sym_ATstory] = ACTIONS(2438), - [anon_sym_ATbefore] = ACTIONS(2440), - [anon_sym_ATafter] = ACTIONS(2442), - [anon_sym_ATsuccess] = ACTIONS(2444), - [anon_sym_ATfinished] = ACTIONS(2446), - [anon_sym_ATpersist] = ACTIONS(2448), - [anon_sym_ATteleport] = ACTIONS(2450), - [anon_sym_ATvolt] = ACTIONS(2452), - [aux_sym__text_token1] = ACTIONS(2454), - [aux_sym__text_token2] = ACTIONS(2454), - [aux_sym__text_token3] = ACTIONS(2456), + [sym__definition] = STATE(119), + [sym_keyword] = STATE(119), + [sym_php_statement] = STATE(119), + [sym__escaped] = STATE(1783), + [sym__unescaped] = STATE(1783), + [sym__raw] = STATE(1783), + [sym__inline_raw] = STATE(1783), + [sym__multi_line_raw] = STATE(1783), + [sym_attribute] = STATE(119), + [sym__inline_directive] = STATE(119), + [sym__nested_directive] = STATE(119), + [sym_fragment] = STATE(119), + [sym_section] = STATE(119), + [sym_inlineSection] = STATE(119), + [sym_once] = STATE(119), + [sym_verbatim] = STATE(119), + [sym_stack] = STATE(119), + [sym__push] = STATE(1784), + [sym__pushOnce] = STATE(1784), + [sym__pushIf] = STATE(1784), + [sym__prepend] = STATE(1784), + [sym__prependOnce] = STATE(1784), + [sym_conditional] = STATE(119), + [sym_conditional_keyword] = STATE(119), + [sym__if] = STATE(1785), + [sym__unless] = STATE(1785), + [sym__isset] = STATE(1785), + [sym__empty] = STATE(1785), + [sym__auth] = STATE(1785), + [sym__guest] = STATE(1785), + [sym__production] = STATE(1785), + [sym__env] = STATE(1785), + [sym__hasSection] = STATE(1785), + [sym__sectionMissing] = STATE(1785), + [sym__error] = STATE(1785), + [sym_authorization] = STATE(1785), + [sym__can] = STATE(1786), + [sym__cannot] = STATE(1786), + [sym__canany] = STATE(1786), + [sym__feature] = STATE(1785), + [sym__custom] = STATE(1785), + [sym_switch] = STATE(119), + [sym_loop] = STATE(119), + [sym_loop_operator] = STATE(119), + [sym__for] = STATE(1787), + [sym__foreach] = STATE(1787), + [sym__forelse] = STATE(1787), + [sym__while] = STATE(1787), + [sym_envoy] = STATE(119), + [sym__setup] = STATE(1783), + [sym__task] = STATE(1788), + [sym__story] = STATE(1788), + [sym__hooks] = STATE(1783), + [sym__before] = STATE(1783), + [sym__after] = STATE(1783), + [sym__envoy_error] = STATE(1783), + [sym__success] = STATE(1783), + [sym__finished] = STATE(1783), + [sym_livewire] = STATE(119), + [sym__persist] = STATE(1789), + [sym__teleport] = STATE(1789), + [sym__volt] = STATE(1789), + [sym_alpine_js] = STATE(119), + [sym_text] = STATE(119), + [sym__text] = STATE(691), + [aux_sym__if_statement_directive_body_repeat1] = STATE(119), + [aux_sym_php_only_repeat1] = STATE(691), + [sym_comment] = ACTIONS(2235), + [aux_sym_keyword_token1] = ACTIONS(771), + [anon_sym_LBRACE_LBRACE] = ACTIONS(773), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(775), + [anon_sym_ATphp] = ACTIONS(777), + [aux_sym_attribute_token1] = ACTIONS(779), + [aux_sym__inline_directive_token1] = ACTIONS(781), + [anon_sym_ATfragment] = ACTIONS(783), + [anon_sym_ATsection] = ACTIONS(785), + [anon_sym_ATonce] = ACTIONS(787), + [anon_sym_ATverbatim] = ACTIONS(789), + [anon_sym_ATpush] = ACTIONS(791), + [anon_sym_ATpushOnce] = ACTIONS(793), + [anon_sym_ATpushIf] = ACTIONS(795), + [anon_sym_ATprepend] = ACTIONS(797), + [anon_sym_ATprependOnce] = ACTIONS(799), + [anon_sym_ATelse] = ACTIONS(801), + [aux_sym_conditional_keyword_token1] = ACTIONS(803), + [anon_sym_ATif] = ACTIONS(805), + [anon_sym_ATunless] = ACTIONS(807), + [anon_sym_ATisset] = ACTIONS(809), + [anon_sym_ATempty] = ACTIONS(811), + [anon_sym_ATauth] = ACTIONS(813), + [anon_sym_ATguest] = ACTIONS(815), + [anon_sym_ATproduction] = ACTIONS(817), + [anon_sym_ATenv] = ACTIONS(819), + [anon_sym_AThasSection] = ACTIONS(821), + [anon_sym_ATsectionMissing] = ACTIONS(823), + [anon_sym_ATerror] = ACTIONS(825), + [anon_sym_ATcan] = ACTIONS(827), + [anon_sym_ATendcan] = ACTIONS(369), + [anon_sym_ATcannot] = ACTIONS(829), + [anon_sym_ATcanany] = ACTIONS(831), + [anon_sym_ATfeature] = ACTIONS(833), + [aux_sym__custom_token1] = ACTIONS(835), + [aux_sym__custom_token2] = ACTIONS(837), + [anon_sym_ATswitch] = ACTIONS(839), + [aux_sym_loop_operator_token1] = ACTIONS(841), + [anon_sym_ATfor] = ACTIONS(843), + [anon_sym_ATforeach] = ACTIONS(845), + [anon_sym_ATforelse] = ACTIONS(847), + [anon_sym_ATwhile] = ACTIONS(849), + [anon_sym_ATsetup] = ACTIONS(851), + [anon_sym_ATtask] = ACTIONS(853), + [anon_sym_ATstory] = ACTIONS(855), + [anon_sym_ATbefore] = ACTIONS(857), + [anon_sym_ATafter] = ACTIONS(859), + [anon_sym_ATsuccess] = ACTIONS(861), + [anon_sym_ATfinished] = ACTIONS(863), + [anon_sym_ATpersist] = ACTIONS(865), + [anon_sym_ATteleport] = ACTIONS(867), + [anon_sym_ATvolt] = ACTIONS(869), + [aux_sym_alpine_js_token1] = ACTIONS(871), + [aux_sym__text_token1] = ACTIONS(873), + [aux_sym__text_token2] = ACTIONS(873), + [aux_sym__text_token3] = ACTIONS(875), }, [118] = { [sym__definition] = STATE(129), [sym_keyword] = STATE(129), [sym_php_statement] = STATE(129), - [sym__escaped] = STATE(1511), - [sym__unescaped] = STATE(1511), - [sym__raw] = STATE(1511), - [sym__inline_raw] = STATE(1511), - [sym__multi_line_raw] = STATE(1511), + [sym__escaped] = STATE(1529), + [sym__unescaped] = STATE(1529), + [sym__raw] = STATE(1529), + [sym__inline_raw] = STATE(1529), + [sym__multi_line_raw] = STATE(1529), [sym_attribute] = STATE(129), [sym__inline_directive] = STATE(129), [sym__nested_directive] = STATE(129), @@ -40166,366 +40874,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(129), [sym_verbatim] = STATE(129), [sym_stack] = STATE(129), - [sym__push] = STATE(1512), - [sym__pushOnce] = STATE(1512), - [sym__pushIf] = STATE(1512), - [sym__prepend] = STATE(1512), - [sym__prependOnce] = STATE(1512), + [sym__push] = STATE(1530), + [sym__pushOnce] = STATE(1530), + [sym__pushIf] = STATE(1530), + [sym__prepend] = STATE(1530), + [sym__prependOnce] = STATE(1530), [sym_conditional] = STATE(129), [sym_conditional_keyword] = STATE(129), - [sym__if] = STATE(1513), - [sym__unless] = STATE(1513), - [sym__isset] = STATE(1513), - [sym__empty] = STATE(1513), - [sym__auth] = STATE(1513), - [sym__guest] = STATE(1513), - [sym__production] = STATE(1513), - [sym__env] = STATE(1513), - [sym__hasSection] = STATE(1513), - [sym__sectionMissing] = STATE(1513), - [sym__error] = STATE(1513), - [sym_authorization] = STATE(1513), - [sym__can] = STATE(1514), - [sym__cannot] = STATE(1514), - [sym__canany] = STATE(1514), - [sym__feature] = STATE(1513), - [sym__custom] = STATE(1513), + [sym__if] = STATE(1531), + [sym__unless] = STATE(1531), + [sym__isset] = STATE(1531), + [sym__empty] = STATE(1531), + [sym__auth] = STATE(1531), + [sym__guest] = STATE(1531), + [sym__production] = STATE(1531), + [sym__env] = STATE(1531), + [sym__hasSection] = STATE(1531), + [sym__sectionMissing] = STATE(1531), + [sym__error] = STATE(1531), + [sym_authorization] = STATE(1531), + [sym__can] = STATE(1532), + [sym__cannot] = STATE(1532), + [sym__canany] = STATE(1532), + [sym__feature] = STATE(1531), + [sym__custom] = STATE(1531), [sym_switch] = STATE(129), [sym_loop] = STATE(129), [sym_loop_operator] = STATE(129), - [sym__for] = STATE(1515), - [sym__foreach] = STATE(1515), - [sym__forelse] = STATE(1515), - [sym__while] = STATE(1515), + [sym__for] = STATE(1533), + [sym__foreach] = STATE(1533), + [sym__forelse] = STATE(1533), + [sym__while] = STATE(1533), [sym_envoy] = STATE(129), - [sym__setup] = STATE(1511), - [sym__task] = STATE(1516), - [sym__story] = STATE(1516), - [sym__hooks] = STATE(1511), - [sym__before] = STATE(1511), - [sym__after] = STATE(1511), - [sym__envoy_error] = STATE(1511), - [sym__success] = STATE(1511), - [sym__finished] = STATE(1511), + [sym__setup] = STATE(1529), + [sym__task] = STATE(1534), + [sym__story] = STATE(1534), + [sym__hooks] = STATE(1529), + [sym__before] = STATE(1529), + [sym__after] = STATE(1529), + [sym__envoy_error] = STATE(1529), + [sym__success] = STATE(1529), + [sym__finished] = STATE(1529), [sym_livewire] = STATE(129), - [sym__persist] = STATE(1517), - [sym__teleport] = STATE(1517), - [sym__volt] = STATE(1517), + [sym__persist] = STATE(1535), + [sym__teleport] = STATE(1535), + [sym__volt] = STATE(1535), + [sym_alpine_js] = STATE(129), [sym_text] = STATE(129), - [sym__text] = STATE(677), + [sym__text] = STATE(676), [aux_sym__if_statement_directive_body_repeat1] = STATE(129), - [aux_sym_php_only_repeat1] = STATE(677), - [sym_comment] = ACTIONS(2458), - [aux_sym_keyword_token1] = ACTIONS(2244), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2246), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2248), - [anon_sym_ATphp] = ACTIONS(2250), - [aux_sym_attribute_token1] = ACTIONS(2252), - [aux_sym__inline_directive_token1] = ACTIONS(2254), - [anon_sym_ATfragment] = ACTIONS(2256), - [anon_sym_ATsection] = ACTIONS(2258), - [anon_sym_ATonce] = ACTIONS(2260), - [anon_sym_ATverbatim] = ACTIONS(2262), - [anon_sym_ATpush] = ACTIONS(2264), - [anon_sym_ATpushOnce] = ACTIONS(2266), - [anon_sym_ATpushIf] = ACTIONS(2268), - [anon_sym_ATprepend] = ACTIONS(2270), - [anon_sym_ATprependOnce] = ACTIONS(2272), - [anon_sym_ATelse] = ACTIONS(2274), - [aux_sym_conditional_keyword_token1] = ACTIONS(2276), - [anon_sym_ATif] = ACTIONS(2278), - [anon_sym_ATunless] = ACTIONS(2280), - [anon_sym_ATisset] = ACTIONS(2282), - [anon_sym_ATempty] = ACTIONS(2284), - [anon_sym_ATendempty] = ACTIONS(497), - [anon_sym_ATauth] = ACTIONS(2286), - [anon_sym_ATguest] = ACTIONS(2288), - [anon_sym_ATproduction] = ACTIONS(2290), - [anon_sym_ATenv] = ACTIONS(2292), - [anon_sym_AThasSection] = ACTIONS(2294), - [anon_sym_ATsectionMissing] = ACTIONS(2296), - [anon_sym_ATerror] = ACTIONS(2298), - [anon_sym_ATcan] = ACTIONS(2300), - [anon_sym_ATcannot] = ACTIONS(2302), - [anon_sym_ATcanany] = ACTIONS(2304), - [anon_sym_ATfeature] = ACTIONS(2306), - [aux_sym__custom_token1] = ACTIONS(2308), - [aux_sym__custom_token2] = ACTIONS(2310), - [anon_sym_ATswitch] = ACTIONS(2312), - [aux_sym_loop_operator_token1] = ACTIONS(2314), - [anon_sym_ATfor] = ACTIONS(2316), - [anon_sym_ATforeach] = ACTIONS(2318), - [anon_sym_ATforelse] = ACTIONS(2320), - [anon_sym_ATwhile] = ACTIONS(2322), - [anon_sym_ATsetup] = ACTIONS(2324), - [anon_sym_ATtask] = ACTIONS(2326), - [anon_sym_ATstory] = ACTIONS(2328), - [anon_sym_ATbefore] = ACTIONS(2330), - [anon_sym_ATafter] = ACTIONS(2332), - [anon_sym_ATsuccess] = ACTIONS(2334), - [anon_sym_ATfinished] = ACTIONS(2336), - [anon_sym_ATpersist] = ACTIONS(2338), - [anon_sym_ATteleport] = ACTIONS(2340), - [anon_sym_ATvolt] = ACTIONS(2342), - [aux_sym__text_token1] = ACTIONS(2344), - [aux_sym__text_token2] = ACTIONS(2344), - [aux_sym__text_token3] = ACTIONS(2346), + [aux_sym_php_only_repeat1] = STATE(676), + [sym_comment] = ACTIONS(2237), + [aux_sym_keyword_token1] = ACTIONS(1963), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1965), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1967), + [anon_sym_ATphp] = ACTIONS(1969), + [aux_sym_attribute_token1] = ACTIONS(1971), + [aux_sym__inline_directive_token1] = ACTIONS(1973), + [anon_sym_ATfragment] = ACTIONS(1975), + [anon_sym_ATsection] = ACTIONS(1977), + [anon_sym_ATonce] = ACTIONS(1979), + [anon_sym_ATverbatim] = ACTIONS(1981), + [anon_sym_ATpush] = ACTIONS(1983), + [anon_sym_ATpushOnce] = ACTIONS(1985), + [anon_sym_ATpushIf] = ACTIONS(1987), + [anon_sym_ATprepend] = ACTIONS(1989), + [anon_sym_ATprependOnce] = ACTIONS(1991), + [anon_sym_ATelse] = ACTIONS(1993), + [aux_sym_conditional_keyword_token1] = ACTIONS(1995), + [anon_sym_ATif] = ACTIONS(1997), + [anon_sym_ATunless] = ACTIONS(1999), + [anon_sym_ATisset] = ACTIONS(2001), + [anon_sym_ATempty] = ACTIONS(2003), + [anon_sym_ATendempty] = ACTIONS(369), + [anon_sym_ATauth] = ACTIONS(2005), + [anon_sym_ATguest] = ACTIONS(2007), + [anon_sym_ATproduction] = ACTIONS(2009), + [anon_sym_ATenv] = ACTIONS(2011), + [anon_sym_AThasSection] = ACTIONS(2013), + [anon_sym_ATsectionMissing] = ACTIONS(2015), + [anon_sym_ATerror] = ACTIONS(2017), + [anon_sym_ATcan] = ACTIONS(2019), + [anon_sym_ATcannot] = ACTIONS(2021), + [anon_sym_ATcanany] = ACTIONS(2023), + [anon_sym_ATfeature] = ACTIONS(2025), + [aux_sym__custom_token1] = ACTIONS(2027), + [aux_sym__custom_token2] = ACTIONS(2029), + [anon_sym_ATswitch] = ACTIONS(2031), + [aux_sym_loop_operator_token1] = ACTIONS(2033), + [anon_sym_ATfor] = ACTIONS(2035), + [anon_sym_ATforeach] = ACTIONS(2037), + [anon_sym_ATforelse] = ACTIONS(2039), + [anon_sym_ATwhile] = ACTIONS(2041), + [anon_sym_ATsetup] = ACTIONS(2043), + [anon_sym_ATtask] = ACTIONS(2045), + [anon_sym_ATstory] = ACTIONS(2047), + [anon_sym_ATbefore] = ACTIONS(2049), + [anon_sym_ATafter] = ACTIONS(2051), + [anon_sym_ATsuccess] = ACTIONS(2053), + [anon_sym_ATfinished] = ACTIONS(2055), + [anon_sym_ATpersist] = ACTIONS(2057), + [anon_sym_ATteleport] = ACTIONS(2059), + [anon_sym_ATvolt] = ACTIONS(2061), + [aux_sym_alpine_js_token1] = ACTIONS(2063), + [aux_sym__text_token1] = ACTIONS(2065), + [aux_sym__text_token2] = ACTIONS(2065), + [aux_sym__text_token3] = ACTIONS(2067), }, [119] = { - [sym__definition] = STATE(117), - [sym_keyword] = STATE(117), - [sym_php_statement] = STATE(117), - [sym__escaped] = STATE(1762), - [sym__unescaped] = STATE(1762), - [sym__raw] = STATE(1762), - [sym__inline_raw] = STATE(1762), - [sym__multi_line_raw] = STATE(1762), - [sym_attribute] = STATE(117), - [sym__inline_directive] = STATE(117), - [sym__nested_directive] = STATE(117), - [sym_fragment] = STATE(117), - [sym_section] = STATE(117), - [sym_inlineSection] = STATE(117), - [sym_once] = STATE(117), - [sym_verbatim] = STATE(117), - [sym_stack] = STATE(117), - [sym__push] = STATE(1763), - [sym__pushOnce] = STATE(1763), - [sym__pushIf] = STATE(1763), - [sym__prepend] = STATE(1763), - [sym__prependOnce] = STATE(1763), - [sym_conditional] = STATE(117), - [sym_conditional_keyword] = STATE(117), - [sym__if] = STATE(1764), - [sym__unless] = STATE(1764), - [sym__isset] = STATE(1764), - [sym__empty] = STATE(1764), - [sym__auth] = STATE(1764), - [sym__guest] = STATE(1764), - [sym__production] = STATE(1764), - [sym__env] = STATE(1764), - [sym__hasSection] = STATE(1764), - [sym__sectionMissing] = STATE(1764), - [sym__error] = STATE(1764), - [sym_authorization] = STATE(1764), - [sym__can] = STATE(1765), - [sym__cannot] = STATE(1765), - [sym__canany] = STATE(1765), - [sym__feature] = STATE(1764), - [sym__custom] = STATE(1764), - [sym_switch] = STATE(117), - [sym_loop] = STATE(117), - [sym_loop_operator] = STATE(117), - [sym__for] = STATE(1766), - [sym__foreach] = STATE(1766), - [sym__forelse] = STATE(1766), - [sym__while] = STATE(1766), - [sym_envoy] = STATE(117), - [sym__setup] = STATE(1762), - [sym__task] = STATE(1767), - [sym__story] = STATE(1767), - [sym__hooks] = STATE(1762), - [sym__before] = STATE(1762), - [sym__after] = STATE(1762), - [sym__envoy_error] = STATE(1762), - [sym__success] = STATE(1762), - [sym__finished] = STATE(1762), - [sym_livewire] = STATE(117), - [sym__persist] = STATE(1768), - [sym__teleport] = STATE(1768), - [sym__volt] = STATE(1768), - [sym_text] = STATE(117), - [sym__text] = STATE(725), - [aux_sym__if_statement_directive_body_repeat1] = STATE(117), - [aux_sym_php_only_repeat1] = STATE(725), - [sym_comment] = ACTIONS(2460), - [aux_sym_keyword_token1] = ACTIONS(2354), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2356), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2358), - [anon_sym_ATphp] = ACTIONS(2360), - [aux_sym_attribute_token1] = ACTIONS(2362), - [aux_sym__inline_directive_token1] = ACTIONS(2364), - [anon_sym_ATfragment] = ACTIONS(2366), - [anon_sym_ATsection] = ACTIONS(2368), - [anon_sym_ATonce] = ACTIONS(2370), - [anon_sym_ATverbatim] = ACTIONS(2372), - [anon_sym_ATpush] = ACTIONS(2374), - [anon_sym_ATpushOnce] = ACTIONS(2376), - [anon_sym_ATpushIf] = ACTIONS(2378), - [anon_sym_ATprepend] = ACTIONS(2380), - [anon_sym_ATprependOnce] = ACTIONS(2382), - [anon_sym_ATelse] = ACTIONS(2384), - [aux_sym_conditional_keyword_token1] = ACTIONS(2386), - [anon_sym_ATif] = ACTIONS(2388), - [anon_sym_ATunless] = ACTIONS(2390), - [anon_sym_ATisset] = ACTIONS(2392), - [anon_sym_ATempty] = ACTIONS(2394), - [anon_sym_ATauth] = ACTIONS(2396), - [anon_sym_ATguest] = ACTIONS(2398), - [anon_sym_ATproduction] = ACTIONS(2400), - [anon_sym_ATenv] = ACTIONS(2402), - [anon_sym_AThasSection] = ACTIONS(2404), - [anon_sym_ATsectionMissing] = ACTIONS(2406), - [anon_sym_ATerror] = ACTIONS(2408), - [anon_sym_ATcan] = ACTIONS(2410), - [anon_sym_ATendcan] = ACTIONS(706), - [anon_sym_ATcannot] = ACTIONS(2412), - [anon_sym_ATcanany] = ACTIONS(2414), - [anon_sym_ATfeature] = ACTIONS(2416), - [aux_sym__custom_token1] = ACTIONS(2418), - [aux_sym__custom_token2] = ACTIONS(2420), - [anon_sym_ATswitch] = ACTIONS(2422), - [aux_sym_loop_operator_token1] = ACTIONS(2424), - [anon_sym_ATfor] = ACTIONS(2426), - [anon_sym_ATforeach] = ACTIONS(2428), - [anon_sym_ATforelse] = ACTIONS(2430), - [anon_sym_ATwhile] = ACTIONS(2432), - [anon_sym_ATsetup] = ACTIONS(2434), - [anon_sym_ATtask] = ACTIONS(2436), - [anon_sym_ATstory] = ACTIONS(2438), - [anon_sym_ATbefore] = ACTIONS(2440), - [anon_sym_ATafter] = ACTIONS(2442), - [anon_sym_ATsuccess] = ACTIONS(2444), - [anon_sym_ATfinished] = ACTIONS(2446), - [anon_sym_ATpersist] = ACTIONS(2448), - [anon_sym_ATteleport] = ACTIONS(2450), - [anon_sym_ATvolt] = ACTIONS(2452), - [aux_sym__text_token1] = ACTIONS(2454), - [aux_sym__text_token2] = ACTIONS(2454), - [aux_sym__text_token3] = ACTIONS(2456), + [sym__definition] = STATE(119), + [sym_keyword] = STATE(119), + [sym_php_statement] = STATE(119), + [sym__escaped] = STATE(1783), + [sym__unescaped] = STATE(1783), + [sym__raw] = STATE(1783), + [sym__inline_raw] = STATE(1783), + [sym__multi_line_raw] = STATE(1783), + [sym_attribute] = STATE(119), + [sym__inline_directive] = STATE(119), + [sym__nested_directive] = STATE(119), + [sym_fragment] = STATE(119), + [sym_section] = STATE(119), + [sym_inlineSection] = STATE(119), + [sym_once] = STATE(119), + [sym_verbatim] = STATE(119), + [sym_stack] = STATE(119), + [sym__push] = STATE(1784), + [sym__pushOnce] = STATE(1784), + [sym__pushIf] = STATE(1784), + [sym__prepend] = STATE(1784), + [sym__prependOnce] = STATE(1784), + [sym_conditional] = STATE(119), + [sym_conditional_keyword] = STATE(119), + [sym__if] = STATE(1785), + [sym__unless] = STATE(1785), + [sym__isset] = STATE(1785), + [sym__empty] = STATE(1785), + [sym__auth] = STATE(1785), + [sym__guest] = STATE(1785), + [sym__production] = STATE(1785), + [sym__env] = STATE(1785), + [sym__hasSection] = STATE(1785), + [sym__sectionMissing] = STATE(1785), + [sym__error] = STATE(1785), + [sym_authorization] = STATE(1785), + [sym__can] = STATE(1786), + [sym__cannot] = STATE(1786), + [sym__canany] = STATE(1786), + [sym__feature] = STATE(1785), + [sym__custom] = STATE(1785), + [sym_switch] = STATE(119), + [sym_loop] = STATE(119), + [sym_loop_operator] = STATE(119), + [sym__for] = STATE(1787), + [sym__foreach] = STATE(1787), + [sym__forelse] = STATE(1787), + [sym__while] = STATE(1787), + [sym_envoy] = STATE(119), + [sym__setup] = STATE(1783), + [sym__task] = STATE(1788), + [sym__story] = STATE(1788), + [sym__hooks] = STATE(1783), + [sym__before] = STATE(1783), + [sym__after] = STATE(1783), + [sym__envoy_error] = STATE(1783), + [sym__success] = STATE(1783), + [sym__finished] = STATE(1783), + [sym_livewire] = STATE(119), + [sym__persist] = STATE(1789), + [sym__teleport] = STATE(1789), + [sym__volt] = STATE(1789), + [sym_alpine_js] = STATE(119), + [sym_text] = STATE(119), + [sym__text] = STATE(691), + [aux_sym__if_statement_directive_body_repeat1] = STATE(119), + [aux_sym_php_only_repeat1] = STATE(691), + [sym_comment] = ACTIONS(2239), + [aux_sym_keyword_token1] = ACTIONS(2242), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2245), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2248), + [anon_sym_ATphp] = ACTIONS(2251), + [aux_sym_attribute_token1] = ACTIONS(2254), + [aux_sym__inline_directive_token1] = ACTIONS(2257), + [anon_sym_ATfragment] = ACTIONS(2260), + [anon_sym_ATsection] = ACTIONS(2263), + [anon_sym_ATonce] = ACTIONS(2266), + [anon_sym_ATverbatim] = ACTIONS(2269), + [anon_sym_ATpush] = ACTIONS(2272), + [anon_sym_ATpushOnce] = ACTIONS(2275), + [anon_sym_ATpushIf] = ACTIONS(2278), + [anon_sym_ATprepend] = ACTIONS(2281), + [anon_sym_ATprependOnce] = ACTIONS(2284), + [anon_sym_ATelse] = ACTIONS(2287), + [aux_sym_conditional_keyword_token1] = ACTIONS(2290), + [anon_sym_ATif] = ACTIONS(2293), + [anon_sym_ATunless] = ACTIONS(2296), + [anon_sym_ATisset] = ACTIONS(2299), + [anon_sym_ATempty] = ACTIONS(2302), + [anon_sym_ATauth] = ACTIONS(2305), + [anon_sym_ATguest] = ACTIONS(2308), + [anon_sym_ATproduction] = ACTIONS(2311), + [anon_sym_ATenv] = ACTIONS(2314), + [anon_sym_AThasSection] = ACTIONS(2317), + [anon_sym_ATsectionMissing] = ACTIONS(2320), + [anon_sym_ATerror] = ACTIONS(2323), + [anon_sym_ATcan] = ACTIONS(2326), + [anon_sym_ATendcan] = ACTIONS(966), + [anon_sym_ATcannot] = ACTIONS(2329), + [anon_sym_ATcanany] = ACTIONS(2332), + [anon_sym_ATfeature] = ACTIONS(2335), + [aux_sym__custom_token1] = ACTIONS(2338), + [aux_sym__custom_token2] = ACTIONS(2341), + [anon_sym_ATswitch] = ACTIONS(2344), + [aux_sym_loop_operator_token1] = ACTIONS(2347), + [anon_sym_ATfor] = ACTIONS(2350), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2356), + [anon_sym_ATwhile] = ACTIONS(2359), + [anon_sym_ATsetup] = ACTIONS(2362), + [anon_sym_ATtask] = ACTIONS(2365), + [anon_sym_ATstory] = ACTIONS(2368), + [anon_sym_ATbefore] = ACTIONS(2371), + [anon_sym_ATafter] = ACTIONS(2374), + [anon_sym_ATsuccess] = ACTIONS(2377), + [anon_sym_ATfinished] = ACTIONS(2380), + [anon_sym_ATpersist] = ACTIONS(2383), + [anon_sym_ATteleport] = ACTIONS(2386), + [anon_sym_ATvolt] = ACTIONS(2389), + [aux_sym_alpine_js_token1] = ACTIONS(2392), + [aux_sym__text_token1] = ACTIONS(2395), + [aux_sym__text_token2] = ACTIONS(2395), + [aux_sym__text_token3] = ACTIONS(2398), }, [120] = { - [sym__definition] = STATE(125), - [sym_keyword] = STATE(125), - [sym_php_statement] = STATE(125), - [sym__escaped] = STATE(1175), - [sym__unescaped] = STATE(1175), - [sym__raw] = STATE(1175), - [sym__inline_raw] = STATE(1175), - [sym__multi_line_raw] = STATE(1175), - [sym_attribute] = STATE(125), - [sym__inline_directive] = STATE(125), - [sym__nested_directive] = STATE(125), - [sym_fragment] = STATE(125), - [sym_section] = STATE(125), - [sym_inlineSection] = STATE(125), - [sym_once] = STATE(125), - [sym_verbatim] = STATE(125), - [sym_stack] = STATE(125), - [sym__push] = STATE(1174), - [sym__pushOnce] = STATE(1174), - [sym__pushIf] = STATE(1174), - [sym__prepend] = STATE(1174), - [sym__prependOnce] = STATE(1174), - [sym_conditional] = STATE(125), - [sym_conditional_keyword] = STATE(125), - [sym__if] = STATE(1173), - [sym__unless] = STATE(1173), - [sym__isset] = STATE(1173), - [sym__empty] = STATE(1173), - [sym__auth] = STATE(1173), - [sym__guest] = STATE(1173), - [sym__production] = STATE(1173), - [sym__env] = STATE(1173), - [sym__hasSection] = STATE(1173), - [sym__sectionMissing] = STATE(1173), - [sym__error] = STATE(1173), - [sym_authorization] = STATE(1173), - [sym__can] = STATE(1172), - [sym__cannot] = STATE(1172), - [sym__canany] = STATE(1172), - [sym__feature] = STATE(1173), - [sym__custom] = STATE(1173), - [sym_switch] = STATE(125), - [sym_loop] = STATE(125), - [sym_loop_operator] = STATE(125), - [sym__for] = STATE(1171), - [sym__foreach] = STATE(1171), - [sym__forelse] = STATE(1171), - [sym__while] = STATE(1171), - [sym_envoy] = STATE(125), - [sym__setup] = STATE(1175), - [sym__task] = STATE(1170), - [sym__story] = STATE(1170), - [sym__hooks] = STATE(1175), - [sym__before] = STATE(1175), - [sym__after] = STATE(1175), - [sym__envoy_error] = STATE(1175), - [sym__success] = STATE(1175), - [sym__finished] = STATE(1175), - [sym_livewire] = STATE(125), - [sym__persist] = STATE(1168), - [sym__teleport] = STATE(1168), - [sym__volt] = STATE(1168), - [sym_text] = STATE(125), - [sym__text] = STATE(683), - [aux_sym__if_statement_directive_body_repeat1] = STATE(125), - [aux_sym_php_only_repeat1] = STATE(683), - [sym_comment] = ACTIONS(2462), - [aux_sym_keyword_token1] = ACTIONS(1095), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1097), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1099), - [anon_sym_ATphp] = ACTIONS(1101), - [aux_sym_attribute_token1] = ACTIONS(1103), - [aux_sym__inline_directive_token1] = ACTIONS(1105), - [anon_sym_ATfragment] = ACTIONS(1107), - [anon_sym_ATsection] = ACTIONS(1109), - [anon_sym_ATonce] = ACTIONS(1111), - [anon_sym_ATverbatim] = ACTIONS(1113), - [anon_sym_ATpush] = ACTIONS(1115), - [anon_sym_ATpushOnce] = ACTIONS(1117), - [anon_sym_ATpushIf] = ACTIONS(1119), - [anon_sym_ATprepend] = ACTIONS(1121), - [anon_sym_ATprependOnce] = ACTIONS(1123), - [anon_sym_ATelse] = ACTIONS(1125), - [aux_sym_conditional_keyword_token1] = ACTIONS(1127), - [anon_sym_ATif] = ACTIONS(1129), - [anon_sym_ATunless] = ACTIONS(1131), - [anon_sym_ATisset] = ACTIONS(1133), - [anon_sym_ATempty] = ACTIONS(1135), - [anon_sym_ATauth] = ACTIONS(1137), - [anon_sym_ATguest] = ACTIONS(1139), - [anon_sym_ATproduction] = ACTIONS(1141), - [anon_sym_ATenv] = ACTIONS(1143), - [anon_sym_AThasSection] = ACTIONS(1145), - [anon_sym_ATsectionMissing] = ACTIONS(1147), - [anon_sym_ATerror] = ACTIONS(1149), - [anon_sym_ATcan] = ACTIONS(1151), - [anon_sym_ATcannot] = ACTIONS(1153), - [anon_sym_ATcanany] = ACTIONS(1155), - [anon_sym_ATfeature] = ACTIONS(1157), - [anon_sym_ATendfeature] = ACTIONS(497), - [aux_sym__custom_token1] = ACTIONS(1159), - [aux_sym__custom_token2] = ACTIONS(1161), - [anon_sym_ATswitch] = ACTIONS(1163), - [aux_sym_loop_operator_token1] = ACTIONS(1165), - [anon_sym_ATfor] = ACTIONS(1167), - [anon_sym_ATforeach] = ACTIONS(1169), - [anon_sym_ATforelse] = ACTIONS(1171), - [anon_sym_ATwhile] = ACTIONS(1173), - [anon_sym_ATsetup] = ACTIONS(1175), - [anon_sym_ATtask] = ACTIONS(1177), - [anon_sym_ATstory] = ACTIONS(1179), - [anon_sym_ATbefore] = ACTIONS(1181), - [anon_sym_ATafter] = ACTIONS(1183), - [anon_sym_ATsuccess] = ACTIONS(1185), - [anon_sym_ATfinished] = ACTIONS(1187), - [anon_sym_ATpersist] = ACTIONS(1189), - [anon_sym_ATteleport] = ACTIONS(1191), - [anon_sym_ATvolt] = ACTIONS(1193), - [aux_sym__text_token1] = ACTIONS(1195), - [aux_sym__text_token2] = ACTIONS(1195), - [aux_sym__text_token3] = ACTIONS(1197), - }, - [121] = { [sym__definition] = STATE(121), [sym_keyword] = STATE(121), [sym_php_statement] = STATE(121), - [sym__escaped] = STATE(1845), - [sym__unescaped] = STATE(1845), - [sym__raw] = STATE(1845), - [sym__inline_raw] = STATE(1845), - [sym__multi_line_raw] = STATE(1845), + [sym__escaped] = STATE(1176), + [sym__unescaped] = STATE(1176), + [sym__raw] = STATE(1176), + [sym__inline_raw] = STATE(1176), + [sym__multi_line_raw] = STATE(1176), [sym_attribute] = STATE(121), [sym__inline_directive] = STATE(121), [sym__nested_directive] = STATE(121), @@ -40535,243 +41124,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(121), [sym_verbatim] = STATE(121), [sym_stack] = STATE(121), - [sym__push] = STATE(1846), - [sym__pushOnce] = STATE(1846), - [sym__pushIf] = STATE(1846), - [sym__prepend] = STATE(1846), - [sym__prependOnce] = STATE(1846), + [sym__push] = STATE(1173), + [sym__pushOnce] = STATE(1173), + [sym__pushIf] = STATE(1173), + [sym__prepend] = STATE(1173), + [sym__prependOnce] = STATE(1173), [sym_conditional] = STATE(121), [sym_conditional_keyword] = STATE(121), - [sym__if] = STATE(1847), - [sym__unless] = STATE(1847), - [sym__isset] = STATE(1847), - [sym__empty] = STATE(1847), - [sym__auth] = STATE(1847), - [sym__guest] = STATE(1847), - [sym__production] = STATE(1847), - [sym__env] = STATE(1847), - [sym__hasSection] = STATE(1847), - [sym__sectionMissing] = STATE(1847), - [sym__error] = STATE(1847), - [sym_authorization] = STATE(1847), - [sym__can] = STATE(1848), - [sym__cannot] = STATE(1848), - [sym__canany] = STATE(1848), - [sym__feature] = STATE(1847), - [sym__custom] = STATE(1847), + [sym__if] = STATE(1172), + [sym__unless] = STATE(1172), + [sym__isset] = STATE(1172), + [sym__empty] = STATE(1172), + [sym__auth] = STATE(1172), + [sym__guest] = STATE(1172), + [sym__production] = STATE(1172), + [sym__env] = STATE(1172), + [sym__hasSection] = STATE(1172), + [sym__sectionMissing] = STATE(1172), + [sym__error] = STATE(1172), + [sym_authorization] = STATE(1172), + [sym__can] = STATE(1171), + [sym__cannot] = STATE(1171), + [sym__canany] = STATE(1171), + [sym__feature] = STATE(1172), + [sym__custom] = STATE(1172), [sym_switch] = STATE(121), [sym_loop] = STATE(121), [sym_loop_operator] = STATE(121), - [sym__for] = STATE(1849), - [sym__foreach] = STATE(1849), - [sym__forelse] = STATE(1849), - [sym__while] = STATE(1849), + [sym__for] = STATE(1170), + [sym__foreach] = STATE(1170), + [sym__forelse] = STATE(1170), + [sym__while] = STATE(1170), [sym_envoy] = STATE(121), - [sym__setup] = STATE(1845), - [sym__task] = STATE(1850), - [sym__story] = STATE(1850), - [sym__hooks] = STATE(1845), - [sym__before] = STATE(1845), - [sym__after] = STATE(1845), - [sym__envoy_error] = STATE(1845), - [sym__success] = STATE(1845), - [sym__finished] = STATE(1845), + [sym__setup] = STATE(1176), + [sym__task] = STATE(1169), + [sym__story] = STATE(1169), + [sym__hooks] = STATE(1176), + [sym__before] = STATE(1176), + [sym__after] = STATE(1176), + [sym__envoy_error] = STATE(1176), + [sym__success] = STATE(1176), + [sym__finished] = STATE(1176), [sym_livewire] = STATE(121), - [sym__persist] = STATE(1851), - [sym__teleport] = STATE(1851), - [sym__volt] = STATE(1851), + [sym__persist] = STATE(1168), + [sym__teleport] = STATE(1168), + [sym__volt] = STATE(1168), + [sym_alpine_js] = STATE(121), [sym_text] = STATE(121), - [sym__text] = STATE(712), + [sym__text] = STATE(682), [aux_sym__if_statement_directive_body_repeat1] = STATE(121), - [aux_sym_php_only_repeat1] = STATE(712), - [sym_comment] = ACTIONS(2464), - [aux_sym_keyword_token1] = ACTIONS(2467), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2470), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2473), - [anon_sym_ATphp] = ACTIONS(2476), - [aux_sym_attribute_token1] = ACTIONS(2479), - [aux_sym__inline_directive_token1] = ACTIONS(2482), - [anon_sym_ATfragment] = ACTIONS(2485), - [anon_sym_ATsection] = ACTIONS(2488), - [anon_sym_ATonce] = ACTIONS(2491), - [anon_sym_ATverbatim] = ACTIONS(2494), - [anon_sym_ATpush] = ACTIONS(2497), - [anon_sym_ATpushOnce] = ACTIONS(2500), - [anon_sym_ATpushIf] = ACTIONS(2503), - [anon_sym_ATprepend] = ACTIONS(2506), - [anon_sym_ATprependOnce] = ACTIONS(2509), - [anon_sym_ATelse] = ACTIONS(2512), - [aux_sym_conditional_keyword_token1] = ACTIONS(2515), - [anon_sym_ATif] = ACTIONS(2518), - [anon_sym_ATunless] = ACTIONS(2521), - [anon_sym_ATisset] = ACTIONS(2524), - [anon_sym_ATempty] = ACTIONS(2527), - [anon_sym_ATauth] = ACTIONS(2530), - [anon_sym_ATguest] = ACTIONS(2533), - [anon_sym_ATproduction] = ACTIONS(2536), - [anon_sym_ATenv] = ACTIONS(2539), - [anon_sym_AThasSection] = ACTIONS(2542), - [anon_sym_ATsectionMissing] = ACTIONS(2545), - [anon_sym_ATerror] = ACTIONS(2548), - [anon_sym_ATcan] = ACTIONS(2551), - [anon_sym_ATcannot] = ACTIONS(2554), - [anon_sym_ATendcannot] = ACTIONS(633), - [anon_sym_ATcanany] = ACTIONS(2557), - [anon_sym_ATfeature] = ACTIONS(2560), - [aux_sym__custom_token1] = ACTIONS(2563), - [aux_sym__custom_token2] = ACTIONS(2566), - [anon_sym_ATswitch] = ACTIONS(2569), - [aux_sym_loop_operator_token1] = ACTIONS(2572), - [anon_sym_ATfor] = ACTIONS(2575), - [anon_sym_ATforeach] = ACTIONS(2578), - [anon_sym_ATforelse] = ACTIONS(2581), - [anon_sym_ATwhile] = ACTIONS(2584), - [anon_sym_ATsetup] = ACTIONS(2587), - [anon_sym_ATtask] = ACTIONS(2590), - [anon_sym_ATstory] = ACTIONS(2593), - [anon_sym_ATbefore] = ACTIONS(2596), - [anon_sym_ATafter] = ACTIONS(2599), - [anon_sym_ATsuccess] = ACTIONS(2602), - [anon_sym_ATfinished] = ACTIONS(2605), - [anon_sym_ATpersist] = ACTIONS(2608), - [anon_sym_ATteleport] = ACTIONS(2611), - [anon_sym_ATvolt] = ACTIONS(2614), - [aux_sym__text_token1] = ACTIONS(2617), - [aux_sym__text_token2] = ACTIONS(2617), - [aux_sym__text_token3] = ACTIONS(2620), - }, - [122] = { - [sym__definition] = STATE(123), - [sym_keyword] = STATE(123), - [sym_php_statement] = STATE(123), - [sym__escaped] = STATE(1088), - [sym__unescaped] = STATE(1088), - [sym__raw] = STATE(1088), - [sym__inline_raw] = STATE(1088), - [sym__multi_line_raw] = STATE(1088), - [sym_attribute] = STATE(123), - [sym__inline_directive] = STATE(123), - [sym__nested_directive] = STATE(123), - [sym_fragment] = STATE(123), - [sym_section] = STATE(123), - [sym_inlineSection] = STATE(123), - [sym_once] = STATE(123), - [sym_verbatim] = STATE(123), - [sym_stack] = STATE(123), - [sym__push] = STATE(1087), - [sym__pushOnce] = STATE(1087), - [sym__pushIf] = STATE(1087), - [sym__prepend] = STATE(1087), - [sym__prependOnce] = STATE(1087), - [sym_conditional] = STATE(123), - [sym_conditional_keyword] = STATE(123), - [sym__if] = STATE(1086), - [sym__unless] = STATE(1086), - [sym__isset] = STATE(1086), - [sym__empty] = STATE(1086), - [sym__auth] = STATE(1086), - [sym__guest] = STATE(1086), - [sym__production] = STATE(1086), - [sym__env] = STATE(1086), - [sym__hasSection] = STATE(1086), - [sym__sectionMissing] = STATE(1086), - [sym__error] = STATE(1086), - [sym_authorization] = STATE(1086), - [sym__can] = STATE(1085), - [sym__cannot] = STATE(1085), - [sym__canany] = STATE(1085), - [sym__feature] = STATE(1086), - [sym__custom] = STATE(1086), - [sym_switch] = STATE(123), - [sym_loop] = STATE(123), - [sym_loop_operator] = STATE(123), - [sym__for] = STATE(1084), - [sym__foreach] = STATE(1084), - [sym__forelse] = STATE(1084), - [sym__while] = STATE(1084), - [sym_envoy] = STATE(123), - [sym__setup] = STATE(1088), - [sym__task] = STATE(1083), - [sym__story] = STATE(1083), - [sym__hooks] = STATE(1088), - [sym__before] = STATE(1088), - [sym__after] = STATE(1088), - [sym__envoy_error] = STATE(1088), - [sym__success] = STATE(1088), - [sym__finished] = STATE(1088), - [sym_livewire] = STATE(123), - [sym__persist] = STATE(1082), - [sym__teleport] = STATE(1082), - [sym__volt] = STATE(1082), - [sym_text] = STATE(123), - [sym__text] = STATE(688), - [aux_sym__if_statement_directive_body_repeat1] = STATE(123), - [aux_sym_php_only_repeat1] = STATE(688), - [sym_comment] = ACTIONS(2623), - [aux_sym_keyword_token1] = ACTIONS(2625), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2627), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2629), - [anon_sym_ATphp] = ACTIONS(2631), - [aux_sym_attribute_token1] = ACTIONS(2633), - [aux_sym__inline_directive_token1] = ACTIONS(2635), - [anon_sym_ATfragment] = ACTIONS(2637), - [anon_sym_ATsection] = ACTIONS(2639), - [anon_sym_ATonce] = ACTIONS(2641), - [anon_sym_ATverbatim] = ACTIONS(2643), - [anon_sym_ATpush] = ACTIONS(2645), - [anon_sym_ATpushOnce] = ACTIONS(2647), - [anon_sym_ATpushIf] = ACTIONS(2649), - [anon_sym_ATprepend] = ACTIONS(2651), - [anon_sym_ATprependOnce] = ACTIONS(2653), - [anon_sym_ATelse] = ACTIONS(2655), - [aux_sym_conditional_keyword_token1] = ACTIONS(2657), - [anon_sym_ATif] = ACTIONS(2659), - [anon_sym_ATunless] = ACTIONS(2661), - [anon_sym_ATisset] = ACTIONS(2663), - [anon_sym_ATempty] = ACTIONS(2665), - [anon_sym_ATauth] = ACTIONS(2667), - [anon_sym_ATguest] = ACTIONS(2669), - [anon_sym_ATproduction] = ACTIONS(2671), - [anon_sym_ATenv] = ACTIONS(2673), - [anon_sym_AThasSection] = ACTIONS(2675), - [anon_sym_ATsectionMissing] = ACTIONS(2677), - [anon_sym_ATerror] = ACTIONS(2679), - [anon_sym_ATcan] = ACTIONS(2681), - [anon_sym_ATcannot] = ACTIONS(2683), - [anon_sym_ATcanany] = ACTIONS(2685), - [anon_sym_ATfeature] = ACTIONS(2687), - [aux_sym__custom_token1] = ACTIONS(2689), - [aux_sym__custom_token2] = ACTIONS(2691), - [aux_sym__custom_token3] = ACTIONS(706), - [anon_sym_ATswitch] = ACTIONS(2693), - [aux_sym_loop_operator_token1] = ACTIONS(2695), - [anon_sym_ATfor] = ACTIONS(2697), - [anon_sym_ATforeach] = ACTIONS(2699), - [anon_sym_ATforelse] = ACTIONS(2701), - [anon_sym_ATwhile] = ACTIONS(2703), - [anon_sym_ATsetup] = ACTIONS(2705), - [anon_sym_ATtask] = ACTIONS(2707), - [anon_sym_ATstory] = ACTIONS(2709), - [anon_sym_ATbefore] = ACTIONS(2711), - [anon_sym_ATafter] = ACTIONS(2713), - [anon_sym_ATsuccess] = ACTIONS(2715), - [anon_sym_ATfinished] = ACTIONS(2717), - [anon_sym_ATpersist] = ACTIONS(2719), - [anon_sym_ATteleport] = ACTIONS(2721), - [anon_sym_ATvolt] = ACTIONS(2723), - [aux_sym__text_token1] = ACTIONS(2725), - [aux_sym__text_token2] = ACTIONS(2725), - [aux_sym__text_token3] = ACTIONS(2727), + [aux_sym_php_only_repeat1] = STATE(682), + [sym_comment] = ACTIONS(2401), + [aux_sym_keyword_token1] = ACTIONS(2403), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2405), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2407), + [anon_sym_ATphp] = ACTIONS(2409), + [aux_sym_attribute_token1] = ACTIONS(2411), + [aux_sym__inline_directive_token1] = ACTIONS(2413), + [anon_sym_ATfragment] = ACTIONS(2415), + [anon_sym_ATsection] = ACTIONS(2417), + [anon_sym_ATonce] = ACTIONS(2419), + [anon_sym_ATverbatim] = ACTIONS(2421), + [anon_sym_ATpush] = ACTIONS(2423), + [anon_sym_ATpushOnce] = ACTIONS(2425), + [anon_sym_ATpushIf] = ACTIONS(2427), + [anon_sym_ATprepend] = ACTIONS(2429), + [anon_sym_ATprependOnce] = ACTIONS(2431), + [anon_sym_ATelse] = ACTIONS(2433), + [aux_sym_conditional_keyword_token1] = ACTIONS(2435), + [anon_sym_ATif] = ACTIONS(2437), + [anon_sym_ATunless] = ACTIONS(2439), + [anon_sym_ATisset] = ACTIONS(2441), + [anon_sym_ATempty] = ACTIONS(2443), + [anon_sym_ATauth] = ACTIONS(2445), + [anon_sym_ATguest] = ACTIONS(2447), + [anon_sym_ATproduction] = ACTIONS(2449), + [anon_sym_ATenv] = ACTIONS(2451), + [anon_sym_AThasSection] = ACTIONS(2453), + [anon_sym_ATsectionMissing] = ACTIONS(2455), + [anon_sym_ATerror] = ACTIONS(2457), + [anon_sym_ATcan] = ACTIONS(2459), + [anon_sym_ATcannot] = ACTIONS(2461), + [anon_sym_ATcanany] = ACTIONS(2463), + [anon_sym_ATfeature] = ACTIONS(2465), + [anon_sym_ATendfeature] = ACTIONS(481), + [aux_sym__custom_token1] = ACTIONS(2467), + [aux_sym__custom_token2] = ACTIONS(2469), + [anon_sym_ATswitch] = ACTIONS(2471), + [aux_sym_loop_operator_token1] = ACTIONS(2473), + [anon_sym_ATfor] = ACTIONS(2475), + [anon_sym_ATforeach] = ACTIONS(2477), + [anon_sym_ATforelse] = ACTIONS(2479), + [anon_sym_ATwhile] = ACTIONS(2481), + [anon_sym_ATsetup] = ACTIONS(2483), + [anon_sym_ATtask] = ACTIONS(2485), + [anon_sym_ATstory] = ACTIONS(2487), + [anon_sym_ATbefore] = ACTIONS(2489), + [anon_sym_ATafter] = ACTIONS(2491), + [anon_sym_ATsuccess] = ACTIONS(2493), + [anon_sym_ATfinished] = ACTIONS(2495), + [anon_sym_ATpersist] = ACTIONS(2497), + [anon_sym_ATteleport] = ACTIONS(2499), + [anon_sym_ATvolt] = ACTIONS(2501), + [aux_sym_alpine_js_token1] = ACTIONS(2503), + [aux_sym__text_token1] = ACTIONS(2505), + [aux_sym__text_token2] = ACTIONS(2505), + [aux_sym__text_token3] = ACTIONS(2507), }, - [123] = { + [121] = { [sym__definition] = STATE(126), [sym_keyword] = STATE(126), [sym_php_statement] = STATE(126), - [sym__escaped] = STATE(1088), - [sym__unescaped] = STATE(1088), - [sym__raw] = STATE(1088), - [sym__inline_raw] = STATE(1088), - [sym__multi_line_raw] = STATE(1088), + [sym__escaped] = STATE(1176), + [sym__unescaped] = STATE(1176), + [sym__raw] = STATE(1176), + [sym__inline_raw] = STATE(1176), + [sym__multi_line_raw] = STATE(1176), [sym_attribute] = STATE(126), [sym__inline_directive] = STATE(126), [sym__nested_directive] = STATE(126), @@ -40781,120 +41249,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(126), [sym_verbatim] = STATE(126), [sym_stack] = STATE(126), - [sym__push] = STATE(1087), - [sym__pushOnce] = STATE(1087), - [sym__pushIf] = STATE(1087), - [sym__prepend] = STATE(1087), - [sym__prependOnce] = STATE(1087), + [sym__push] = STATE(1173), + [sym__pushOnce] = STATE(1173), + [sym__pushIf] = STATE(1173), + [sym__prepend] = STATE(1173), + [sym__prependOnce] = STATE(1173), [sym_conditional] = STATE(126), [sym_conditional_keyword] = STATE(126), - [sym__if] = STATE(1086), - [sym__unless] = STATE(1086), - [sym__isset] = STATE(1086), - [sym__empty] = STATE(1086), - [sym__auth] = STATE(1086), - [sym__guest] = STATE(1086), - [sym__production] = STATE(1086), - [sym__env] = STATE(1086), - [sym__hasSection] = STATE(1086), - [sym__sectionMissing] = STATE(1086), - [sym__error] = STATE(1086), - [sym_authorization] = STATE(1086), - [sym__can] = STATE(1085), - [sym__cannot] = STATE(1085), - [sym__canany] = STATE(1085), - [sym__feature] = STATE(1086), - [sym__custom] = STATE(1086), + [sym__if] = STATE(1172), + [sym__unless] = STATE(1172), + [sym__isset] = STATE(1172), + [sym__empty] = STATE(1172), + [sym__auth] = STATE(1172), + [sym__guest] = STATE(1172), + [sym__production] = STATE(1172), + [sym__env] = STATE(1172), + [sym__hasSection] = STATE(1172), + [sym__sectionMissing] = STATE(1172), + [sym__error] = STATE(1172), + [sym_authorization] = STATE(1172), + [sym__can] = STATE(1171), + [sym__cannot] = STATE(1171), + [sym__canany] = STATE(1171), + [sym__feature] = STATE(1172), + [sym__custom] = STATE(1172), [sym_switch] = STATE(126), [sym_loop] = STATE(126), [sym_loop_operator] = STATE(126), - [sym__for] = STATE(1084), - [sym__foreach] = STATE(1084), - [sym__forelse] = STATE(1084), - [sym__while] = STATE(1084), + [sym__for] = STATE(1170), + [sym__foreach] = STATE(1170), + [sym__forelse] = STATE(1170), + [sym__while] = STATE(1170), [sym_envoy] = STATE(126), - [sym__setup] = STATE(1088), - [sym__task] = STATE(1083), - [sym__story] = STATE(1083), - [sym__hooks] = STATE(1088), - [sym__before] = STATE(1088), - [sym__after] = STATE(1088), - [sym__envoy_error] = STATE(1088), - [sym__success] = STATE(1088), - [sym__finished] = STATE(1088), + [sym__setup] = STATE(1176), + [sym__task] = STATE(1169), + [sym__story] = STATE(1169), + [sym__hooks] = STATE(1176), + [sym__before] = STATE(1176), + [sym__after] = STATE(1176), + [sym__envoy_error] = STATE(1176), + [sym__success] = STATE(1176), + [sym__finished] = STATE(1176), [sym_livewire] = STATE(126), - [sym__persist] = STATE(1082), - [sym__teleport] = STATE(1082), - [sym__volt] = STATE(1082), + [sym__persist] = STATE(1168), + [sym__teleport] = STATE(1168), + [sym__volt] = STATE(1168), + [sym_alpine_js] = STATE(126), [sym_text] = STATE(126), - [sym__text] = STATE(688), + [sym__text] = STATE(682), [aux_sym__if_statement_directive_body_repeat1] = STATE(126), - [aux_sym_php_only_repeat1] = STATE(688), - [sym_comment] = ACTIONS(2729), - [aux_sym_keyword_token1] = ACTIONS(2625), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2627), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2629), - [anon_sym_ATphp] = ACTIONS(2631), - [aux_sym_attribute_token1] = ACTIONS(2633), - [aux_sym__inline_directive_token1] = ACTIONS(2635), - [anon_sym_ATfragment] = ACTIONS(2637), - [anon_sym_ATsection] = ACTIONS(2639), - [anon_sym_ATonce] = ACTIONS(2641), - [anon_sym_ATverbatim] = ACTIONS(2643), - [anon_sym_ATpush] = ACTIONS(2645), - [anon_sym_ATpushOnce] = ACTIONS(2647), - [anon_sym_ATpushIf] = ACTIONS(2649), - [anon_sym_ATprepend] = ACTIONS(2651), - [anon_sym_ATprependOnce] = ACTIONS(2653), - [anon_sym_ATelse] = ACTIONS(2655), - [aux_sym_conditional_keyword_token1] = ACTIONS(2657), - [anon_sym_ATif] = ACTIONS(2659), - [anon_sym_ATunless] = ACTIONS(2661), - [anon_sym_ATisset] = ACTIONS(2663), - [anon_sym_ATempty] = ACTIONS(2665), - [anon_sym_ATauth] = ACTIONS(2667), - [anon_sym_ATguest] = ACTIONS(2669), - [anon_sym_ATproduction] = ACTIONS(2671), - [anon_sym_ATenv] = ACTIONS(2673), - [anon_sym_AThasSection] = ACTIONS(2675), - [anon_sym_ATsectionMissing] = ACTIONS(2677), - [anon_sym_ATerror] = ACTIONS(2679), - [anon_sym_ATcan] = ACTIONS(2681), - [anon_sym_ATcannot] = ACTIONS(2683), - [anon_sym_ATcanany] = ACTIONS(2685), - [anon_sym_ATfeature] = ACTIONS(2687), - [aux_sym__custom_token1] = ACTIONS(2689), - [aux_sym__custom_token2] = ACTIONS(2691), - [aux_sym__custom_token3] = ACTIONS(497), - [anon_sym_ATswitch] = ACTIONS(2693), - [aux_sym_loop_operator_token1] = ACTIONS(2695), - [anon_sym_ATfor] = ACTIONS(2697), - [anon_sym_ATforeach] = ACTIONS(2699), - [anon_sym_ATforelse] = ACTIONS(2701), - [anon_sym_ATwhile] = ACTIONS(2703), - [anon_sym_ATsetup] = ACTIONS(2705), - [anon_sym_ATtask] = ACTIONS(2707), - [anon_sym_ATstory] = ACTIONS(2709), - [anon_sym_ATbefore] = ACTIONS(2711), - [anon_sym_ATafter] = ACTIONS(2713), - [anon_sym_ATsuccess] = ACTIONS(2715), - [anon_sym_ATfinished] = ACTIONS(2717), - [anon_sym_ATpersist] = ACTIONS(2719), - [anon_sym_ATteleport] = ACTIONS(2721), - [anon_sym_ATvolt] = ACTIONS(2723), - [aux_sym__text_token1] = ACTIONS(2725), - [aux_sym__text_token2] = ACTIONS(2725), - [aux_sym__text_token3] = ACTIONS(2727), + [aux_sym_php_only_repeat1] = STATE(682), + [sym_comment] = ACTIONS(2509), + [aux_sym_keyword_token1] = ACTIONS(2403), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2405), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2407), + [anon_sym_ATphp] = ACTIONS(2409), + [aux_sym_attribute_token1] = ACTIONS(2411), + [aux_sym__inline_directive_token1] = ACTIONS(2413), + [anon_sym_ATfragment] = ACTIONS(2415), + [anon_sym_ATsection] = ACTIONS(2417), + [anon_sym_ATonce] = ACTIONS(2419), + [anon_sym_ATverbatim] = ACTIONS(2421), + [anon_sym_ATpush] = ACTIONS(2423), + [anon_sym_ATpushOnce] = ACTIONS(2425), + [anon_sym_ATpushIf] = ACTIONS(2427), + [anon_sym_ATprepend] = ACTIONS(2429), + [anon_sym_ATprependOnce] = ACTIONS(2431), + [anon_sym_ATelse] = ACTIONS(2433), + [aux_sym_conditional_keyword_token1] = ACTIONS(2435), + [anon_sym_ATif] = ACTIONS(2437), + [anon_sym_ATunless] = ACTIONS(2439), + [anon_sym_ATisset] = ACTIONS(2441), + [anon_sym_ATempty] = ACTIONS(2443), + [anon_sym_ATauth] = ACTIONS(2445), + [anon_sym_ATguest] = ACTIONS(2447), + [anon_sym_ATproduction] = ACTIONS(2449), + [anon_sym_ATenv] = ACTIONS(2451), + [anon_sym_AThasSection] = ACTIONS(2453), + [anon_sym_ATsectionMissing] = ACTIONS(2455), + [anon_sym_ATerror] = ACTIONS(2457), + [anon_sym_ATcan] = ACTIONS(2459), + [anon_sym_ATcannot] = ACTIONS(2461), + [anon_sym_ATcanany] = ACTIONS(2463), + [anon_sym_ATfeature] = ACTIONS(2465), + [anon_sym_ATendfeature] = ACTIONS(369), + [aux_sym__custom_token1] = ACTIONS(2467), + [aux_sym__custom_token2] = ACTIONS(2469), + [anon_sym_ATswitch] = ACTIONS(2471), + [aux_sym_loop_operator_token1] = ACTIONS(2473), + [anon_sym_ATfor] = ACTIONS(2475), + [anon_sym_ATforeach] = ACTIONS(2477), + [anon_sym_ATforelse] = ACTIONS(2479), + [anon_sym_ATwhile] = ACTIONS(2481), + [anon_sym_ATsetup] = ACTIONS(2483), + [anon_sym_ATtask] = ACTIONS(2485), + [anon_sym_ATstory] = ACTIONS(2487), + [anon_sym_ATbefore] = ACTIONS(2489), + [anon_sym_ATafter] = ACTIONS(2491), + [anon_sym_ATsuccess] = ACTIONS(2493), + [anon_sym_ATfinished] = ACTIONS(2495), + [anon_sym_ATpersist] = ACTIONS(2497), + [anon_sym_ATteleport] = ACTIONS(2499), + [anon_sym_ATvolt] = ACTIONS(2501), + [aux_sym_alpine_js_token1] = ACTIONS(2503), + [aux_sym__text_token1] = ACTIONS(2505), + [aux_sym__text_token2] = ACTIONS(2505), + [aux_sym__text_token3] = ACTIONS(2507), }, - [124] = { + [122] = { + [sym__definition] = STATE(122), + [sym_keyword] = STATE(122), + [sym_php_statement] = STATE(122), + [sym__escaped] = STATE(1867), + [sym__unescaped] = STATE(1867), + [sym__raw] = STATE(1867), + [sym__inline_raw] = STATE(1867), + [sym__multi_line_raw] = STATE(1867), + [sym_attribute] = STATE(122), + [sym__inline_directive] = STATE(122), + [sym__nested_directive] = STATE(122), + [sym_fragment] = STATE(122), + [sym_section] = STATE(122), + [sym_inlineSection] = STATE(122), + [sym_once] = STATE(122), + [sym_verbatim] = STATE(122), + [sym_stack] = STATE(122), + [sym__push] = STATE(1868), + [sym__pushOnce] = STATE(1868), + [sym__pushIf] = STATE(1868), + [sym__prepend] = STATE(1868), + [sym__prependOnce] = STATE(1868), + [sym_conditional] = STATE(122), + [sym_conditional_keyword] = STATE(122), + [sym__if] = STATE(1869), + [sym__unless] = STATE(1869), + [sym__isset] = STATE(1869), + [sym__empty] = STATE(1869), + [sym__auth] = STATE(1869), + [sym__guest] = STATE(1869), + [sym__production] = STATE(1869), + [sym__env] = STATE(1869), + [sym__hasSection] = STATE(1869), + [sym__sectionMissing] = STATE(1869), + [sym__error] = STATE(1869), + [sym_authorization] = STATE(1869), + [sym__can] = STATE(1870), + [sym__cannot] = STATE(1870), + [sym__canany] = STATE(1870), + [sym__feature] = STATE(1869), + [sym__custom] = STATE(1869), + [sym_switch] = STATE(122), + [sym_loop] = STATE(122), + [sym_loop_operator] = STATE(122), + [sym__for] = STATE(1871), + [sym__foreach] = STATE(1871), + [sym__forelse] = STATE(1871), + [sym__while] = STATE(1871), + [sym_envoy] = STATE(122), + [sym__setup] = STATE(1867), + [sym__task] = STATE(1872), + [sym__story] = STATE(1872), + [sym__hooks] = STATE(1867), + [sym__before] = STATE(1867), + [sym__after] = STATE(1867), + [sym__envoy_error] = STATE(1867), + [sym__success] = STATE(1867), + [sym__finished] = STATE(1867), + [sym_livewire] = STATE(122), + [sym__persist] = STATE(1873), + [sym__teleport] = STATE(1873), + [sym__volt] = STATE(1873), + [sym_alpine_js] = STATE(122), + [sym_text] = STATE(122), + [sym__text] = STATE(693), + [aux_sym__if_statement_directive_body_repeat1] = STATE(122), + [aux_sym_php_only_repeat1] = STATE(693), + [sym_comment] = ACTIONS(2511), + [aux_sym_keyword_token1] = ACTIONS(2514), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2517), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2520), + [anon_sym_ATphp] = ACTIONS(2523), + [aux_sym_attribute_token1] = ACTIONS(2526), + [aux_sym__inline_directive_token1] = ACTIONS(2529), + [anon_sym_ATfragment] = ACTIONS(2532), + [anon_sym_ATsection] = ACTIONS(2535), + [anon_sym_ATonce] = ACTIONS(2538), + [anon_sym_ATverbatim] = ACTIONS(2541), + [anon_sym_ATpush] = ACTIONS(2544), + [anon_sym_ATpushOnce] = ACTIONS(2547), + [anon_sym_ATpushIf] = ACTIONS(2550), + [anon_sym_ATprepend] = ACTIONS(2553), + [anon_sym_ATprependOnce] = ACTIONS(2556), + [anon_sym_ATelse] = ACTIONS(2559), + [aux_sym_conditional_keyword_token1] = ACTIONS(2562), + [anon_sym_ATif] = ACTIONS(2565), + [anon_sym_ATunless] = ACTIONS(2568), + [anon_sym_ATisset] = ACTIONS(2571), + [anon_sym_ATempty] = ACTIONS(2574), + [anon_sym_ATauth] = ACTIONS(2577), + [anon_sym_ATguest] = ACTIONS(2580), + [anon_sym_ATproduction] = ACTIONS(2583), + [anon_sym_ATenv] = ACTIONS(2586), + [anon_sym_AThasSection] = ACTIONS(2589), + [anon_sym_ATsectionMissing] = ACTIONS(2592), + [anon_sym_ATerror] = ACTIONS(2595), + [anon_sym_ATcan] = ACTIONS(2598), + [anon_sym_ATcannot] = ACTIONS(2601), + [anon_sym_ATendcannot] = ACTIONS(966), + [anon_sym_ATcanany] = ACTIONS(2604), + [anon_sym_ATfeature] = ACTIONS(2607), + [aux_sym__custom_token1] = ACTIONS(2610), + [aux_sym__custom_token2] = ACTIONS(2613), + [anon_sym_ATswitch] = ACTIONS(2616), + [aux_sym_loop_operator_token1] = ACTIONS(2619), + [anon_sym_ATfor] = ACTIONS(2622), + [anon_sym_ATforeach] = ACTIONS(2625), + [anon_sym_ATforelse] = ACTIONS(2628), + [anon_sym_ATwhile] = ACTIONS(2631), + [anon_sym_ATsetup] = ACTIONS(2634), + [anon_sym_ATtask] = ACTIONS(2637), + [anon_sym_ATstory] = ACTIONS(2640), + [anon_sym_ATbefore] = ACTIONS(2643), + [anon_sym_ATafter] = ACTIONS(2646), + [anon_sym_ATsuccess] = ACTIONS(2649), + [anon_sym_ATfinished] = ACTIONS(2652), + [anon_sym_ATpersist] = ACTIONS(2655), + [anon_sym_ATteleport] = ACTIONS(2658), + [anon_sym_ATvolt] = ACTIONS(2661), + [aux_sym_alpine_js_token1] = ACTIONS(2664), + [aux_sym__text_token1] = ACTIONS(2667), + [aux_sym__text_token2] = ACTIONS(2667), + [aux_sym__text_token3] = ACTIONS(2670), + }, + [123] = { [sym__definition] = STATE(124), [sym_keyword] = STATE(124), [sym_php_statement] = STATE(124), - [sym__escaped] = STATE(1925), - [sym__unescaped] = STATE(1925), - [sym__raw] = STATE(1925), - [sym__inline_raw] = STATE(1925), - [sym__multi_line_raw] = STATE(1925), + [sym__escaped] = STATE(1085), + [sym__unescaped] = STATE(1085), + [sym__raw] = STATE(1085), + [sym__inline_raw] = STATE(1085), + [sym__multi_line_raw] = STATE(1085), [sym_attribute] = STATE(124), [sym__inline_directive] = STATE(124), [sym__nested_directive] = STATE(124), @@ -40904,120 +41499,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(124), [sym_verbatim] = STATE(124), [sym_stack] = STATE(124), - [sym__push] = STATE(1926), - [sym__pushOnce] = STATE(1926), - [sym__pushIf] = STATE(1926), - [sym__prepend] = STATE(1926), - [sym__prependOnce] = STATE(1926), + [sym__push] = STATE(1084), + [sym__pushOnce] = STATE(1084), + [sym__pushIf] = STATE(1084), + [sym__prepend] = STATE(1084), + [sym__prependOnce] = STATE(1084), [sym_conditional] = STATE(124), [sym_conditional_keyword] = STATE(124), - [sym__if] = STATE(1927), - [sym__unless] = STATE(1927), - [sym__isset] = STATE(1927), - [sym__empty] = STATE(1927), - [sym__auth] = STATE(1927), - [sym__guest] = STATE(1927), - [sym__production] = STATE(1927), - [sym__env] = STATE(1927), - [sym__hasSection] = STATE(1927), - [sym__sectionMissing] = STATE(1927), - [sym__error] = STATE(1927), - [sym_authorization] = STATE(1927), - [sym__can] = STATE(1928), - [sym__cannot] = STATE(1928), - [sym__canany] = STATE(1928), - [sym__feature] = STATE(1927), - [sym__custom] = STATE(1927), + [sym__if] = STATE(1082), + [sym__unless] = STATE(1082), + [sym__isset] = STATE(1082), + [sym__empty] = STATE(1082), + [sym__auth] = STATE(1082), + [sym__guest] = STATE(1082), + [sym__production] = STATE(1082), + [sym__env] = STATE(1082), + [sym__hasSection] = STATE(1082), + [sym__sectionMissing] = STATE(1082), + [sym__error] = STATE(1082), + [sym_authorization] = STATE(1082), + [sym__can] = STATE(1081), + [sym__cannot] = STATE(1081), + [sym__canany] = STATE(1081), + [sym__feature] = STATE(1082), + [sym__custom] = STATE(1082), [sym_switch] = STATE(124), [sym_loop] = STATE(124), [sym_loop_operator] = STATE(124), - [sym__for] = STATE(1929), - [sym__foreach] = STATE(1929), - [sym__forelse] = STATE(1929), - [sym__while] = STATE(1929), + [sym__for] = STATE(1080), + [sym__foreach] = STATE(1080), + [sym__forelse] = STATE(1080), + [sym__while] = STATE(1080), [sym_envoy] = STATE(124), - [sym__setup] = STATE(1925), - [sym__task] = STATE(1930), - [sym__story] = STATE(1930), - [sym__hooks] = STATE(1925), - [sym__before] = STATE(1925), - [sym__after] = STATE(1925), - [sym__envoy_error] = STATE(1925), - [sym__success] = STATE(1925), - [sym__finished] = STATE(1925), + [sym__setup] = STATE(1085), + [sym__task] = STATE(1079), + [sym__story] = STATE(1079), + [sym__hooks] = STATE(1085), + [sym__before] = STATE(1085), + [sym__after] = STATE(1085), + [sym__envoy_error] = STATE(1085), + [sym__success] = STATE(1085), + [sym__finished] = STATE(1085), [sym_livewire] = STATE(124), - [sym__persist] = STATE(1931), - [sym__teleport] = STATE(1931), - [sym__volt] = STATE(1931), + [sym__persist] = STATE(1078), + [sym__teleport] = STATE(1078), + [sym__volt] = STATE(1078), + [sym_alpine_js] = STATE(124), [sym_text] = STATE(124), - [sym__text] = STATE(679), + [sym__text] = STATE(687), [aux_sym__if_statement_directive_body_repeat1] = STATE(124), - [aux_sym_php_only_repeat1] = STATE(679), - [sym_comment] = ACTIONS(2731), - [aux_sym_keyword_token1] = ACTIONS(2734), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2737), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2740), - [anon_sym_ATphp] = ACTIONS(2743), - [aux_sym_attribute_token1] = ACTIONS(2746), - [aux_sym__inline_directive_token1] = ACTIONS(2749), - [anon_sym_ATfragment] = ACTIONS(2752), - [anon_sym_ATsection] = ACTIONS(2755), - [anon_sym_ATonce] = ACTIONS(2758), - [anon_sym_ATverbatim] = ACTIONS(2761), - [anon_sym_ATpush] = ACTIONS(2764), - [anon_sym_ATpushOnce] = ACTIONS(2767), - [anon_sym_ATpushIf] = ACTIONS(2770), - [anon_sym_ATprepend] = ACTIONS(2773), - [anon_sym_ATprependOnce] = ACTIONS(2776), - [anon_sym_ATelse] = ACTIONS(2779), - [aux_sym_conditional_keyword_token1] = ACTIONS(2782), - [anon_sym_ATif] = ACTIONS(2785), - [anon_sym_ATunless] = ACTIONS(2788), - [anon_sym_ATisset] = ACTIONS(2791), - [anon_sym_ATempty] = ACTIONS(2794), - [anon_sym_ATauth] = ACTIONS(2797), - [anon_sym_ATguest] = ACTIONS(2800), - [anon_sym_ATproduction] = ACTIONS(2803), - [anon_sym_ATenv] = ACTIONS(2806), - [anon_sym_AThasSection] = ACTIONS(2809), - [anon_sym_ATsectionMissing] = ACTIONS(2812), - [anon_sym_ATerror] = ACTIONS(2815), - [anon_sym_ATcan] = ACTIONS(2818), - [anon_sym_ATcannot] = ACTIONS(2821), - [anon_sym_ATcanany] = ACTIONS(2824), - [anon_sym_ATendcanany] = ACTIONS(633), - [anon_sym_ATfeature] = ACTIONS(2827), - [aux_sym__custom_token1] = ACTIONS(2830), - [aux_sym__custom_token2] = ACTIONS(2833), - [anon_sym_ATswitch] = ACTIONS(2836), - [aux_sym_loop_operator_token1] = ACTIONS(2839), - [anon_sym_ATfor] = ACTIONS(2842), - [anon_sym_ATforeach] = ACTIONS(2845), - [anon_sym_ATforelse] = ACTIONS(2848), - [anon_sym_ATwhile] = ACTIONS(2851), - [anon_sym_ATsetup] = ACTIONS(2854), - [anon_sym_ATtask] = ACTIONS(2857), - [anon_sym_ATstory] = ACTIONS(2860), - [anon_sym_ATbefore] = ACTIONS(2863), - [anon_sym_ATafter] = ACTIONS(2866), - [anon_sym_ATsuccess] = ACTIONS(2869), - [anon_sym_ATfinished] = ACTIONS(2872), - [anon_sym_ATpersist] = ACTIONS(2875), - [anon_sym_ATteleport] = ACTIONS(2878), - [anon_sym_ATvolt] = ACTIONS(2881), - [aux_sym__text_token1] = ACTIONS(2884), - [aux_sym__text_token2] = ACTIONS(2884), - [aux_sym__text_token3] = ACTIONS(2887), + [aux_sym_php_only_repeat1] = STATE(687), + [sym_comment] = ACTIONS(2673), + [aux_sym_keyword_token1] = ACTIONS(2675), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2677), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2679), + [anon_sym_ATphp] = ACTIONS(2681), + [aux_sym_attribute_token1] = ACTIONS(2683), + [aux_sym__inline_directive_token1] = ACTIONS(2685), + [anon_sym_ATfragment] = ACTIONS(2687), + [anon_sym_ATsection] = ACTIONS(2689), + [anon_sym_ATonce] = ACTIONS(2691), + [anon_sym_ATverbatim] = ACTIONS(2693), + [anon_sym_ATpush] = ACTIONS(2695), + [anon_sym_ATpushOnce] = ACTIONS(2697), + [anon_sym_ATpushIf] = ACTIONS(2699), + [anon_sym_ATprepend] = ACTIONS(2701), + [anon_sym_ATprependOnce] = ACTIONS(2703), + [anon_sym_ATelse] = ACTIONS(2705), + [aux_sym_conditional_keyword_token1] = ACTIONS(2707), + [anon_sym_ATif] = ACTIONS(2709), + [anon_sym_ATunless] = ACTIONS(2711), + [anon_sym_ATisset] = ACTIONS(2713), + [anon_sym_ATempty] = ACTIONS(2715), + [anon_sym_ATauth] = ACTIONS(2717), + [anon_sym_ATguest] = ACTIONS(2719), + [anon_sym_ATproduction] = ACTIONS(2721), + [anon_sym_ATenv] = ACTIONS(2723), + [anon_sym_AThasSection] = ACTIONS(2725), + [anon_sym_ATsectionMissing] = ACTIONS(2727), + [anon_sym_ATerror] = ACTIONS(2729), + [anon_sym_ATcan] = ACTIONS(2731), + [anon_sym_ATcannot] = ACTIONS(2733), + [anon_sym_ATcanany] = ACTIONS(2735), + [anon_sym_ATfeature] = ACTIONS(2737), + [aux_sym__custom_token1] = ACTIONS(2739), + [aux_sym__custom_token2] = ACTIONS(2741), + [aux_sym__custom_token3] = ACTIONS(481), + [anon_sym_ATswitch] = ACTIONS(2743), + [aux_sym_loop_operator_token1] = ACTIONS(2745), + [anon_sym_ATfor] = ACTIONS(2747), + [anon_sym_ATforeach] = ACTIONS(2749), + [anon_sym_ATforelse] = ACTIONS(2751), + [anon_sym_ATwhile] = ACTIONS(2753), + [anon_sym_ATsetup] = ACTIONS(2755), + [anon_sym_ATtask] = ACTIONS(2757), + [anon_sym_ATstory] = ACTIONS(2759), + [anon_sym_ATbefore] = ACTIONS(2761), + [anon_sym_ATafter] = ACTIONS(2763), + [anon_sym_ATsuccess] = ACTIONS(2765), + [anon_sym_ATfinished] = ACTIONS(2767), + [anon_sym_ATpersist] = ACTIONS(2769), + [anon_sym_ATteleport] = ACTIONS(2771), + [anon_sym_ATvolt] = ACTIONS(2773), + [aux_sym_alpine_js_token1] = ACTIONS(2775), + [aux_sym__text_token1] = ACTIONS(2777), + [aux_sym__text_token2] = ACTIONS(2777), + [aux_sym__text_token3] = ACTIONS(2779), + }, + [124] = { + [sym__definition] = STATE(128), + [sym_keyword] = STATE(128), + [sym_php_statement] = STATE(128), + [sym__escaped] = STATE(1085), + [sym__unescaped] = STATE(1085), + [sym__raw] = STATE(1085), + [sym__inline_raw] = STATE(1085), + [sym__multi_line_raw] = STATE(1085), + [sym_attribute] = STATE(128), + [sym__inline_directive] = STATE(128), + [sym__nested_directive] = STATE(128), + [sym_fragment] = STATE(128), + [sym_section] = STATE(128), + [sym_inlineSection] = STATE(128), + [sym_once] = STATE(128), + [sym_verbatim] = STATE(128), + [sym_stack] = STATE(128), + [sym__push] = STATE(1084), + [sym__pushOnce] = STATE(1084), + [sym__pushIf] = STATE(1084), + [sym__prepend] = STATE(1084), + [sym__prependOnce] = STATE(1084), + [sym_conditional] = STATE(128), + [sym_conditional_keyword] = STATE(128), + [sym__if] = STATE(1082), + [sym__unless] = STATE(1082), + [sym__isset] = STATE(1082), + [sym__empty] = STATE(1082), + [sym__auth] = STATE(1082), + [sym__guest] = STATE(1082), + [sym__production] = STATE(1082), + [sym__env] = STATE(1082), + [sym__hasSection] = STATE(1082), + [sym__sectionMissing] = STATE(1082), + [sym__error] = STATE(1082), + [sym_authorization] = STATE(1082), + [sym__can] = STATE(1081), + [sym__cannot] = STATE(1081), + [sym__canany] = STATE(1081), + [sym__feature] = STATE(1082), + [sym__custom] = STATE(1082), + [sym_switch] = STATE(128), + [sym_loop] = STATE(128), + [sym_loop_operator] = STATE(128), + [sym__for] = STATE(1080), + [sym__foreach] = STATE(1080), + [sym__forelse] = STATE(1080), + [sym__while] = STATE(1080), + [sym_envoy] = STATE(128), + [sym__setup] = STATE(1085), + [sym__task] = STATE(1079), + [sym__story] = STATE(1079), + [sym__hooks] = STATE(1085), + [sym__before] = STATE(1085), + [sym__after] = STATE(1085), + [sym__envoy_error] = STATE(1085), + [sym__success] = STATE(1085), + [sym__finished] = STATE(1085), + [sym_livewire] = STATE(128), + [sym__persist] = STATE(1078), + [sym__teleport] = STATE(1078), + [sym__volt] = STATE(1078), + [sym_alpine_js] = STATE(128), + [sym_text] = STATE(128), + [sym__text] = STATE(687), + [aux_sym__if_statement_directive_body_repeat1] = STATE(128), + [aux_sym_php_only_repeat1] = STATE(687), + [sym_comment] = ACTIONS(2781), + [aux_sym_keyword_token1] = ACTIONS(2675), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2677), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2679), + [anon_sym_ATphp] = ACTIONS(2681), + [aux_sym_attribute_token1] = ACTIONS(2683), + [aux_sym__inline_directive_token1] = ACTIONS(2685), + [anon_sym_ATfragment] = ACTIONS(2687), + [anon_sym_ATsection] = ACTIONS(2689), + [anon_sym_ATonce] = ACTIONS(2691), + [anon_sym_ATverbatim] = ACTIONS(2693), + [anon_sym_ATpush] = ACTIONS(2695), + [anon_sym_ATpushOnce] = ACTIONS(2697), + [anon_sym_ATpushIf] = ACTIONS(2699), + [anon_sym_ATprepend] = ACTIONS(2701), + [anon_sym_ATprependOnce] = ACTIONS(2703), + [anon_sym_ATelse] = ACTIONS(2705), + [aux_sym_conditional_keyword_token1] = ACTIONS(2707), + [anon_sym_ATif] = ACTIONS(2709), + [anon_sym_ATunless] = ACTIONS(2711), + [anon_sym_ATisset] = ACTIONS(2713), + [anon_sym_ATempty] = ACTIONS(2715), + [anon_sym_ATauth] = ACTIONS(2717), + [anon_sym_ATguest] = ACTIONS(2719), + [anon_sym_ATproduction] = ACTIONS(2721), + [anon_sym_ATenv] = ACTIONS(2723), + [anon_sym_AThasSection] = ACTIONS(2725), + [anon_sym_ATsectionMissing] = ACTIONS(2727), + [anon_sym_ATerror] = ACTIONS(2729), + [anon_sym_ATcan] = ACTIONS(2731), + [anon_sym_ATcannot] = ACTIONS(2733), + [anon_sym_ATcanany] = ACTIONS(2735), + [anon_sym_ATfeature] = ACTIONS(2737), + [aux_sym__custom_token1] = ACTIONS(2739), + [aux_sym__custom_token2] = ACTIONS(2741), + [aux_sym__custom_token3] = ACTIONS(369), + [anon_sym_ATswitch] = ACTIONS(2743), + [aux_sym_loop_operator_token1] = ACTIONS(2745), + [anon_sym_ATfor] = ACTIONS(2747), + [anon_sym_ATforeach] = ACTIONS(2749), + [anon_sym_ATforelse] = ACTIONS(2751), + [anon_sym_ATwhile] = ACTIONS(2753), + [anon_sym_ATsetup] = ACTIONS(2755), + [anon_sym_ATtask] = ACTIONS(2757), + [anon_sym_ATstory] = ACTIONS(2759), + [anon_sym_ATbefore] = ACTIONS(2761), + [anon_sym_ATafter] = ACTIONS(2763), + [anon_sym_ATsuccess] = ACTIONS(2765), + [anon_sym_ATfinished] = ACTIONS(2767), + [anon_sym_ATpersist] = ACTIONS(2769), + [anon_sym_ATteleport] = ACTIONS(2771), + [anon_sym_ATvolt] = ACTIONS(2773), + [aux_sym_alpine_js_token1] = ACTIONS(2775), + [aux_sym__text_token1] = ACTIONS(2777), + [aux_sym__text_token2] = ACTIONS(2777), + [aux_sym__text_token3] = ACTIONS(2779), }, [125] = { [sym__definition] = STATE(125), [sym_keyword] = STATE(125), [sym_php_statement] = STATE(125), - [sym__escaped] = STATE(1175), - [sym__unescaped] = STATE(1175), - [sym__raw] = STATE(1175), - [sym__inline_raw] = STATE(1175), - [sym__multi_line_raw] = STATE(1175), + [sym__escaped] = STATE(1467), + [sym__unescaped] = STATE(1467), + [sym__raw] = STATE(1467), + [sym__inline_raw] = STATE(1467), + [sym__multi_line_raw] = STATE(1467), [sym_attribute] = STATE(125), [sym__inline_directive] = STATE(125), [sym__nested_directive] = STATE(125), @@ -41027,120 +41749,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(125), [sym_verbatim] = STATE(125), [sym_stack] = STATE(125), - [sym__push] = STATE(1174), - [sym__pushOnce] = STATE(1174), - [sym__pushIf] = STATE(1174), - [sym__prepend] = STATE(1174), - [sym__prependOnce] = STATE(1174), + [sym__push] = STATE(1380), + [sym__pushOnce] = STATE(1380), + [sym__pushIf] = STATE(1380), + [sym__prepend] = STATE(1380), + [sym__prependOnce] = STATE(1380), [sym_conditional] = STATE(125), [sym_conditional_keyword] = STATE(125), - [sym__if] = STATE(1173), - [sym__unless] = STATE(1173), - [sym__isset] = STATE(1173), - [sym__empty] = STATE(1173), - [sym__auth] = STATE(1173), - [sym__guest] = STATE(1173), - [sym__production] = STATE(1173), - [sym__env] = STATE(1173), - [sym__hasSection] = STATE(1173), - [sym__sectionMissing] = STATE(1173), - [sym__error] = STATE(1173), - [sym_authorization] = STATE(1173), - [sym__can] = STATE(1172), - [sym__cannot] = STATE(1172), - [sym__canany] = STATE(1172), - [sym__feature] = STATE(1173), - [sym__custom] = STATE(1173), + [sym__if] = STATE(1290), + [sym__unless] = STATE(1290), + [sym__isset] = STATE(1290), + [sym__empty] = STATE(1290), + [sym__auth] = STATE(1290), + [sym__guest] = STATE(1290), + [sym__production] = STATE(1290), + [sym__env] = STATE(1290), + [sym__hasSection] = STATE(1290), + [sym__sectionMissing] = STATE(1290), + [sym__error] = STATE(1290), + [sym_authorization] = STATE(1290), + [sym__can] = STATE(1282), + [sym__cannot] = STATE(1282), + [sym__canany] = STATE(1282), + [sym__feature] = STATE(1290), + [sym__custom] = STATE(1290), [sym_switch] = STATE(125), [sym_loop] = STATE(125), [sym_loop_operator] = STATE(125), - [sym__for] = STATE(1171), - [sym__foreach] = STATE(1171), - [sym__forelse] = STATE(1171), - [sym__while] = STATE(1171), + [sym__for] = STATE(1260), + [sym__foreach] = STATE(1260), + [sym__forelse] = STATE(1260), + [sym__while] = STATE(1260), [sym_envoy] = STATE(125), - [sym__setup] = STATE(1175), - [sym__task] = STATE(1170), - [sym__story] = STATE(1170), - [sym__hooks] = STATE(1175), - [sym__before] = STATE(1175), - [sym__after] = STATE(1175), - [sym__envoy_error] = STATE(1175), - [sym__success] = STATE(1175), - [sym__finished] = STATE(1175), + [sym__setup] = STATE(1467), + [sym__task] = STATE(1259), + [sym__story] = STATE(1259), + [sym__hooks] = STATE(1467), + [sym__before] = STATE(1467), + [sym__after] = STATE(1467), + [sym__envoy_error] = STATE(1467), + [sym__success] = STATE(1467), + [sym__finished] = STATE(1467), [sym_livewire] = STATE(125), - [sym__persist] = STATE(1168), - [sym__teleport] = STATE(1168), - [sym__volt] = STATE(1168), + [sym__persist] = STATE(1258), + [sym__teleport] = STATE(1258), + [sym__volt] = STATE(1258), + [sym_alpine_js] = STATE(125), [sym_text] = STATE(125), - [sym__text] = STATE(683), + [sym__text] = STATE(678), [aux_sym__if_statement_directive_body_repeat1] = STATE(125), - [aux_sym_php_only_repeat1] = STATE(683), - [sym_comment] = ACTIONS(2890), - [aux_sym_keyword_token1] = ACTIONS(2893), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2896), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2899), - [anon_sym_ATphp] = ACTIONS(2902), - [aux_sym_attribute_token1] = ACTIONS(2905), - [aux_sym__inline_directive_token1] = ACTIONS(2908), - [anon_sym_ATfragment] = ACTIONS(2911), - [anon_sym_ATsection] = ACTIONS(2914), - [anon_sym_ATonce] = ACTIONS(2917), - [anon_sym_ATverbatim] = ACTIONS(2920), - [anon_sym_ATpush] = ACTIONS(2923), - [anon_sym_ATpushOnce] = ACTIONS(2926), - [anon_sym_ATpushIf] = ACTIONS(2929), - [anon_sym_ATprepend] = ACTIONS(2932), - [anon_sym_ATprependOnce] = ACTIONS(2935), - [anon_sym_ATelse] = ACTIONS(2938), - [aux_sym_conditional_keyword_token1] = ACTIONS(2941), - [anon_sym_ATif] = ACTIONS(2944), - [anon_sym_ATunless] = ACTIONS(2947), - [anon_sym_ATisset] = ACTIONS(2950), - [anon_sym_ATempty] = ACTIONS(2953), - [anon_sym_ATauth] = ACTIONS(2956), - [anon_sym_ATguest] = ACTIONS(2959), - [anon_sym_ATproduction] = ACTIONS(2962), - [anon_sym_ATenv] = ACTIONS(2965), - [anon_sym_AThasSection] = ACTIONS(2968), - [anon_sym_ATsectionMissing] = ACTIONS(2971), - [anon_sym_ATerror] = ACTIONS(2974), - [anon_sym_ATcan] = ACTIONS(2977), - [anon_sym_ATcannot] = ACTIONS(2980), - [anon_sym_ATcanany] = ACTIONS(2983), - [anon_sym_ATfeature] = ACTIONS(2986), - [anon_sym_ATendfeature] = ACTIONS(633), - [aux_sym__custom_token1] = ACTIONS(2989), - [aux_sym__custom_token2] = ACTIONS(2992), - [anon_sym_ATswitch] = ACTIONS(2995), - [aux_sym_loop_operator_token1] = ACTIONS(2998), - [anon_sym_ATfor] = ACTIONS(3001), - [anon_sym_ATforeach] = ACTIONS(3004), - [anon_sym_ATforelse] = ACTIONS(3007), - [anon_sym_ATwhile] = ACTIONS(3010), - [anon_sym_ATsetup] = ACTIONS(3013), - [anon_sym_ATtask] = ACTIONS(3016), - [anon_sym_ATstory] = ACTIONS(3019), - [anon_sym_ATbefore] = ACTIONS(3022), - [anon_sym_ATafter] = ACTIONS(3025), - [anon_sym_ATsuccess] = ACTIONS(3028), - [anon_sym_ATfinished] = ACTIONS(3031), - [anon_sym_ATpersist] = ACTIONS(3034), - [anon_sym_ATteleport] = ACTIONS(3037), - [anon_sym_ATvolt] = ACTIONS(3040), - [aux_sym__text_token1] = ACTIONS(3043), - [aux_sym__text_token2] = ACTIONS(3043), - [aux_sym__text_token3] = ACTIONS(3046), + [aux_sym_php_only_repeat1] = STATE(678), + [sym_comment] = ACTIONS(2783), + [aux_sym_keyword_token1] = ACTIONS(2786), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2789), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2792), + [anon_sym_ATphp] = ACTIONS(2795), + [aux_sym_attribute_token1] = ACTIONS(2798), + [aux_sym__inline_directive_token1] = ACTIONS(2801), + [anon_sym_ATfragment] = ACTIONS(2804), + [anon_sym_ATsection] = ACTIONS(2807), + [anon_sym_ATonce] = ACTIONS(2810), + [anon_sym_ATverbatim] = ACTIONS(2813), + [anon_sym_ATpush] = ACTIONS(2816), + [anon_sym_ATpushOnce] = ACTIONS(2819), + [anon_sym_ATpushIf] = ACTIONS(2822), + [anon_sym_ATprepend] = ACTIONS(2825), + [anon_sym_ATprependOnce] = ACTIONS(2828), + [anon_sym_ATelse] = ACTIONS(2831), + [aux_sym_conditional_keyword_token1] = ACTIONS(2834), + [anon_sym_ATif] = ACTIONS(2837), + [anon_sym_ATunless] = ACTIONS(2840), + [anon_sym_ATisset] = ACTIONS(2843), + [anon_sym_ATempty] = ACTIONS(2846), + [anon_sym_ATauth] = ACTIONS(2849), + [anon_sym_ATguest] = ACTIONS(2852), + [anon_sym_ATproduction] = ACTIONS(2855), + [anon_sym_ATenv] = ACTIONS(2858), + [anon_sym_AThasSection] = ACTIONS(2861), + [anon_sym_ATsectionMissing] = ACTIONS(2864), + [anon_sym_ATerror] = ACTIONS(2867), + [anon_sym_ATcan] = ACTIONS(2870), + [anon_sym_ATcannot] = ACTIONS(2873), + [anon_sym_ATcanany] = ACTIONS(2876), + [anon_sym_ATendcanany] = ACTIONS(966), + [anon_sym_ATfeature] = ACTIONS(2879), + [aux_sym__custom_token1] = ACTIONS(2882), + [aux_sym__custom_token2] = ACTIONS(2885), + [anon_sym_ATswitch] = ACTIONS(2888), + [aux_sym_loop_operator_token1] = ACTIONS(2891), + [anon_sym_ATfor] = ACTIONS(2894), + [anon_sym_ATforeach] = ACTIONS(2897), + [anon_sym_ATforelse] = ACTIONS(2900), + [anon_sym_ATwhile] = ACTIONS(2903), + [anon_sym_ATsetup] = ACTIONS(2906), + [anon_sym_ATtask] = ACTIONS(2909), + [anon_sym_ATstory] = ACTIONS(2912), + [anon_sym_ATbefore] = ACTIONS(2915), + [anon_sym_ATafter] = ACTIONS(2918), + [anon_sym_ATsuccess] = ACTIONS(2921), + [anon_sym_ATfinished] = ACTIONS(2924), + [anon_sym_ATpersist] = ACTIONS(2927), + [anon_sym_ATteleport] = ACTIONS(2930), + [anon_sym_ATvolt] = ACTIONS(2933), + [aux_sym_alpine_js_token1] = ACTIONS(2936), + [aux_sym__text_token1] = ACTIONS(2939), + [aux_sym__text_token2] = ACTIONS(2939), + [aux_sym__text_token3] = ACTIONS(2942), }, [126] = { [sym__definition] = STATE(126), [sym_keyword] = STATE(126), [sym_php_statement] = STATE(126), - [sym__escaped] = STATE(1088), - [sym__unescaped] = STATE(1088), - [sym__raw] = STATE(1088), - [sym__inline_raw] = STATE(1088), - [sym__multi_line_raw] = STATE(1088), + [sym__escaped] = STATE(1176), + [sym__unescaped] = STATE(1176), + [sym__raw] = STATE(1176), + [sym__inline_raw] = STATE(1176), + [sym__multi_line_raw] = STATE(1176), [sym_attribute] = STATE(126), [sym__inline_directive] = STATE(126), [sym__nested_directive] = STATE(126), @@ -41150,366 +41874,372 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(126), [sym_verbatim] = STATE(126), [sym_stack] = STATE(126), - [sym__push] = STATE(1087), - [sym__pushOnce] = STATE(1087), - [sym__pushIf] = STATE(1087), - [sym__prepend] = STATE(1087), - [sym__prependOnce] = STATE(1087), + [sym__push] = STATE(1173), + [sym__pushOnce] = STATE(1173), + [sym__pushIf] = STATE(1173), + [sym__prepend] = STATE(1173), + [sym__prependOnce] = STATE(1173), [sym_conditional] = STATE(126), [sym_conditional_keyword] = STATE(126), - [sym__if] = STATE(1086), - [sym__unless] = STATE(1086), - [sym__isset] = STATE(1086), - [sym__empty] = STATE(1086), - [sym__auth] = STATE(1086), - [sym__guest] = STATE(1086), - [sym__production] = STATE(1086), - [sym__env] = STATE(1086), - [sym__hasSection] = STATE(1086), - [sym__sectionMissing] = STATE(1086), - [sym__error] = STATE(1086), - [sym_authorization] = STATE(1086), - [sym__can] = STATE(1085), - [sym__cannot] = STATE(1085), - [sym__canany] = STATE(1085), - [sym__feature] = STATE(1086), - [sym__custom] = STATE(1086), + [sym__if] = STATE(1172), + [sym__unless] = STATE(1172), + [sym__isset] = STATE(1172), + [sym__empty] = STATE(1172), + [sym__auth] = STATE(1172), + [sym__guest] = STATE(1172), + [sym__production] = STATE(1172), + [sym__env] = STATE(1172), + [sym__hasSection] = STATE(1172), + [sym__sectionMissing] = STATE(1172), + [sym__error] = STATE(1172), + [sym_authorization] = STATE(1172), + [sym__can] = STATE(1171), + [sym__cannot] = STATE(1171), + [sym__canany] = STATE(1171), + [sym__feature] = STATE(1172), + [sym__custom] = STATE(1172), [sym_switch] = STATE(126), [sym_loop] = STATE(126), [sym_loop_operator] = STATE(126), - [sym__for] = STATE(1084), - [sym__foreach] = STATE(1084), - [sym__forelse] = STATE(1084), - [sym__while] = STATE(1084), + [sym__for] = STATE(1170), + [sym__foreach] = STATE(1170), + [sym__forelse] = STATE(1170), + [sym__while] = STATE(1170), [sym_envoy] = STATE(126), - [sym__setup] = STATE(1088), - [sym__task] = STATE(1083), - [sym__story] = STATE(1083), - [sym__hooks] = STATE(1088), - [sym__before] = STATE(1088), - [sym__after] = STATE(1088), - [sym__envoy_error] = STATE(1088), - [sym__success] = STATE(1088), - [sym__finished] = STATE(1088), + [sym__setup] = STATE(1176), + [sym__task] = STATE(1169), + [sym__story] = STATE(1169), + [sym__hooks] = STATE(1176), + [sym__before] = STATE(1176), + [sym__after] = STATE(1176), + [sym__envoy_error] = STATE(1176), + [sym__success] = STATE(1176), + [sym__finished] = STATE(1176), [sym_livewire] = STATE(126), - [sym__persist] = STATE(1082), - [sym__teleport] = STATE(1082), - [sym__volt] = STATE(1082), + [sym__persist] = STATE(1168), + [sym__teleport] = STATE(1168), + [sym__volt] = STATE(1168), + [sym_alpine_js] = STATE(126), [sym_text] = STATE(126), - [sym__text] = STATE(688), + [sym__text] = STATE(682), [aux_sym__if_statement_directive_body_repeat1] = STATE(126), - [aux_sym_php_only_repeat1] = STATE(688), - [sym_comment] = ACTIONS(3049), - [aux_sym_keyword_token1] = ACTIONS(3052), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3055), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3058), - [anon_sym_ATphp] = ACTIONS(3061), - [aux_sym_attribute_token1] = ACTIONS(3064), - [aux_sym__inline_directive_token1] = ACTIONS(3067), - [anon_sym_ATfragment] = ACTIONS(3070), - [anon_sym_ATsection] = ACTIONS(3073), - [anon_sym_ATonce] = ACTIONS(3076), - [anon_sym_ATverbatim] = ACTIONS(3079), - [anon_sym_ATpush] = ACTIONS(3082), - [anon_sym_ATpushOnce] = ACTIONS(3085), - [anon_sym_ATpushIf] = ACTIONS(3088), - [anon_sym_ATprepend] = ACTIONS(3091), - [anon_sym_ATprependOnce] = ACTIONS(3094), - [anon_sym_ATelse] = ACTIONS(3097), - [aux_sym_conditional_keyword_token1] = ACTIONS(3100), - [anon_sym_ATif] = ACTIONS(3103), - [anon_sym_ATunless] = ACTIONS(3106), - [anon_sym_ATisset] = ACTIONS(3109), - [anon_sym_ATempty] = ACTIONS(3112), - [anon_sym_ATauth] = ACTIONS(3115), - [anon_sym_ATguest] = ACTIONS(3118), - [anon_sym_ATproduction] = ACTIONS(3121), - [anon_sym_ATenv] = ACTIONS(3124), - [anon_sym_AThasSection] = ACTIONS(3127), - [anon_sym_ATsectionMissing] = ACTIONS(3130), - [anon_sym_ATerror] = ACTIONS(3133), - [anon_sym_ATcan] = ACTIONS(3136), - [anon_sym_ATcannot] = ACTIONS(3139), - [anon_sym_ATcanany] = ACTIONS(3142), - [anon_sym_ATfeature] = ACTIONS(3145), - [aux_sym__custom_token1] = ACTIONS(3148), - [aux_sym__custom_token2] = ACTIONS(3151), - [aux_sym__custom_token3] = ACTIONS(633), - [anon_sym_ATswitch] = ACTIONS(3154), - [aux_sym_loop_operator_token1] = ACTIONS(3157), - [anon_sym_ATfor] = ACTIONS(3160), - [anon_sym_ATforeach] = ACTIONS(3163), - [anon_sym_ATforelse] = ACTIONS(3166), - [anon_sym_ATwhile] = ACTIONS(3169), - [anon_sym_ATsetup] = ACTIONS(3172), - [anon_sym_ATtask] = ACTIONS(3175), - [anon_sym_ATstory] = ACTIONS(3178), - [anon_sym_ATbefore] = ACTIONS(3181), - [anon_sym_ATafter] = ACTIONS(3184), - [anon_sym_ATsuccess] = ACTIONS(3187), - [anon_sym_ATfinished] = ACTIONS(3190), - [anon_sym_ATpersist] = ACTIONS(3193), - [anon_sym_ATteleport] = ACTIONS(3196), - [anon_sym_ATvolt] = ACTIONS(3199), - [aux_sym__text_token1] = ACTIONS(3202), - [aux_sym__text_token2] = ACTIONS(3202), - [aux_sym__text_token3] = ACTIONS(3205), + [aux_sym_php_only_repeat1] = STATE(682), + [sym_comment] = ACTIONS(2945), + [aux_sym_keyword_token1] = ACTIONS(2948), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2951), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2954), + [anon_sym_ATphp] = ACTIONS(2957), + [aux_sym_attribute_token1] = ACTIONS(2960), + [aux_sym__inline_directive_token1] = ACTIONS(2963), + [anon_sym_ATfragment] = ACTIONS(2966), + [anon_sym_ATsection] = ACTIONS(2969), + [anon_sym_ATonce] = ACTIONS(2972), + [anon_sym_ATverbatim] = ACTIONS(2975), + [anon_sym_ATpush] = ACTIONS(2978), + [anon_sym_ATpushOnce] = ACTIONS(2981), + [anon_sym_ATpushIf] = ACTIONS(2984), + [anon_sym_ATprepend] = ACTIONS(2987), + [anon_sym_ATprependOnce] = ACTIONS(2990), + [anon_sym_ATelse] = ACTIONS(2993), + [aux_sym_conditional_keyword_token1] = ACTIONS(2996), + [anon_sym_ATif] = ACTIONS(2999), + [anon_sym_ATunless] = ACTIONS(3002), + [anon_sym_ATisset] = ACTIONS(3005), + [anon_sym_ATempty] = ACTIONS(3008), + [anon_sym_ATauth] = ACTIONS(3011), + [anon_sym_ATguest] = ACTIONS(3014), + [anon_sym_ATproduction] = ACTIONS(3017), + [anon_sym_ATenv] = ACTIONS(3020), + [anon_sym_AThasSection] = ACTIONS(3023), + [anon_sym_ATsectionMissing] = ACTIONS(3026), + [anon_sym_ATerror] = ACTIONS(3029), + [anon_sym_ATcan] = ACTIONS(3032), + [anon_sym_ATcannot] = ACTIONS(3035), + [anon_sym_ATcanany] = ACTIONS(3038), + [anon_sym_ATfeature] = ACTIONS(3041), + [anon_sym_ATendfeature] = ACTIONS(966), + [aux_sym__custom_token1] = ACTIONS(3044), + [aux_sym__custom_token2] = ACTIONS(3047), + [anon_sym_ATswitch] = ACTIONS(3050), + [aux_sym_loop_operator_token1] = ACTIONS(3053), + [anon_sym_ATfor] = ACTIONS(3056), + [anon_sym_ATforeach] = ACTIONS(3059), + [anon_sym_ATforelse] = ACTIONS(3062), + [anon_sym_ATwhile] = ACTIONS(3065), + [anon_sym_ATsetup] = ACTIONS(3068), + [anon_sym_ATtask] = ACTIONS(3071), + [anon_sym_ATstory] = ACTIONS(3074), + [anon_sym_ATbefore] = ACTIONS(3077), + [anon_sym_ATafter] = ACTIONS(3080), + [anon_sym_ATsuccess] = ACTIONS(3083), + [anon_sym_ATfinished] = ACTIONS(3086), + [anon_sym_ATpersist] = ACTIONS(3089), + [anon_sym_ATteleport] = ACTIONS(3092), + [anon_sym_ATvolt] = ACTIONS(3095), + [aux_sym_alpine_js_token1] = ACTIONS(3098), + [aux_sym__text_token1] = ACTIONS(3101), + [aux_sym__text_token2] = ACTIONS(3101), + [aux_sym__text_token3] = ACTIONS(3104), }, [127] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(3208), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(3107), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [128] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(3210), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__definition] = STATE(128), + [sym_keyword] = STATE(128), + [sym_php_statement] = STATE(128), + [sym__escaped] = STATE(1085), + [sym__unescaped] = STATE(1085), + [sym__raw] = STATE(1085), + [sym__inline_raw] = STATE(1085), + [sym__multi_line_raw] = STATE(1085), + [sym_attribute] = STATE(128), + [sym__inline_directive] = STATE(128), + [sym__nested_directive] = STATE(128), + [sym_fragment] = STATE(128), + [sym_section] = STATE(128), + [sym_inlineSection] = STATE(128), + [sym_once] = STATE(128), + [sym_verbatim] = STATE(128), + [sym_stack] = STATE(128), + [sym__push] = STATE(1084), + [sym__pushOnce] = STATE(1084), + [sym__pushIf] = STATE(1084), + [sym__prepend] = STATE(1084), + [sym__prependOnce] = STATE(1084), + [sym_conditional] = STATE(128), + [sym_conditional_keyword] = STATE(128), + [sym__if] = STATE(1082), + [sym__unless] = STATE(1082), + [sym__isset] = STATE(1082), + [sym__empty] = STATE(1082), + [sym__auth] = STATE(1082), + [sym__guest] = STATE(1082), + [sym__production] = STATE(1082), + [sym__env] = STATE(1082), + [sym__hasSection] = STATE(1082), + [sym__sectionMissing] = STATE(1082), + [sym__error] = STATE(1082), + [sym_authorization] = STATE(1082), + [sym__can] = STATE(1081), + [sym__cannot] = STATE(1081), + [sym__canany] = STATE(1081), + [sym__feature] = STATE(1082), + [sym__custom] = STATE(1082), + [sym_switch] = STATE(128), + [sym_loop] = STATE(128), + [sym_loop_operator] = STATE(128), + [sym__for] = STATE(1080), + [sym__foreach] = STATE(1080), + [sym__forelse] = STATE(1080), + [sym__while] = STATE(1080), + [sym_envoy] = STATE(128), + [sym__setup] = STATE(1085), + [sym__task] = STATE(1079), + [sym__story] = STATE(1079), + [sym__hooks] = STATE(1085), + [sym__before] = STATE(1085), + [sym__after] = STATE(1085), + [sym__envoy_error] = STATE(1085), + [sym__success] = STATE(1085), + [sym__finished] = STATE(1085), + [sym_livewire] = STATE(128), + [sym__persist] = STATE(1078), + [sym__teleport] = STATE(1078), + [sym__volt] = STATE(1078), + [sym_alpine_js] = STATE(128), + [sym_text] = STATE(128), + [sym__text] = STATE(687), + [aux_sym__if_statement_directive_body_repeat1] = STATE(128), + [aux_sym_php_only_repeat1] = STATE(687), + [sym_comment] = ACTIONS(3109), + [aux_sym_keyword_token1] = ACTIONS(3112), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3115), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3118), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3124), + [aux_sym__inline_directive_token1] = ACTIONS(3127), + [anon_sym_ATfragment] = ACTIONS(3130), + [anon_sym_ATsection] = ACTIONS(3133), + [anon_sym_ATonce] = ACTIONS(3136), + [anon_sym_ATverbatim] = ACTIONS(3139), + [anon_sym_ATpush] = ACTIONS(3142), + [anon_sym_ATpushOnce] = ACTIONS(3145), + [anon_sym_ATpushIf] = ACTIONS(3148), + [anon_sym_ATprepend] = ACTIONS(3151), + [anon_sym_ATprependOnce] = ACTIONS(3154), + [anon_sym_ATelse] = ACTIONS(3157), + [aux_sym_conditional_keyword_token1] = ACTIONS(3160), + [anon_sym_ATif] = ACTIONS(3163), + [anon_sym_ATunless] = ACTIONS(3166), + [anon_sym_ATisset] = ACTIONS(3169), + [anon_sym_ATempty] = ACTIONS(3172), + [anon_sym_ATauth] = ACTIONS(3175), + [anon_sym_ATguest] = ACTIONS(3178), + [anon_sym_ATproduction] = ACTIONS(3181), + [anon_sym_ATenv] = ACTIONS(3184), + [anon_sym_AThasSection] = ACTIONS(3187), + [anon_sym_ATsectionMissing] = ACTIONS(3190), + [anon_sym_ATerror] = ACTIONS(3193), + [anon_sym_ATcan] = ACTIONS(3196), + [anon_sym_ATcannot] = ACTIONS(3199), + [anon_sym_ATcanany] = ACTIONS(3202), + [anon_sym_ATfeature] = ACTIONS(3205), + [aux_sym__custom_token1] = ACTIONS(3208), + [aux_sym__custom_token2] = ACTIONS(3211), + [aux_sym__custom_token3] = ACTIONS(966), + [anon_sym_ATswitch] = ACTIONS(3214), + [aux_sym_loop_operator_token1] = ACTIONS(3217), + [anon_sym_ATfor] = ACTIONS(3220), + [anon_sym_ATforeach] = ACTIONS(3223), + [anon_sym_ATforelse] = ACTIONS(3226), + [anon_sym_ATwhile] = ACTIONS(3229), + [anon_sym_ATsetup] = ACTIONS(3232), + [anon_sym_ATtask] = ACTIONS(3235), + [anon_sym_ATstory] = ACTIONS(3238), + [anon_sym_ATbefore] = ACTIONS(3241), + [anon_sym_ATafter] = ACTIONS(3244), + [anon_sym_ATsuccess] = ACTIONS(3247), + [anon_sym_ATfinished] = ACTIONS(3250), + [anon_sym_ATpersist] = ACTIONS(3253), + [anon_sym_ATteleport] = ACTIONS(3256), + [anon_sym_ATvolt] = ACTIONS(3259), + [aux_sym_alpine_js_token1] = ACTIONS(3262), + [aux_sym__text_token1] = ACTIONS(3265), + [aux_sym__text_token2] = ACTIONS(3265), + [aux_sym__text_token3] = ACTIONS(3268), }, [129] = { [sym__definition] = STATE(129), [sym_keyword] = STATE(129), [sym_php_statement] = STATE(129), - [sym__escaped] = STATE(1511), - [sym__unescaped] = STATE(1511), - [sym__raw] = STATE(1511), - [sym__inline_raw] = STATE(1511), - [sym__multi_line_raw] = STATE(1511), + [sym__escaped] = STATE(1529), + [sym__unescaped] = STATE(1529), + [sym__raw] = STATE(1529), + [sym__inline_raw] = STATE(1529), + [sym__multi_line_raw] = STATE(1529), [sym_attribute] = STATE(129), [sym__inline_directive] = STATE(129), [sym__nested_directive] = STATE(129), @@ -41519,243 +42249,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(129), [sym_verbatim] = STATE(129), [sym_stack] = STATE(129), - [sym__push] = STATE(1512), - [sym__pushOnce] = STATE(1512), - [sym__pushIf] = STATE(1512), - [sym__prepend] = STATE(1512), - [sym__prependOnce] = STATE(1512), + [sym__push] = STATE(1530), + [sym__pushOnce] = STATE(1530), + [sym__pushIf] = STATE(1530), + [sym__prepend] = STATE(1530), + [sym__prependOnce] = STATE(1530), [sym_conditional] = STATE(129), [sym_conditional_keyword] = STATE(129), - [sym__if] = STATE(1513), - [sym__unless] = STATE(1513), - [sym__isset] = STATE(1513), - [sym__empty] = STATE(1513), - [sym__auth] = STATE(1513), - [sym__guest] = STATE(1513), - [sym__production] = STATE(1513), - [sym__env] = STATE(1513), - [sym__hasSection] = STATE(1513), - [sym__sectionMissing] = STATE(1513), - [sym__error] = STATE(1513), - [sym_authorization] = STATE(1513), - [sym__can] = STATE(1514), - [sym__cannot] = STATE(1514), - [sym__canany] = STATE(1514), - [sym__feature] = STATE(1513), - [sym__custom] = STATE(1513), + [sym__if] = STATE(1531), + [sym__unless] = STATE(1531), + [sym__isset] = STATE(1531), + [sym__empty] = STATE(1531), + [sym__auth] = STATE(1531), + [sym__guest] = STATE(1531), + [sym__production] = STATE(1531), + [sym__env] = STATE(1531), + [sym__hasSection] = STATE(1531), + [sym__sectionMissing] = STATE(1531), + [sym__error] = STATE(1531), + [sym_authorization] = STATE(1531), + [sym__can] = STATE(1532), + [sym__cannot] = STATE(1532), + [sym__canany] = STATE(1532), + [sym__feature] = STATE(1531), + [sym__custom] = STATE(1531), [sym_switch] = STATE(129), [sym_loop] = STATE(129), [sym_loop_operator] = STATE(129), - [sym__for] = STATE(1515), - [sym__foreach] = STATE(1515), - [sym__forelse] = STATE(1515), - [sym__while] = STATE(1515), + [sym__for] = STATE(1533), + [sym__foreach] = STATE(1533), + [sym__forelse] = STATE(1533), + [sym__while] = STATE(1533), [sym_envoy] = STATE(129), - [sym__setup] = STATE(1511), - [sym__task] = STATE(1516), - [sym__story] = STATE(1516), - [sym__hooks] = STATE(1511), - [sym__before] = STATE(1511), - [sym__after] = STATE(1511), - [sym__envoy_error] = STATE(1511), - [sym__success] = STATE(1511), - [sym__finished] = STATE(1511), + [sym__setup] = STATE(1529), + [sym__task] = STATE(1534), + [sym__story] = STATE(1534), + [sym__hooks] = STATE(1529), + [sym__before] = STATE(1529), + [sym__after] = STATE(1529), + [sym__envoy_error] = STATE(1529), + [sym__success] = STATE(1529), + [sym__finished] = STATE(1529), [sym_livewire] = STATE(129), - [sym__persist] = STATE(1517), - [sym__teleport] = STATE(1517), - [sym__volt] = STATE(1517), + [sym__persist] = STATE(1535), + [sym__teleport] = STATE(1535), + [sym__volt] = STATE(1535), + [sym_alpine_js] = STATE(129), [sym_text] = STATE(129), - [sym__text] = STATE(677), + [sym__text] = STATE(676), [aux_sym__if_statement_directive_body_repeat1] = STATE(129), - [aux_sym_php_only_repeat1] = STATE(677), - [sym_comment] = ACTIONS(3212), - [aux_sym_keyword_token1] = ACTIONS(3215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3218), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3221), - [anon_sym_ATphp] = ACTIONS(3224), - [aux_sym_attribute_token1] = ACTIONS(3227), - [aux_sym__inline_directive_token1] = ACTIONS(3230), - [anon_sym_ATfragment] = ACTIONS(3233), - [anon_sym_ATsection] = ACTIONS(3236), - [anon_sym_ATonce] = ACTIONS(3239), - [anon_sym_ATverbatim] = ACTIONS(3242), - [anon_sym_ATpush] = ACTIONS(3245), - [anon_sym_ATpushOnce] = ACTIONS(3248), - [anon_sym_ATpushIf] = ACTIONS(3251), - [anon_sym_ATprepend] = ACTIONS(3254), - [anon_sym_ATprependOnce] = ACTIONS(3257), - [anon_sym_ATelse] = ACTIONS(3260), - [aux_sym_conditional_keyword_token1] = ACTIONS(3263), - [anon_sym_ATif] = ACTIONS(3266), - [anon_sym_ATunless] = ACTIONS(3269), - [anon_sym_ATisset] = ACTIONS(3272), - [anon_sym_ATempty] = ACTIONS(3275), - [anon_sym_ATendempty] = ACTIONS(633), - [anon_sym_ATauth] = ACTIONS(3278), - [anon_sym_ATguest] = ACTIONS(3281), - [anon_sym_ATproduction] = ACTIONS(3284), - [anon_sym_ATenv] = ACTIONS(3287), - [anon_sym_AThasSection] = ACTIONS(3290), - [anon_sym_ATsectionMissing] = ACTIONS(3293), - [anon_sym_ATerror] = ACTIONS(3296), - [anon_sym_ATcan] = ACTIONS(3299), - [anon_sym_ATcannot] = ACTIONS(3302), - [anon_sym_ATcanany] = ACTIONS(3305), - [anon_sym_ATfeature] = ACTIONS(3308), - [aux_sym__custom_token1] = ACTIONS(3311), - [aux_sym__custom_token2] = ACTIONS(3314), - [anon_sym_ATswitch] = ACTIONS(3317), - [aux_sym_loop_operator_token1] = ACTIONS(3320), - [anon_sym_ATfor] = ACTIONS(3323), - [anon_sym_ATforeach] = ACTIONS(3326), - [anon_sym_ATforelse] = ACTIONS(3329), - [anon_sym_ATwhile] = ACTIONS(3332), - [anon_sym_ATsetup] = ACTIONS(3335), - [anon_sym_ATtask] = ACTIONS(3338), - [anon_sym_ATstory] = ACTIONS(3341), - [anon_sym_ATbefore] = ACTIONS(3344), - [anon_sym_ATafter] = ACTIONS(3347), - [anon_sym_ATsuccess] = ACTIONS(3350), - [anon_sym_ATfinished] = ACTIONS(3353), - [anon_sym_ATpersist] = ACTIONS(3356), - [anon_sym_ATteleport] = ACTIONS(3359), - [anon_sym_ATvolt] = ACTIONS(3362), - [aux_sym__text_token1] = ACTIONS(3365), - [aux_sym__text_token2] = ACTIONS(3365), - [aux_sym__text_token3] = ACTIONS(3368), + [aux_sym_php_only_repeat1] = STATE(676), + [sym_comment] = ACTIONS(3271), + [aux_sym_keyword_token1] = ACTIONS(3274), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3277), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3280), + [anon_sym_ATphp] = ACTIONS(3283), + [aux_sym_attribute_token1] = ACTIONS(3286), + [aux_sym__inline_directive_token1] = ACTIONS(3289), + [anon_sym_ATfragment] = ACTIONS(3292), + [anon_sym_ATsection] = ACTIONS(3295), + [anon_sym_ATonce] = ACTIONS(3298), + [anon_sym_ATverbatim] = ACTIONS(3301), + [anon_sym_ATpush] = ACTIONS(3304), + [anon_sym_ATpushOnce] = ACTIONS(3307), + [anon_sym_ATpushIf] = ACTIONS(3310), + [anon_sym_ATprepend] = ACTIONS(3313), + [anon_sym_ATprependOnce] = ACTIONS(3316), + [anon_sym_ATelse] = ACTIONS(3319), + [aux_sym_conditional_keyword_token1] = ACTIONS(3322), + [anon_sym_ATif] = ACTIONS(3325), + [anon_sym_ATunless] = ACTIONS(3328), + [anon_sym_ATisset] = ACTIONS(3331), + [anon_sym_ATempty] = ACTIONS(3334), + [anon_sym_ATendempty] = ACTIONS(966), + [anon_sym_ATauth] = ACTIONS(3337), + [anon_sym_ATguest] = ACTIONS(3340), + [anon_sym_ATproduction] = ACTIONS(3343), + [anon_sym_ATenv] = ACTIONS(3346), + [anon_sym_AThasSection] = ACTIONS(3349), + [anon_sym_ATsectionMissing] = ACTIONS(3352), + [anon_sym_ATerror] = ACTIONS(3355), + [anon_sym_ATcan] = ACTIONS(3358), + [anon_sym_ATcannot] = ACTIONS(3361), + [anon_sym_ATcanany] = ACTIONS(3364), + [anon_sym_ATfeature] = ACTIONS(3367), + [aux_sym__custom_token1] = ACTIONS(3370), + [aux_sym__custom_token2] = ACTIONS(3373), + [anon_sym_ATswitch] = ACTIONS(3376), + [aux_sym_loop_operator_token1] = ACTIONS(3379), + [anon_sym_ATfor] = ACTIONS(3382), + [anon_sym_ATforeach] = ACTIONS(3385), + [anon_sym_ATforelse] = ACTIONS(3388), + [anon_sym_ATwhile] = ACTIONS(3391), + [anon_sym_ATsetup] = ACTIONS(3394), + [anon_sym_ATtask] = ACTIONS(3397), + [anon_sym_ATstory] = ACTIONS(3400), + [anon_sym_ATbefore] = ACTIONS(3403), + [anon_sym_ATafter] = ACTIONS(3406), + [anon_sym_ATsuccess] = ACTIONS(3409), + [anon_sym_ATfinished] = ACTIONS(3412), + [anon_sym_ATpersist] = ACTIONS(3415), + [anon_sym_ATteleport] = ACTIONS(3418), + [anon_sym_ATvolt] = ACTIONS(3421), + [aux_sym_alpine_js_token1] = ACTIONS(3424), + [aux_sym__text_token1] = ACTIONS(3427), + [aux_sym__text_token2] = ACTIONS(3427), + [aux_sym__text_token3] = ACTIONS(3430), }, [130] = { - [sym__definition] = STATE(86), - [sym_keyword] = STATE(86), - [sym_php_statement] = STATE(86), - [sym__escaped] = STATE(1679), - [sym__unescaped] = STATE(1679), - [sym__raw] = STATE(1679), - [sym__inline_raw] = STATE(1679), - [sym__multi_line_raw] = STATE(1679), - [sym_attribute] = STATE(86), - [sym__inline_directive] = STATE(86), - [sym__nested_directive] = STATE(86), - [sym_fragment] = STATE(86), - [sym_section] = STATE(86), - [sym_inlineSection] = STATE(86), - [sym_once] = STATE(86), - [sym_verbatim] = STATE(86), - [sym_stack] = STATE(86), - [sym__push] = STATE(1680), - [sym__pushOnce] = STATE(1680), - [sym__pushIf] = STATE(1680), - [sym__prepend] = STATE(1680), - [sym__prependOnce] = STATE(1680), - [sym_conditional] = STATE(86), - [sym_conditional_keyword] = STATE(86), - [sym__if] = STATE(1681), - [sym__unless] = STATE(1681), - [sym__isset] = STATE(1681), - [sym__empty] = STATE(1681), - [sym__auth] = STATE(1681), - [sym__guest] = STATE(1681), - [sym__production] = STATE(1681), - [sym__env] = STATE(1681), - [sym__hasSection] = STATE(1681), - [sym__sectionMissing] = STATE(1681), - [sym__error] = STATE(1681), - [sym_authorization] = STATE(1681), - [sym__can] = STATE(1682), - [sym__cannot] = STATE(1682), - [sym__canany] = STATE(1682), - [sym__feature] = STATE(1681), - [sym__custom] = STATE(1681), - [sym_switch] = STATE(86), - [sym_loop] = STATE(86), - [sym_loop_operator] = STATE(86), - [sym__for] = STATE(749), - [sym__foreach] = STATE(749), - [sym__forelse] = STATE(749), - [sym__while] = STATE(749), - [sym_envoy] = STATE(86), - [sym__setup] = STATE(1679), - [sym__task] = STATE(1684), - [sym__story] = STATE(1684), - [sym__hooks] = STATE(1679), - [sym__before] = STATE(1679), - [sym__after] = STATE(1679), - [sym__envoy_error] = STATE(1679), - [sym__success] = STATE(1679), - [sym__finished] = STATE(1679), - [sym_livewire] = STATE(86), - [sym__persist] = STATE(1685), - [sym__teleport] = STATE(1685), - [sym__volt] = STATE(1685), - [sym_text] = STATE(86), - [sym__text] = STATE(710), - [aux_sym__if_statement_directive_body_repeat1] = STATE(86), - [aux_sym_php_only_repeat1] = STATE(710), - [sym_comment] = ACTIONS(3371), - [aux_sym_keyword_token1] = ACTIONS(3373), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3377), - [anon_sym_ATphp] = ACTIONS(3379), - [aux_sym_attribute_token1] = ACTIONS(3381), - [aux_sym__inline_directive_token1] = ACTIONS(3383), - [anon_sym_ATfragment] = ACTIONS(3385), - [anon_sym_ATsection] = ACTIONS(3387), - [anon_sym_ATonce] = ACTIONS(3389), - [anon_sym_ATverbatim] = ACTIONS(3391), - [anon_sym_ATpush] = ACTIONS(3393), - [anon_sym_ATpushOnce] = ACTIONS(3395), - [anon_sym_ATpushIf] = ACTIONS(3397), - [anon_sym_ATprepend] = ACTIONS(3399), - [anon_sym_ATprependOnce] = ACTIONS(3401), - [anon_sym_ATelse] = ACTIONS(3403), - [aux_sym_conditional_keyword_token1] = ACTIONS(3405), - [anon_sym_ATif] = ACTIONS(3407), - [anon_sym_ATunless] = ACTIONS(3409), - [anon_sym_ATisset] = ACTIONS(3411), - [anon_sym_ATempty] = ACTIONS(3413), - [anon_sym_ATauth] = ACTIONS(3415), - [anon_sym_ATguest] = ACTIONS(3417), - [anon_sym_ATproduction] = ACTIONS(3419), - [anon_sym_ATenv] = ACTIONS(3421), - [anon_sym_AThasSection] = ACTIONS(3423), - [anon_sym_ATsectionMissing] = ACTIONS(3425), - [anon_sym_ATerror] = ACTIONS(3427), - [anon_sym_ATenderror] = ACTIONS(497), - [anon_sym_ATcan] = ACTIONS(3429), - [anon_sym_ATcannot] = ACTIONS(3431), - [anon_sym_ATcanany] = ACTIONS(3433), - [anon_sym_ATfeature] = ACTIONS(3435), - [aux_sym__custom_token1] = ACTIONS(3437), - [aux_sym__custom_token2] = ACTIONS(3439), - [anon_sym_ATswitch] = ACTIONS(3441), - [aux_sym_loop_operator_token1] = ACTIONS(3443), - [anon_sym_ATfor] = ACTIONS(3445), - [anon_sym_ATforeach] = ACTIONS(3447), - [anon_sym_ATforelse] = ACTIONS(3449), - [anon_sym_ATwhile] = ACTIONS(3451), - [anon_sym_ATsetup] = ACTIONS(3453), - [anon_sym_ATtask] = ACTIONS(3455), - [anon_sym_ATstory] = ACTIONS(3457), - [anon_sym_ATbefore] = ACTIONS(3459), - [anon_sym_ATafter] = ACTIONS(3461), - [anon_sym_ATsuccess] = ACTIONS(3463), - [anon_sym_ATfinished] = ACTIONS(3465), - [anon_sym_ATpersist] = ACTIONS(3467), - [anon_sym_ATteleport] = ACTIONS(3469), - [anon_sym_ATvolt] = ACTIONS(3471), - [aux_sym__text_token1] = ACTIONS(3473), - [aux_sym__text_token2] = ACTIONS(3473), - [aux_sym__text_token3] = ACTIONS(3475), - }, - [131] = { [sym__definition] = STATE(130), [sym_keyword] = STATE(130), [sym_php_statement] = STATE(130), - [sym__escaped] = STATE(1679), - [sym__unescaped] = STATE(1679), - [sym__raw] = STATE(1679), - [sym__inline_raw] = STATE(1679), - [sym__multi_line_raw] = STATE(1679), + [sym__escaped] = STATE(1354), + [sym__unescaped] = STATE(1354), + [sym__raw] = STATE(1354), + [sym__inline_raw] = STATE(1354), + [sym__multi_line_raw] = STATE(1354), [sym_attribute] = STATE(130), [sym__inline_directive] = STATE(130), [sym__nested_directive] = STATE(130), @@ -41765,612 +42374,747 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(130), [sym_verbatim] = STATE(130), [sym_stack] = STATE(130), - [sym__push] = STATE(1680), - [sym__pushOnce] = STATE(1680), - [sym__pushIf] = STATE(1680), - [sym__prepend] = STATE(1680), - [sym__prependOnce] = STATE(1680), + [sym__push] = STATE(1355), + [sym__pushOnce] = STATE(1355), + [sym__pushIf] = STATE(1355), + [sym__prepend] = STATE(1355), + [sym__prependOnce] = STATE(1355), [sym_conditional] = STATE(130), [sym_conditional_keyword] = STATE(130), - [sym__if] = STATE(1681), - [sym__unless] = STATE(1681), - [sym__isset] = STATE(1681), - [sym__empty] = STATE(1681), - [sym__auth] = STATE(1681), - [sym__guest] = STATE(1681), - [sym__production] = STATE(1681), - [sym__env] = STATE(1681), - [sym__hasSection] = STATE(1681), - [sym__sectionMissing] = STATE(1681), - [sym__error] = STATE(1681), - [sym_authorization] = STATE(1681), - [sym__can] = STATE(1682), - [sym__cannot] = STATE(1682), - [sym__canany] = STATE(1682), - [sym__feature] = STATE(1681), - [sym__custom] = STATE(1681), + [sym__if] = STATE(1356), + [sym__unless] = STATE(1356), + [sym__isset] = STATE(1356), + [sym__empty] = STATE(1356), + [sym__auth] = STATE(1356), + [sym__guest] = STATE(1356), + [sym__production] = STATE(1356), + [sym__env] = STATE(1356), + [sym__hasSection] = STATE(1356), + [sym__sectionMissing] = STATE(1356), + [sym__error] = STATE(1356), + [sym_authorization] = STATE(1356), + [sym__can] = STATE(1357), + [sym__cannot] = STATE(1357), + [sym__canany] = STATE(1357), + [sym__feature] = STATE(1356), + [sym__custom] = STATE(1356), [sym_switch] = STATE(130), [sym_loop] = STATE(130), [sym_loop_operator] = STATE(130), - [sym__for] = STATE(749), - [sym__foreach] = STATE(749), - [sym__forelse] = STATE(749), - [sym__while] = STATE(749), + [sym__for] = STATE(1358), + [sym__foreach] = STATE(1358), + [sym__forelse] = STATE(1358), + [sym__while] = STATE(1358), [sym_envoy] = STATE(130), - [sym__setup] = STATE(1679), - [sym__task] = STATE(1684), - [sym__story] = STATE(1684), - [sym__hooks] = STATE(1679), - [sym__before] = STATE(1679), - [sym__after] = STATE(1679), - [sym__envoy_error] = STATE(1679), - [sym__success] = STATE(1679), - [sym__finished] = STATE(1679), + [sym__setup] = STATE(1354), + [sym__task] = STATE(1359), + [sym__story] = STATE(1359), + [sym__hooks] = STATE(1354), + [sym__before] = STATE(1354), + [sym__after] = STATE(1354), + [sym__envoy_error] = STATE(1354), + [sym__success] = STATE(1354), + [sym__finished] = STATE(1354), [sym_livewire] = STATE(130), - [sym__persist] = STATE(1685), - [sym__teleport] = STATE(1685), - [sym__volt] = STATE(1685), + [sym__persist] = STATE(1360), + [sym__teleport] = STATE(1360), + [sym__volt] = STATE(1360), + [sym_alpine_js] = STATE(130), [sym_text] = STATE(130), - [sym__text] = STATE(710), + [sym__text] = STATE(685), [aux_sym__if_statement_directive_body_repeat1] = STATE(130), - [aux_sym_php_only_repeat1] = STATE(710), - [sym_comment] = ACTIONS(3477), - [aux_sym_keyword_token1] = ACTIONS(3373), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3377), - [anon_sym_ATphp] = ACTIONS(3379), - [aux_sym_attribute_token1] = ACTIONS(3381), - [aux_sym__inline_directive_token1] = ACTIONS(3383), - [anon_sym_ATfragment] = ACTIONS(3385), - [anon_sym_ATsection] = ACTIONS(3387), - [anon_sym_ATonce] = ACTIONS(3389), - [anon_sym_ATverbatim] = ACTIONS(3391), - [anon_sym_ATpush] = ACTIONS(3393), - [anon_sym_ATpushOnce] = ACTIONS(3395), - [anon_sym_ATpushIf] = ACTIONS(3397), - [anon_sym_ATprepend] = ACTIONS(3399), - [anon_sym_ATprependOnce] = ACTIONS(3401), - [anon_sym_ATelse] = ACTIONS(3403), - [aux_sym_conditional_keyword_token1] = ACTIONS(3405), - [anon_sym_ATif] = ACTIONS(3407), - [anon_sym_ATunless] = ACTIONS(3409), - [anon_sym_ATisset] = ACTIONS(3411), - [anon_sym_ATempty] = ACTIONS(3413), - [anon_sym_ATauth] = ACTIONS(3415), - [anon_sym_ATguest] = ACTIONS(3417), - [anon_sym_ATproduction] = ACTIONS(3419), - [anon_sym_ATenv] = ACTIONS(3421), - [anon_sym_AThasSection] = ACTIONS(3423), - [anon_sym_ATsectionMissing] = ACTIONS(3425), - [anon_sym_ATerror] = ACTIONS(3427), - [anon_sym_ATenderror] = ACTIONS(706), - [anon_sym_ATcan] = ACTIONS(3429), - [anon_sym_ATcannot] = ACTIONS(3431), - [anon_sym_ATcanany] = ACTIONS(3433), - [anon_sym_ATfeature] = ACTIONS(3435), - [aux_sym__custom_token1] = ACTIONS(3437), - [aux_sym__custom_token2] = ACTIONS(3439), - [anon_sym_ATswitch] = ACTIONS(3441), - [aux_sym_loop_operator_token1] = ACTIONS(3443), - [anon_sym_ATfor] = ACTIONS(3445), - [anon_sym_ATforeach] = ACTIONS(3447), - [anon_sym_ATforelse] = ACTIONS(3449), - [anon_sym_ATwhile] = ACTIONS(3451), - [anon_sym_ATsetup] = ACTIONS(3453), - [anon_sym_ATtask] = ACTIONS(3455), - [anon_sym_ATstory] = ACTIONS(3457), - [anon_sym_ATbefore] = ACTIONS(3459), - [anon_sym_ATafter] = ACTIONS(3461), - [anon_sym_ATsuccess] = ACTIONS(3463), - [anon_sym_ATfinished] = ACTIONS(3465), - [anon_sym_ATpersist] = ACTIONS(3467), - [anon_sym_ATteleport] = ACTIONS(3469), - [anon_sym_ATvolt] = ACTIONS(3471), - [aux_sym__text_token1] = ACTIONS(3473), - [aux_sym__text_token2] = ACTIONS(3473), - [aux_sym__text_token3] = ACTIONS(3475), + [aux_sym_php_only_repeat1] = STATE(685), + [sym_comment] = ACTIONS(3433), + [aux_sym_keyword_token1] = ACTIONS(3436), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3439), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3442), + [anon_sym_ATphp] = ACTIONS(3445), + [aux_sym_attribute_token1] = ACTIONS(3448), + [aux_sym__inline_directive_token1] = ACTIONS(3451), + [anon_sym_ATfragment] = ACTIONS(3454), + [anon_sym_ATsection] = ACTIONS(3457), + [anon_sym_ATonce] = ACTIONS(3460), + [anon_sym_ATverbatim] = ACTIONS(3463), + [anon_sym_ATpush] = ACTIONS(3466), + [anon_sym_ATpushOnce] = ACTIONS(3469), + [anon_sym_ATpushIf] = ACTIONS(3472), + [anon_sym_ATprepend] = ACTIONS(3475), + [anon_sym_ATprependOnce] = ACTIONS(3478), + [anon_sym_ATelse] = ACTIONS(3481), + [aux_sym_conditional_keyword_token1] = ACTIONS(3484), + [anon_sym_ATif] = ACTIONS(3487), + [anon_sym_ATunless] = ACTIONS(3490), + [anon_sym_ATendunless] = ACTIONS(966), + [anon_sym_ATisset] = ACTIONS(3493), + [anon_sym_ATempty] = ACTIONS(3496), + [anon_sym_ATauth] = ACTIONS(3499), + [anon_sym_ATguest] = ACTIONS(3502), + [anon_sym_ATproduction] = ACTIONS(3505), + [anon_sym_ATenv] = ACTIONS(3508), + [anon_sym_AThasSection] = ACTIONS(3511), + [anon_sym_ATsectionMissing] = ACTIONS(3514), + [anon_sym_ATerror] = ACTIONS(3517), + [anon_sym_ATcan] = ACTIONS(3520), + [anon_sym_ATcannot] = ACTIONS(3523), + [anon_sym_ATcanany] = ACTIONS(3526), + [anon_sym_ATfeature] = ACTIONS(3529), + [aux_sym__custom_token1] = ACTIONS(3532), + [aux_sym__custom_token2] = ACTIONS(3535), + [anon_sym_ATswitch] = ACTIONS(3538), + [aux_sym_loop_operator_token1] = ACTIONS(3541), + [anon_sym_ATfor] = ACTIONS(3544), + [anon_sym_ATforeach] = ACTIONS(3547), + [anon_sym_ATforelse] = ACTIONS(3550), + [anon_sym_ATwhile] = ACTIONS(3553), + [anon_sym_ATsetup] = ACTIONS(3556), + [anon_sym_ATtask] = ACTIONS(3559), + [anon_sym_ATstory] = ACTIONS(3562), + [anon_sym_ATbefore] = ACTIONS(3565), + [anon_sym_ATafter] = ACTIONS(3568), + [anon_sym_ATsuccess] = ACTIONS(3571), + [anon_sym_ATfinished] = ACTIONS(3574), + [anon_sym_ATpersist] = ACTIONS(3577), + [anon_sym_ATteleport] = ACTIONS(3580), + [anon_sym_ATvolt] = ACTIONS(3583), + [aux_sym_alpine_js_token1] = ACTIONS(3586), + [aux_sym__text_token1] = ACTIONS(3589), + [aux_sym__text_token2] = ACTIONS(3589), + [aux_sym__text_token3] = ACTIONS(3592), + }, + [131] = { + [sym__definition] = STATE(79), + [sym_keyword] = STATE(79), + [sym_php_statement] = STATE(79), + [sym__escaped] = STATE(1699), + [sym__unescaped] = STATE(1699), + [sym__raw] = STATE(1699), + [sym__inline_raw] = STATE(1699), + [sym__multi_line_raw] = STATE(1699), + [sym_attribute] = STATE(79), + [sym__inline_directive] = STATE(79), + [sym__nested_directive] = STATE(79), + [sym_fragment] = STATE(79), + [sym_section] = STATE(79), + [sym_inlineSection] = STATE(79), + [sym_once] = STATE(79), + [sym_verbatim] = STATE(79), + [sym_stack] = STATE(79), + [sym__push] = STATE(1700), + [sym__pushOnce] = STATE(1700), + [sym__pushIf] = STATE(1700), + [sym__prepend] = STATE(1700), + [sym__prependOnce] = STATE(1700), + [sym_conditional] = STATE(79), + [sym_conditional_keyword] = STATE(79), + [sym__if] = STATE(1701), + [sym__unless] = STATE(1701), + [sym__isset] = STATE(1701), + [sym__empty] = STATE(1701), + [sym__auth] = STATE(1701), + [sym__guest] = STATE(1701), + [sym__production] = STATE(1701), + [sym__env] = STATE(1701), + [sym__hasSection] = STATE(1701), + [sym__sectionMissing] = STATE(1701), + [sym__error] = STATE(1701), + [sym_authorization] = STATE(1701), + [sym__can] = STATE(1702), + [sym__cannot] = STATE(1702), + [sym__canany] = STATE(1702), + [sym__feature] = STATE(1701), + [sym__custom] = STATE(1701), + [sym_switch] = STATE(79), + [sym_loop] = STATE(79), + [sym_loop_operator] = STATE(79), + [sym__for] = STATE(1703), + [sym__foreach] = STATE(1703), + [sym__forelse] = STATE(1703), + [sym__while] = STATE(1703), + [sym_envoy] = STATE(79), + [sym__setup] = STATE(1699), + [sym__task] = STATE(1704), + [sym__story] = STATE(1704), + [sym__hooks] = STATE(1699), + [sym__before] = STATE(1699), + [sym__after] = STATE(1699), + [sym__envoy_error] = STATE(1699), + [sym__success] = STATE(1699), + [sym__finished] = STATE(1699), + [sym_livewire] = STATE(79), + [sym__persist] = STATE(1705), + [sym__teleport] = STATE(1705), + [sym__volt] = STATE(1705), + [sym_alpine_js] = STATE(79), + [sym_text] = STATE(79), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(79), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(3595), + [aux_sym_keyword_token1] = ACTIONS(3597), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3599), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3601), + [anon_sym_ATphp] = ACTIONS(3603), + [aux_sym_attribute_token1] = ACTIONS(3605), + [aux_sym__inline_directive_token1] = ACTIONS(3607), + [anon_sym_ATfragment] = ACTIONS(3609), + [anon_sym_ATsection] = ACTIONS(3611), + [anon_sym_ATonce] = ACTIONS(3613), + [anon_sym_ATverbatim] = ACTIONS(3615), + [anon_sym_ATpush] = ACTIONS(3617), + [anon_sym_ATpushOnce] = ACTIONS(3619), + [anon_sym_ATpushIf] = ACTIONS(3621), + [anon_sym_ATprepend] = ACTIONS(3623), + [anon_sym_ATprependOnce] = ACTIONS(3625), + [anon_sym_ATelse] = ACTIONS(3627), + [aux_sym_conditional_keyword_token1] = ACTIONS(3629), + [anon_sym_ATif] = ACTIONS(3631), + [anon_sym_ATunless] = ACTIONS(3633), + [anon_sym_ATisset] = ACTIONS(3635), + [anon_sym_ATempty] = ACTIONS(3637), + [anon_sym_ATauth] = ACTIONS(3639), + [anon_sym_ATguest] = ACTIONS(3641), + [anon_sym_ATproduction] = ACTIONS(3643), + [anon_sym_ATenv] = ACTIONS(3645), + [anon_sym_AThasSection] = ACTIONS(3647), + [anon_sym_ATsectionMissing] = ACTIONS(3649), + [anon_sym_ATerror] = ACTIONS(3651), + [anon_sym_ATenderror] = ACTIONS(369), + [anon_sym_ATcan] = ACTIONS(3653), + [anon_sym_ATcannot] = ACTIONS(3655), + [anon_sym_ATcanany] = ACTIONS(3657), + [anon_sym_ATfeature] = ACTIONS(3659), + [aux_sym__custom_token1] = ACTIONS(3661), + [aux_sym__custom_token2] = ACTIONS(3663), + [anon_sym_ATswitch] = ACTIONS(3665), + [aux_sym_loop_operator_token1] = ACTIONS(3667), + [anon_sym_ATfor] = ACTIONS(3669), + [anon_sym_ATforeach] = ACTIONS(3671), + [anon_sym_ATforelse] = ACTIONS(3673), + [anon_sym_ATwhile] = ACTIONS(3675), + [anon_sym_ATsetup] = ACTIONS(3677), + [anon_sym_ATtask] = ACTIONS(3679), + [anon_sym_ATstory] = ACTIONS(3681), + [anon_sym_ATbefore] = ACTIONS(3683), + [anon_sym_ATafter] = ACTIONS(3685), + [anon_sym_ATsuccess] = ACTIONS(3687), + [anon_sym_ATfinished] = ACTIONS(3689), + [anon_sym_ATpersist] = ACTIONS(3691), + [anon_sym_ATteleport] = ACTIONS(3693), + [anon_sym_ATvolt] = ACTIONS(3695), + [aux_sym_alpine_js_token1] = ACTIONS(3697), + [aux_sym__text_token1] = ACTIONS(3699), + [aux_sym__text_token2] = ACTIONS(3699), + [aux_sym__text_token3] = ACTIONS(3701), }, [132] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(3479), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__definition] = STATE(131), + [sym_keyword] = STATE(131), + [sym_php_statement] = STATE(131), + [sym__escaped] = STATE(1699), + [sym__unescaped] = STATE(1699), + [sym__raw] = STATE(1699), + [sym__inline_raw] = STATE(1699), + [sym__multi_line_raw] = STATE(1699), + [sym_attribute] = STATE(131), + [sym__inline_directive] = STATE(131), + [sym__nested_directive] = STATE(131), + [sym_fragment] = STATE(131), + [sym_section] = STATE(131), + [sym_inlineSection] = STATE(131), + [sym_once] = STATE(131), + [sym_verbatim] = STATE(131), + [sym_stack] = STATE(131), + [sym__push] = STATE(1700), + [sym__pushOnce] = STATE(1700), + [sym__pushIf] = STATE(1700), + [sym__prepend] = STATE(1700), + [sym__prependOnce] = STATE(1700), + [sym_conditional] = STATE(131), + [sym_conditional_keyword] = STATE(131), + [sym__if] = STATE(1701), + [sym__unless] = STATE(1701), + [sym__isset] = STATE(1701), + [sym__empty] = STATE(1701), + [sym__auth] = STATE(1701), + [sym__guest] = STATE(1701), + [sym__production] = STATE(1701), + [sym__env] = STATE(1701), + [sym__hasSection] = STATE(1701), + [sym__sectionMissing] = STATE(1701), + [sym__error] = STATE(1701), + [sym_authorization] = STATE(1701), + [sym__can] = STATE(1702), + [sym__cannot] = STATE(1702), + [sym__canany] = STATE(1702), + [sym__feature] = STATE(1701), + [sym__custom] = STATE(1701), + [sym_switch] = STATE(131), + [sym_loop] = STATE(131), + [sym_loop_operator] = STATE(131), + [sym__for] = STATE(1703), + [sym__foreach] = STATE(1703), + [sym__forelse] = STATE(1703), + [sym__while] = STATE(1703), + [sym_envoy] = STATE(131), + [sym__setup] = STATE(1699), + [sym__task] = STATE(1704), + [sym__story] = STATE(1704), + [sym__hooks] = STATE(1699), + [sym__before] = STATE(1699), + [sym__after] = STATE(1699), + [sym__envoy_error] = STATE(1699), + [sym__success] = STATE(1699), + [sym__finished] = STATE(1699), + [sym_livewire] = STATE(131), + [sym__persist] = STATE(1705), + [sym__teleport] = STATE(1705), + [sym__volt] = STATE(1705), + [sym_alpine_js] = STATE(131), + [sym_text] = STATE(131), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(131), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(3703), + [aux_sym_keyword_token1] = ACTIONS(3597), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3599), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3601), + [anon_sym_ATphp] = ACTIONS(3603), + [aux_sym_attribute_token1] = ACTIONS(3605), + [aux_sym__inline_directive_token1] = ACTIONS(3607), + [anon_sym_ATfragment] = ACTIONS(3609), + [anon_sym_ATsection] = ACTIONS(3611), + [anon_sym_ATonce] = ACTIONS(3613), + [anon_sym_ATverbatim] = ACTIONS(3615), + [anon_sym_ATpush] = ACTIONS(3617), + [anon_sym_ATpushOnce] = ACTIONS(3619), + [anon_sym_ATpushIf] = ACTIONS(3621), + [anon_sym_ATprepend] = ACTIONS(3623), + [anon_sym_ATprependOnce] = ACTIONS(3625), + [anon_sym_ATelse] = ACTIONS(3627), + [aux_sym_conditional_keyword_token1] = ACTIONS(3629), + [anon_sym_ATif] = ACTIONS(3631), + [anon_sym_ATunless] = ACTIONS(3633), + [anon_sym_ATisset] = ACTIONS(3635), + [anon_sym_ATempty] = ACTIONS(3637), + [anon_sym_ATauth] = ACTIONS(3639), + [anon_sym_ATguest] = ACTIONS(3641), + [anon_sym_ATproduction] = ACTIONS(3643), + [anon_sym_ATenv] = ACTIONS(3645), + [anon_sym_AThasSection] = ACTIONS(3647), + [anon_sym_ATsectionMissing] = ACTIONS(3649), + [anon_sym_ATerror] = ACTIONS(3651), + [anon_sym_ATenderror] = ACTIONS(481), + [anon_sym_ATcan] = ACTIONS(3653), + [anon_sym_ATcannot] = ACTIONS(3655), + [anon_sym_ATcanany] = ACTIONS(3657), + [anon_sym_ATfeature] = ACTIONS(3659), + [aux_sym__custom_token1] = ACTIONS(3661), + [aux_sym__custom_token2] = ACTIONS(3663), + [anon_sym_ATswitch] = ACTIONS(3665), + [aux_sym_loop_operator_token1] = ACTIONS(3667), + [anon_sym_ATfor] = ACTIONS(3669), + [anon_sym_ATforeach] = ACTIONS(3671), + [anon_sym_ATforelse] = ACTIONS(3673), + [anon_sym_ATwhile] = ACTIONS(3675), + [anon_sym_ATsetup] = ACTIONS(3677), + [anon_sym_ATtask] = ACTIONS(3679), + [anon_sym_ATstory] = ACTIONS(3681), + [anon_sym_ATbefore] = ACTIONS(3683), + [anon_sym_ATafter] = ACTIONS(3685), + [anon_sym_ATsuccess] = ACTIONS(3687), + [anon_sym_ATfinished] = ACTIONS(3689), + [anon_sym_ATpersist] = ACTIONS(3691), + [anon_sym_ATteleport] = ACTIONS(3693), + [anon_sym_ATvolt] = ACTIONS(3695), + [aux_sym_alpine_js_token1] = ACTIONS(3697), + [aux_sym__text_token1] = ACTIONS(3699), + [aux_sym__text_token2] = ACTIONS(3699), + [aux_sym__text_token3] = ACTIONS(3701), }, [133] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(3481), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(3705), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [134] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(3483), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(3707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [135] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(3485), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(3709), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [136] = { [sym__definition] = STATE(136), [sym_keyword] = STATE(136), [sym_php_statement] = STATE(136), - [sym__escaped] = STATE(1426), - [sym__unescaped] = STATE(1426), - [sym__raw] = STATE(1426), - [sym__inline_raw] = STATE(1426), - [sym__multi_line_raw] = STATE(1426), + [sym__escaped] = STATE(1443), + [sym__unescaped] = STATE(1443), + [sym__raw] = STATE(1443), + [sym__inline_raw] = STATE(1443), + [sym__multi_line_raw] = STATE(1443), [sym_attribute] = STATE(136), [sym__inline_directive] = STATE(136), [sym__nested_directive] = STATE(136), @@ -42380,1472 +43124,497 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(136), [sym_verbatim] = STATE(136), [sym_stack] = STATE(136), - [sym__push] = STATE(1427), - [sym__pushOnce] = STATE(1427), - [sym__pushIf] = STATE(1427), - [sym__prepend] = STATE(1427), - [sym__prependOnce] = STATE(1427), + [sym__push] = STATE(1444), + [sym__pushOnce] = STATE(1444), + [sym__pushIf] = STATE(1444), + [sym__prepend] = STATE(1444), + [sym__prependOnce] = STATE(1444), [sym_conditional] = STATE(136), [sym_conditional_keyword] = STATE(136), - [sym__if] = STATE(1428), - [sym__unless] = STATE(1428), - [sym__isset] = STATE(1428), - [sym__empty] = STATE(1428), - [sym__auth] = STATE(1428), - [sym__guest] = STATE(1428), - [sym__production] = STATE(1428), - [sym__env] = STATE(1428), - [sym__hasSection] = STATE(1428), - [sym__sectionMissing] = STATE(1428), - [sym__error] = STATE(1428), - [sym_authorization] = STATE(1428), - [sym__can] = STATE(1429), - [sym__cannot] = STATE(1429), - [sym__canany] = STATE(1429), - [sym__feature] = STATE(1428), - [sym__custom] = STATE(1428), + [sym__if] = STATE(1445), + [sym__unless] = STATE(1445), + [sym__isset] = STATE(1445), + [sym__empty] = STATE(1445), + [sym__auth] = STATE(1445), + [sym__guest] = STATE(1445), + [sym__production] = STATE(1445), + [sym__env] = STATE(1445), + [sym__hasSection] = STATE(1445), + [sym__sectionMissing] = STATE(1445), + [sym__error] = STATE(1445), + [sym_authorization] = STATE(1445), + [sym__can] = STATE(1446), + [sym__cannot] = STATE(1446), + [sym__canany] = STATE(1446), + [sym__feature] = STATE(1445), + [sym__custom] = STATE(1445), [sym_switch] = STATE(136), [sym_loop] = STATE(136), [sym_loop_operator] = STATE(136), - [sym__for] = STATE(1430), - [sym__foreach] = STATE(1430), - [sym__forelse] = STATE(1430), - [sym__while] = STATE(1430), + [sym__for] = STATE(1447), + [sym__foreach] = STATE(1447), + [sym__forelse] = STATE(1447), + [sym__while] = STATE(1447), [sym_envoy] = STATE(136), - [sym__setup] = STATE(1426), - [sym__task] = STATE(1431), - [sym__story] = STATE(1431), - [sym__hooks] = STATE(1426), - [sym__before] = STATE(1426), - [sym__after] = STATE(1426), - [sym__envoy_error] = STATE(1426), - [sym__success] = STATE(1426), - [sym__finished] = STATE(1426), + [sym__setup] = STATE(1443), + [sym__task] = STATE(1448), + [sym__story] = STATE(1448), + [sym__hooks] = STATE(1443), + [sym__before] = STATE(1443), + [sym__after] = STATE(1443), + [sym__envoy_error] = STATE(1443), + [sym__success] = STATE(1443), + [sym__finished] = STATE(1443), [sym_livewire] = STATE(136), - [sym__persist] = STATE(1432), - [sym__teleport] = STATE(1432), - [sym__volt] = STATE(1432), + [sym__persist] = STATE(1449), + [sym__teleport] = STATE(1449), + [sym__volt] = STATE(1449), + [sym_alpine_js] = STATE(136), [sym_text] = STATE(136), - [sym__text] = STATE(681), + [sym__text] = STATE(680), [aux_sym__if_statement_directive_body_repeat1] = STATE(136), - [aux_sym_php_only_repeat1] = STATE(681), - [sym_comment] = ACTIONS(3487), - [aux_sym_keyword_token1] = ACTIONS(3490), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3493), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3496), - [anon_sym_ATphp] = ACTIONS(3499), - [aux_sym_attribute_token1] = ACTIONS(3502), - [aux_sym__inline_directive_token1] = ACTIONS(3505), - [anon_sym_ATfragment] = ACTIONS(3508), - [anon_sym_ATsection] = ACTIONS(3511), - [anon_sym_ATonce] = ACTIONS(3514), - [anon_sym_ATverbatim] = ACTIONS(3517), - [anon_sym_ATpush] = ACTIONS(3520), - [anon_sym_ATpushOnce] = ACTIONS(3523), - [anon_sym_ATpushIf] = ACTIONS(3526), - [anon_sym_ATprepend] = ACTIONS(3529), - [anon_sym_ATprependOnce] = ACTIONS(3532), - [anon_sym_ATelse] = ACTIONS(3535), - [aux_sym_conditional_keyword_token1] = ACTIONS(3538), - [anon_sym_ATif] = ACTIONS(3541), - [anon_sym_ATunless] = ACTIONS(3544), - [anon_sym_ATisset] = ACTIONS(3547), - [anon_sym_ATendisset] = ACTIONS(633), - [anon_sym_ATempty] = ACTIONS(3550), - [anon_sym_ATauth] = ACTIONS(3553), - [anon_sym_ATguest] = ACTIONS(3556), - [anon_sym_ATproduction] = ACTIONS(3559), - [anon_sym_ATenv] = ACTIONS(3562), - [anon_sym_AThasSection] = ACTIONS(3565), - [anon_sym_ATsectionMissing] = ACTIONS(3568), - [anon_sym_ATerror] = ACTIONS(3571), - [anon_sym_ATcan] = ACTIONS(3574), - [anon_sym_ATcannot] = ACTIONS(3577), - [anon_sym_ATcanany] = ACTIONS(3580), - [anon_sym_ATfeature] = ACTIONS(3583), - [aux_sym__custom_token1] = ACTIONS(3586), - [aux_sym__custom_token2] = ACTIONS(3589), - [anon_sym_ATswitch] = ACTIONS(3592), - [aux_sym_loop_operator_token1] = ACTIONS(3595), - [anon_sym_ATfor] = ACTIONS(3598), - [anon_sym_ATforeach] = ACTIONS(3601), - [anon_sym_ATforelse] = ACTIONS(3604), - [anon_sym_ATwhile] = ACTIONS(3607), - [anon_sym_ATsetup] = ACTIONS(3610), - [anon_sym_ATtask] = ACTIONS(3613), - [anon_sym_ATstory] = ACTIONS(3616), - [anon_sym_ATbefore] = ACTIONS(3619), - [anon_sym_ATafter] = ACTIONS(3622), - [anon_sym_ATsuccess] = ACTIONS(3625), - [anon_sym_ATfinished] = ACTIONS(3628), - [anon_sym_ATpersist] = ACTIONS(3631), - [anon_sym_ATteleport] = ACTIONS(3634), - [anon_sym_ATvolt] = ACTIONS(3637), - [aux_sym__text_token1] = ACTIONS(3640), - [aux_sym__text_token2] = ACTIONS(3640), - [aux_sym__text_token3] = ACTIONS(3643), + [aux_sym_php_only_repeat1] = STATE(680), + [sym_comment] = ACTIONS(3711), + [aux_sym_keyword_token1] = ACTIONS(3714), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3717), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3720), + [anon_sym_ATphp] = ACTIONS(3723), + [aux_sym_attribute_token1] = ACTIONS(3726), + [aux_sym__inline_directive_token1] = ACTIONS(3729), + [anon_sym_ATfragment] = ACTIONS(3732), + [anon_sym_ATsection] = ACTIONS(3735), + [anon_sym_ATonce] = ACTIONS(3738), + [anon_sym_ATverbatim] = ACTIONS(3741), + [anon_sym_ATpush] = ACTIONS(3744), + [anon_sym_ATpushOnce] = ACTIONS(3747), + [anon_sym_ATpushIf] = ACTIONS(3750), + [anon_sym_ATprepend] = ACTIONS(3753), + [anon_sym_ATprependOnce] = ACTIONS(3756), + [anon_sym_ATelse] = ACTIONS(3759), + [aux_sym_conditional_keyword_token1] = ACTIONS(3762), + [anon_sym_ATif] = ACTIONS(3765), + [anon_sym_ATunless] = ACTIONS(3768), + [anon_sym_ATisset] = ACTIONS(3771), + [anon_sym_ATendisset] = ACTIONS(966), + [anon_sym_ATempty] = ACTIONS(3774), + [anon_sym_ATauth] = ACTIONS(3777), + [anon_sym_ATguest] = ACTIONS(3780), + [anon_sym_ATproduction] = ACTIONS(3783), + [anon_sym_ATenv] = ACTIONS(3786), + [anon_sym_AThasSection] = ACTIONS(3789), + [anon_sym_ATsectionMissing] = ACTIONS(3792), + [anon_sym_ATerror] = ACTIONS(3795), + [anon_sym_ATcan] = ACTIONS(3798), + [anon_sym_ATcannot] = ACTIONS(3801), + [anon_sym_ATcanany] = ACTIONS(3804), + [anon_sym_ATfeature] = ACTIONS(3807), + [aux_sym__custom_token1] = ACTIONS(3810), + [aux_sym__custom_token2] = ACTIONS(3813), + [anon_sym_ATswitch] = ACTIONS(3816), + [aux_sym_loop_operator_token1] = ACTIONS(3819), + [anon_sym_ATfor] = ACTIONS(3822), + [anon_sym_ATforeach] = ACTIONS(3825), + [anon_sym_ATforelse] = ACTIONS(3828), + [anon_sym_ATwhile] = ACTIONS(3831), + [anon_sym_ATsetup] = ACTIONS(3834), + [anon_sym_ATtask] = ACTIONS(3837), + [anon_sym_ATstory] = ACTIONS(3840), + [anon_sym_ATbefore] = ACTIONS(3843), + [anon_sym_ATafter] = ACTIONS(3846), + [anon_sym_ATsuccess] = ACTIONS(3849), + [anon_sym_ATfinished] = ACTIONS(3852), + [anon_sym_ATpersist] = ACTIONS(3855), + [anon_sym_ATteleport] = ACTIONS(3858), + [anon_sym_ATvolt] = ACTIONS(3861), + [aux_sym_alpine_js_token1] = ACTIONS(3864), + [aux_sym__text_token1] = ACTIONS(3867), + [aux_sym__text_token2] = ACTIONS(3867), + [aux_sym__text_token3] = ACTIONS(3870), }, [137] = { - [sym__definition] = STATE(101), - [sym_keyword] = STATE(101), - [sym_php_statement] = STATE(101), - [sym__escaped] = STATE(1596), - [sym__unescaped] = STATE(1596), - [sym__raw] = STATE(1596), - [sym__inline_raw] = STATE(1596), - [sym__multi_line_raw] = STATE(1596), - [sym_attribute] = STATE(101), - [sym__inline_directive] = STATE(101), - [sym__nested_directive] = STATE(101), - [sym_fragment] = STATE(101), - [sym_section] = STATE(101), - [sym_inlineSection] = STATE(101), - [sym_once] = STATE(101), - [sym_verbatim] = STATE(101), - [sym_stack] = STATE(101), - [sym__push] = STATE(1597), - [sym__pushOnce] = STATE(1597), - [sym__pushIf] = STATE(1597), - [sym__prepend] = STATE(1597), - [sym__prependOnce] = STATE(1597), - [sym_conditional] = STATE(101), - [sym_conditional_keyword] = STATE(101), - [sym__if] = STATE(1598), - [sym__unless] = STATE(1598), - [sym__isset] = STATE(1598), - [sym__empty] = STATE(1598), - [sym__auth] = STATE(1598), - [sym__guest] = STATE(1598), - [sym__production] = STATE(1598), - [sym__env] = STATE(1598), - [sym__hasSection] = STATE(1598), - [sym__sectionMissing] = STATE(1598), - [sym__error] = STATE(1598), - [sym_authorization] = STATE(1598), - [sym__can] = STATE(1599), - [sym__cannot] = STATE(1599), - [sym__canany] = STATE(1599), - [sym__feature] = STATE(1598), - [sym__custom] = STATE(1598), - [sym_switch] = STATE(101), - [sym_loop] = STATE(101), - [sym_loop_operator] = STATE(101), - [sym__for] = STATE(1600), - [sym__foreach] = STATE(1600), - [sym__forelse] = STATE(1600), - [sym__while] = STATE(1600), - [sym_envoy] = STATE(101), - [sym__setup] = STATE(1596), - [sym__task] = STATE(1601), - [sym__story] = STATE(1601), - [sym__hooks] = STATE(1596), - [sym__before] = STATE(1596), - [sym__after] = STATE(1596), - [sym__envoy_error] = STATE(1596), - [sym__success] = STATE(1596), - [sym__finished] = STATE(1596), - [sym_livewire] = STATE(101), - [sym__persist] = STATE(1602), - [sym__teleport] = STATE(1602), - [sym__volt] = STATE(1602), - [sym_text] = STATE(101), - [sym__text] = STATE(674), - [aux_sym__if_statement_directive_body_repeat1] = STATE(101), - [aux_sym_php_only_repeat1] = STATE(674), - [sym_comment] = ACTIONS(3646), - [aux_sym_keyword_token1] = ACTIONS(3648), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3650), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3652), - [anon_sym_ATphp] = ACTIONS(3654), - [aux_sym_attribute_token1] = ACTIONS(3656), - [aux_sym__inline_directive_token1] = ACTIONS(3658), - [anon_sym_ATfragment] = ACTIONS(3660), - [anon_sym_ATsection] = ACTIONS(3662), - [anon_sym_ATonce] = ACTIONS(3664), - [anon_sym_ATverbatim] = ACTIONS(3666), - [anon_sym_ATpush] = ACTIONS(3668), - [anon_sym_ATpushOnce] = ACTIONS(3670), - [anon_sym_ATpushIf] = ACTIONS(3672), - [anon_sym_ATprepend] = ACTIONS(3674), - [anon_sym_ATprependOnce] = ACTIONS(3676), - [anon_sym_ATelse] = ACTIONS(3678), - [aux_sym_conditional_keyword_token1] = ACTIONS(3680), - [anon_sym_ATif] = ACTIONS(3682), - [anon_sym_ATunless] = ACTIONS(3684), - [anon_sym_ATisset] = ACTIONS(3686), - [anon_sym_ATempty] = ACTIONS(3688), - [anon_sym_ATauth] = ACTIONS(3690), - [anon_sym_ATguest] = ACTIONS(3692), - [anon_sym_ATproduction] = ACTIONS(3694), - [anon_sym_ATenv] = ACTIONS(3696), - [anon_sym_ATendenv] = ACTIONS(497), - [anon_sym_AThasSection] = ACTIONS(3698), - [anon_sym_ATsectionMissing] = ACTIONS(3700), - [anon_sym_ATerror] = ACTIONS(3702), - [anon_sym_ATcan] = ACTIONS(3704), - [anon_sym_ATcannot] = ACTIONS(3706), - [anon_sym_ATcanany] = ACTIONS(3708), - [anon_sym_ATfeature] = ACTIONS(3710), - [aux_sym__custom_token1] = ACTIONS(3712), - [aux_sym__custom_token2] = ACTIONS(3714), - [anon_sym_ATswitch] = ACTIONS(3716), - [aux_sym_loop_operator_token1] = ACTIONS(3718), - [anon_sym_ATfor] = ACTIONS(3720), - [anon_sym_ATforeach] = ACTIONS(3722), - [anon_sym_ATforelse] = ACTIONS(3724), - [anon_sym_ATwhile] = ACTIONS(3726), - [anon_sym_ATsetup] = ACTIONS(3728), - [anon_sym_ATtask] = ACTIONS(3730), - [anon_sym_ATstory] = ACTIONS(3732), - [anon_sym_ATbefore] = ACTIONS(3734), - [anon_sym_ATafter] = ACTIONS(3736), - [anon_sym_ATsuccess] = ACTIONS(3738), - [anon_sym_ATfinished] = ACTIONS(3740), - [anon_sym_ATpersist] = ACTIONS(3742), - [anon_sym_ATteleport] = ACTIONS(3744), - [anon_sym_ATvolt] = ACTIONS(3746), - [aux_sym__text_token1] = ACTIONS(3748), - [aux_sym__text_token2] = ACTIONS(3748), - [aux_sym__text_token3] = ACTIONS(3750), + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(3873), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [138] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(3752), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__definition] = STATE(115), + [sym_keyword] = STATE(115), + [sym_php_statement] = STATE(115), + [sym__escaped] = STATE(1615), + [sym__unescaped] = STATE(1615), + [sym__raw] = STATE(1615), + [sym__inline_raw] = STATE(1615), + [sym__multi_line_raw] = STATE(1615), + [sym_attribute] = STATE(115), + [sym__inline_directive] = STATE(115), + [sym__nested_directive] = STATE(115), + [sym_fragment] = STATE(115), + [sym_section] = STATE(115), + [sym_inlineSection] = STATE(115), + [sym_once] = STATE(115), + [sym_verbatim] = STATE(115), + [sym_stack] = STATE(115), + [sym__push] = STATE(1616), + [sym__pushOnce] = STATE(1616), + [sym__pushIf] = STATE(1616), + [sym__prepend] = STATE(1616), + [sym__prependOnce] = STATE(1616), + [sym_conditional] = STATE(115), + [sym_conditional_keyword] = STATE(115), + [sym__if] = STATE(1617), + [sym__unless] = STATE(1617), + [sym__isset] = STATE(1617), + [sym__empty] = STATE(1617), + [sym__auth] = STATE(1617), + [sym__guest] = STATE(1617), + [sym__production] = STATE(1617), + [sym__env] = STATE(1617), + [sym__hasSection] = STATE(1617), + [sym__sectionMissing] = STATE(1617), + [sym__error] = STATE(1617), + [sym_authorization] = STATE(1617), + [sym__can] = STATE(1618), + [sym__cannot] = STATE(1618), + [sym__canany] = STATE(1618), + [sym__feature] = STATE(1617), + [sym__custom] = STATE(1617), + [sym_switch] = STATE(115), + [sym_loop] = STATE(115), + [sym_loop_operator] = STATE(115), + [sym__for] = STATE(1619), + [sym__foreach] = STATE(1619), + [sym__forelse] = STATE(1619), + [sym__while] = STATE(1619), + [sym_envoy] = STATE(115), + [sym__setup] = STATE(1615), + [sym__task] = STATE(1620), + [sym__story] = STATE(1620), + [sym__hooks] = STATE(1615), + [sym__before] = STATE(1615), + [sym__after] = STATE(1615), + [sym__envoy_error] = STATE(1615), + [sym__success] = STATE(1615), + [sym__finished] = STATE(1615), + [sym_livewire] = STATE(115), + [sym__persist] = STATE(1621), + [sym__teleport] = STATE(1621), + [sym__volt] = STATE(1621), + [sym_alpine_js] = STATE(115), + [sym_text] = STATE(115), + [sym__text] = STATE(699), + [aux_sym__if_statement_directive_body_repeat1] = STATE(115), + [aux_sym_php_only_repeat1] = STATE(699), + [sym_comment] = ACTIONS(3875), + [aux_sym_keyword_token1] = ACTIONS(3877), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3879), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3881), + [anon_sym_ATphp] = ACTIONS(3883), + [aux_sym_attribute_token1] = ACTIONS(3885), + [aux_sym__inline_directive_token1] = ACTIONS(3887), + [anon_sym_ATfragment] = ACTIONS(3889), + [anon_sym_ATsection] = ACTIONS(3891), + [anon_sym_ATonce] = ACTIONS(3893), + [anon_sym_ATverbatim] = ACTIONS(3895), + [anon_sym_ATpush] = ACTIONS(3897), + [anon_sym_ATpushOnce] = ACTIONS(3899), + [anon_sym_ATpushIf] = ACTIONS(3901), + [anon_sym_ATprepend] = ACTIONS(3903), + [anon_sym_ATprependOnce] = ACTIONS(3905), + [anon_sym_ATelse] = ACTIONS(3907), + [aux_sym_conditional_keyword_token1] = ACTIONS(3909), + [anon_sym_ATif] = ACTIONS(3911), + [anon_sym_ATunless] = ACTIONS(3913), + [anon_sym_ATisset] = ACTIONS(3915), + [anon_sym_ATempty] = ACTIONS(3917), + [anon_sym_ATauth] = ACTIONS(3919), + [anon_sym_ATguest] = ACTIONS(3921), + [anon_sym_ATproduction] = ACTIONS(3923), + [anon_sym_ATenv] = ACTIONS(3925), + [anon_sym_ATendenv] = ACTIONS(369), + [anon_sym_AThasSection] = ACTIONS(3927), + [anon_sym_ATsectionMissing] = ACTIONS(3929), + [anon_sym_ATerror] = ACTIONS(3931), + [anon_sym_ATcan] = ACTIONS(3933), + [anon_sym_ATcannot] = ACTIONS(3935), + [anon_sym_ATcanany] = ACTIONS(3937), + [anon_sym_ATfeature] = ACTIONS(3939), + [aux_sym__custom_token1] = ACTIONS(3941), + [aux_sym__custom_token2] = ACTIONS(3943), + [anon_sym_ATswitch] = ACTIONS(3945), + [aux_sym_loop_operator_token1] = ACTIONS(3947), + [anon_sym_ATfor] = ACTIONS(3949), + [anon_sym_ATforeach] = ACTIONS(3951), + [anon_sym_ATforelse] = ACTIONS(3953), + [anon_sym_ATwhile] = ACTIONS(3955), + [anon_sym_ATsetup] = ACTIONS(3957), + [anon_sym_ATtask] = ACTIONS(3959), + [anon_sym_ATstory] = ACTIONS(3961), + [anon_sym_ATbefore] = ACTIONS(3963), + [anon_sym_ATafter] = ACTIONS(3965), + [anon_sym_ATsuccess] = ACTIONS(3967), + [anon_sym_ATfinished] = ACTIONS(3969), + [anon_sym_ATpersist] = ACTIONS(3971), + [anon_sym_ATteleport] = ACTIONS(3973), + [anon_sym_ATvolt] = ACTIONS(3975), + [aux_sym_alpine_js_token1] = ACTIONS(3977), + [aux_sym__text_token1] = ACTIONS(3979), + [aux_sym__text_token2] = ACTIONS(3979), + [aux_sym__text_token3] = ACTIONS(3981), }, [139] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(3754), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(3983), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [140] = { - [sym__definition] = STATE(137), - [sym_keyword] = STATE(137), - [sym_php_statement] = STATE(137), - [sym__escaped] = STATE(1596), - [sym__unescaped] = STATE(1596), - [sym__raw] = STATE(1596), - [sym__inline_raw] = STATE(1596), - [sym__multi_line_raw] = STATE(1596), - [sym_attribute] = STATE(137), - [sym__inline_directive] = STATE(137), - [sym__nested_directive] = STATE(137), - [sym_fragment] = STATE(137), - [sym_section] = STATE(137), - [sym_inlineSection] = STATE(137), - [sym_once] = STATE(137), - [sym_verbatim] = STATE(137), - [sym_stack] = STATE(137), - [sym__push] = STATE(1597), - [sym__pushOnce] = STATE(1597), - [sym__pushIf] = STATE(1597), - [sym__prepend] = STATE(1597), - [sym__prependOnce] = STATE(1597), - [sym_conditional] = STATE(137), - [sym_conditional_keyword] = STATE(137), - [sym__if] = STATE(1598), - [sym__unless] = STATE(1598), - [sym__isset] = STATE(1598), - [sym__empty] = STATE(1598), - [sym__auth] = STATE(1598), - [sym__guest] = STATE(1598), - [sym__production] = STATE(1598), - [sym__env] = STATE(1598), - [sym__hasSection] = STATE(1598), - [sym__sectionMissing] = STATE(1598), - [sym__error] = STATE(1598), - [sym_authorization] = STATE(1598), - [sym__can] = STATE(1599), - [sym__cannot] = STATE(1599), - [sym__canany] = STATE(1599), - [sym__feature] = STATE(1598), - [sym__custom] = STATE(1598), - [sym_switch] = STATE(137), - [sym_loop] = STATE(137), - [sym_loop_operator] = STATE(137), - [sym__for] = STATE(1600), - [sym__foreach] = STATE(1600), - [sym__forelse] = STATE(1600), - [sym__while] = STATE(1600), - [sym_envoy] = STATE(137), - [sym__setup] = STATE(1596), - [sym__task] = STATE(1601), - [sym__story] = STATE(1601), - [sym__hooks] = STATE(1596), - [sym__before] = STATE(1596), - [sym__after] = STATE(1596), - [sym__envoy_error] = STATE(1596), - [sym__success] = STATE(1596), - [sym__finished] = STATE(1596), - [sym_livewire] = STATE(137), - [sym__persist] = STATE(1602), - [sym__teleport] = STATE(1602), - [sym__volt] = STATE(1602), - [sym_text] = STATE(137), - [sym__text] = STATE(674), - [aux_sym__if_statement_directive_body_repeat1] = STATE(137), - [aux_sym_php_only_repeat1] = STATE(674), - [sym_comment] = ACTIONS(3756), - [aux_sym_keyword_token1] = ACTIONS(3648), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3650), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3652), - [anon_sym_ATphp] = ACTIONS(3654), - [aux_sym_attribute_token1] = ACTIONS(3656), - [aux_sym__inline_directive_token1] = ACTIONS(3658), - [anon_sym_ATfragment] = ACTIONS(3660), - [anon_sym_ATsection] = ACTIONS(3662), - [anon_sym_ATonce] = ACTIONS(3664), - [anon_sym_ATverbatim] = ACTIONS(3666), - [anon_sym_ATpush] = ACTIONS(3668), - [anon_sym_ATpushOnce] = ACTIONS(3670), - [anon_sym_ATpushIf] = ACTIONS(3672), - [anon_sym_ATprepend] = ACTIONS(3674), - [anon_sym_ATprependOnce] = ACTIONS(3676), - [anon_sym_ATelse] = ACTIONS(3678), - [aux_sym_conditional_keyword_token1] = ACTIONS(3680), - [anon_sym_ATif] = ACTIONS(3682), - [anon_sym_ATunless] = ACTIONS(3684), - [anon_sym_ATisset] = ACTIONS(3686), - [anon_sym_ATempty] = ACTIONS(3688), - [anon_sym_ATauth] = ACTIONS(3690), - [anon_sym_ATguest] = ACTIONS(3692), - [anon_sym_ATproduction] = ACTIONS(3694), - [anon_sym_ATenv] = ACTIONS(3696), - [anon_sym_ATendenv] = ACTIONS(706), - [anon_sym_AThasSection] = ACTIONS(3698), - [anon_sym_ATsectionMissing] = ACTIONS(3700), - [anon_sym_ATerror] = ACTIONS(3702), - [anon_sym_ATcan] = ACTIONS(3704), - [anon_sym_ATcannot] = ACTIONS(3706), - [anon_sym_ATcanany] = ACTIONS(3708), - [anon_sym_ATfeature] = ACTIONS(3710), - [aux_sym__custom_token1] = ACTIONS(3712), - [aux_sym__custom_token2] = ACTIONS(3714), - [anon_sym_ATswitch] = ACTIONS(3716), - [aux_sym_loop_operator_token1] = ACTIONS(3718), - [anon_sym_ATfor] = ACTIONS(3720), - [anon_sym_ATforeach] = ACTIONS(3722), - [anon_sym_ATforelse] = ACTIONS(3724), - [anon_sym_ATwhile] = ACTIONS(3726), - [anon_sym_ATsetup] = ACTIONS(3728), - [anon_sym_ATtask] = ACTIONS(3730), - [anon_sym_ATstory] = ACTIONS(3732), - [anon_sym_ATbefore] = ACTIONS(3734), - [anon_sym_ATafter] = ACTIONS(3736), - [anon_sym_ATsuccess] = ACTIONS(3738), - [anon_sym_ATfinished] = ACTIONS(3740), - [anon_sym_ATpersist] = ACTIONS(3742), - [anon_sym_ATteleport] = ACTIONS(3744), - [anon_sym_ATvolt] = ACTIONS(3746), - [aux_sym__text_token1] = ACTIONS(3748), - [aux_sym__text_token2] = ACTIONS(3748), - [aux_sym__text_token3] = ACTIONS(3750), - }, - [141] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(3758), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), - }, - [142] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(3760), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), - }, - [143] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(3762), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), - }, - [144] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(3764), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), - }, - [145] = { - [sym__definition] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(102), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(325), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATendproduction] = ACTIONS(3766), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), - }, - [146] = { - [sym__definition] = STATE(146), - [sym_keyword] = STATE(146), - [sym_php_statement] = STATE(146), - [sym__escaped] = STATE(1338), - [sym__unescaped] = STATE(1338), - [sym__raw] = STATE(1338), - [sym__inline_raw] = STATE(1338), - [sym__multi_line_raw] = STATE(1338), - [sym_attribute] = STATE(146), - [sym__inline_directive] = STATE(146), - [sym__nested_directive] = STATE(146), - [sym_fragment] = STATE(146), - [sym_section] = STATE(146), - [sym_inlineSection] = STATE(146), - [sym_once] = STATE(146), - [sym_verbatim] = STATE(146), - [sym_stack] = STATE(146), - [sym__push] = STATE(1339), - [sym__pushOnce] = STATE(1339), - [sym__pushIf] = STATE(1339), - [sym__prepend] = STATE(1339), - [sym__prependOnce] = STATE(1339), - [sym_conditional] = STATE(146), - [sym_conditional_keyword] = STATE(146), - [sym__if] = STATE(1340), - [sym__unless] = STATE(1340), - [sym__isset] = STATE(1340), - [sym__empty] = STATE(1340), - [sym__auth] = STATE(1340), - [sym__guest] = STATE(1340), - [sym__production] = STATE(1340), - [sym__env] = STATE(1340), - [sym__hasSection] = STATE(1340), - [sym__sectionMissing] = STATE(1340), - [sym__error] = STATE(1340), - [sym_authorization] = STATE(1340), - [sym__can] = STATE(1341), - [sym__cannot] = STATE(1341), - [sym__canany] = STATE(1341), - [sym__feature] = STATE(1340), - [sym__custom] = STATE(1340), - [sym_switch] = STATE(146), - [sym_loop] = STATE(146), - [sym_loop_operator] = STATE(146), - [sym__for] = STATE(1342), - [sym__foreach] = STATE(1342), - [sym__forelse] = STATE(1342), - [sym__while] = STATE(1342), - [sym_envoy] = STATE(146), - [sym__setup] = STATE(1338), - [sym__task] = STATE(1343), - [sym__story] = STATE(1343), - [sym__hooks] = STATE(1338), - [sym__before] = STATE(1338), - [sym__after] = STATE(1338), - [sym__envoy_error] = STATE(1338), - [sym__success] = STATE(1338), - [sym__finished] = STATE(1338), - [sym_livewire] = STATE(146), - [sym__persist] = STATE(1344), - [sym__teleport] = STATE(1344), - [sym__volt] = STATE(1344), - [sym_text] = STATE(146), - [sym__text] = STATE(686), - [aux_sym__if_statement_directive_body_repeat1] = STATE(146), - [aux_sym_php_only_repeat1] = STATE(686), - [sym_comment] = ACTIONS(3768), - [aux_sym_keyword_token1] = ACTIONS(3771), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3774), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3777), - [anon_sym_ATphp] = ACTIONS(3780), - [aux_sym_attribute_token1] = ACTIONS(3783), - [aux_sym__inline_directive_token1] = ACTIONS(3786), - [anon_sym_ATfragment] = ACTIONS(3789), - [anon_sym_ATsection] = ACTIONS(3792), - [anon_sym_ATonce] = ACTIONS(3795), - [anon_sym_ATverbatim] = ACTIONS(3798), - [anon_sym_ATpush] = ACTIONS(3801), - [anon_sym_ATpushOnce] = ACTIONS(3804), - [anon_sym_ATpushIf] = ACTIONS(3807), - [anon_sym_ATprepend] = ACTIONS(3810), - [anon_sym_ATprependOnce] = ACTIONS(3813), - [anon_sym_ATelse] = ACTIONS(3816), - [aux_sym_conditional_keyword_token1] = ACTIONS(3819), - [anon_sym_ATif] = ACTIONS(3822), - [anon_sym_ATunless] = ACTIONS(3825), - [anon_sym_ATendunless] = ACTIONS(633), - [anon_sym_ATisset] = ACTIONS(3828), - [anon_sym_ATempty] = ACTIONS(3831), - [anon_sym_ATauth] = ACTIONS(3834), - [anon_sym_ATguest] = ACTIONS(3837), - [anon_sym_ATproduction] = ACTIONS(3840), - [anon_sym_ATenv] = ACTIONS(3843), - [anon_sym_AThasSection] = ACTIONS(3846), - [anon_sym_ATsectionMissing] = ACTIONS(3849), - [anon_sym_ATerror] = ACTIONS(3852), - [anon_sym_ATcan] = ACTIONS(3855), - [anon_sym_ATcannot] = ACTIONS(3858), - [anon_sym_ATcanany] = ACTIONS(3861), - [anon_sym_ATfeature] = ACTIONS(3864), - [aux_sym__custom_token1] = ACTIONS(3867), - [aux_sym__custom_token2] = ACTIONS(3870), - [anon_sym_ATswitch] = ACTIONS(3873), - [aux_sym_loop_operator_token1] = ACTIONS(3876), - [anon_sym_ATfor] = ACTIONS(3879), - [anon_sym_ATforeach] = ACTIONS(3882), - [anon_sym_ATforelse] = ACTIONS(3885), - [anon_sym_ATwhile] = ACTIONS(3888), - [anon_sym_ATsetup] = ACTIONS(3891), - [anon_sym_ATtask] = ACTIONS(3894), - [anon_sym_ATstory] = ACTIONS(3897), - [anon_sym_ATbefore] = ACTIONS(3900), - [anon_sym_ATafter] = ACTIONS(3903), - [anon_sym_ATsuccess] = ACTIONS(3906), - [anon_sym_ATfinished] = ACTIONS(3909), - [anon_sym_ATpersist] = ACTIONS(3912), - [anon_sym_ATteleport] = ACTIONS(3915), - [anon_sym_ATvolt] = ACTIONS(3918), - [aux_sym__text_token1] = ACTIONS(3921), - [aux_sym__text_token2] = ACTIONS(3921), - [aux_sym__text_token3] = ACTIONS(3924), - }, - [147] = { - [sym__definition] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(94), - [sym_text] = STATE(94), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3927), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), - }, - [148] = { [sym__definition] = STATE(138), [sym_keyword] = STATE(138), [sym_php_statement] = STATE(138), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), + [sym__escaped] = STATE(1615), + [sym__unescaped] = STATE(1615), + [sym__raw] = STATE(1615), + [sym__inline_raw] = STATE(1615), + [sym__multi_line_raw] = STATE(1615), [sym_attribute] = STATE(138), [sym__inline_directive] = STATE(138), [sym__nested_directive] = STATE(138), @@ -43855,241 +43624,1244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(138), [sym_verbatim] = STATE(138), [sym_stack] = STATE(138), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), + [sym__push] = STATE(1616), + [sym__pushOnce] = STATE(1616), + [sym__pushIf] = STATE(1616), + [sym__prepend] = STATE(1616), + [sym__prependOnce] = STATE(1616), [sym_conditional] = STATE(138), [sym_conditional_keyword] = STATE(138), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), + [sym__if] = STATE(1617), + [sym__unless] = STATE(1617), + [sym__isset] = STATE(1617), + [sym__empty] = STATE(1617), + [sym__auth] = STATE(1617), + [sym__guest] = STATE(1617), + [sym__production] = STATE(1617), + [sym__env] = STATE(1617), + [sym__hasSection] = STATE(1617), + [sym__sectionMissing] = STATE(1617), + [sym__error] = STATE(1617), + [sym_authorization] = STATE(1617), + [sym__can] = STATE(1618), + [sym__cannot] = STATE(1618), + [sym__canany] = STATE(1618), + [sym__feature] = STATE(1617), + [sym__custom] = STATE(1617), [sym_switch] = STATE(138), [sym_loop] = STATE(138), [sym_loop_operator] = STATE(138), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), + [sym__for] = STATE(1619), + [sym__foreach] = STATE(1619), + [sym__forelse] = STATE(1619), + [sym__while] = STATE(1619), [sym_envoy] = STATE(138), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), + [sym__setup] = STATE(1615), + [sym__task] = STATE(1620), + [sym__story] = STATE(1620), + [sym__hooks] = STATE(1615), + [sym__before] = STATE(1615), + [sym__after] = STATE(1615), + [sym__envoy_error] = STATE(1615), + [sym__success] = STATE(1615), + [sym__finished] = STATE(1615), [sym_livewire] = STATE(138), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(138), + [sym__persist] = STATE(1621), + [sym__teleport] = STATE(1621), + [sym__volt] = STATE(1621), + [sym_alpine_js] = STATE(138), [sym_text] = STATE(138), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3929), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__text] = STATE(699), + [aux_sym__if_statement_directive_body_repeat1] = STATE(138), + [aux_sym_php_only_repeat1] = STATE(699), + [sym_comment] = ACTIONS(3985), + [aux_sym_keyword_token1] = ACTIONS(3877), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3879), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3881), + [anon_sym_ATphp] = ACTIONS(3883), + [aux_sym_attribute_token1] = ACTIONS(3885), + [aux_sym__inline_directive_token1] = ACTIONS(3887), + [anon_sym_ATfragment] = ACTIONS(3889), + [anon_sym_ATsection] = ACTIONS(3891), + [anon_sym_ATonce] = ACTIONS(3893), + [anon_sym_ATverbatim] = ACTIONS(3895), + [anon_sym_ATpush] = ACTIONS(3897), + [anon_sym_ATpushOnce] = ACTIONS(3899), + [anon_sym_ATpushIf] = ACTIONS(3901), + [anon_sym_ATprepend] = ACTIONS(3903), + [anon_sym_ATprependOnce] = ACTIONS(3905), + [anon_sym_ATelse] = ACTIONS(3907), + [aux_sym_conditional_keyword_token1] = ACTIONS(3909), + [anon_sym_ATif] = ACTIONS(3911), + [anon_sym_ATunless] = ACTIONS(3913), + [anon_sym_ATisset] = ACTIONS(3915), + [anon_sym_ATempty] = ACTIONS(3917), + [anon_sym_ATauth] = ACTIONS(3919), + [anon_sym_ATguest] = ACTIONS(3921), + [anon_sym_ATproduction] = ACTIONS(3923), + [anon_sym_ATenv] = ACTIONS(3925), + [anon_sym_ATendenv] = ACTIONS(481), + [anon_sym_AThasSection] = ACTIONS(3927), + [anon_sym_ATsectionMissing] = ACTIONS(3929), + [anon_sym_ATerror] = ACTIONS(3931), + [anon_sym_ATcan] = ACTIONS(3933), + [anon_sym_ATcannot] = ACTIONS(3935), + [anon_sym_ATcanany] = ACTIONS(3937), + [anon_sym_ATfeature] = ACTIONS(3939), + [aux_sym__custom_token1] = ACTIONS(3941), + [aux_sym__custom_token2] = ACTIONS(3943), + [anon_sym_ATswitch] = ACTIONS(3945), + [aux_sym_loop_operator_token1] = ACTIONS(3947), + [anon_sym_ATfor] = ACTIONS(3949), + [anon_sym_ATforeach] = ACTIONS(3951), + [anon_sym_ATforelse] = ACTIONS(3953), + [anon_sym_ATwhile] = ACTIONS(3955), + [anon_sym_ATsetup] = ACTIONS(3957), + [anon_sym_ATtask] = ACTIONS(3959), + [anon_sym_ATstory] = ACTIONS(3961), + [anon_sym_ATbefore] = ACTIONS(3963), + [anon_sym_ATafter] = ACTIONS(3965), + [anon_sym_ATsuccess] = ACTIONS(3967), + [anon_sym_ATfinished] = ACTIONS(3969), + [anon_sym_ATpersist] = ACTIONS(3971), + [anon_sym_ATteleport] = ACTIONS(3973), + [anon_sym_ATvolt] = ACTIONS(3975), + [aux_sym_alpine_js_token1] = ACTIONS(3977), + [aux_sym__text_token1] = ACTIONS(3979), + [aux_sym__text_token2] = ACTIONS(3979), + [aux_sym__text_token3] = ACTIONS(3981), + }, + [141] = { + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(3987), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), + }, + [142] = { + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(3989), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), + }, + [143] = { + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(3991), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), + }, + [144] = { + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(3993), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), + }, + [145] = { + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(3995), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), + }, + [146] = { + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(100), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(659), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATendproduction] = ACTIONS(3997), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), + }, + [147] = { + [sym__definition] = STATE(93), + [sym_keyword] = STATE(93), + [sym_php_statement] = STATE(93), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(93), + [sym__inline_directive] = STATE(93), + [sym__nested_directive] = STATE(93), + [sym_fragment] = STATE(93), + [sym_section] = STATE(93), + [sym_inlineSection] = STATE(93), + [sym_once] = STATE(93), + [sym_verbatim] = STATE(93), + [sym_stack] = STATE(93), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(93), + [sym_conditional_keyword] = STATE(93), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(93), + [sym_loop] = STATE(93), + [sym_loop_operator] = STATE(93), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(93), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(93), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(93), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(93), + [sym_text] = STATE(93), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(3999), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), + }, + [148] = { + [sym__definition] = STATE(139), + [sym_keyword] = STATE(139), + [sym_php_statement] = STATE(139), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(139), + [sym__inline_directive] = STATE(139), + [sym__nested_directive] = STATE(139), + [sym_fragment] = STATE(139), + [sym_section] = STATE(139), + [sym_inlineSection] = STATE(139), + [sym_once] = STATE(139), + [sym_verbatim] = STATE(139), + [sym_stack] = STATE(139), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(139), + [sym_conditional_keyword] = STATE(139), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(139), + [sym_loop] = STATE(139), + [sym_loop_operator] = STATE(139), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(139), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(139), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(139), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(139), + [sym_text] = STATE(139), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [149] = { - [sym__definition] = STATE(132), - [sym_keyword] = STATE(132), - [sym_php_statement] = STATE(132), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(132), - [sym__inline_directive] = STATE(132), - [sym__nested_directive] = STATE(132), - [sym_fragment] = STATE(132), - [sym_section] = STATE(132), - [sym_inlineSection] = STATE(132), - [sym_once] = STATE(132), - [sym_verbatim] = STATE(132), - [sym_stack] = STATE(132), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(132), - [sym_conditional_keyword] = STATE(132), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(132), - [sym_loop] = STATE(132), - [sym_loop_operator] = STATE(132), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(132), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(132), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(132), - [sym_text] = STATE(132), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3931), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__definition] = STATE(133), + [sym_keyword] = STATE(133), + [sym_php_statement] = STATE(133), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(133), + [sym__inline_directive] = STATE(133), + [sym__nested_directive] = STATE(133), + [sym_fragment] = STATE(133), + [sym_section] = STATE(133), + [sym_inlineSection] = STATE(133), + [sym_once] = STATE(133), + [sym_verbatim] = STATE(133), + [sym_stack] = STATE(133), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(133), + [sym_conditional_keyword] = STATE(133), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(133), + [sym_loop] = STATE(133), + [sym_loop_operator] = STATE(133), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(133), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(133), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(133), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(133), + [sym_text] = STATE(133), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4003), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [150] = { [sym__definition] = STATE(87), [sym_keyword] = STATE(87), [sym_php_statement] = STATE(87), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), [sym_attribute] = STATE(87), [sym__inline_directive] = STATE(87), [sym__nested_directive] = STATE(87), @@ -44099,241 +44871,369 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(87), [sym_verbatim] = STATE(87), [sym_stack] = STATE(87), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), [sym_conditional] = STATE(87), [sym_conditional_keyword] = STATE(87), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), [sym_switch] = STATE(87), [sym_loop] = STATE(87), [sym_loop_operator] = STATE(87), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), [sym_envoy] = STATE(87), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), [sym_livewire] = STATE(87), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(87), [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(87), [sym_text] = STATE(87), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3933), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4005), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [151] = { - [sym__definition] = STATE(133), - [sym_keyword] = STATE(133), - [sym_php_statement] = STATE(133), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(133), - [sym__inline_directive] = STATE(133), - [sym__nested_directive] = STATE(133), - [sym_fragment] = STATE(133), - [sym_section] = STATE(133), - [sym_inlineSection] = STATE(133), - [sym_once] = STATE(133), - [sym_verbatim] = STATE(133), - [sym_stack] = STATE(133), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(133), - [sym_conditional_keyword] = STATE(133), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(133), - [sym_loop] = STATE(133), - [sym_loop_operator] = STATE(133), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(133), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(133), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(133), - [sym_text] = STATE(133), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3935), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__definition] = STATE(134), + [sym_keyword] = STATE(134), + [sym_php_statement] = STATE(134), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(134), + [sym__inline_directive] = STATE(134), + [sym__nested_directive] = STATE(134), + [sym_fragment] = STATE(134), + [sym_section] = STATE(134), + [sym_inlineSection] = STATE(134), + [sym_once] = STATE(134), + [sym_verbatim] = STATE(134), + [sym_stack] = STATE(134), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(134), + [sym_conditional_keyword] = STATE(134), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(134), + [sym_loop] = STATE(134), + [sym_loop_operator] = STATE(134), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(134), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(134), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(134), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(134), + [sym_text] = STATE(134), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4007), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [152] = { + [sym__definition] = STATE(78), + [sym_keyword] = STATE(78), + [sym_php_statement] = STATE(78), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(78), + [sym__inline_directive] = STATE(78), + [sym__nested_directive] = STATE(78), + [sym_fragment] = STATE(78), + [sym_section] = STATE(78), + [sym_inlineSection] = STATE(78), + [sym_once] = STATE(78), + [sym_verbatim] = STATE(78), + [sym_stack] = STATE(78), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(78), + [sym_conditional_keyword] = STATE(78), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(78), + [sym_loop] = STATE(78), + [sym_loop_operator] = STATE(78), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(78), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(78), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(78), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(78), + [sym_text] = STATE(78), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4009), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), + }, + [153] = { [sym__definition] = STATE(80), [sym_keyword] = STATE(80), [sym_php_statement] = STATE(80), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), [sym_attribute] = STATE(80), [sym__inline_directive] = STATE(80), [sym__nested_directive] = STATE(80), @@ -44343,607 +45243,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(80), [sym_verbatim] = STATE(80), [sym_stack] = STATE(80), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), [sym_conditional] = STATE(80), [sym_conditional_keyword] = STATE(80), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), [sym_switch] = STATE(80), [sym_loop] = STATE(80), [sym_loop_operator] = STATE(80), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), [sym_envoy] = STATE(80), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), [sym_livewire] = STATE(80), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(80), [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(80), [sym_text] = STATE(80), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3937), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), - }, - [153] = { - [sym__definition] = STATE(79), - [sym_keyword] = STATE(79), - [sym_php_statement] = STATE(79), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(79), - [sym__inline_directive] = STATE(79), - [sym__nested_directive] = STATE(79), - [sym_fragment] = STATE(79), - [sym_section] = STATE(79), - [sym_inlineSection] = STATE(79), - [sym_once] = STATE(79), - [sym_verbatim] = STATE(79), - [sym_stack] = STATE(79), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(79), - [sym_conditional_keyword] = STATE(79), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(79), - [sym_loop] = STATE(79), - [sym_loop_operator] = STATE(79), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(79), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(79), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(79), - [sym_text] = STATE(79), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3939), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4011), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [154] = { - [sym__definition] = STATE(113), - [sym_keyword] = STATE(113), - [sym_php_statement] = STATE(113), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(113), - [sym__inline_directive] = STATE(113), - [sym__nested_directive] = STATE(113), - [sym_fragment] = STATE(113), - [sym_section] = STATE(113), - [sym_inlineSection] = STATE(113), - [sym_once] = STATE(113), - [sym_verbatim] = STATE(113), - [sym_stack] = STATE(113), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(113), - [sym_conditional_keyword] = STATE(113), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(113), - [sym_loop] = STATE(113), - [sym_loop_operator] = STATE(113), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(113), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(113), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(113), - [sym_text] = STATE(113), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3941), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__definition] = STATE(112), + [sym_keyword] = STATE(112), + [sym_php_statement] = STATE(112), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(112), + [sym__inline_directive] = STATE(112), + [sym__nested_directive] = STATE(112), + [sym_fragment] = STATE(112), + [sym_section] = STATE(112), + [sym_inlineSection] = STATE(112), + [sym_once] = STATE(112), + [sym_verbatim] = STATE(112), + [sym_stack] = STATE(112), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(112), + [sym_conditional_keyword] = STATE(112), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(112), + [sym_loop] = STATE(112), + [sym_loop_operator] = STATE(112), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(112), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(112), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(112), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(112), + [sym_text] = STATE(112), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4013), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [155] = { - [sym__definition] = STATE(134), - [sym_keyword] = STATE(134), - [sym_php_statement] = STATE(134), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(134), - [sym__inline_directive] = STATE(134), - [sym__nested_directive] = STATE(134), - [sym_fragment] = STATE(134), - [sym_section] = STATE(134), - [sym_inlineSection] = STATE(134), - [sym_once] = STATE(134), - [sym_verbatim] = STATE(134), - [sym_stack] = STATE(134), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(134), - [sym_conditional_keyword] = STATE(134), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(134), - [sym_loop] = STATE(134), - [sym_loop_operator] = STATE(134), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(134), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(134), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(134), - [sym_text] = STATE(134), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3943), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), - }, - [156] = { - [sym__definition] = STATE(93), - [sym_keyword] = STATE(93), - [sym_php_statement] = STATE(93), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(93), - [sym__inline_directive] = STATE(93), - [sym__nested_directive] = STATE(93), - [sym_fragment] = STATE(93), - [sym_section] = STATE(93), - [sym_inlineSection] = STATE(93), - [sym_once] = STATE(93), - [sym_verbatim] = STATE(93), - [sym_stack] = STATE(93), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(93), - [sym_conditional_keyword] = STATE(93), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(93), - [sym_loop] = STATE(93), - [sym_loop_operator] = STATE(93), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(93), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(93), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(93), - [sym_text] = STATE(93), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3945), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), - }, - [157] = { [sym__definition] = STATE(135), [sym_keyword] = STATE(135), [sym_php_statement] = STATE(135), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), [sym_attribute] = STATE(135), [sym__inline_directive] = STATE(135), [sym__nested_directive] = STATE(135), @@ -44953,485 +45491,493 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(135), [sym_verbatim] = STATE(135), [sym_stack] = STATE(135), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), [sym_conditional] = STATE(135), [sym_conditional_keyword] = STATE(135), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), [sym_switch] = STATE(135), [sym_loop] = STATE(135), [sym_loop_operator] = STATE(135), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), [sym_envoy] = STATE(135), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), [sym_livewire] = STATE(135), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(135), [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(135), [sym_text] = STATE(135), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3947), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), - }, - [158] = { - [sym__definition] = STATE(81), - [sym_keyword] = STATE(81), - [sym_php_statement] = STATE(81), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(81), - [sym__inline_directive] = STATE(81), - [sym__nested_directive] = STATE(81), - [sym_fragment] = STATE(81), - [sym_section] = STATE(81), - [sym_inlineSection] = STATE(81), - [sym_once] = STATE(81), - [sym_verbatim] = STATE(81), - [sym_stack] = STATE(81), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(81), - [sym_conditional_keyword] = STATE(81), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(81), - [sym_loop] = STATE(81), - [sym_loop_operator] = STATE(81), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(81), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(81), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(81), - [sym_text] = STATE(81), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3949), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4015), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, - [159] = { - [sym__definition] = STATE(91), - [sym_keyword] = STATE(91), - [sym_php_statement] = STATE(91), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(91), - [sym__inline_directive] = STATE(91), - [sym__nested_directive] = STATE(91), - [sym_fragment] = STATE(91), - [sym_section] = STATE(91), - [sym_inlineSection] = STATE(91), - [sym_once] = STATE(91), - [sym_verbatim] = STATE(91), - [sym_stack] = STATE(91), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(91), - [sym_conditional_keyword] = STATE(91), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(91), - [sym_loop] = STATE(91), - [sym_loop_operator] = STATE(91), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(91), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(91), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), - [sym_text] = STATE(91), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3951), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [156] = { + [sym__definition] = STATE(94), + [sym_keyword] = STATE(94), + [sym_php_statement] = STATE(94), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(94), + [sym__inline_directive] = STATE(94), + [sym__nested_directive] = STATE(94), + [sym_fragment] = STATE(94), + [sym_section] = STATE(94), + [sym_inlineSection] = STATE(94), + [sym_once] = STATE(94), + [sym_verbatim] = STATE(94), + [sym_stack] = STATE(94), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(94), + [sym_conditional_keyword] = STATE(94), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(94), + [sym_loop] = STATE(94), + [sym_loop_operator] = STATE(94), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(94), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(94), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(94), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(94), + [sym_text] = STATE(94), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4017), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, - [160] = { - [sym__definition] = STATE(141), - [sym_keyword] = STATE(141), - [sym_php_statement] = STATE(141), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(141), - [sym__inline_directive] = STATE(141), - [sym__nested_directive] = STATE(141), - [sym_fragment] = STATE(141), - [sym_section] = STATE(141), - [sym_inlineSection] = STATE(141), - [sym_once] = STATE(141), - [sym_verbatim] = STATE(141), - [sym_stack] = STATE(141), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(141), - [sym_conditional_keyword] = STATE(141), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(141), - [sym_loop] = STATE(141), - [sym_loop_operator] = STATE(141), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(141), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(141), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(141), - [sym_text] = STATE(141), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3953), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [157] = { + [sym__definition] = STATE(137), + [sym_keyword] = STATE(137), + [sym_php_statement] = STATE(137), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(137), + [sym__inline_directive] = STATE(137), + [sym__nested_directive] = STATE(137), + [sym_fragment] = STATE(137), + [sym_section] = STATE(137), + [sym_inlineSection] = STATE(137), + [sym_once] = STATE(137), + [sym_verbatim] = STATE(137), + [sym_stack] = STATE(137), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(137), + [sym_conditional_keyword] = STATE(137), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(137), + [sym_loop] = STATE(137), + [sym_loop_operator] = STATE(137), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(137), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(137), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(137), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(137), + [sym_text] = STATE(137), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4019), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, - [161] = { + [158] = { + [sym__definition] = STATE(92), + [sym_keyword] = STATE(92), + [sym_php_statement] = STATE(92), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(92), + [sym__inline_directive] = STATE(92), + [sym__nested_directive] = STATE(92), + [sym_fragment] = STATE(92), + [sym_section] = STATE(92), + [sym_inlineSection] = STATE(92), + [sym_once] = STATE(92), + [sym_verbatim] = STATE(92), + [sym_stack] = STATE(92), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(92), + [sym_conditional_keyword] = STATE(92), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(92), + [sym_loop] = STATE(92), + [sym_loop_operator] = STATE(92), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(92), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(92), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(92), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(92), + [sym_text] = STATE(92), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4021), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), + }, + [159] = { [sym__definition] = STATE(82), [sym_keyword] = STATE(82), [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), [sym_attribute] = STATE(82), [sym__inline_directive] = STATE(82), [sym__nested_directive] = STATE(82), @@ -45441,851 +45987,1113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(82), [sym_verbatim] = STATE(82), [sym_stack] = STATE(82), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), [sym_conditional] = STATE(82), [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), [sym_switch] = STATE(82), [sym_loop] = STATE(82), [sym_loop_operator] = STATE(82), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), [sym_envoy] = STATE(82), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), [sym_livewire] = STATE(82), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(82), [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(82), [sym_text] = STATE(82), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3955), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4023), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), + }, + [160] = { + [sym__definition] = STATE(142), + [sym_keyword] = STATE(142), + [sym_php_statement] = STATE(142), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(142), + [sym__inline_directive] = STATE(142), + [sym__nested_directive] = STATE(142), + [sym_fragment] = STATE(142), + [sym_section] = STATE(142), + [sym_inlineSection] = STATE(142), + [sym_once] = STATE(142), + [sym_verbatim] = STATE(142), + [sym_stack] = STATE(142), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(142), + [sym_conditional_keyword] = STATE(142), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(142), + [sym_loop] = STATE(142), + [sym_loop_operator] = STATE(142), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(142), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(142), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(142), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(142), + [sym_text] = STATE(142), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4025), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), + }, + [161] = { + [sym__definition] = STATE(76), + [sym_keyword] = STATE(76), + [sym_php_statement] = STATE(76), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(76), + [sym__inline_directive] = STATE(76), + [sym__nested_directive] = STATE(76), + [sym_fragment] = STATE(76), + [sym_section] = STATE(76), + [sym_inlineSection] = STATE(76), + [sym_once] = STATE(76), + [sym_verbatim] = STATE(76), + [sym_stack] = STATE(76), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(76), + [sym_conditional_keyword] = STATE(76), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(76), + [sym_loop] = STATE(76), + [sym_loop_operator] = STATE(76), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(76), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(76), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(76), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(76), + [sym_text] = STATE(76), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4027), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [162] = { - [sym__definition] = STATE(84), - [sym_keyword] = STATE(84), - [sym_php_statement] = STATE(84), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(84), - [sym__inline_directive] = STATE(84), - [sym__nested_directive] = STATE(84), - [sym_fragment] = STATE(84), - [sym_section] = STATE(84), - [sym_inlineSection] = STATE(84), - [sym_once] = STATE(84), - [sym_verbatim] = STATE(84), - [sym_stack] = STATE(84), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(84), - [sym_conditional_keyword] = STATE(84), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(84), - [sym_loop] = STATE(84), - [sym_loop_operator] = STATE(84), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(84), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(84), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(84), - [sym_text] = STATE(84), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3957), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__definition] = STATE(83), + [sym_keyword] = STATE(83), + [sym_php_statement] = STATE(83), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(83), + [sym__inline_directive] = STATE(83), + [sym__nested_directive] = STATE(83), + [sym_fragment] = STATE(83), + [sym_section] = STATE(83), + [sym_inlineSection] = STATE(83), + [sym_once] = STATE(83), + [sym_verbatim] = STATE(83), + [sym_stack] = STATE(83), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(83), + [sym_conditional_keyword] = STATE(83), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(83), + [sym_loop] = STATE(83), + [sym_loop_operator] = STATE(83), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(83), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(83), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(83), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(83), + [sym_text] = STATE(83), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4029), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [163] = { - [sym__definition] = STATE(139), - [sym_keyword] = STATE(139), - [sym_php_statement] = STATE(139), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(139), - [sym__inline_directive] = STATE(139), - [sym__nested_directive] = STATE(139), - [sym_fragment] = STATE(139), - [sym_section] = STATE(139), - [sym_inlineSection] = STATE(139), - [sym_once] = STATE(139), - [sym_verbatim] = STATE(139), - [sym_stack] = STATE(139), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(139), - [sym_conditional_keyword] = STATE(139), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(139), - [sym_loop] = STATE(139), - [sym_loop_operator] = STATE(139), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(139), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(139), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(139), - [sym_text] = STATE(139), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3959), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__definition] = STATE(141), + [sym_keyword] = STATE(141), + [sym_php_statement] = STATE(141), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(141), + [sym__inline_directive] = STATE(141), + [sym__nested_directive] = STATE(141), + [sym_fragment] = STATE(141), + [sym_section] = STATE(141), + [sym_inlineSection] = STATE(141), + [sym_once] = STATE(141), + [sym_verbatim] = STATE(141), + [sym_stack] = STATE(141), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(141), + [sym_conditional_keyword] = STATE(141), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(141), + [sym_loop] = STATE(141), + [sym_loop_operator] = STATE(141), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(141), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(141), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(141), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(141), + [sym_text] = STATE(141), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4031), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [164] = { - [sym__definition] = STATE(92), - [sym_keyword] = STATE(92), - [sym_php_statement] = STATE(92), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(92), - [sym__inline_directive] = STATE(92), - [sym__nested_directive] = STATE(92), - [sym_fragment] = STATE(92), - [sym_section] = STATE(92), - [sym_inlineSection] = STATE(92), - [sym_once] = STATE(92), - [sym_verbatim] = STATE(92), - [sym_stack] = STATE(92), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(92), - [sym_conditional_keyword] = STATE(92), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(92), - [sym_loop] = STATE(92), - [sym_loop_operator] = STATE(92), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(92), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(92), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(92), - [sym_text] = STATE(92), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3961), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__definition] = STATE(88), + [sym_keyword] = STATE(88), + [sym_php_statement] = STATE(88), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(88), + [sym__inline_directive] = STATE(88), + [sym__nested_directive] = STATE(88), + [sym_fragment] = STATE(88), + [sym_section] = STATE(88), + [sym_inlineSection] = STATE(88), + [sym_once] = STATE(88), + [sym_verbatim] = STATE(88), + [sym_stack] = STATE(88), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(88), + [sym_conditional_keyword] = STATE(88), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(88), + [sym_loop] = STATE(88), + [sym_loop_operator] = STATE(88), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(88), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(88), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(88), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(88), + [sym_text] = STATE(88), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4033), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [165] = { - [sym__definition] = STATE(116), - [sym_keyword] = STATE(116), - [sym_php_statement] = STATE(116), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(116), - [sym__inline_directive] = STATE(116), - [sym__nested_directive] = STATE(116), - [sym_fragment] = STATE(116), - [sym_section] = STATE(116), - [sym_inlineSection] = STATE(116), - [sym_once] = STATE(116), - [sym_verbatim] = STATE(116), - [sym_stack] = STATE(116), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(116), - [sym_conditional_keyword] = STATE(116), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(116), - [sym_loop] = STATE(116), - [sym_loop_operator] = STATE(116), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(116), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(116), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(116), - [sym_text] = STATE(116), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3963), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__definition] = STATE(110), + [sym_keyword] = STATE(110), + [sym_php_statement] = STATE(110), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(110), + [sym__inline_directive] = STATE(110), + [sym__nested_directive] = STATE(110), + [sym_fragment] = STATE(110), + [sym_section] = STATE(110), + [sym_inlineSection] = STATE(110), + [sym_once] = STATE(110), + [sym_verbatim] = STATE(110), + [sym_stack] = STATE(110), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(110), + [sym_conditional_keyword] = STATE(110), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(110), + [sym_loop] = STATE(110), + [sym_loop_operator] = STATE(110), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(110), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(110), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(110), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(110), + [sym_text] = STATE(110), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4035), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [166] = { - [sym__definition] = STATE(104), - [sym_keyword] = STATE(104), - [sym_php_statement] = STATE(104), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(104), - [sym__inline_directive] = STATE(104), - [sym__nested_directive] = STATE(104), - [sym_fragment] = STATE(104), - [sym_section] = STATE(104), - [sym_inlineSection] = STATE(104), - [sym_once] = STATE(104), - [sym_verbatim] = STATE(104), - [sym_stack] = STATE(104), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(104), - [sym_conditional_keyword] = STATE(104), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(104), - [sym_loop] = STATE(104), - [sym_loop_operator] = STATE(104), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(104), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(104), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(104), - [sym_text] = STATE(104), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3965), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__definition] = STATE(106), + [sym_keyword] = STATE(106), + [sym_php_statement] = STATE(106), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(106), + [sym__inline_directive] = STATE(106), + [sym__nested_directive] = STATE(106), + [sym_fragment] = STATE(106), + [sym_section] = STATE(106), + [sym_inlineSection] = STATE(106), + [sym_once] = STATE(106), + [sym_verbatim] = STATE(106), + [sym_stack] = STATE(106), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(106), + [sym_conditional_keyword] = STATE(106), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(106), + [sym_loop] = STATE(106), + [sym_loop_operator] = STATE(106), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(106), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(106), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(106), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(106), + [sym_text] = STATE(106), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4037), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [167] = { - [sym__definition] = STATE(100), - [sym_keyword] = STATE(100), - [sym_php_statement] = STATE(100), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(100), - [sym__inline_directive] = STATE(100), - [sym__nested_directive] = STATE(100), - [sym_fragment] = STATE(100), - [sym_section] = STATE(100), - [sym_inlineSection] = STATE(100), - [sym_once] = STATE(100), - [sym_verbatim] = STATE(100), - [sym_stack] = STATE(100), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(100), - [sym_conditional_keyword] = STATE(100), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(100), - [sym_loop] = STATE(100), - [sym_loop_operator] = STATE(100), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(100), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(100), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), - [sym_text] = STATE(100), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3967), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__definition] = STATE(101), + [sym_keyword] = STATE(101), + [sym_php_statement] = STATE(101), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(101), + [sym__inline_directive] = STATE(101), + [sym__nested_directive] = STATE(101), + [sym_fragment] = STATE(101), + [sym_section] = STATE(101), + [sym_inlineSection] = STATE(101), + [sym_once] = STATE(101), + [sym_verbatim] = STATE(101), + [sym_stack] = STATE(101), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(101), + [sym_conditional_keyword] = STATE(101), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(101), + [sym_loop] = STATE(101), + [sym_loop_operator] = STATE(101), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(101), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(101), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(101), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(101), + [sym_text] = STATE(101), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4039), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [168] = { [sym__definition] = STATE(96), [sym_keyword] = STATE(96), [sym_php_statement] = STATE(96), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), [sym_attribute] = STATE(96), [sym__inline_directive] = STATE(96), [sym__nested_directive] = STATE(96), @@ -46295,241 +47103,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(96), [sym_verbatim] = STATE(96), [sym_stack] = STATE(96), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), [sym_conditional] = STATE(96), [sym_conditional_keyword] = STATE(96), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), [sym_switch] = STATE(96), [sym_loop] = STATE(96), [sym_loop_operator] = STATE(96), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), [sym_envoy] = STATE(96), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), [sym_livewire] = STATE(96), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(96), [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(96), [sym_text] = STATE(96), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3969), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4041), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [169] = { - [sym__definition] = STATE(142), - [sym_keyword] = STATE(142), - [sym_php_statement] = STATE(142), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(142), - [sym__inline_directive] = STATE(142), - [sym__nested_directive] = STATE(142), - [sym_fragment] = STATE(142), - [sym_section] = STATE(142), - [sym_inlineSection] = STATE(142), - [sym_once] = STATE(142), - [sym_verbatim] = STATE(142), - [sym_stack] = STATE(142), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(142), - [sym_conditional_keyword] = STATE(142), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(142), - [sym_loop] = STATE(142), - [sym_loop_operator] = STATE(142), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(142), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(142), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(142), - [sym_text] = STATE(142), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3971), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__definition] = STATE(144), + [sym_keyword] = STATE(144), + [sym_php_statement] = STATE(144), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(144), + [sym__inline_directive] = STATE(144), + [sym__nested_directive] = STATE(144), + [sym_fragment] = STATE(144), + [sym_section] = STATE(144), + [sym_inlineSection] = STATE(144), + [sym_once] = STATE(144), + [sym_verbatim] = STATE(144), + [sym_stack] = STATE(144), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(144), + [sym_conditional_keyword] = STATE(144), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(144), + [sym_loop] = STATE(144), + [sym_loop_operator] = STATE(144), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(144), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(144), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(144), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(144), + [sym_text] = STATE(144), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4043), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [170] = { [sym__definition] = STATE(97), [sym_keyword] = STATE(97), [sym_php_statement] = STATE(97), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), [sym_attribute] = STATE(97), [sym__inline_directive] = STATE(97), [sym__nested_directive] = STATE(97), @@ -46539,257 +47351,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(97), [sym_verbatim] = STATE(97), [sym_stack] = STATE(97), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), [sym_conditional] = STATE(97), [sym_conditional_keyword] = STATE(97), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), [sym_switch] = STATE(97), [sym_loop] = STATE(97), [sym_loop_operator] = STATE(97), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), [sym_envoy] = STATE(97), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), [sym_livewire] = STATE(97), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(97), [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(97), [sym_text] = STATE(97), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3973), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4045), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [171] = { - [sym__definition] = STATE(99), - [sym_keyword] = STATE(99), - [sym_php_statement] = STATE(99), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(99), - [sym__inline_directive] = STATE(99), - [sym__nested_directive] = STATE(99), - [sym_fragment] = STATE(99), - [sym_section] = STATE(99), - [sym_inlineSection] = STATE(99), - [sym_once] = STATE(99), - [sym_verbatim] = STATE(99), - [sym_stack] = STATE(99), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(99), - [sym_conditional_keyword] = STATE(99), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(99), - [sym_loop] = STATE(99), - [sym_loop_operator] = STATE(99), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(99), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(99), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(99), - [sym_text] = STATE(99), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3975), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), - }, - [172] = { - [sym__definition] = STATE(106), - [sym_keyword] = STATE(106), - [sym_php_statement] = STATE(106), + [sym__definition] = STATE(104), + [sym_keyword] = STATE(104), + [sym_php_statement] = STATE(104), [sym__escaped] = STATE(766), [sym__unescaped] = STATE(766), [sym__raw] = STATE(766), [sym__inline_raw] = STATE(766), [sym__multi_line_raw] = STATE(766), - [sym_attribute] = STATE(106), - [sym__inline_directive] = STATE(106), - [sym__nested_directive] = STATE(106), - [sym_fragment] = STATE(106), - [sym_section] = STATE(106), - [sym_inlineSection] = STATE(106), - [sym_once] = STATE(106), - [sym_verbatim] = STATE(106), - [sym_stack] = STATE(106), + [sym_attribute] = STATE(104), + [sym__inline_directive] = STATE(104), + [sym__nested_directive] = STATE(104), + [sym_fragment] = STATE(104), + [sym_section] = STATE(104), + [sym_inlineSection] = STATE(104), + [sym_once] = STATE(104), + [sym_verbatim] = STATE(104), + [sym_stack] = STATE(104), [sym__push] = STATE(767), [sym__pushOnce] = STATE(767), [sym__pushIf] = STATE(767), [sym__prepend] = STATE(767), [sym__prependOnce] = STATE(767), - [sym_conditional] = STATE(106), - [sym_conditional_keyword] = STATE(106), + [sym_conditional] = STATE(104), + [sym_conditional_keyword] = STATE(104), [sym__if] = STATE(768), [sym__unless] = STATE(768), [sym__isset] = STATE(768), @@ -46802,222 +47494,350 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__sectionMissing] = STATE(768), [sym__error] = STATE(768), [sym_authorization] = STATE(768), - [sym__can] = STATE(790), - [sym__cannot] = STATE(790), - [sym__canany] = STATE(790), + [sym__can] = STATE(769), + [sym__cannot] = STATE(769), + [sym__canany] = STATE(769), [sym__feature] = STATE(768), [sym__custom] = STATE(768), - [sym_switch] = STATE(106), - [sym_loop] = STATE(106), - [sym_loop_operator] = STATE(106), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(106), + [sym_switch] = STATE(104), + [sym_loop] = STATE(104), + [sym_loop_operator] = STATE(104), + [sym__for] = STATE(770), + [sym__foreach] = STATE(770), + [sym__forelse] = STATE(770), + [sym__while] = STATE(770), + [sym_envoy] = STATE(104), [sym__setup] = STATE(766), - [sym__task] = STATE(770), - [sym__story] = STATE(770), + [sym__task] = STATE(771), + [sym__story] = STATE(771), [sym__hooks] = STATE(766), [sym__before] = STATE(766), [sym__after] = STATE(766), [sym__envoy_error] = STATE(766), [sym__success] = STATE(766), [sym__finished] = STATE(766), - [sym_livewire] = STATE(106), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym_text] = STATE(106), - [sym__text] = STATE(706), - [aux_sym__if_statement_directive_body_repeat1] = STATE(106), - [aux_sym_php_only_repeat1] = STATE(706), - [sym_comment] = ACTIONS(3977), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), + [sym_livewire] = STATE(104), + [sym__persist] = STATE(772), + [sym__teleport] = STATE(772), + [sym__volt] = STATE(772), + [sym_alpine_js] = STATE(104), + [sym_text] = STATE(104), + [sym__text] = STATE(711), + [aux_sym__if_statement_directive_body_repeat1] = STATE(104), + [aux_sym_php_only_repeat1] = STATE(711), + [sym_comment] = ACTIONS(4047), + [aux_sym_keyword_token1] = ACTIONS(221), + [anon_sym_LBRACE_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(225), + [anon_sym_ATphp] = ACTIONS(227), + [aux_sym_attribute_token1] = ACTIONS(229), + [aux_sym__inline_directive_token1] = ACTIONS(231), + [anon_sym_ATfragment] = ACTIONS(233), + [anon_sym_ATsection] = ACTIONS(235), + [anon_sym_ATonce] = ACTIONS(237), + [anon_sym_ATverbatim] = ACTIONS(239), + [anon_sym_ATpush] = ACTIONS(241), + [anon_sym_ATpushOnce] = ACTIONS(243), + [anon_sym_ATpushIf] = ACTIONS(245), + [anon_sym_ATprepend] = ACTIONS(247), + [anon_sym_ATprependOnce] = ACTIONS(249), + [anon_sym_ATelse] = ACTIONS(251), + [aux_sym_conditional_keyword_token1] = ACTIONS(253), + [anon_sym_ATif] = ACTIONS(255), + [anon_sym_ATunless] = ACTIONS(257), + [anon_sym_ATisset] = ACTIONS(259), + [anon_sym_ATempty] = ACTIONS(261), + [anon_sym_ATauth] = ACTIONS(263), + [anon_sym_ATguest] = ACTIONS(265), + [anon_sym_ATproduction] = ACTIONS(267), + [anon_sym_ATenv] = ACTIONS(269), + [anon_sym_AThasSection] = ACTIONS(271), + [anon_sym_ATsectionMissing] = ACTIONS(273), + [anon_sym_ATerror] = ACTIONS(275), + [anon_sym_ATcan] = ACTIONS(277), + [anon_sym_ATcannot] = ACTIONS(279), + [anon_sym_ATcanany] = ACTIONS(281), + [anon_sym_ATfeature] = ACTIONS(283), + [aux_sym__custom_token1] = ACTIONS(285), + [aux_sym__custom_token2] = ACTIONS(287), + [anon_sym_ATswitch] = ACTIONS(289), + [aux_sym_loop_operator_token1] = ACTIONS(291), + [anon_sym_ATfor] = ACTIONS(293), + [anon_sym_ATforeach] = ACTIONS(295), + [anon_sym_ATforelse] = ACTIONS(297), + [anon_sym_ATwhile] = ACTIONS(299), + [anon_sym_ATsetup] = ACTIONS(301), + [anon_sym_ATtask] = ACTIONS(303), + [anon_sym_ATstory] = ACTIONS(305), + [anon_sym_ATbefore] = ACTIONS(307), + [anon_sym_ATafter] = ACTIONS(309), + [anon_sym_ATsuccess] = ACTIONS(311), + [anon_sym_ATfinished] = ACTIONS(313), + [anon_sym_ATpersist] = ACTIONS(315), + [anon_sym_ATteleport] = ACTIONS(317), + [anon_sym_ATvolt] = ACTIONS(319), + [aux_sym_alpine_js_token1] = ACTIONS(321), + [aux_sym__text_token1] = ACTIONS(323), + [aux_sym__text_token2] = ACTIONS(323), + [aux_sym__text_token3] = ACTIONS(325), + }, + [172] = { + [sym__definition] = STATE(98), + [sym_keyword] = STATE(98), + [sym_php_statement] = STATE(98), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(98), + [sym__inline_directive] = STATE(98), + [sym__nested_directive] = STATE(98), + [sym_fragment] = STATE(98), + [sym_section] = STATE(98), + [sym_inlineSection] = STATE(98), + [sym_once] = STATE(98), + [sym_verbatim] = STATE(98), + [sym_stack] = STATE(98), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(98), + [sym_conditional_keyword] = STATE(98), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(98), + [sym_loop] = STATE(98), + [sym_loop_operator] = STATE(98), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(98), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(98), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(98), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), + [sym_text] = STATE(98), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4049), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [173] = { - [sym__definition] = STATE(144), - [sym_keyword] = STATE(144), - [sym_php_statement] = STATE(144), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(144), - [sym__inline_directive] = STATE(144), - [sym__nested_directive] = STATE(144), - [sym_fragment] = STATE(144), - [sym_section] = STATE(144), - [sym_inlineSection] = STATE(144), - [sym_once] = STATE(144), - [sym_verbatim] = STATE(144), - [sym_stack] = STATE(144), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(144), - [sym_conditional_keyword] = STATE(144), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(144), - [sym_loop] = STATE(144), - [sym_loop_operator] = STATE(144), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(144), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(144), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(144), - [sym_text] = STATE(144), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3979), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__definition] = STATE(145), + [sym_keyword] = STATE(145), + [sym_php_statement] = STATE(145), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(145), + [sym__inline_directive] = STATE(145), + [sym__nested_directive] = STATE(145), + [sym_fragment] = STATE(145), + [sym_section] = STATE(145), + [sym_inlineSection] = STATE(145), + [sym_once] = STATE(145), + [sym_verbatim] = STATE(145), + [sym_stack] = STATE(145), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(145), + [sym_conditional_keyword] = STATE(145), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(145), + [sym_loop] = STATE(145), + [sym_loop_operator] = STATE(145), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(145), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(145), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(145), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(145), + [sym_text] = STATE(145), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4051), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [174] = { [sym__definition] = STATE(95), [sym_keyword] = STATE(95), [sym_php_statement] = STATE(95), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), [sym_attribute] = STATE(95), [sym__inline_directive] = STATE(95), [sym__nested_directive] = STATE(95), @@ -47027,241 +47847,369 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(95), [sym_verbatim] = STATE(95), [sym_stack] = STATE(95), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), [sym_conditional] = STATE(95), [sym_conditional_keyword] = STATE(95), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), [sym_switch] = STATE(95), [sym_loop] = STATE(95), [sym_loop_operator] = STATE(95), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), [sym_envoy] = STATE(95), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), [sym_livewire] = STATE(95), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(95), [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(95), [sym_text] = STATE(95), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3981), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4053), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [175] = { - [sym__definition] = STATE(145), - [sym_keyword] = STATE(145), - [sym_php_statement] = STATE(145), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(145), - [sym__inline_directive] = STATE(145), - [sym__nested_directive] = STATE(145), - [sym_fragment] = STATE(145), - [sym_section] = STATE(145), - [sym_inlineSection] = STATE(145), - [sym_once] = STATE(145), - [sym_verbatim] = STATE(145), - [sym_stack] = STATE(145), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(145), - [sym_conditional_keyword] = STATE(145), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(145), - [sym_loop] = STATE(145), - [sym_loop_operator] = STATE(145), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(145), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(145), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(145), - [sym_text] = STATE(145), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3983), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__definition] = STATE(146), + [sym_keyword] = STATE(146), + [sym_php_statement] = STATE(146), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(146), + [sym__inline_directive] = STATE(146), + [sym__nested_directive] = STATE(146), + [sym_fragment] = STATE(146), + [sym_section] = STATE(146), + [sym_inlineSection] = STATE(146), + [sym_once] = STATE(146), + [sym_verbatim] = STATE(146), + [sym_stack] = STATE(146), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(146), + [sym_conditional_keyword] = STATE(146), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(146), + [sym_loop] = STATE(146), + [sym_loop_operator] = STATE(146), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(146), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(146), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(146), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(146), + [sym_text] = STATE(146), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4055), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [176] = { + [sym__definition] = STATE(105), + [sym_keyword] = STATE(105), + [sym_php_statement] = STATE(105), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(105), + [sym__inline_directive] = STATE(105), + [sym__nested_directive] = STATE(105), + [sym_fragment] = STATE(105), + [sym_section] = STATE(105), + [sym_inlineSection] = STATE(105), + [sym_once] = STATE(105), + [sym_verbatim] = STATE(105), + [sym_stack] = STATE(105), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(105), + [sym_conditional_keyword] = STATE(105), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(105), + [sym_loop] = STATE(105), + [sym_loop_operator] = STATE(105), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(105), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(105), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(105), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(105), + [sym_text] = STATE(105), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4057), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), + }, + [177] = { [sym__definition] = STATE(108), [sym_keyword] = STATE(108), [sym_php_statement] = STATE(108), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), [sym_attribute] = STATE(108), [sym__inline_directive] = STATE(108), [sym__nested_directive] = STATE(108), @@ -47271,241 +48219,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(108), [sym_verbatim] = STATE(108), [sym_stack] = STATE(108), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), [sym_conditional] = STATE(108), [sym_conditional_keyword] = STATE(108), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), [sym_switch] = STATE(108), [sym_loop] = STATE(108), [sym_loop_operator] = STATE(108), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), [sym_envoy] = STATE(108), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), [sym_livewire] = STATE(108), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(108), [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(108), [sym_text] = STATE(108), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3985), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), - }, - [177] = { - [sym__definition] = STATE(110), - [sym_keyword] = STATE(110), - [sym_php_statement] = STATE(110), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(110), - [sym__inline_directive] = STATE(110), - [sym__nested_directive] = STATE(110), - [sym_fragment] = STATE(110), - [sym_section] = STATE(110), - [sym_inlineSection] = STATE(110), - [sym_once] = STATE(110), - [sym_verbatim] = STATE(110), - [sym_stack] = STATE(110), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(110), - [sym_conditional_keyword] = STATE(110), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(110), - [sym_loop] = STATE(110), - [sym_loop_operator] = STATE(110), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(110), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(110), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(110), - [sym_text] = STATE(110), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3987), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4059), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [178] = { + [sym__definition] = STATE(116), + [sym_keyword] = STATE(116), + [sym_php_statement] = STATE(116), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(116), + [sym__inline_directive] = STATE(116), + [sym__nested_directive] = STATE(116), + [sym_fragment] = STATE(116), + [sym_section] = STATE(116), + [sym_inlineSection] = STATE(116), + [sym_once] = STATE(116), + [sym_verbatim] = STATE(116), + [sym_stack] = STATE(116), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(116), + [sym_conditional_keyword] = STATE(116), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(116), + [sym_loop] = STATE(116), + [sym_loop_operator] = STATE(116), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(116), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(116), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(116), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(116), + [sym_text] = STATE(116), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4061), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), + }, + [179] = { [sym__definition] = STATE(127), [sym_keyword] = STATE(127), [sym_php_statement] = STATE(127), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), [sym_attribute] = STATE(127), [sym__inline_directive] = STATE(127), [sym__nested_directive] = STATE(127), @@ -47515,363 +48467,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(127), [sym_verbatim] = STATE(127), [sym_stack] = STATE(127), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), [sym_conditional] = STATE(127), [sym_conditional_keyword] = STATE(127), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), [sym_switch] = STATE(127), [sym_loop] = STATE(127), [sym_loop_operator] = STATE(127), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), [sym_envoy] = STATE(127), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), [sym_livewire] = STATE(127), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(127), [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(127), [sym_text] = STATE(127), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3989), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), - }, - [179] = { - [sym__definition] = STATE(89), - [sym_keyword] = STATE(89), - [sym_php_statement] = STATE(89), - [sym__escaped] = STATE(846), - [sym__unescaped] = STATE(846), - [sym__raw] = STATE(846), - [sym__inline_raw] = STATE(846), - [sym__multi_line_raw] = STATE(846), - [sym_attribute] = STATE(89), - [sym__inline_directive] = STATE(89), - [sym__nested_directive] = STATE(89), - [sym_fragment] = STATE(89), - [sym_section] = STATE(89), - [sym_inlineSection] = STATE(89), - [sym_once] = STATE(89), - [sym_verbatim] = STATE(89), - [sym_stack] = STATE(89), - [sym__push] = STATE(847), - [sym__pushOnce] = STATE(847), - [sym__pushIf] = STATE(847), - [sym__prepend] = STATE(847), - [sym__prependOnce] = STATE(847), - [sym_conditional] = STATE(89), - [sym_conditional_keyword] = STATE(89), - [sym__if] = STATE(848), - [sym__unless] = STATE(848), - [sym__isset] = STATE(848), - [sym__empty] = STATE(848), - [sym__auth] = STATE(848), - [sym__guest] = STATE(848), - [sym__production] = STATE(848), - [sym__env] = STATE(848), - [sym__hasSection] = STATE(848), - [sym__sectionMissing] = STATE(848), - [sym__error] = STATE(848), - [sym_authorization] = STATE(848), - [sym__can] = STATE(849), - [sym__cannot] = STATE(849), - [sym__canany] = STATE(849), - [sym__feature] = STATE(848), - [sym__custom] = STATE(848), - [sym_switch] = STATE(89), - [sym_loop] = STATE(89), - [sym_loop_operator] = STATE(89), - [sym__for] = STATE(850), - [sym__foreach] = STATE(850), - [sym__forelse] = STATE(850), - [sym__while] = STATE(850), - [sym_envoy] = STATE(89), - [sym__setup] = STATE(846), - [sym__task] = STATE(851), - [sym__story] = STATE(851), - [sym__hooks] = STATE(846), - [sym__before] = STATE(846), - [sym__after] = STATE(846), - [sym__envoy_error] = STATE(846), - [sym__success] = STATE(846), - [sym__finished] = STATE(846), - [sym_livewire] = STATE(89), - [sym__persist] = STATE(852), - [sym__teleport] = STATE(852), - [sym__volt] = STATE(852), - [sym_text] = STATE(89), - [sym__text] = STATE(720), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), - [aux_sym_php_only_repeat1] = STATE(720), - [sym_comment] = ACTIONS(3991), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4063), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [180] = { - [sym__definition] = STATE(128), - [sym_keyword] = STATE(128), - [sym_php_statement] = STATE(128), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(128), - [sym__inline_directive] = STATE(128), - [sym__nested_directive] = STATE(128), - [sym_fragment] = STATE(128), - [sym_section] = STATE(128), - [sym_inlineSection] = STATE(128), - [sym_once] = STATE(128), - [sym_verbatim] = STATE(128), - [sym_stack] = STATE(128), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(128), - [sym_conditional_keyword] = STATE(128), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(128), - [sym_loop] = STATE(128), - [sym_loop_operator] = STATE(128), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(128), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(128), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(128), - [sym_text] = STATE(128), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3993), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__definition] = STATE(114), + [sym_keyword] = STATE(114), + [sym_php_statement] = STATE(114), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), + [sym_attribute] = STATE(114), + [sym__inline_directive] = STATE(114), + [sym__nested_directive] = STATE(114), + [sym_fragment] = STATE(114), + [sym_section] = STATE(114), + [sym_inlineSection] = STATE(114), + [sym_once] = STATE(114), + [sym_verbatim] = STATE(114), + [sym_stack] = STATE(114), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), + [sym_conditional] = STATE(114), + [sym_conditional_keyword] = STATE(114), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), + [sym_switch] = STATE(114), + [sym_loop] = STATE(114), + [sym_loop_operator] = STATE(114), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), + [sym_envoy] = STATE(114), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), + [sym_livewire] = STATE(114), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(114), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(114), + [sym_text] = STATE(114), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4065), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [181] = { [sym__definition] = STATE(111), [sym_keyword] = STATE(111), [sym_php_statement] = STATE(111), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), [sym_attribute] = STATE(111), [sym__inline_directive] = STATE(111), [sym__nested_directive] = STATE(111), @@ -47881,119 +48715,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(111), [sym_verbatim] = STATE(111), [sym_stack] = STATE(111), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), [sym_conditional] = STATE(111), [sym_conditional_keyword] = STATE(111), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), [sym_switch] = STATE(111), [sym_loop] = STATE(111), [sym_loop_operator] = STATE(111), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), [sym_envoy] = STATE(111), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), [sym_livewire] = STATE(111), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(111), [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(111), [sym_text] = STATE(111), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3995), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4067), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [182] = { [sym__definition] = STATE(143), [sym_keyword] = STATE(143), [sym_php_statement] = STATE(143), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), + [sym__escaped] = STATE(954), + [sym__unescaped] = STATE(954), + [sym__raw] = STATE(954), + [sym__inline_raw] = STATE(954), + [sym__multi_line_raw] = STATE(954), [sym_attribute] = STATE(143), [sym__inline_directive] = STATE(143), [sym__nested_directive] = STATE(143), @@ -48003,961 +48839,977 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(143), [sym_verbatim] = STATE(143), [sym_stack] = STATE(143), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), + [sym__push] = STATE(966), + [sym__pushOnce] = STATE(966), + [sym__pushIf] = STATE(966), + [sym__prepend] = STATE(966), + [sym__prependOnce] = STATE(966), [sym_conditional] = STATE(143), [sym_conditional_keyword] = STATE(143), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), + [sym__if] = STATE(960), + [sym__unless] = STATE(960), + [sym__isset] = STATE(960), + [sym__empty] = STATE(960), + [sym__auth] = STATE(960), + [sym__guest] = STATE(960), + [sym__production] = STATE(960), + [sym__env] = STATE(960), + [sym__hasSection] = STATE(960), + [sym__sectionMissing] = STATE(960), + [sym__error] = STATE(960), + [sym_authorization] = STATE(960), + [sym__can] = STATE(963), + [sym__cannot] = STATE(963), + [sym__canany] = STATE(963), + [sym__feature] = STATE(960), + [sym__custom] = STATE(960), [sym_switch] = STATE(143), [sym_loop] = STATE(143), [sym_loop_operator] = STATE(143), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), + [sym__for] = STATE(974), + [sym__foreach] = STATE(974), + [sym__forelse] = STATE(974), + [sym__while] = STATE(974), [sym_envoy] = STATE(143), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), + [sym__setup] = STATE(954), + [sym__task] = STATE(967), + [sym__story] = STATE(967), + [sym__hooks] = STATE(954), + [sym__before] = STATE(954), + [sym__after] = STATE(954), + [sym__envoy_error] = STATE(954), + [sym__success] = STATE(954), + [sym__finished] = STATE(954), [sym_livewire] = STATE(143), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), + [sym__persist] = STATE(970), + [sym__teleport] = STATE(970), + [sym__volt] = STATE(970), + [sym_alpine_js] = STATE(143), [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(143), [sym_text] = STATE(143), - [sym__text] = STATE(722), - [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3997), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym__text] = STATE(710), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(4069), + [aux_sym_keyword_token1] = ACTIONS(661), + [anon_sym_LBRACE_LBRACE] = ACTIONS(663), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(665), + [anon_sym_ATphp] = ACTIONS(667), + [aux_sym_attribute_token1] = ACTIONS(669), + [aux_sym__inline_directive_token1] = ACTIONS(671), + [anon_sym_ATfragment] = ACTIONS(673), + [anon_sym_ATsection] = ACTIONS(675), + [anon_sym_ATonce] = ACTIONS(677), + [anon_sym_ATverbatim] = ACTIONS(679), + [anon_sym_ATpush] = ACTIONS(681), + [anon_sym_ATpushOnce] = ACTIONS(683), + [anon_sym_ATpushIf] = ACTIONS(685), + [anon_sym_ATprepend] = ACTIONS(687), + [anon_sym_ATprependOnce] = ACTIONS(689), + [anon_sym_ATelse] = ACTIONS(691), + [aux_sym_conditional_keyword_token1] = ACTIONS(693), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(697), + [anon_sym_ATisset] = ACTIONS(699), + [anon_sym_ATempty] = ACTIONS(701), + [anon_sym_ATauth] = ACTIONS(703), + [anon_sym_ATguest] = ACTIONS(705), + [anon_sym_ATproduction] = ACTIONS(707), + [anon_sym_ATenv] = ACTIONS(711), + [anon_sym_AThasSection] = ACTIONS(713), + [anon_sym_ATsectionMissing] = ACTIONS(715), + [anon_sym_ATerror] = ACTIONS(717), + [anon_sym_ATcan] = ACTIONS(719), + [anon_sym_ATcannot] = ACTIONS(721), + [anon_sym_ATcanany] = ACTIONS(723), + [anon_sym_ATfeature] = ACTIONS(725), + [aux_sym__custom_token1] = ACTIONS(727), + [aux_sym__custom_token2] = ACTIONS(729), + [anon_sym_ATswitch] = ACTIONS(731), + [aux_sym_loop_operator_token1] = ACTIONS(733), + [anon_sym_ATfor] = ACTIONS(735), + [anon_sym_ATforeach] = ACTIONS(737), + [anon_sym_ATforelse] = ACTIONS(739), + [anon_sym_ATwhile] = ACTIONS(741), + [anon_sym_ATsetup] = ACTIONS(743), + [anon_sym_ATtask] = ACTIONS(745), + [anon_sym_ATstory] = ACTIONS(747), + [anon_sym_ATbefore] = ACTIONS(749), + [anon_sym_ATafter] = ACTIONS(751), + [anon_sym_ATsuccess] = ACTIONS(753), + [anon_sym_ATfinished] = ACTIONS(755), + [anon_sym_ATpersist] = ACTIONS(757), + [anon_sym_ATteleport] = ACTIONS(759), + [anon_sym_ATvolt] = ACTIONS(761), + [aux_sym_alpine_js_token1] = ACTIONS(763), + [aux_sym__text_token1] = ACTIONS(765), + [aux_sym__text_token2] = ACTIONS(765), + [aux_sym__text_token3] = ACTIONS(767), }, [183] = { - [sym__definition] = STATE(73), - [sym_keyword] = STATE(73), - [sym_php_statement] = STATE(73), - [sym__escaped] = STATE(930), - [sym__unescaped] = STATE(930), - [sym__raw] = STATE(930), - [sym__inline_raw] = STATE(930), - [sym__multi_line_raw] = STATE(930), - [sym_attribute] = STATE(73), - [sym__inline_directive] = STATE(73), - [sym__nested_directive] = STATE(73), - [sym_fragment] = STATE(73), - [sym_section] = STATE(73), - [sym_inlineSection] = STATE(73), - [sym_once] = STATE(73), - [sym_verbatim] = STATE(73), - [sym_stack] = STATE(73), - [sym__push] = STATE(937), - [sym__pushOnce] = STATE(937), - [sym__pushIf] = STATE(937), - [sym__prepend] = STATE(937), - [sym__prependOnce] = STATE(937), - [sym_conditional] = STATE(73), - [sym_conditional_keyword] = STATE(73), - [sym__if] = STATE(932), - [sym__unless] = STATE(932), - [sym__isset] = STATE(932), - [sym__empty] = STATE(932), - [sym__auth] = STATE(932), - [sym__guest] = STATE(932), - [sym__production] = STATE(932), - [sym__env] = STATE(932), - [sym__hasSection] = STATE(932), - [sym__sectionMissing] = STATE(932), - [sym__error] = STATE(932), - [sym_authorization] = STATE(932), - [sym__can] = STATE(933), - [sym__cannot] = STATE(933), - [sym__canany] = STATE(933), - [sym__feature] = STATE(932), - [sym__custom] = STATE(932), - [sym_switch] = STATE(73), - [sym_loop] = STATE(73), - [sym_loop_operator] = STATE(73), - [sym__for] = STATE(934), - [sym__foreach] = STATE(934), - [sym__forelse] = STATE(934), - [sym__while] = STATE(934), - [sym_envoy] = STATE(73), - [sym__setup] = STATE(930), - [sym__task] = STATE(935), - [sym__story] = STATE(935), - [sym__hooks] = STATE(930), - [sym__before] = STATE(930), - [sym__after] = STATE(930), - [sym__envoy_error] = STATE(930), - [sym__success] = STATE(930), - [sym__finished] = STATE(930), - [sym_livewire] = STATE(73), - [sym__persist] = STATE(958), - [sym__teleport] = STATE(958), - [sym__volt] = STATE(958), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(73), - [sym_text] = STATE(73), + [sym__definition] = STATE(90), + [sym_keyword] = STATE(90), + [sym_php_statement] = STATE(90), + [sym__escaped] = STATE(847), + [sym__unescaped] = STATE(847), + [sym__raw] = STATE(847), + [sym__inline_raw] = STATE(847), + [sym__multi_line_raw] = STATE(847), + [sym_attribute] = STATE(90), + [sym__inline_directive] = STATE(90), + [sym__nested_directive] = STATE(90), + [sym_fragment] = STATE(90), + [sym_section] = STATE(90), + [sym_inlineSection] = STATE(90), + [sym_once] = STATE(90), + [sym_verbatim] = STATE(90), + [sym_stack] = STATE(90), + [sym__push] = STATE(848), + [sym__pushOnce] = STATE(848), + [sym__pushIf] = STATE(848), + [sym__prepend] = STATE(848), + [sym__prependOnce] = STATE(848), + [sym_conditional] = STATE(90), + [sym_conditional_keyword] = STATE(90), + [sym__if] = STATE(849), + [sym__unless] = STATE(849), + [sym__isset] = STATE(849), + [sym__empty] = STATE(849), + [sym__auth] = STATE(849), + [sym__guest] = STATE(849), + [sym__production] = STATE(849), + [sym__env] = STATE(849), + [sym__hasSection] = STATE(849), + [sym__sectionMissing] = STATE(849), + [sym__error] = STATE(849), + [sym_authorization] = STATE(849), + [sym__can] = STATE(850), + [sym__cannot] = STATE(850), + [sym__canany] = STATE(850), + [sym__feature] = STATE(849), + [sym__custom] = STATE(849), + [sym_switch] = STATE(90), + [sym_loop] = STATE(90), + [sym_loop_operator] = STATE(90), + [sym__for] = STATE(851), + [sym__foreach] = STATE(851), + [sym__forelse] = STATE(851), + [sym__while] = STATE(851), + [sym_envoy] = STATE(90), + [sym__setup] = STATE(847), + [sym__task] = STATE(852), + [sym__story] = STATE(852), + [sym__hooks] = STATE(847), + [sym__before] = STATE(847), + [sym__after] = STATE(847), + [sym__envoy_error] = STATE(847), + [sym__success] = STATE(847), + [sym__finished] = STATE(847), + [sym_livewire] = STATE(90), + [sym__persist] = STATE(853), + [sym__teleport] = STATE(853), + [sym__volt] = STATE(853), + [sym_alpine_js] = STATE(90), + [sym_text] = STATE(90), [sym__text] = STATE(722), + [aux_sym__if_statement_directive_body_repeat1] = STATE(90), [aux_sym_php_only_repeat1] = STATE(722), - [sym_comment] = ACTIONS(3999), - [aux_sym_keyword_token1] = ACTIONS(327), - [anon_sym_LBRACE_LBRACE] = ACTIONS(329), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), - [anon_sym_ATphp] = ACTIONS(333), - [aux_sym_attribute_token1] = ACTIONS(335), - [aux_sym__inline_directive_token1] = ACTIONS(337), - [anon_sym_ATfragment] = ACTIONS(339), - [anon_sym_ATsection] = ACTIONS(341), - [anon_sym_ATonce] = ACTIONS(343), - [anon_sym_ATverbatim] = ACTIONS(345), - [anon_sym_ATpush] = ACTIONS(347), - [anon_sym_ATpushOnce] = ACTIONS(349), - [anon_sym_ATpushIf] = ACTIONS(351), - [anon_sym_ATprepend] = ACTIONS(353), - [anon_sym_ATprependOnce] = ACTIONS(355), - [anon_sym_ATelse] = ACTIONS(357), - [aux_sym_conditional_keyword_token1] = ACTIONS(359), - [anon_sym_ATif] = ACTIONS(361), - [anon_sym_ATunless] = ACTIONS(363), - [anon_sym_ATisset] = ACTIONS(365), - [anon_sym_ATempty] = ACTIONS(367), - [anon_sym_ATauth] = ACTIONS(369), - [anon_sym_ATguest] = ACTIONS(371), - [anon_sym_ATproduction] = ACTIONS(373), - [anon_sym_ATenv] = ACTIONS(377), - [anon_sym_AThasSection] = ACTIONS(379), - [anon_sym_ATsectionMissing] = ACTIONS(381), - [anon_sym_ATerror] = ACTIONS(383), - [anon_sym_ATcan] = ACTIONS(385), - [anon_sym_ATcannot] = ACTIONS(387), - [anon_sym_ATcanany] = ACTIONS(389), - [anon_sym_ATfeature] = ACTIONS(391), - [aux_sym__custom_token1] = ACTIONS(393), - [aux_sym__custom_token2] = ACTIONS(395), - [anon_sym_ATswitch] = ACTIONS(397), - [aux_sym_loop_operator_token1] = ACTIONS(399), - [anon_sym_ATfor] = ACTIONS(401), - [anon_sym_ATforeach] = ACTIONS(403), - [anon_sym_ATforelse] = ACTIONS(405), - [anon_sym_ATwhile] = ACTIONS(407), - [anon_sym_ATsetup] = ACTIONS(409), - [anon_sym_ATtask] = ACTIONS(411), - [anon_sym_ATstory] = ACTIONS(413), - [anon_sym_ATbefore] = ACTIONS(415), - [anon_sym_ATafter] = ACTIONS(417), - [anon_sym_ATsuccess] = ACTIONS(419), - [anon_sym_ATfinished] = ACTIONS(421), - [anon_sym_ATpersist] = ACTIONS(423), - [anon_sym_ATteleport] = ACTIONS(425), - [anon_sym_ATvolt] = ACTIONS(427), - [aux_sym__text_token1] = ACTIONS(429), - [aux_sym__text_token2] = ACTIONS(429), - [aux_sym__text_token3] = ACTIONS(431), + [sym_comment] = ACTIONS(4071), + [aux_sym_keyword_token1] = ACTIONS(111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(115), + [anon_sym_ATphp] = ACTIONS(117), + [aux_sym_attribute_token1] = ACTIONS(119), + [aux_sym__inline_directive_token1] = ACTIONS(121), + [anon_sym_ATfragment] = ACTIONS(123), + [anon_sym_ATsection] = ACTIONS(125), + [anon_sym_ATonce] = ACTIONS(127), + [anon_sym_ATverbatim] = ACTIONS(129), + [anon_sym_ATpush] = ACTIONS(131), + [anon_sym_ATpushOnce] = ACTIONS(133), + [anon_sym_ATpushIf] = ACTIONS(135), + [anon_sym_ATprepend] = ACTIONS(137), + [anon_sym_ATprependOnce] = ACTIONS(139), + [anon_sym_ATelse] = ACTIONS(141), + [aux_sym_conditional_keyword_token1] = ACTIONS(143), + [anon_sym_ATif] = ACTIONS(145), + [anon_sym_ATunless] = ACTIONS(147), + [anon_sym_ATisset] = ACTIONS(149), + [anon_sym_ATempty] = ACTIONS(151), + [anon_sym_ATauth] = ACTIONS(153), + [anon_sym_ATguest] = ACTIONS(155), + [anon_sym_ATproduction] = ACTIONS(157), + [anon_sym_ATenv] = ACTIONS(159), + [anon_sym_AThasSection] = ACTIONS(161), + [anon_sym_ATsectionMissing] = ACTIONS(163), + [anon_sym_ATerror] = ACTIONS(165), + [anon_sym_ATcan] = ACTIONS(167), + [anon_sym_ATcannot] = ACTIONS(169), + [anon_sym_ATcanany] = ACTIONS(171), + [anon_sym_ATfeature] = ACTIONS(173), + [aux_sym__custom_token1] = ACTIONS(175), + [aux_sym__custom_token2] = ACTIONS(177), + [anon_sym_ATswitch] = ACTIONS(179), + [aux_sym_loop_operator_token1] = ACTIONS(181), + [anon_sym_ATfor] = ACTIONS(183), + [anon_sym_ATforeach] = ACTIONS(185), + [anon_sym_ATforelse] = ACTIONS(187), + [anon_sym_ATwhile] = ACTIONS(189), + [anon_sym_ATsetup] = ACTIONS(191), + [anon_sym_ATtask] = ACTIONS(193), + [anon_sym_ATstory] = ACTIONS(195), + [anon_sym_ATbefore] = ACTIONS(197), + [anon_sym_ATafter] = ACTIONS(199), + [anon_sym_ATsuccess] = ACTIONS(201), + [anon_sym_ATfinished] = ACTIONS(203), + [anon_sym_ATpersist] = ACTIONS(205), + [anon_sym_ATteleport] = ACTIONS(207), + [anon_sym_ATvolt] = ACTIONS(209), + [aux_sym_alpine_js_token1] = ACTIONS(211), + [aux_sym__text_token1] = ACTIONS(215), + [aux_sym__text_token2] = ACTIONS(215), + [aux_sym__text_token3] = ACTIONS(217), }, [184] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(4069), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(4091), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [185] = { - [sym__definition] = STATE(464), - [sym_keyword] = STATE(464), - [sym_php_statement] = STATE(464), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(464), - [sym__inline_directive] = STATE(464), - [sym__nested_directive] = STATE(464), - [sym_fragment] = STATE(464), - [sym_section] = STATE(464), - [sym_inlineSection] = STATE(464), - [sym_once] = STATE(464), - [sym_verbatim] = STATE(464), - [sym_stack] = STATE(464), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(464), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(464), - [sym_loop] = STATE(464), - [sym_loop_operator] = STATE(464), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(464), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(464), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(464), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(464), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4105), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(4107), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(462), + [sym_keyword] = STATE(462), + [sym_php_statement] = STATE(462), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(462), + [sym__inline_directive] = STATE(462), + [sym__nested_directive] = STATE(462), + [sym_fragment] = STATE(462), + [sym_section] = STATE(462), + [sym_inlineSection] = STATE(462), + [sym_once] = STATE(462), + [sym_verbatim] = STATE(462), + [sym_stack] = STATE(462), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(462), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(462), + [sym_loop] = STATE(462), + [sym_loop_operator] = STATE(462), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(462), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(462), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(462), + [sym_text] = STATE(462), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(462), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4179), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(4247), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [186] = { - [sym__definition] = STATE(276), - [sym_keyword] = STATE(276), - [sym_php_statement] = STATE(276), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(276), - [sym__inline_directive] = STATE(276), - [sym__nested_directive] = STATE(276), - [sym_fragment] = STATE(276), - [sym_section] = STATE(276), - [sym_inlineSection] = STATE(276), - [sym_once] = STATE(276), - [sym_verbatim] = STATE(276), - [sym_stack] = STATE(276), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(276), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(276), - [sym_loop] = STATE(276), - [sym_loop_operator] = STATE(276), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(276), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(276), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(276), - [sym_text] = STATE(276), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4109), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(4131), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(282), + [sym_keyword] = STATE(282), + [sym_php_statement] = STATE(282), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(282), + [sym__inline_directive] = STATE(282), + [sym__nested_directive] = STATE(282), + [sym_fragment] = STATE(282), + [sym_section] = STATE(282), + [sym_inlineSection] = STATE(282), + [sym_once] = STATE(282), + [sym_verbatim] = STATE(282), + [sym_stack] = STATE(282), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(282), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(282), + [sym_loop] = STATE(282), + [sym_loop_operator] = STATE(282), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(282), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(282), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(282), + [aux_sym__directive_body] = STATE(282), + [sym_text] = STATE(282), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4285), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(4307), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [187] = { - [sym__definition] = STATE(467), - [sym_keyword] = STATE(467), - [sym_php_statement] = STATE(467), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(467), - [sym__inline_directive] = STATE(467), - [sym__nested_directive] = STATE(467), - [sym_fragment] = STATE(467), - [sym_section] = STATE(467), - [sym_inlineSection] = STATE(467), - [sym_once] = STATE(467), - [sym_verbatim] = STATE(467), - [sym_stack] = STATE(467), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(467), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(467), - [sym_loop] = STATE(467), - [sym_loop_operator] = STATE(467), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(467), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(467), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(467), - [sym_text] = STATE(467), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4213), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(4233), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(280), + [sym_keyword] = STATE(280), + [sym_php_statement] = STATE(280), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(280), + [sym__inline_directive] = STATE(280), + [sym__nested_directive] = STATE(280), + [sym_fragment] = STATE(280), + [sym_section] = STATE(280), + [sym_inlineSection] = STATE(280), + [sym_once] = STATE(280), + [sym_verbatim] = STATE(280), + [sym_stack] = STATE(280), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(280), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(280), + [sym_loop] = STATE(280), + [sym_loop_operator] = STATE(280), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(280), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(280), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(280), + [aux_sym__directive_body] = STATE(280), + [sym_text] = STATE(280), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4391), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(4411), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [188] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(4317), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(4499), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [189] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(4337), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(4501), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [190] = { [sym__definition] = STATE(188), [sym_keyword] = STATE(188), [sym_php_statement] = STATE(188), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(188), [sym__inline_directive] = STATE(188), [sym__nested_directive] = STATE(188), @@ -48967,237 +49819,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(188), [sym_verbatim] = STATE(188), [sym_stack] = STATE(188), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(188), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(188), [sym_loop] = STATE(188), [sym_loop_operator] = STATE(188), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(188), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(188), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(188), [sym_text] = STATE(188), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(188), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4423), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(4425), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4503), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(4505), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [191] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(4425), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(4505), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [192] = { [sym__definition] = STATE(189), [sym_keyword] = STATE(189), [sym_php_statement] = STATE(189), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(189), [sym__inline_directive] = STATE(189), [sym__nested_directive] = STATE(189), @@ -49207,237 +50063,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(189), [sym_verbatim] = STATE(189), [sym_stack] = STATE(189), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(189), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(189), [sym_loop] = STATE(189), [sym_loop_operator] = STATE(189), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(189), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(189), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(189), [aux_sym__directive_body] = STATE(189), [sym_text] = STATE(189), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4427), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(4429), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4507), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(4509), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [193] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(4431), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(4511), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [194] = { [sym__definition] = STATE(191), [sym_keyword] = STATE(191), [sym_php_statement] = STATE(191), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(191), [sym__inline_directive] = STATE(191), [sym__nested_directive] = STATE(191), @@ -49447,117 +50307,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(191), [sym_verbatim] = STATE(191), [sym_stack] = STATE(191), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(191), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(191), [sym_loop] = STATE(191), [sym_loop_operator] = STATE(191), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(191), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(191), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(191), [sym_text] = STATE(191), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(191), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4433), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(4435), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4513), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(4515), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [195] = { [sym__definition] = STATE(193), [sym_keyword] = STATE(193), [sym_php_statement] = STATE(193), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(193), [sym__inline_directive] = STATE(193), [sym__nested_directive] = STATE(193), @@ -49567,357 +50429,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(193), [sym_verbatim] = STATE(193), [sym_stack] = STATE(193), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(193), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(193), [sym_loop] = STATE(193), [sym_loop_operator] = STATE(193), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(193), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(193), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(193), [aux_sym__directive_body] = STATE(193), [sym_text] = STATE(193), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4437), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(4439), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4517), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(4519), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [196] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(4443), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(4523), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [197] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(4447), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(4527), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [198] = { [sym__definition] = STATE(196), [sym_keyword] = STATE(196), [sym_php_statement] = STATE(196), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), [sym_attribute] = STATE(196), [sym__inline_directive] = STATE(196), [sym__nested_directive] = STATE(196), @@ -49927,117 +50795,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(196), [sym_verbatim] = STATE(196), [sym_stack] = STATE(196), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), [sym_conditional] = STATE(196), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), [sym_switch] = STATE(196), [sym_loop] = STATE(196), [sym_loop_operator] = STATE(196), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), [sym_envoy] = STATE(196), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), [sym_livewire] = STATE(196), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(196), [aux_sym__directive_body] = STATE(196), [sym_text] = STATE(196), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4449), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(4451), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4529), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(4531), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [199] = { [sym__definition] = STATE(197), [sym_keyword] = STATE(197), [sym_php_statement] = STATE(197), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), [sym_attribute] = STATE(197), [sym__inline_directive] = STATE(197), [sym__nested_directive] = STATE(197), @@ -50047,357 +50917,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(197), [sym_verbatim] = STATE(197), [sym_stack] = STATE(197), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), [sym_conditional] = STATE(197), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), [sym_switch] = STATE(197), [sym_loop] = STATE(197), [sym_loop_operator] = STATE(197), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), [sym_envoy] = STATE(197), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), [sym_livewire] = STATE(197), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(197), [aux_sym__directive_body] = STATE(197), [sym_text] = STATE(197), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4453), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(4455), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4533), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(4535), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [200] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(4457), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(4537), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [201] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(4459), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(4539), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [202] = { [sym__definition] = STATE(200), [sym_keyword] = STATE(200), [sym_php_statement] = STATE(200), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(200), [sym__inline_directive] = STATE(200), [sym__nested_directive] = STATE(200), @@ -50407,357 +51283,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(200), [sym_verbatim] = STATE(200), [sym_stack] = STATE(200), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(200), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(200), [sym_loop] = STATE(200), [sym_loop_operator] = STATE(200), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(200), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(200), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(200), [sym_text] = STATE(200), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(200), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4461), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(4463), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4541), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(4543), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [203] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(4463), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(4543), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [204] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(4465), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), - }, - [205] = { [sym__definition] = STATE(201), [sym_keyword] = STATE(201), [sym_php_statement] = STATE(201), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(201), [sym__inline_directive] = STATE(201), [sym__nested_directive] = STATE(201), @@ -50767,237 +51527,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(201), [sym_verbatim] = STATE(201), [sym_stack] = STATE(201), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(201), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(201), [sym_loop] = STATE(201), [sym_loop_operator] = STATE(201), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(201), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(201), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(201), [aux_sym__directive_body] = STATE(201), [sym_text] = STATE(201), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4467), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(4469), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4545), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(4547), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, - [206] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(4471), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [205] = { + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(4549), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, - [207] = { + [206] = { [sym__definition] = STATE(203), [sym_keyword] = STATE(203), [sym_php_statement] = STATE(203), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(203), [sym__inline_directive] = STATE(203), [sym__nested_directive] = STATE(203), @@ -51007,1557 +51771,1705 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(203), [sym_verbatim] = STATE(203), [sym_stack] = STATE(203), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(203), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(203), [sym_loop] = STATE(203), [sym_loop_operator] = STATE(203), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(203), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(203), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(203), [sym_text] = STATE(203), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(203), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4473), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(4475), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4551), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(4553), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), + }, + [207] = { + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(4555), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [208] = { - [sym__definition] = STATE(221), - [sym_keyword] = STATE(221), - [sym_php_statement] = STATE(221), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(221), - [sym__inline_directive] = STATE(221), - [sym__nested_directive] = STATE(221), - [sym_fragment] = STATE(221), - [sym_section] = STATE(221), - [sym_inlineSection] = STATE(221), - [sym_once] = STATE(221), - [sym_verbatim] = STATE(221), - [sym_stack] = STATE(221), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(221), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(221), - [sym_loop] = STATE(221), - [sym_loop_operator] = STATE(221), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(221), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(221), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(221), - [sym_text] = STATE(221), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4477), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(4479), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(205), + [sym_keyword] = STATE(205), + [sym_php_statement] = STATE(205), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(205), + [sym__inline_directive] = STATE(205), + [sym__nested_directive] = STATE(205), + [sym_fragment] = STATE(205), + [sym_section] = STATE(205), + [sym_inlineSection] = STATE(205), + [sym_once] = STATE(205), + [sym_verbatim] = STATE(205), + [sym_stack] = STATE(205), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(205), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(205), + [sym_loop] = STATE(205), + [sym_loop_operator] = STATE(205), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(205), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(205), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(205), + [aux_sym__directive_body] = STATE(205), + [sym_text] = STATE(205), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4557), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(4559), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [209] = { - [sym__definition] = STATE(206), - [sym_keyword] = STATE(206), - [sym_php_statement] = STATE(206), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(206), - [sym__inline_directive] = STATE(206), - [sym__nested_directive] = STATE(206), - [sym_fragment] = STATE(206), - [sym_section] = STATE(206), - [sym_inlineSection] = STATE(206), - [sym_once] = STATE(206), - [sym_verbatim] = STATE(206), - [sym_stack] = STATE(206), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(206), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(206), - [sym_loop] = STATE(206), - [sym_loop_operator] = STATE(206), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(206), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(206), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(206), - [sym_text] = STATE(206), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4481), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(4483), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(4561), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [210] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(4485), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(224), + [sym_keyword] = STATE(224), + [sym_php_statement] = STATE(224), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(224), + [sym__inline_directive] = STATE(224), + [sym__nested_directive] = STATE(224), + [sym_fragment] = STATE(224), + [sym_section] = STATE(224), + [sym_inlineSection] = STATE(224), + [sym_once] = STATE(224), + [sym_verbatim] = STATE(224), + [sym_stack] = STATE(224), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(224), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(224), + [sym_loop] = STATE(224), + [sym_loop_operator] = STATE(224), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(224), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(224), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(224), + [aux_sym__directive_body] = STATE(224), + [sym_text] = STATE(224), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4563), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(4565), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [211] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(4487), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(4567), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [212] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(4489), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(209), + [sym_keyword] = STATE(209), + [sym_php_statement] = STATE(209), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(209), + [sym__inline_directive] = STATE(209), + [sym__nested_directive] = STATE(209), + [sym_fragment] = STATE(209), + [sym_section] = STATE(209), + [sym_inlineSection] = STATE(209), + [sym_once] = STATE(209), + [sym_verbatim] = STATE(209), + [sym_stack] = STATE(209), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(209), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(209), + [sym_loop] = STATE(209), + [sym_loop_operator] = STATE(209), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(209), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(209), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(209), + [aux_sym__directive_body] = STATE(209), + [sym_text] = STATE(209), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4569), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(4571), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [213] = { - [sym__definition] = STATE(225), - [sym_keyword] = STATE(225), - [sym_php_statement] = STATE(225), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(225), - [sym__inline_directive] = STATE(225), - [sym__nested_directive] = STATE(225), - [sym_fragment] = STATE(225), - [sym_section] = STATE(225), - [sym_inlineSection] = STATE(225), - [sym_once] = STATE(225), - [sym_verbatim] = STATE(225), - [sym_stack] = STATE(225), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(225), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(225), - [sym_loop] = STATE(225), - [sym_loop_operator] = STATE(225), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(225), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(225), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(225), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(225), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4491), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(4487), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(211), + [sym_keyword] = STATE(211), + [sym_php_statement] = STATE(211), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(211), + [sym__inline_directive] = STATE(211), + [sym__nested_directive] = STATE(211), + [sym_fragment] = STATE(211), + [sym_section] = STATE(211), + [sym_inlineSection] = STATE(211), + [sym_once] = STATE(211), + [sym_verbatim] = STATE(211), + [sym_stack] = STATE(211), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(211), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(211), + [sym_loop] = STATE(211), + [sym_loop_operator] = STATE(211), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(211), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(211), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(211), + [aux_sym__directive_body] = STATE(211), + [sym_text] = STATE(211), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4573), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(4575), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [214] = { - [sym__definition] = STATE(210), - [sym_keyword] = STATE(210), - [sym_php_statement] = STATE(210), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(210), - [sym__inline_directive] = STATE(210), - [sym__nested_directive] = STATE(210), - [sym_fragment] = STATE(210), - [sym_section] = STATE(210), - [sym_inlineSection] = STATE(210), - [sym_once] = STATE(210), - [sym_verbatim] = STATE(210), - [sym_stack] = STATE(210), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(210), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(210), - [sym_loop] = STATE(210), - [sym_loop_operator] = STATE(210), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(210), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(210), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(210), - [sym_text] = STATE(210), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4493), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(4495), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(4577), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [215] = { - [sym__definition] = STATE(212), - [sym_keyword] = STATE(212), - [sym_php_statement] = STATE(212), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(212), - [sym__inline_directive] = STATE(212), - [sym__nested_directive] = STATE(212), - [sym_fragment] = STATE(212), - [sym_section] = STATE(212), - [sym_inlineSection] = STATE(212), - [sym_once] = STATE(212), - [sym_verbatim] = STATE(212), - [sym_stack] = STATE(212), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(212), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(212), - [sym_loop] = STATE(212), - [sym_loop_operator] = STATE(212), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(212), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(212), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(212), - [sym_text] = STATE(212), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), [sym_comment] = ACTIONS(4497), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(4499), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(4579), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [216] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(4501), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(228), + [sym_keyword] = STATE(228), + [sym_php_statement] = STATE(228), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(228), + [sym__inline_directive] = STATE(228), + [sym__nested_directive] = STATE(228), + [sym_fragment] = STATE(228), + [sym_section] = STATE(228), + [sym_inlineSection] = STATE(228), + [sym_once] = STATE(228), + [sym_verbatim] = STATE(228), + [sym_stack] = STATE(228), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(228), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(228), + [sym_loop] = STATE(228), + [sym_loop_operator] = STATE(228), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(228), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(228), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(228), + [sym_text] = STATE(228), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(228), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4581), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(4577), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [217] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(4503), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(4583), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [218] = { - [sym__definition] = STATE(216), - [sym_keyword] = STATE(216), - [sym_php_statement] = STATE(216), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(216), - [sym__inline_directive] = STATE(216), - [sym__nested_directive] = STATE(216), - [sym_fragment] = STATE(216), - [sym_section] = STATE(216), - [sym_inlineSection] = STATE(216), - [sym_once] = STATE(216), - [sym_verbatim] = STATE(216), - [sym_stack] = STATE(216), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(216), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(216), - [sym_loop] = STATE(216), - [sym_loop_operator] = STATE(216), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(216), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(216), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(216), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(216), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4505), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(4507), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(215), + [sym_keyword] = STATE(215), + [sym_php_statement] = STATE(215), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(215), + [sym__inline_directive] = STATE(215), + [sym__nested_directive] = STATE(215), + [sym_fragment] = STATE(215), + [sym_section] = STATE(215), + [sym_inlineSection] = STATE(215), + [sym_once] = STATE(215), + [sym_verbatim] = STATE(215), + [sym_stack] = STATE(215), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(215), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(215), + [sym_loop] = STATE(215), + [sym_loop_operator] = STATE(215), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(215), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(215), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(215), + [sym_text] = STATE(215), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(215), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4585), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(4587), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [219] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(4507), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(4587), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [220] = { [sym__definition] = STATE(217), [sym_keyword] = STATE(217), [sym_php_statement] = STATE(217), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(217), [sym__inline_directive] = STATE(217), [sym__nested_directive] = STATE(217), @@ -52567,357 +53479,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(217), [sym_verbatim] = STATE(217), [sym_stack] = STATE(217), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(217), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(217), [sym_loop] = STATE(217), [sym_loop_operator] = STATE(217), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(217), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(217), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(217), [aux_sym__directive_body] = STATE(217), [sym_text] = STATE(217), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4509), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(4511), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4589), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(4591), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [221] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(4513), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(4593), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [222] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(4515), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), - }, - [223] = { [sym__definition] = STATE(219), [sym_keyword] = STATE(219), [sym_php_statement] = STATE(219), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(219), [sym__inline_directive] = STATE(219), [sym__nested_directive] = STATE(219), @@ -52927,597 +53723,851 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(219), [sym_verbatim] = STATE(219), [sym_stack] = STATE(219), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(219), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(219), [sym_loop] = STATE(219), [sym_loop_operator] = STATE(219), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(219), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(219), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(219), [sym_text] = STATE(219), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(219), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4517), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(4519), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4595), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(4597), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), + }, + [223] = { + [sym__definition] = STATE(221), + [sym_keyword] = STATE(221), + [sym_php_statement] = STATE(221), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(221), + [sym__inline_directive] = STATE(221), + [sym__nested_directive] = STATE(221), + [sym_fragment] = STATE(221), + [sym_section] = STATE(221), + [sym_inlineSection] = STATE(221), + [sym_once] = STATE(221), + [sym_verbatim] = STATE(221), + [sym_stack] = STATE(221), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(221), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(221), + [sym_loop] = STATE(221), + [sym_loop_operator] = STATE(221), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(221), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(221), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(221), + [aux_sym__directive_body] = STATE(221), + [sym_text] = STATE(221), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4599), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(4601), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [224] = { - [sym__definition] = STATE(222), - [sym_keyword] = STATE(222), - [sym_php_statement] = STATE(222), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(222), - [sym__inline_directive] = STATE(222), - [sym__nested_directive] = STATE(222), - [sym_fragment] = STATE(222), - [sym_section] = STATE(222), - [sym_inlineSection] = STATE(222), - [sym_once] = STATE(222), - [sym_verbatim] = STATE(222), - [sym_stack] = STATE(222), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(222), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(222), - [sym_loop] = STATE(222), - [sym_loop_operator] = STATE(222), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(222), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(222), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(222), - [sym_text] = STATE(222), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4521), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(4523), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(4603), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [225] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(4525), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(4605), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [226] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(4527), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(4607), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [227] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(4529), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(225), + [sym_keyword] = STATE(225), + [sym_php_statement] = STATE(225), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(225), + [sym__inline_directive] = STATE(225), + [sym__nested_directive] = STATE(225), + [sym_fragment] = STATE(225), + [sym_section] = STATE(225), + [sym_inlineSection] = STATE(225), + [sym_once] = STATE(225), + [sym_verbatim] = STATE(225), + [sym_stack] = STATE(225), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(225), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(225), + [sym_loop] = STATE(225), + [sym_loop_operator] = STATE(225), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(225), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(225), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(225), + [aux_sym__directive_body] = STATE(225), + [sym_text] = STATE(225), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4609), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(4611), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [228] = { + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(4613), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), + }, + [229] = { [sym__definition] = STATE(226), [sym_keyword] = STATE(226), [sym_php_statement] = STATE(226), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), [sym_attribute] = STATE(226), [sym__inline_directive] = STATE(226), [sym__nested_directive] = STATE(226), @@ -53527,597 +54577,729 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(226), [sym_verbatim] = STATE(226), [sym_stack] = STATE(226), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), [sym_conditional] = STATE(226), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), [sym_switch] = STATE(226), [sym_loop] = STATE(226), [sym_loop_operator] = STATE(226), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), [sym_envoy] = STATE(226), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), [sym_livewire] = STATE(226), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(226), [aux_sym__directive_body] = STATE(226), [sym_text] = STATE(226), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4531), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(4533), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), - }, - [229] = { - [sym__definition] = STATE(227), - [sym_keyword] = STATE(227), - [sym_php_statement] = STATE(227), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(227), - [sym__inline_directive] = STATE(227), - [sym__nested_directive] = STATE(227), - [sym_fragment] = STATE(227), - [sym_section] = STATE(227), - [sym_inlineSection] = STATE(227), - [sym_once] = STATE(227), - [sym_verbatim] = STATE(227), - [sym_stack] = STATE(227), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(227), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(227), - [sym_loop] = STATE(227), - [sym_loop_operator] = STATE(227), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(227), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(227), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(227), - [sym_text] = STATE(227), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4535), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(4537), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4615), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(4617), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [230] = { - [sym__definition] = STATE(610), - [sym_keyword] = STATE(610), - [sym_php_statement] = STATE(610), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(610), - [sym__inline_directive] = STATE(610), - [sym__nested_directive] = STATE(610), - [sym_fragment] = STATE(610), - [sym_section] = STATE(610), - [sym_inlineSection] = STATE(610), - [sym_once] = STATE(610), - [sym_verbatim] = STATE(610), - [sym_stack] = STATE(610), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(610), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(610), - [sym_loop] = STATE(610), - [sym_loop_operator] = STATE(610), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(610), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(610), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(610), - [sym_text] = STATE(610), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4539), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(4541), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(4619), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [231] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(4543), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(4621), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [232] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(4545), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(230), + [sym_keyword] = STATE(230), + [sym_php_statement] = STATE(230), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(230), + [sym__inline_directive] = STATE(230), + [sym__nested_directive] = STATE(230), + [sym_fragment] = STATE(230), + [sym_section] = STATE(230), + [sym_inlineSection] = STATE(230), + [sym_once] = STATE(230), + [sym_verbatim] = STATE(230), + [sym_stack] = STATE(230), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(230), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(230), + [sym_loop] = STATE(230), + [sym_loop_operator] = STATE(230), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(230), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(230), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(230), + [sym_text] = STATE(230), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(230), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4623), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(4625), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [233] = { + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(4625), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), + }, + [234] = { + [sym__definition] = STATE(524), + [sym_keyword] = STATE(524), + [sym_php_statement] = STATE(524), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(524), + [sym__inline_directive] = STATE(524), + [sym__nested_directive] = STATE(524), + [sym_fragment] = STATE(524), + [sym_section] = STATE(524), + [sym_inlineSection] = STATE(524), + [sym_once] = STATE(524), + [sym_verbatim] = STATE(524), + [sym_stack] = STATE(524), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(524), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(524), + [sym_loop] = STATE(524), + [sym_loop_operator] = STATE(524), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(524), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(524), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(524), + [aux_sym__directive_body] = STATE(524), + [sym_text] = STATE(524), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4627), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(4629), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), + }, + [235] = { [sym__definition] = STATE(231), [sym_keyword] = STATE(231), [sym_php_statement] = STATE(231), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(231), [sym__inline_directive] = STATE(231), [sym__nested_directive] = STATE(231), @@ -54127,597 +55309,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(231), [sym_verbatim] = STATE(231), [sym_stack] = STATE(231), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(231), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(231), [sym_loop] = STATE(231), [sym_loop_operator] = STATE(231), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(231), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(231), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(231), + [aux_sym__directive_body] = STATE(231), [sym_text] = STATE(231), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(231), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4547), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(4549), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), - }, - [234] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(4549), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), - }, - [235] = { - [sym__definition] = STATE(232), - [sym_keyword] = STATE(232), - [sym_php_statement] = STATE(232), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(232), - [sym__inline_directive] = STATE(232), - [sym__nested_directive] = STATE(232), - [sym_fragment] = STATE(232), - [sym_section] = STATE(232), - [sym_inlineSection] = STATE(232), - [sym_once] = STATE(232), - [sym_verbatim] = STATE(232), - [sym_stack] = STATE(232), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(232), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(232), - [sym_loop] = STATE(232), - [sym_loop_operator] = STATE(232), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(232), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(232), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(232), - [sym_text] = STATE(232), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4551), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(4553), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4631), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(4633), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [236] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(4555), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(4635), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [237] = { - [sym__definition] = STATE(234), - [sym_keyword] = STATE(234), - [sym_php_statement] = STATE(234), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(234), - [sym__inline_directive] = STATE(234), - [sym__nested_directive] = STATE(234), - [sym_fragment] = STATE(234), - [sym_section] = STATE(234), - [sym_inlineSection] = STATE(234), - [sym_once] = STATE(234), - [sym_verbatim] = STATE(234), - [sym_stack] = STATE(234), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(234), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(234), - [sym_loop] = STATE(234), - [sym_loop_operator] = STATE(234), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(234), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(234), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(234), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(234), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4557), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(4559), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(233), + [sym_keyword] = STATE(233), + [sym_php_statement] = STATE(233), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(233), + [sym__inline_directive] = STATE(233), + [sym__nested_directive] = STATE(233), + [sym_fragment] = STATE(233), + [sym_section] = STATE(233), + [sym_inlineSection] = STATE(233), + [sym_once] = STATE(233), + [sym_verbatim] = STATE(233), + [sym_stack] = STATE(233), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(233), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(233), + [sym_loop] = STATE(233), + [sym_loop_operator] = STATE(233), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(233), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(233), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(233), + [sym_text] = STATE(233), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(233), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4637), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(4639), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [238] = { [sym__definition] = STATE(236), [sym_keyword] = STATE(236), [sym_php_statement] = STATE(236), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(236), [sym__inline_directive] = STATE(236), [sym__nested_directive] = STATE(236), @@ -54727,477 +55675,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(236), [sym_verbatim] = STATE(236), [sym_stack] = STATE(236), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(236), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(236), [sym_loop] = STATE(236), [sym_loop_operator] = STATE(236), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(236), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(236), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(236), [aux_sym__directive_body] = STATE(236), [sym_text] = STATE(236), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4561), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(4563), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4641), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(4643), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [239] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(4565), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(4645), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [240] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(4567), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), - }, - [241] = { - [sym__definition] = STATE(239), - [sym_keyword] = STATE(239), - [sym_php_statement] = STATE(239), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(239), - [sym__inline_directive] = STATE(239), - [sym__nested_directive] = STATE(239), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(4647), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), + }, + [241] = { + [sym__definition] = STATE(239), + [sym_keyword] = STATE(239), + [sym_php_statement] = STATE(239), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(239), + [sym__inline_directive] = STATE(239), + [sym__nested_directive] = STATE(239), [sym_fragment] = STATE(239), [sym_section] = STATE(239), [sym_inlineSection] = STATE(239), [sym_once] = STATE(239), [sym_verbatim] = STATE(239), [sym_stack] = STATE(239), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), [sym_conditional] = STATE(239), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), [sym_switch] = STATE(239), [sym_loop] = STATE(239), [sym_loop_operator] = STATE(239), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), [sym_envoy] = STATE(239), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), [sym_livewire] = STATE(239), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(239), [aux_sym__directive_body] = STATE(239), [sym_text] = STATE(239), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4569), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(4571), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4649), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(4651), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [242] = { [sym__definition] = STATE(240), [sym_keyword] = STATE(240), [sym_php_statement] = STATE(240), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), [sym_attribute] = STATE(240), [sym__inline_directive] = STATE(240), [sym__nested_directive] = STATE(240), @@ -55207,357 +56163,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(240), [sym_verbatim] = STATE(240), [sym_stack] = STATE(240), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), [sym_conditional] = STATE(240), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), [sym_switch] = STATE(240), [sym_loop] = STATE(240), [sym_loop_operator] = STATE(240), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), [sym_envoy] = STATE(240), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), [sym_livewire] = STATE(240), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(240), [aux_sym__directive_body] = STATE(240), [sym_text] = STATE(240), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4573), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(4575), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4653), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(4655), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [243] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(4577), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(4657), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [244] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(4579), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(4659), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [245] = { [sym__definition] = STATE(243), [sym_keyword] = STATE(243), [sym_php_statement] = STATE(243), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(243), [sym__inline_directive] = STATE(243), [sym__nested_directive] = STATE(243), @@ -55567,357 +56529,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(243), [sym_verbatim] = STATE(243), [sym_stack] = STATE(243), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(243), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(243), [sym_loop] = STATE(243), [sym_loop_operator] = STATE(243), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(243), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(243), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(243), [sym_text] = STATE(243), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(243), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4581), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(4583), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4661), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(4663), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [246] = { - [sym__definition] = STATE(266), - [sym_keyword] = STATE(266), - [sym_php_statement] = STATE(266), - [sym__escaped] = STATE(3486), - [sym__unescaped] = STATE(3486), - [sym__raw] = STATE(3486), - [sym__inline_raw] = STATE(3486), - [sym__multi_line_raw] = STATE(3486), - [sym_attribute] = STATE(266), - [sym__inline_directive] = STATE(266), - [sym__nested_directive] = STATE(266), - [sym_fragment] = STATE(266), - [sym_section] = STATE(266), - [sym_inlineSection] = STATE(266), - [sym_once] = STATE(266), - [sym_verbatim] = STATE(266), - [sym_stack] = STATE(266), - [sym__push] = STATE(3487), - [sym__pushOnce] = STATE(3487), - [sym__pushIf] = STATE(3487), - [sym__prepend] = STATE(3487), - [sym__prependOnce] = STATE(3487), - [sym_conditional] = STATE(266), - [sym__if] = STATE(3488), - [sym__unless] = STATE(3488), - [sym__isset] = STATE(3488), - [sym__empty] = STATE(3488), - [sym__auth] = STATE(3488), - [sym__guest] = STATE(3488), - [sym__production] = STATE(3488), - [sym__env] = STATE(3488), - [sym__hasSection] = STATE(3488), - [sym__sectionMissing] = STATE(3488), - [sym__error] = STATE(3488), - [sym_authorization] = STATE(3488), - [sym__can] = STATE(3489), - [sym__cannot] = STATE(3489), - [sym__canany] = STATE(3489), - [sym__feature] = STATE(3488), - [sym__custom] = STATE(3488), - [sym_switch] = STATE(266), - [sym_loop] = STATE(266), - [sym_loop_operator] = STATE(266), - [sym__for] = STATE(3490), - [sym__foreach] = STATE(3490), - [sym__forelse] = STATE(3490), - [sym__while] = STATE(3490), - [sym_envoy] = STATE(266), - [sym__setup] = STATE(3486), - [sym__task] = STATE(3491), - [sym__story] = STATE(3491), - [sym__hooks] = STATE(3486), - [sym__before] = STATE(3486), - [sym__after] = STATE(3486), - [sym__envoy_error] = STATE(3486), - [sym__success] = STATE(3486), - [sym__finished] = STATE(3486), - [sym_livewire] = STATE(266), - [sym__persist] = STATE(3494), - [sym__teleport] = STATE(3494), - [sym__volt] = STATE(3494), - [aux_sym__directive_body] = STATE(266), - [sym_text] = STATE(266), - [sym__text] = STATE(895), - [aux_sym_php_only_repeat1] = STATE(895), - [sym_comment] = ACTIONS(4585), - [aux_sym_keyword_token1] = ACTIONS(4587), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4589), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4591), - [anon_sym_ATphp] = ACTIONS(4593), - [aux_sym_attribute_token1] = ACTIONS(4595), - [aux_sym__inline_directive_token1] = ACTIONS(4597), - [anon_sym_ATfragment] = ACTIONS(4599), - [anon_sym_ATsection] = ACTIONS(4601), - [anon_sym_ATonce] = ACTIONS(4603), - [anon_sym_ATverbatim] = ACTIONS(4605), - [anon_sym_ATpush] = ACTIONS(4607), - [anon_sym_ATendpush] = ACTIONS(4609), - [anon_sym_ATpushOnce] = ACTIONS(4611), - [anon_sym_ATpushIf] = ACTIONS(4613), - [anon_sym_ATprepend] = ACTIONS(4615), - [anon_sym_ATprependOnce] = ACTIONS(4617), - [anon_sym_ATif] = ACTIONS(4619), - [anon_sym_ATunless] = ACTIONS(4621), - [anon_sym_ATisset] = ACTIONS(4623), - [anon_sym_ATempty] = ACTIONS(4625), - [anon_sym_ATauth] = ACTIONS(4627), - [anon_sym_ATguest] = ACTIONS(4629), - [anon_sym_ATproduction] = ACTIONS(4631), - [anon_sym_ATenv] = ACTIONS(4633), - [anon_sym_AThasSection] = ACTIONS(4635), - [anon_sym_ATsectionMissing] = ACTIONS(4637), - [anon_sym_ATerror] = ACTIONS(4639), - [anon_sym_ATcan] = ACTIONS(4641), - [anon_sym_ATcannot] = ACTIONS(4643), - [anon_sym_ATcanany] = ACTIONS(4645), - [anon_sym_ATfeature] = ACTIONS(4647), - [aux_sym__custom_token1] = ACTIONS(4649), - [aux_sym__custom_token2] = ACTIONS(4651), - [anon_sym_ATswitch] = ACTIONS(4653), - [aux_sym_loop_operator_token1] = ACTIONS(4655), - [anon_sym_ATfor] = ACTIONS(4657), - [anon_sym_ATforeach] = ACTIONS(4659), - [anon_sym_ATforelse] = ACTIONS(4661), - [anon_sym_ATwhile] = ACTIONS(4663), - [anon_sym_ATsetup] = ACTIONS(4665), - [anon_sym_ATtask] = ACTIONS(4667), - [anon_sym_ATstory] = ACTIONS(4669), - [anon_sym_ATbefore] = ACTIONS(4671), - [anon_sym_ATafter] = ACTIONS(4673), - [anon_sym_ATsuccess] = ACTIONS(4675), - [anon_sym_ATfinished] = ACTIONS(4677), - [anon_sym_ATpersist] = ACTIONS(4679), - [anon_sym_ATteleport] = ACTIONS(4681), - [anon_sym_ATvolt] = ACTIONS(4683), - [aux_sym__text_token1] = ACTIONS(4685), - [aux_sym__text_token2] = ACTIONS(4685), - [aux_sym__text_token3] = ACTIONS(4687), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(4663), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [247] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(4583), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), - }, - [248] = { [sym__definition] = STATE(244), [sym_keyword] = STATE(244), [sym_php_statement] = STATE(244), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(244), [sym__inline_directive] = STATE(244), [sym__nested_directive] = STATE(244), @@ -55927,957 +56773,1095 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(244), [sym_verbatim] = STATE(244), [sym_stack] = STATE(244), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(244), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(244), [sym_loop] = STATE(244), [sym_loop_operator] = STATE(244), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(244), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(244), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(244), [aux_sym__directive_body] = STATE(244), [sym_text] = STATE(244), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4689), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(4691), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4665), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(4667), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), + }, + [248] = { + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(4669), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [249] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(4693), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(246), + [sym_keyword] = STATE(246), + [sym_php_statement] = STATE(246), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(246), + [sym__inline_directive] = STATE(246), + [sym__nested_directive] = STATE(246), + [sym_fragment] = STATE(246), + [sym_section] = STATE(246), + [sym_inlineSection] = STATE(246), + [sym_once] = STATE(246), + [sym_verbatim] = STATE(246), + [sym_stack] = STATE(246), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(246), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(246), + [sym_loop] = STATE(246), + [sym_loop_operator] = STATE(246), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(246), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(246), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(246), + [sym_text] = STATE(246), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(246), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4671), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(4673), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [250] = { - [sym__definition] = STATE(328), - [sym_keyword] = STATE(328), - [sym_php_statement] = STATE(328), - [sym__escaped] = STATE(2257), - [sym__unescaped] = STATE(2257), - [sym__raw] = STATE(2257), - [sym__inline_raw] = STATE(2257), - [sym__multi_line_raw] = STATE(2257), - [sym_attribute] = STATE(328), - [sym__inline_directive] = STATE(328), - [sym__nested_directive] = STATE(328), - [sym_fragment] = STATE(328), - [sym_section] = STATE(328), - [sym_inlineSection] = STATE(328), - [sym_once] = STATE(328), - [sym_verbatim] = STATE(328), - [sym_stack] = STATE(328), - [sym__push] = STATE(2258), - [sym__pushOnce] = STATE(2258), - [sym__pushIf] = STATE(2258), - [sym__prepend] = STATE(2258), - [sym__prependOnce] = STATE(2258), - [sym_conditional] = STATE(328), - [sym__if] = STATE(2259), - [sym__unless] = STATE(2259), - [sym__isset] = STATE(2259), - [sym__empty] = STATE(2259), - [sym__auth] = STATE(2259), - [sym__guest] = STATE(2259), - [sym__production] = STATE(2259), - [sym__env] = STATE(2259), - [sym__hasSection] = STATE(2259), - [sym__sectionMissing] = STATE(2259), - [sym__error] = STATE(2259), - [sym_authorization] = STATE(2259), - [sym__can] = STATE(2260), - [sym__cannot] = STATE(2260), - [sym__canany] = STATE(2260), - [sym__feature] = STATE(2259), - [sym__custom] = STATE(2259), - [sym_switch] = STATE(328), - [sym_loop] = STATE(328), - [sym_loop_operator] = STATE(328), - [sym__for] = STATE(2261), - [sym__foreach] = STATE(2261), - [sym__forelse] = STATE(2261), - [sym__while] = STATE(2261), - [sym_envoy] = STATE(328), - [sym__setup] = STATE(2257), - [sym__task] = STATE(2262), - [sym__story] = STATE(2262), - [sym__hooks] = STATE(2257), - [sym__before] = STATE(2257), - [sym__after] = STATE(2257), - [sym__envoy_error] = STATE(2257), - [sym__success] = STATE(2257), - [sym__finished] = STATE(2257), - [sym_livewire] = STATE(328), - [sym__persist] = STATE(2263), - [sym__teleport] = STATE(2263), - [sym__volt] = STATE(2263), - [aux_sym__directive_body] = STATE(328), - [sym_text] = STATE(328), - [sym__text] = STATE(995), - [aux_sym_php_only_repeat1] = STATE(995), - [sym_comment] = ACTIONS(4695), - [aux_sym_keyword_token1] = ACTIONS(4697), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4699), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4701), - [anon_sym_ATphp] = ACTIONS(4703), - [aux_sym_attribute_token1] = ACTIONS(4705), - [aux_sym__inline_directive_token1] = ACTIONS(4707), - [anon_sym_ATfragment] = ACTIONS(4709), - [anon_sym_ATsection] = ACTIONS(4711), - [anon_sym_ATonce] = ACTIONS(4713), - [anon_sym_ATverbatim] = ACTIONS(4715), - [anon_sym_ATpush] = ACTIONS(4717), - [anon_sym_ATpushOnce] = ACTIONS(4719), - [anon_sym_ATpushIf] = ACTIONS(4721), - [anon_sym_ATprepend] = ACTIONS(4723), - [anon_sym_ATprependOnce] = ACTIONS(4725), - [anon_sym_ATif] = ACTIONS(4727), - [anon_sym_ATunless] = ACTIONS(4729), - [anon_sym_ATisset] = ACTIONS(4731), - [anon_sym_ATempty] = ACTIONS(4733), - [anon_sym_ATauth] = ACTIONS(4735), - [anon_sym_ATguest] = ACTIONS(4737), - [anon_sym_ATproduction] = ACTIONS(4739), - [anon_sym_ATenv] = ACTIONS(4741), - [anon_sym_AThasSection] = ACTIONS(4743), - [anon_sym_ATsectionMissing] = ACTIONS(4745), - [anon_sym_ATerror] = ACTIONS(4747), - [anon_sym_ATcan] = ACTIONS(4749), - [anon_sym_ATcannot] = ACTIONS(4751), - [anon_sym_ATcanany] = ACTIONS(4753), - [anon_sym_ATfeature] = ACTIONS(4755), - [aux_sym__custom_token1] = ACTIONS(4757), - [aux_sym__custom_token2] = ACTIONS(4759), - [anon_sym_ATswitch] = ACTIONS(4761), - [aux_sym_loop_operator_token1] = ACTIONS(4763), - [anon_sym_ATfor] = ACTIONS(4765), - [anon_sym_ATforeach] = ACTIONS(4767), - [anon_sym_ATendforeach] = ACTIONS(4609), - [anon_sym_ATforelse] = ACTIONS(4769), - [anon_sym_ATwhile] = ACTIONS(4771), - [anon_sym_ATsetup] = ACTIONS(4773), - [anon_sym_ATtask] = ACTIONS(4775), - [anon_sym_ATstory] = ACTIONS(4777), - [anon_sym_ATbefore] = ACTIONS(4779), - [anon_sym_ATafter] = ACTIONS(4781), - [anon_sym_ATsuccess] = ACTIONS(4783), - [anon_sym_ATfinished] = ACTIONS(4785), - [anon_sym_ATpersist] = ACTIONS(4787), - [anon_sym_ATteleport] = ACTIONS(4789), - [anon_sym_ATvolt] = ACTIONS(4791), - [aux_sym__text_token1] = ACTIONS(4793), - [aux_sym__text_token2] = ACTIONS(4793), - [aux_sym__text_token3] = ACTIONS(4795), + [sym__definition] = STATE(270), + [sym_keyword] = STATE(270), + [sym_php_statement] = STATE(270), + [sym__escaped] = STATE(3539), + [sym__unescaped] = STATE(3539), + [sym__raw] = STATE(3539), + [sym__inline_raw] = STATE(3539), + [sym__multi_line_raw] = STATE(3539), + [sym_attribute] = STATE(270), + [sym__inline_directive] = STATE(270), + [sym__nested_directive] = STATE(270), + [sym_fragment] = STATE(270), + [sym_section] = STATE(270), + [sym_inlineSection] = STATE(270), + [sym_once] = STATE(270), + [sym_verbatim] = STATE(270), + [sym_stack] = STATE(270), + [sym__push] = STATE(3540), + [sym__pushOnce] = STATE(3540), + [sym__pushIf] = STATE(3540), + [sym__prepend] = STATE(3540), + [sym__prependOnce] = STATE(3540), + [sym_conditional] = STATE(270), + [sym__if] = STATE(3541), + [sym__unless] = STATE(3541), + [sym__isset] = STATE(3541), + [sym__empty] = STATE(3541), + [sym__auth] = STATE(3541), + [sym__guest] = STATE(3541), + [sym__production] = STATE(3541), + [sym__env] = STATE(3541), + [sym__hasSection] = STATE(3541), + [sym__sectionMissing] = STATE(3541), + [sym__error] = STATE(3541), + [sym_authorization] = STATE(3541), + [sym__can] = STATE(3542), + [sym__cannot] = STATE(3542), + [sym__canany] = STATE(3542), + [sym__feature] = STATE(3541), + [sym__custom] = STATE(3541), + [sym_switch] = STATE(270), + [sym_loop] = STATE(270), + [sym_loop_operator] = STATE(270), + [sym__for] = STATE(3543), + [sym__foreach] = STATE(3543), + [sym__forelse] = STATE(3543), + [sym__while] = STATE(3543), + [sym_envoy] = STATE(270), + [sym__setup] = STATE(3539), + [sym__task] = STATE(3544), + [sym__story] = STATE(3544), + [sym__hooks] = STATE(3539), + [sym__before] = STATE(3539), + [sym__after] = STATE(3539), + [sym__envoy_error] = STATE(3539), + [sym__success] = STATE(3539), + [sym__finished] = STATE(3539), + [sym_livewire] = STATE(270), + [sym__persist] = STATE(3545), + [sym__teleport] = STATE(3545), + [sym__volt] = STATE(3545), + [sym_alpine_js] = STATE(270), + [aux_sym__directive_body] = STATE(270), + [sym_text] = STATE(270), + [sym__text] = STATE(906), + [aux_sym_php_only_repeat1] = STATE(906), + [sym_comment] = ACTIONS(4675), + [aux_sym_keyword_token1] = ACTIONS(4677), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4679), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4681), + [anon_sym_ATphp] = ACTIONS(4683), + [aux_sym_attribute_token1] = ACTIONS(4685), + [aux_sym__inline_directive_token1] = ACTIONS(4687), + [anon_sym_ATfragment] = ACTIONS(4689), + [anon_sym_ATsection] = ACTIONS(4691), + [anon_sym_ATonce] = ACTIONS(4693), + [anon_sym_ATverbatim] = ACTIONS(4695), + [anon_sym_ATpush] = ACTIONS(4697), + [anon_sym_ATendpush] = ACTIONS(4699), + [anon_sym_ATpushOnce] = ACTIONS(4701), + [anon_sym_ATpushIf] = ACTIONS(4703), + [anon_sym_ATprepend] = ACTIONS(4705), + [anon_sym_ATprependOnce] = ACTIONS(4707), + [anon_sym_ATif] = ACTIONS(4709), + [anon_sym_ATunless] = ACTIONS(4711), + [anon_sym_ATisset] = ACTIONS(4713), + [anon_sym_ATempty] = ACTIONS(4715), + [anon_sym_ATauth] = ACTIONS(4717), + [anon_sym_ATguest] = ACTIONS(4719), + [anon_sym_ATproduction] = ACTIONS(4721), + [anon_sym_ATenv] = ACTIONS(4723), + [anon_sym_AThasSection] = ACTIONS(4725), + [anon_sym_ATsectionMissing] = ACTIONS(4727), + [anon_sym_ATerror] = ACTIONS(4729), + [anon_sym_ATcan] = ACTIONS(4731), + [anon_sym_ATcannot] = ACTIONS(4733), + [anon_sym_ATcanany] = ACTIONS(4735), + [anon_sym_ATfeature] = ACTIONS(4737), + [aux_sym__custom_token1] = ACTIONS(4739), + [aux_sym__custom_token2] = ACTIONS(4741), + [anon_sym_ATswitch] = ACTIONS(4743), + [aux_sym_loop_operator_token1] = ACTIONS(4745), + [anon_sym_ATfor] = ACTIONS(4747), + [anon_sym_ATforeach] = ACTIONS(4749), + [anon_sym_ATforelse] = ACTIONS(4751), + [anon_sym_ATwhile] = ACTIONS(4753), + [anon_sym_ATsetup] = ACTIONS(4755), + [anon_sym_ATtask] = ACTIONS(4757), + [anon_sym_ATstory] = ACTIONS(4759), + [anon_sym_ATbefore] = ACTIONS(4761), + [anon_sym_ATafter] = ACTIONS(4763), + [anon_sym_ATsuccess] = ACTIONS(4765), + [anon_sym_ATfinished] = ACTIONS(4767), + [anon_sym_ATpersist] = ACTIONS(4769), + [anon_sym_ATteleport] = ACTIONS(4771), + [anon_sym_ATvolt] = ACTIONS(4773), + [aux_sym_alpine_js_token1] = ACTIONS(4775), + [aux_sym__text_token1] = ACTIONS(4777), + [aux_sym__text_token2] = ACTIONS(4777), + [aux_sym__text_token3] = ACTIONS(4779), }, [251] = { - [sym__definition] = STATE(247), - [sym_keyword] = STATE(247), - [sym_php_statement] = STATE(247), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(247), - [sym__inline_directive] = STATE(247), - [sym__nested_directive] = STATE(247), - [sym_fragment] = STATE(247), - [sym_section] = STATE(247), - [sym_inlineSection] = STATE(247), - [sym_once] = STATE(247), - [sym_verbatim] = STATE(247), - [sym_stack] = STATE(247), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(247), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(247), - [sym_loop] = STATE(247), - [sym_loop_operator] = STATE(247), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(247), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(247), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(247), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(247), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4797), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(4799), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(248), + [sym_keyword] = STATE(248), + [sym_php_statement] = STATE(248), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(248), + [sym__inline_directive] = STATE(248), + [sym__nested_directive] = STATE(248), + [sym_fragment] = STATE(248), + [sym_section] = STATE(248), + [sym_inlineSection] = STATE(248), + [sym_once] = STATE(248), + [sym_verbatim] = STATE(248), + [sym_stack] = STATE(248), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(248), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(248), + [sym_loop] = STATE(248), + [sym_loop_operator] = STATE(248), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(248), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(248), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(248), + [aux_sym__directive_body] = STATE(248), + [sym_text] = STATE(248), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4781), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(4783), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [252] = { - [sym__definition] = STATE(249), - [sym_keyword] = STATE(249), - [sym_php_statement] = STATE(249), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(249), - [sym__inline_directive] = STATE(249), - [sym__nested_directive] = STATE(249), - [sym_fragment] = STATE(249), - [sym_section] = STATE(249), - [sym_inlineSection] = STATE(249), - [sym_once] = STATE(249), - [sym_verbatim] = STATE(249), - [sym_stack] = STATE(249), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(249), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(249), - [sym_loop] = STATE(249), - [sym_loop_operator] = STATE(249), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(249), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(249), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(249), - [sym_text] = STATE(249), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4801), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(4803), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(4785), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [253] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(4805), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(616), + [sym_keyword] = STATE(616), + [sym_php_statement] = STATE(616), + [sym__escaped] = STATE(2201), + [sym__unescaped] = STATE(2201), + [sym__raw] = STATE(2201), + [sym__inline_raw] = STATE(2201), + [sym__multi_line_raw] = STATE(2201), + [sym_attribute] = STATE(616), + [sym__inline_directive] = STATE(616), + [sym__nested_directive] = STATE(616), + [sym_fragment] = STATE(616), + [sym_section] = STATE(616), + [sym_inlineSection] = STATE(616), + [sym_once] = STATE(616), + [sym_verbatim] = STATE(616), + [sym_stack] = STATE(616), + [sym__push] = STATE(2202), + [sym__pushOnce] = STATE(2202), + [sym__pushIf] = STATE(2202), + [sym__prepend] = STATE(2202), + [sym__prependOnce] = STATE(2202), + [sym_conditional] = STATE(616), + [sym__if] = STATE(2203), + [sym__unless] = STATE(2203), + [sym__isset] = STATE(2203), + [sym__empty] = STATE(2203), + [sym__auth] = STATE(2203), + [sym__guest] = STATE(2203), + [sym__production] = STATE(2203), + [sym__env] = STATE(2203), + [sym__hasSection] = STATE(2203), + [sym__sectionMissing] = STATE(2203), + [sym__error] = STATE(2203), + [sym_authorization] = STATE(2203), + [sym__can] = STATE(2204), + [sym__cannot] = STATE(2204), + [sym__canany] = STATE(2204), + [sym__feature] = STATE(2203), + [sym__custom] = STATE(2203), + [sym_switch] = STATE(616), + [sym_loop] = STATE(616), + [sym_loop_operator] = STATE(616), + [sym__for] = STATE(2205), + [sym__foreach] = STATE(2205), + [sym__forelse] = STATE(2205), + [sym__while] = STATE(2205), + [sym_envoy] = STATE(616), + [sym__setup] = STATE(2201), + [sym__task] = STATE(2206), + [sym__story] = STATE(2206), + [sym__hooks] = STATE(2201), + [sym__before] = STATE(2201), + [sym__after] = STATE(2201), + [sym__envoy_error] = STATE(2201), + [sym__success] = STATE(2201), + [sym__finished] = STATE(2201), + [sym_livewire] = STATE(616), + [sym__persist] = STATE(2207), + [sym__teleport] = STATE(2207), + [sym__volt] = STATE(2207), + [sym_alpine_js] = STATE(616), + [aux_sym__directive_body] = STATE(616), + [sym_text] = STATE(616), + [sym__text] = STATE(993), + [aux_sym_php_only_repeat1] = STATE(993), + [sym_comment] = ACTIONS(4787), + [aux_sym_keyword_token1] = ACTIONS(4789), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4791), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4793), + [anon_sym_ATphp] = ACTIONS(4795), + [aux_sym_attribute_token1] = ACTIONS(4797), + [aux_sym__inline_directive_token1] = ACTIONS(4799), + [anon_sym_ATfragment] = ACTIONS(4801), + [anon_sym_ATsection] = ACTIONS(4803), + [anon_sym_ATonce] = ACTIONS(4805), + [anon_sym_ATverbatim] = ACTIONS(4807), + [anon_sym_ATpush] = ACTIONS(4809), + [anon_sym_ATpushOnce] = ACTIONS(4811), + [anon_sym_ATpushIf] = ACTIONS(4813), + [anon_sym_ATprepend] = ACTIONS(4815), + [anon_sym_ATprependOnce] = ACTIONS(4817), + [anon_sym_ATif] = ACTIONS(4819), + [anon_sym_ATunless] = ACTIONS(4821), + [anon_sym_ATisset] = ACTIONS(4823), + [anon_sym_ATempty] = ACTIONS(4825), + [anon_sym_ATauth] = ACTIONS(4827), + [anon_sym_ATguest] = ACTIONS(4829), + [anon_sym_ATproduction] = ACTIONS(4831), + [anon_sym_ATenv] = ACTIONS(4833), + [anon_sym_AThasSection] = ACTIONS(4835), + [anon_sym_ATsectionMissing] = ACTIONS(4837), + [anon_sym_ATerror] = ACTIONS(4839), + [anon_sym_ATcan] = ACTIONS(4841), + [anon_sym_ATcannot] = ACTIONS(4843), + [anon_sym_ATcanany] = ACTIONS(4845), + [anon_sym_ATfeature] = ACTIONS(4847), + [aux_sym__custom_token1] = ACTIONS(4849), + [aux_sym__custom_token2] = ACTIONS(4851), + [anon_sym_ATswitch] = ACTIONS(4853), + [aux_sym_loop_operator_token1] = ACTIONS(4855), + [anon_sym_ATfor] = ACTIONS(4857), + [anon_sym_ATendfor] = ACTIONS(4859), + [anon_sym_ATforeach] = ACTIONS(4861), + [anon_sym_ATforelse] = ACTIONS(4863), + [anon_sym_ATwhile] = ACTIONS(4865), + [anon_sym_ATsetup] = ACTIONS(4867), + [anon_sym_ATtask] = ACTIONS(4869), + [anon_sym_ATstory] = ACTIONS(4871), + [anon_sym_ATbefore] = ACTIONS(4873), + [anon_sym_ATafter] = ACTIONS(4875), + [anon_sym_ATsuccess] = ACTIONS(4877), + [anon_sym_ATfinished] = ACTIONS(4879), + [anon_sym_ATpersist] = ACTIONS(4881), + [anon_sym_ATteleport] = ACTIONS(4883), + [anon_sym_ATvolt] = ACTIONS(4885), + [aux_sym_alpine_js_token1] = ACTIONS(4887), + [aux_sym__text_token1] = ACTIONS(4889), + [aux_sym__text_token2] = ACTIONS(4889), + [aux_sym__text_token3] = ACTIONS(4891), }, [254] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(4807), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(4893), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [255] = { - [sym__definition] = STATE(253), - [sym_keyword] = STATE(253), - [sym_php_statement] = STATE(253), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(253), - [sym__inline_directive] = STATE(253), - [sym__nested_directive] = STATE(253), - [sym_fragment] = STATE(253), - [sym_section] = STATE(253), - [sym_inlineSection] = STATE(253), - [sym_once] = STATE(253), - [sym_verbatim] = STATE(253), - [sym_stack] = STATE(253), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(253), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(253), - [sym_loop] = STATE(253), - [sym_loop_operator] = STATE(253), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(253), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(253), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(253), - [sym_text] = STATE(253), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4809), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(4811), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(252), + [sym_keyword] = STATE(252), + [sym_php_statement] = STATE(252), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(252), + [sym__inline_directive] = STATE(252), + [sym__nested_directive] = STATE(252), + [sym_fragment] = STATE(252), + [sym_section] = STATE(252), + [sym_inlineSection] = STATE(252), + [sym_once] = STATE(252), + [sym_verbatim] = STATE(252), + [sym_stack] = STATE(252), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(252), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(252), + [sym_loop] = STATE(252), + [sym_loop_operator] = STATE(252), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(252), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(252), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(252), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(252), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4895), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(4897), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [256] = { [sym__definition] = STATE(254), [sym_keyword] = STATE(254), [sym_php_statement] = STATE(254), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), [sym_attribute] = STATE(254), [sym__inline_directive] = STATE(254), [sym__nested_directive] = STATE(254), @@ -56887,237 +57871,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(254), [sym_verbatim] = STATE(254), [sym_stack] = STATE(254), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), [sym_conditional] = STATE(254), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), [sym_switch] = STATE(254), [sym_loop] = STATE(254), [sym_loop_operator] = STATE(254), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), [sym_envoy] = STATE(254), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), [sym_livewire] = STATE(254), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(254), [aux_sym__directive_body] = STATE(254), [sym_text] = STATE(254), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4813), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(4815), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4899), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(4901), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [257] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4817), - [aux_sym_keyword_token1] = ACTIONS(4820), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4823), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4826), - [anon_sym_ATphp] = ACTIONS(4829), - [aux_sym_attribute_token1] = ACTIONS(4832), - [aux_sym__inline_directive_token1] = ACTIONS(4835), - [anon_sym_ATfragment] = ACTIONS(4838), - [anon_sym_ATsection] = ACTIONS(4841), - [anon_sym_ATonce] = ACTIONS(4844), - [anon_sym_ATverbatim] = ACTIONS(4847), - [anon_sym_ATpush] = ACTIONS(4850), - [anon_sym_ATpushOnce] = ACTIONS(4853), - [anon_sym_ATpushIf] = ACTIONS(4856), - [anon_sym_ATprepend] = ACTIONS(4859), - [anon_sym_ATprependOnce] = ACTIONS(4862), - [anon_sym_ATif] = ACTIONS(4865), - [anon_sym_ATunless] = ACTIONS(4868), - [anon_sym_ATisset] = ACTIONS(4871), - [anon_sym_ATempty] = ACTIONS(4874), - [anon_sym_ATauth] = ACTIONS(4877), - [anon_sym_ATguest] = ACTIONS(4880), - [anon_sym_ATproduction] = ACTIONS(4883), - [anon_sym_ATenv] = ACTIONS(4886), - [anon_sym_AThasSection] = ACTIONS(4889), - [anon_sym_ATsectionMissing] = ACTIONS(4892), - [anon_sym_ATerror] = ACTIONS(4895), - [anon_sym_ATcan] = ACTIONS(4898), - [anon_sym_ATcannot] = ACTIONS(4901), - [anon_sym_ATcanany] = ACTIONS(4904), - [anon_sym_ATfeature] = ACTIONS(4907), - [aux_sym__custom_token1] = ACTIONS(4910), - [aux_sym__custom_token2] = ACTIONS(4913), - [anon_sym_ATswitch] = ACTIONS(4916), - [anon_sym_ATendswitch] = ACTIONS(4919), - [aux_sym_loop_operator_token1] = ACTIONS(4921), - [anon_sym_ATfor] = ACTIONS(4924), - [anon_sym_ATforeach] = ACTIONS(4927), - [anon_sym_ATforelse] = ACTIONS(4930), - [anon_sym_ATwhile] = ACTIONS(4933), - [anon_sym_ATsetup] = ACTIONS(4936), - [anon_sym_ATtask] = ACTIONS(4939), - [anon_sym_ATstory] = ACTIONS(4942), - [anon_sym_ATbefore] = ACTIONS(4945), - [anon_sym_ATafter] = ACTIONS(4948), - [anon_sym_ATsuccess] = ACTIONS(4951), - [anon_sym_ATfinished] = ACTIONS(4954), - [anon_sym_ATpersist] = ACTIONS(4957), - [anon_sym_ATteleport] = ACTIONS(4960), - [anon_sym_ATvolt] = ACTIONS(4963), - [aux_sym__text_token1] = ACTIONS(4966), - [aux_sym__text_token2] = ACTIONS(4966), - [aux_sym__text_token3] = ACTIONS(4969), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(4903), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [258] = { + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(4905), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), + }, + [259] = { [sym__definition] = STATE(257), [sym_keyword] = STATE(257), [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(257), [sym__inline_directive] = STATE(257), [sym__nested_directive] = STATE(257), @@ -57127,237 +58237,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(257), [sym_verbatim] = STATE(257), [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(257), [sym_loop] = STATE(257), [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(257), [sym_text] = STATE(257), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(4972), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), - }, - [259] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(4974), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4907), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(4909), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [260] = { + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(4909), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), + }, + [261] = { + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4911), + [aux_sym_keyword_token1] = ACTIONS(4914), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4917), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4920), + [anon_sym_ATphp] = ACTIONS(4923), + [aux_sym_attribute_token1] = ACTIONS(4926), + [aux_sym__inline_directive_token1] = ACTIONS(4929), + [anon_sym_ATfragment] = ACTIONS(4932), + [anon_sym_ATsection] = ACTIONS(4935), + [anon_sym_ATonce] = ACTIONS(4938), + [anon_sym_ATverbatim] = ACTIONS(4941), + [anon_sym_ATpush] = ACTIONS(4944), + [anon_sym_ATpushOnce] = ACTIONS(4947), + [anon_sym_ATpushIf] = ACTIONS(4950), + [anon_sym_ATprepend] = ACTIONS(4953), + [anon_sym_ATprependOnce] = ACTIONS(4956), + [anon_sym_ATif] = ACTIONS(4959), + [anon_sym_ATunless] = ACTIONS(4962), + [anon_sym_ATisset] = ACTIONS(4965), + [anon_sym_ATempty] = ACTIONS(4968), + [anon_sym_ATauth] = ACTIONS(4971), + [anon_sym_ATguest] = ACTIONS(4974), + [anon_sym_ATproduction] = ACTIONS(4977), + [anon_sym_ATenv] = ACTIONS(4980), + [anon_sym_AThasSection] = ACTIONS(4983), + [anon_sym_ATsectionMissing] = ACTIONS(4986), + [anon_sym_ATerror] = ACTIONS(4989), + [anon_sym_ATcan] = ACTIONS(4992), + [anon_sym_ATcannot] = ACTIONS(4995), + [anon_sym_ATcanany] = ACTIONS(4998), + [anon_sym_ATfeature] = ACTIONS(5001), + [aux_sym__custom_token1] = ACTIONS(5004), + [aux_sym__custom_token2] = ACTIONS(5007), + [anon_sym_ATswitch] = ACTIONS(5010), + [anon_sym_ATendswitch] = ACTIONS(5013), + [aux_sym_loop_operator_token1] = ACTIONS(5015), + [anon_sym_ATfor] = ACTIONS(5018), + [anon_sym_ATforeach] = ACTIONS(5021), + [anon_sym_ATforelse] = ACTIONS(5024), + [anon_sym_ATwhile] = ACTIONS(5027), + [anon_sym_ATsetup] = ACTIONS(5030), + [anon_sym_ATtask] = ACTIONS(5033), + [anon_sym_ATstory] = ACTIONS(5036), + [anon_sym_ATbefore] = ACTIONS(5039), + [anon_sym_ATafter] = ACTIONS(5042), + [anon_sym_ATsuccess] = ACTIONS(5045), + [anon_sym_ATfinished] = ACTIONS(5048), + [anon_sym_ATpersist] = ACTIONS(5051), + [anon_sym_ATteleport] = ACTIONS(5054), + [anon_sym_ATvolt] = ACTIONS(5057), + [aux_sym_alpine_js_token1] = ACTIONS(5060), + [aux_sym__text_token1] = ACTIONS(5063), + [aux_sym__text_token2] = ACTIONS(5063), + [aux_sym__text_token3] = ACTIONS(5066), + }, + [262] = { [sym__definition] = STATE(258), [sym_keyword] = STATE(258), [sym_php_statement] = STATE(258), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(258), [sym__inline_directive] = STATE(258), [sym__nested_directive] = STATE(258), @@ -57367,597 +58603,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(258), [sym_verbatim] = STATE(258), [sym_stack] = STATE(258), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(258), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(258), [sym_loop] = STATE(258), [sym_loop_operator] = STATE(258), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(258), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(258), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(258), + [aux_sym__directive_body] = STATE(258), [sym_text] = STATE(258), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(258), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4976), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(4978), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), - }, - [261] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(4978), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), - }, - [262] = { - [sym__definition] = STATE(259), - [sym_keyword] = STATE(259), - [sym_php_statement] = STATE(259), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(259), - [sym__inline_directive] = STATE(259), - [sym__nested_directive] = STATE(259), - [sym_fragment] = STATE(259), - [sym_section] = STATE(259), - [sym_inlineSection] = STATE(259), - [sym_once] = STATE(259), - [sym_verbatim] = STATE(259), - [sym_stack] = STATE(259), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(259), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(259), - [sym_loop] = STATE(259), - [sym_loop_operator] = STATE(259), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(259), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(259), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(259), - [sym_text] = STATE(259), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4980), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(4982), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(5069), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5071), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [263] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(4984), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5073), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [264] = { - [sym__definition] = STATE(261), - [sym_keyword] = STATE(261), - [sym_php_statement] = STATE(261), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(261), - [sym__inline_directive] = STATE(261), - [sym__nested_directive] = STATE(261), - [sym_fragment] = STATE(261), - [sym_section] = STATE(261), - [sym_inlineSection] = STATE(261), - [sym_once] = STATE(261), - [sym_verbatim] = STATE(261), - [sym_stack] = STATE(261), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(261), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(261), - [sym_loop] = STATE(261), - [sym_loop_operator] = STATE(261), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(261), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(261), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(261), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(261), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4986), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(4988), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(260), + [sym_keyword] = STATE(260), + [sym_php_statement] = STATE(260), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(260), + [sym__inline_directive] = STATE(260), + [sym__nested_directive] = STATE(260), + [sym_fragment] = STATE(260), + [sym_section] = STATE(260), + [sym_inlineSection] = STATE(260), + [sym_once] = STATE(260), + [sym_verbatim] = STATE(260), + [sym_stack] = STATE(260), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(260), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(260), + [sym_loop] = STATE(260), + [sym_loop_operator] = STATE(260), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(260), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(260), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(260), + [sym_text] = STATE(260), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(260), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(5075), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5077), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [265] = { [sym__definition] = STATE(263), [sym_keyword] = STATE(263), [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(263), [sym__inline_directive] = STATE(263), [sym__nested_directive] = STATE(263), @@ -57967,477 +58969,729 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(263), [sym_verbatim] = STATE(263), [sym_stack] = STATE(263), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(263), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(263), [sym_loop] = STATE(263), [sym_loop_operator] = STATE(263), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(263), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(263), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(263), [aux_sym__directive_body] = STATE(263), [sym_text] = STATE(263), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4990), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(4992), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(5079), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5081), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [266] = { - [sym__definition] = STATE(460), - [sym_keyword] = STATE(460), - [sym_php_statement] = STATE(460), - [sym__escaped] = STATE(3486), - [sym__unescaped] = STATE(3486), - [sym__raw] = STATE(3486), - [sym__inline_raw] = STATE(3486), - [sym__multi_line_raw] = STATE(3486), - [sym_attribute] = STATE(460), - [sym__inline_directive] = STATE(460), - [sym__nested_directive] = STATE(460), - [sym_fragment] = STATE(460), - [sym_section] = STATE(460), - [sym_inlineSection] = STATE(460), - [sym_once] = STATE(460), - [sym_verbatim] = STATE(460), - [sym_stack] = STATE(460), - [sym__push] = STATE(3487), - [sym__pushOnce] = STATE(3487), - [sym__pushIf] = STATE(3487), - [sym__prepend] = STATE(3487), - [sym__prependOnce] = STATE(3487), - [sym_conditional] = STATE(460), - [sym__if] = STATE(3488), - [sym__unless] = STATE(3488), - [sym__isset] = STATE(3488), - [sym__empty] = STATE(3488), - [sym__auth] = STATE(3488), - [sym__guest] = STATE(3488), - [sym__production] = STATE(3488), - [sym__env] = STATE(3488), - [sym__hasSection] = STATE(3488), - [sym__sectionMissing] = STATE(3488), - [sym__error] = STATE(3488), - [sym_authorization] = STATE(3488), - [sym__can] = STATE(3489), - [sym__cannot] = STATE(3489), - [sym__canany] = STATE(3489), - [sym__feature] = STATE(3488), - [sym__custom] = STATE(3488), - [sym_switch] = STATE(460), - [sym_loop] = STATE(460), - [sym_loop_operator] = STATE(460), - [sym__for] = STATE(3490), - [sym__foreach] = STATE(3490), - [sym__forelse] = STATE(3490), - [sym__while] = STATE(3490), - [sym_envoy] = STATE(460), - [sym__setup] = STATE(3486), - [sym__task] = STATE(3491), - [sym__story] = STATE(3491), - [sym__hooks] = STATE(3486), - [sym__before] = STATE(3486), - [sym__after] = STATE(3486), - [sym__envoy_error] = STATE(3486), - [sym__success] = STATE(3486), - [sym__finished] = STATE(3486), - [sym_livewire] = STATE(460), - [sym__persist] = STATE(3494), - [sym__teleport] = STATE(3494), - [sym__volt] = STATE(3494), - [aux_sym__directive_body] = STATE(460), - [sym_text] = STATE(460), - [sym__text] = STATE(895), - [aux_sym_php_only_repeat1] = STATE(895), - [sym_comment] = ACTIONS(4994), - [aux_sym_keyword_token1] = ACTIONS(4587), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4589), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4591), - [anon_sym_ATphp] = ACTIONS(4593), - [aux_sym_attribute_token1] = ACTIONS(4595), - [aux_sym__inline_directive_token1] = ACTIONS(4597), - [anon_sym_ATfragment] = ACTIONS(4599), - [anon_sym_ATsection] = ACTIONS(4601), - [anon_sym_ATonce] = ACTIONS(4603), - [anon_sym_ATverbatim] = ACTIONS(4605), - [anon_sym_ATpush] = ACTIONS(4607), - [anon_sym_ATendpush] = ACTIONS(4996), - [anon_sym_ATpushOnce] = ACTIONS(4611), - [anon_sym_ATpushIf] = ACTIONS(4613), - [anon_sym_ATprepend] = ACTIONS(4615), - [anon_sym_ATprependOnce] = ACTIONS(4617), - [anon_sym_ATif] = ACTIONS(4619), - [anon_sym_ATunless] = ACTIONS(4621), - [anon_sym_ATisset] = ACTIONS(4623), - [anon_sym_ATempty] = ACTIONS(4625), - [anon_sym_ATauth] = ACTIONS(4627), - [anon_sym_ATguest] = ACTIONS(4629), - [anon_sym_ATproduction] = ACTIONS(4631), - [anon_sym_ATenv] = ACTIONS(4633), - [anon_sym_AThasSection] = ACTIONS(4635), - [anon_sym_ATsectionMissing] = ACTIONS(4637), - [anon_sym_ATerror] = ACTIONS(4639), - [anon_sym_ATcan] = ACTIONS(4641), - [anon_sym_ATcannot] = ACTIONS(4643), - [anon_sym_ATcanany] = ACTIONS(4645), - [anon_sym_ATfeature] = ACTIONS(4647), - [aux_sym__custom_token1] = ACTIONS(4649), - [aux_sym__custom_token2] = ACTIONS(4651), - [anon_sym_ATswitch] = ACTIONS(4653), - [aux_sym_loop_operator_token1] = ACTIONS(4655), - [anon_sym_ATfor] = ACTIONS(4657), - [anon_sym_ATforeach] = ACTIONS(4659), - [anon_sym_ATforelse] = ACTIONS(4661), - [anon_sym_ATwhile] = ACTIONS(4663), - [anon_sym_ATsetup] = ACTIONS(4665), - [anon_sym_ATtask] = ACTIONS(4667), - [anon_sym_ATstory] = ACTIONS(4669), - [anon_sym_ATbefore] = ACTIONS(4671), - [anon_sym_ATafter] = ACTIONS(4673), - [anon_sym_ATsuccess] = ACTIONS(4675), - [anon_sym_ATfinished] = ACTIONS(4677), - [anon_sym_ATpersist] = ACTIONS(4679), - [anon_sym_ATteleport] = ACTIONS(4681), - [anon_sym_ATvolt] = ACTIONS(4683), - [aux_sym__text_token1] = ACTIONS(4685), - [aux_sym__text_token2] = ACTIONS(4685), - [aux_sym__text_token3] = ACTIONS(4687), + [sym__definition] = STATE(382), + [sym_keyword] = STATE(382), + [sym_php_statement] = STATE(382), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(382), + [sym__inline_directive] = STATE(382), + [sym__nested_directive] = STATE(382), + [sym_fragment] = STATE(382), + [sym_section] = STATE(382), + [sym_inlineSection] = STATE(382), + [sym_once] = STATE(382), + [sym_verbatim] = STATE(382), + [sym_stack] = STATE(382), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(382), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(382), + [sym_loop] = STATE(382), + [sym_loop_operator] = STATE(382), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(382), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(382), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(382), + [aux_sym__directive_body] = STATE(382), + [sym_text] = STATE(382), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(5083), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(5085), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [267] = { - [sym__definition] = STATE(374), - [sym_keyword] = STATE(374), - [sym_php_statement] = STATE(374), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(374), - [sym__inline_directive] = STATE(374), - [sym__nested_directive] = STATE(374), - [sym_fragment] = STATE(374), - [sym_section] = STATE(374), - [sym_inlineSection] = STATE(374), - [sym_once] = STATE(374), - [sym_verbatim] = STATE(374), - [sym_stack] = STATE(374), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(374), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(374), - [sym_loop] = STATE(374), - [sym_loop_operator] = STATE(374), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(374), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(374), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(374), - [sym_text] = STATE(374), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4998), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(5000), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(5087), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [268] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(5002), - [aux_sym_keyword_token1] = ACTIONS(5005), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5008), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5011), - [anon_sym_ATphp] = ACTIONS(5014), - [aux_sym_attribute_token1] = ACTIONS(5017), - [aux_sym__inline_directive_token1] = ACTIONS(5020), - [anon_sym_ATfragment] = ACTIONS(5023), - [anon_sym_ATsection] = ACTIONS(5026), - [anon_sym_ATonce] = ACTIONS(5029), - [anon_sym_ATverbatim] = ACTIONS(5032), - [anon_sym_ATendverbatim] = ACTIONS(5035), - [anon_sym_ATpush] = ACTIONS(5037), - [anon_sym_ATpushOnce] = ACTIONS(5040), - [anon_sym_ATpushIf] = ACTIONS(5043), - [anon_sym_ATprepend] = ACTIONS(5046), - [anon_sym_ATprependOnce] = ACTIONS(5049), - [anon_sym_ATif] = ACTIONS(5052), - [anon_sym_ATunless] = ACTIONS(5055), - [anon_sym_ATisset] = ACTIONS(5058), - [anon_sym_ATempty] = ACTIONS(5061), - [anon_sym_ATauth] = ACTIONS(5064), - [anon_sym_ATguest] = ACTIONS(5067), - [anon_sym_ATproduction] = ACTIONS(5070), - [anon_sym_ATenv] = ACTIONS(5073), - [anon_sym_AThasSection] = ACTIONS(5076), - [anon_sym_ATsectionMissing] = ACTIONS(5079), - [anon_sym_ATerror] = ACTIONS(5082), - [anon_sym_ATcan] = ACTIONS(5085), - [anon_sym_ATcannot] = ACTIONS(5088), - [anon_sym_ATcanany] = ACTIONS(5091), - [anon_sym_ATfeature] = ACTIONS(5094), - [aux_sym__custom_token1] = ACTIONS(5097), - [aux_sym__custom_token2] = ACTIONS(5100), - [anon_sym_ATswitch] = ACTIONS(5103), - [aux_sym_loop_operator_token1] = ACTIONS(5106), - [anon_sym_ATfor] = ACTIONS(5109), - [anon_sym_ATforeach] = ACTIONS(5112), - [anon_sym_ATforelse] = ACTIONS(5115), - [anon_sym_ATwhile] = ACTIONS(5118), - [anon_sym_ATsetup] = ACTIONS(5121), - [anon_sym_ATtask] = ACTIONS(5124), - [anon_sym_ATstory] = ACTIONS(5127), - [anon_sym_ATbefore] = ACTIONS(5130), - [anon_sym_ATafter] = ACTIONS(5133), - [anon_sym_ATsuccess] = ACTIONS(5136), - [anon_sym_ATfinished] = ACTIONS(5139), - [anon_sym_ATpersist] = ACTIONS(5142), - [anon_sym_ATteleport] = ACTIONS(5145), - [anon_sym_ATvolt] = ACTIONS(5148), - [aux_sym__text_token1] = ACTIONS(5151), - [aux_sym__text_token2] = ACTIONS(5151), - [aux_sym__text_token3] = ACTIONS(5154), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(5089), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [269] = { + [sym__definition] = STATE(267), + [sym_keyword] = STATE(267), + [sym_php_statement] = STATE(267), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(267), + [sym__inline_directive] = STATE(267), + [sym__nested_directive] = STATE(267), + [sym_fragment] = STATE(267), + [sym_section] = STATE(267), + [sym_inlineSection] = STATE(267), + [sym_once] = STATE(267), + [sym_verbatim] = STATE(267), + [sym_stack] = STATE(267), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(267), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(267), + [sym_loop] = STATE(267), + [sym_loop_operator] = STATE(267), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(267), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(267), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(267), + [aux_sym__directive_body] = STATE(267), + [sym_text] = STATE(267), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(5091), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(5093), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), + }, + [270] = { + [sym__definition] = STATE(466), + [sym_keyword] = STATE(466), + [sym_php_statement] = STATE(466), + [sym__escaped] = STATE(3539), + [sym__unescaped] = STATE(3539), + [sym__raw] = STATE(3539), + [sym__inline_raw] = STATE(3539), + [sym__multi_line_raw] = STATE(3539), + [sym_attribute] = STATE(466), + [sym__inline_directive] = STATE(466), + [sym__nested_directive] = STATE(466), + [sym_fragment] = STATE(466), + [sym_section] = STATE(466), + [sym_inlineSection] = STATE(466), + [sym_once] = STATE(466), + [sym_verbatim] = STATE(466), + [sym_stack] = STATE(466), + [sym__push] = STATE(3540), + [sym__pushOnce] = STATE(3540), + [sym__pushIf] = STATE(3540), + [sym__prepend] = STATE(3540), + [sym__prependOnce] = STATE(3540), + [sym_conditional] = STATE(466), + [sym__if] = STATE(3541), + [sym__unless] = STATE(3541), + [sym__isset] = STATE(3541), + [sym__empty] = STATE(3541), + [sym__auth] = STATE(3541), + [sym__guest] = STATE(3541), + [sym__production] = STATE(3541), + [sym__env] = STATE(3541), + [sym__hasSection] = STATE(3541), + [sym__sectionMissing] = STATE(3541), + [sym__error] = STATE(3541), + [sym_authorization] = STATE(3541), + [sym__can] = STATE(3542), + [sym__cannot] = STATE(3542), + [sym__canany] = STATE(3542), + [sym__feature] = STATE(3541), + [sym__custom] = STATE(3541), + [sym_switch] = STATE(466), + [sym_loop] = STATE(466), + [sym_loop_operator] = STATE(466), + [sym__for] = STATE(3543), + [sym__foreach] = STATE(3543), + [sym__forelse] = STATE(3543), + [sym__while] = STATE(3543), + [sym_envoy] = STATE(466), + [sym__setup] = STATE(3539), + [sym__task] = STATE(3544), + [sym__story] = STATE(3544), + [sym__hooks] = STATE(3539), + [sym__before] = STATE(3539), + [sym__after] = STATE(3539), + [sym__envoy_error] = STATE(3539), + [sym__success] = STATE(3539), + [sym__finished] = STATE(3539), + [sym_livewire] = STATE(466), + [sym__persist] = STATE(3545), + [sym__teleport] = STATE(3545), + [sym__volt] = STATE(3545), + [sym_alpine_js] = STATE(466), + [aux_sym__directive_body] = STATE(466), + [sym_text] = STATE(466), + [sym__text] = STATE(906), + [aux_sym_php_only_repeat1] = STATE(906), + [sym_comment] = ACTIONS(5095), + [aux_sym_keyword_token1] = ACTIONS(4677), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4679), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4681), + [anon_sym_ATphp] = ACTIONS(4683), + [aux_sym_attribute_token1] = ACTIONS(4685), + [aux_sym__inline_directive_token1] = ACTIONS(4687), + [anon_sym_ATfragment] = ACTIONS(4689), + [anon_sym_ATsection] = ACTIONS(4691), + [anon_sym_ATonce] = ACTIONS(4693), + [anon_sym_ATverbatim] = ACTIONS(4695), + [anon_sym_ATpush] = ACTIONS(4697), + [anon_sym_ATendpush] = ACTIONS(4859), + [anon_sym_ATpushOnce] = ACTIONS(4701), + [anon_sym_ATpushIf] = ACTIONS(4703), + [anon_sym_ATprepend] = ACTIONS(4705), + [anon_sym_ATprependOnce] = ACTIONS(4707), + [anon_sym_ATif] = ACTIONS(4709), + [anon_sym_ATunless] = ACTIONS(4711), + [anon_sym_ATisset] = ACTIONS(4713), + [anon_sym_ATempty] = ACTIONS(4715), + [anon_sym_ATauth] = ACTIONS(4717), + [anon_sym_ATguest] = ACTIONS(4719), + [anon_sym_ATproduction] = ACTIONS(4721), + [anon_sym_ATenv] = ACTIONS(4723), + [anon_sym_AThasSection] = ACTIONS(4725), + [anon_sym_ATsectionMissing] = ACTIONS(4727), + [anon_sym_ATerror] = ACTIONS(4729), + [anon_sym_ATcan] = ACTIONS(4731), + [anon_sym_ATcannot] = ACTIONS(4733), + [anon_sym_ATcanany] = ACTIONS(4735), + [anon_sym_ATfeature] = ACTIONS(4737), + [aux_sym__custom_token1] = ACTIONS(4739), + [aux_sym__custom_token2] = ACTIONS(4741), + [anon_sym_ATswitch] = ACTIONS(4743), + [aux_sym_loop_operator_token1] = ACTIONS(4745), + [anon_sym_ATfor] = ACTIONS(4747), + [anon_sym_ATforeach] = ACTIONS(4749), + [anon_sym_ATforelse] = ACTIONS(4751), + [anon_sym_ATwhile] = ACTIONS(4753), + [anon_sym_ATsetup] = ACTIONS(4755), + [anon_sym_ATtask] = ACTIONS(4757), + [anon_sym_ATstory] = ACTIONS(4759), + [anon_sym_ATbefore] = ACTIONS(4761), + [anon_sym_ATafter] = ACTIONS(4763), + [anon_sym_ATsuccess] = ACTIONS(4765), + [anon_sym_ATfinished] = ACTIONS(4767), + [anon_sym_ATpersist] = ACTIONS(4769), + [anon_sym_ATteleport] = ACTIONS(4771), + [anon_sym_ATvolt] = ACTIONS(4773), + [aux_sym_alpine_js_token1] = ACTIONS(4775), + [aux_sym__text_token1] = ACTIONS(4777), + [aux_sym__text_token2] = ACTIONS(4777), + [aux_sym__text_token3] = ACTIONS(4779), + }, + [271] = { [sym__definition] = STATE(268), [sym_keyword] = STATE(268), [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), [sym_attribute] = STATE(268), [sym__inline_directive] = STATE(268), [sym__nested_directive] = STATE(268), @@ -58447,717 +59701,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(268), [sym_verbatim] = STATE(268), [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), [sym_switch] = STATE(268), [sym_loop] = STATE(268), [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(268), [aux_sym__directive_body] = STATE(268), [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(5157), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), - }, - [270] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(5159), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), - }, - [271] = { - [sym__definition] = STATE(269), - [sym_keyword] = STATE(269), - [sym_php_statement] = STATE(269), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(269), - [sym__inline_directive] = STATE(269), - [sym__nested_directive] = STATE(269), - [sym_fragment] = STATE(269), - [sym_section] = STATE(269), - [sym_inlineSection] = STATE(269), - [sym_once] = STATE(269), - [sym_verbatim] = STATE(269), - [sym_stack] = STATE(269), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(269), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(269), - [sym_loop] = STATE(269), - [sym_loop_operator] = STATE(269), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(269), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(269), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(269), - [sym_text] = STATE(269), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(5161), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(5163), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(5097), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(5099), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [272] = { - [sym__definition] = STATE(270), - [sym_keyword] = STATE(270), - [sym_php_statement] = STATE(270), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(270), - [sym__inline_directive] = STATE(270), - [sym__nested_directive] = STATE(270), - [sym_fragment] = STATE(270), - [sym_section] = STATE(270), - [sym_inlineSection] = STATE(270), - [sym_once] = STATE(270), - [sym_verbatim] = STATE(270), - [sym_stack] = STATE(270), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(270), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(270), - [sym_loop] = STATE(270), - [sym_loop_operator] = STATE(270), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(270), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(270), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(270), - [sym_text] = STATE(270), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(5165), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(5167), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(5101), + [aux_sym_keyword_token1] = ACTIONS(5104), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5107), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5110), + [anon_sym_ATphp] = ACTIONS(5113), + [aux_sym_attribute_token1] = ACTIONS(5116), + [aux_sym__inline_directive_token1] = ACTIONS(5119), + [anon_sym_ATfragment] = ACTIONS(5122), + [anon_sym_ATsection] = ACTIONS(5125), + [anon_sym_ATonce] = ACTIONS(5128), + [anon_sym_ATverbatim] = ACTIONS(5131), + [anon_sym_ATendverbatim] = ACTIONS(5134), + [anon_sym_ATpush] = ACTIONS(5136), + [anon_sym_ATpushOnce] = ACTIONS(5139), + [anon_sym_ATpushIf] = ACTIONS(5142), + [anon_sym_ATprepend] = ACTIONS(5145), + [anon_sym_ATprependOnce] = ACTIONS(5148), + [anon_sym_ATif] = ACTIONS(5151), + [anon_sym_ATunless] = ACTIONS(5154), + [anon_sym_ATisset] = ACTIONS(5157), + [anon_sym_ATempty] = ACTIONS(5160), + [anon_sym_ATauth] = ACTIONS(5163), + [anon_sym_ATguest] = ACTIONS(5166), + [anon_sym_ATproduction] = ACTIONS(5169), + [anon_sym_ATenv] = ACTIONS(5172), + [anon_sym_AThasSection] = ACTIONS(5175), + [anon_sym_ATsectionMissing] = ACTIONS(5178), + [anon_sym_ATerror] = ACTIONS(5181), + [anon_sym_ATcan] = ACTIONS(5184), + [anon_sym_ATcannot] = ACTIONS(5187), + [anon_sym_ATcanany] = ACTIONS(5190), + [anon_sym_ATfeature] = ACTIONS(5193), + [aux_sym__custom_token1] = ACTIONS(5196), + [aux_sym__custom_token2] = ACTIONS(5199), + [anon_sym_ATswitch] = ACTIONS(5202), + [aux_sym_loop_operator_token1] = ACTIONS(5205), + [anon_sym_ATfor] = ACTIONS(5208), + [anon_sym_ATforeach] = ACTIONS(5211), + [anon_sym_ATforelse] = ACTIONS(5214), + [anon_sym_ATwhile] = ACTIONS(5217), + [anon_sym_ATsetup] = ACTIONS(5220), + [anon_sym_ATtask] = ACTIONS(5223), + [anon_sym_ATstory] = ACTIONS(5226), + [anon_sym_ATbefore] = ACTIONS(5229), + [anon_sym_ATafter] = ACTIONS(5232), + [anon_sym_ATsuccess] = ACTIONS(5235), + [anon_sym_ATfinished] = ACTIONS(5238), + [anon_sym_ATpersist] = ACTIONS(5241), + [anon_sym_ATteleport] = ACTIONS(5244), + [anon_sym_ATvolt] = ACTIONS(5247), + [aux_sym_alpine_js_token1] = ACTIONS(5250), + [aux_sym__text_token1] = ACTIONS(5253), + [aux_sym__text_token2] = ACTIONS(5253), + [aux_sym__text_token3] = ACTIONS(5256), }, [273] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5169), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5259), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [274] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5171), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5261), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [275] = { [sym__definition] = STATE(273), [sym_keyword] = STATE(273), [sym_php_statement] = STATE(273), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(273), [sym__inline_directive] = STATE(273), [sym__nested_directive] = STATE(273), @@ -59167,357 +60189,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(273), [sym_verbatim] = STATE(273), [sym_stack] = STATE(273), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(273), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(273), [sym_loop] = STATE(273), [sym_loop_operator] = STATE(273), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(273), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(273), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(273), [sym_text] = STATE(273), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(273), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(5173), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5175), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(5263), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5265), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [276] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(5177), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5265), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [277] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5175), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), - }, - [278] = { [sym__definition] = STATE(274), [sym_keyword] = STATE(274), [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(274), [sym__inline_directive] = STATE(274), [sym__nested_directive] = STATE(274), @@ -59527,597 +60433,1095 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(274), [sym_verbatim] = STATE(274), [sym_stack] = STATE(274), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(274), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(274), [sym_loop] = STATE(274), [sym_loop_operator] = STATE(274), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(274), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(274), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(274), [aux_sym__directive_body] = STATE(274), [sym_text] = STATE(274), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(5179), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5181), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(5267), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5269), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), + }, + [278] = { + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5271), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [279] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5183), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(276), + [sym_keyword] = STATE(276), + [sym_php_statement] = STATE(276), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(276), + [sym__inline_directive] = STATE(276), + [sym__nested_directive] = STATE(276), + [sym_fragment] = STATE(276), + [sym_section] = STATE(276), + [sym_inlineSection] = STATE(276), + [sym_once] = STATE(276), + [sym_verbatim] = STATE(276), + [sym_stack] = STATE(276), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(276), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(276), + [sym_loop] = STATE(276), + [sym_loop_operator] = STATE(276), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(276), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(276), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(276), + [sym_text] = STATE(276), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(276), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(5273), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5275), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [280] = { - [sym__definition] = STATE(277), - [sym_keyword] = STATE(277), - [sym_php_statement] = STATE(277), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(277), - [sym__inline_directive] = STATE(277), - [sym__nested_directive] = STATE(277), - [sym_fragment] = STATE(277), - [sym_section] = STATE(277), - [sym_inlineSection] = STATE(277), - [sym_once] = STATE(277), - [sym_verbatim] = STATE(277), - [sym_stack] = STATE(277), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(277), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(277), - [sym_loop] = STATE(277), - [sym_loop_operator] = STATE(277), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(277), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(277), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(277), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(277), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(5185), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5187), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(5277), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [281] = { - [sym__definition] = STATE(279), - [sym_keyword] = STATE(279), - [sym_php_statement] = STATE(279), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(279), - [sym__inline_directive] = STATE(279), - [sym__nested_directive] = STATE(279), - [sym_fragment] = STATE(279), - [sym_section] = STATE(279), - [sym_inlineSection] = STATE(279), - [sym_once] = STATE(279), - [sym_verbatim] = STATE(279), - [sym_stack] = STATE(279), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(279), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(279), - [sym_loop] = STATE(279), - [sym_loop_operator] = STATE(279), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(279), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(279), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(279), - [sym_text] = STATE(279), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(5189), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5191), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(278), + [sym_keyword] = STATE(278), + [sym_php_statement] = STATE(278), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(278), + [sym__inline_directive] = STATE(278), + [sym__nested_directive] = STATE(278), + [sym_fragment] = STATE(278), + [sym_section] = STATE(278), + [sym_inlineSection] = STATE(278), + [sym_once] = STATE(278), + [sym_verbatim] = STATE(278), + [sym_stack] = STATE(278), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(278), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(278), + [sym_loop] = STATE(278), + [sym_loop_operator] = STATE(278), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(278), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(278), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(278), + [aux_sym__directive_body] = STATE(278), + [sym_text] = STATE(278), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(5279), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5281), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [282] = { - [sym__definition] = STATE(211), - [sym_keyword] = STATE(211), - [sym_php_statement] = STATE(211), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(211), - [sym__inline_directive] = STATE(211), - [sym__nested_directive] = STATE(211), - [sym_fragment] = STATE(211), - [sym_section] = STATE(211), - [sym_inlineSection] = STATE(211), - [sym_once] = STATE(211), - [sym_verbatim] = STATE(211), - [sym_stack] = STATE(211), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(211), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(211), - [sym_loop] = STATE(211), - [sym_loop_operator] = STATE(211), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(211), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(211), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(211), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(211), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(5193), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5195), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(5283), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [283] = { + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(5285), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), + }, + [284] = { + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(5287), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), + }, + [285] = { + [sym__definition] = STATE(283), + [sym_keyword] = STATE(283), + [sym_php_statement] = STATE(283), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(283), + [sym__inline_directive] = STATE(283), + [sym__nested_directive] = STATE(283), + [sym_fragment] = STATE(283), + [sym_section] = STATE(283), + [sym_inlineSection] = STATE(283), + [sym_once] = STATE(283), + [sym_verbatim] = STATE(283), + [sym_stack] = STATE(283), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(283), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(283), + [sym_loop] = STATE(283), + [sym_loop_operator] = STATE(283), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(283), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(283), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(283), + [aux_sym__directive_body] = STATE(283), + [sym_text] = STATE(283), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(5289), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(5291), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), + }, + [286] = { [sym__definition] = STATE(297), [sym_keyword] = STATE(297), [sym_php_statement] = STATE(297), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(297), [sym__inline_directive] = STATE(297), [sym__nested_directive] = STATE(297), @@ -60127,117 +61531,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(297), [sym_verbatim] = STATE(297), [sym_stack] = STATE(297), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(297), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(297), [sym_loop] = STATE(297), [sym_loop_operator] = STATE(297), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(297), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(297), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(297), [aux_sym__directive_body] = STATE(297), [sym_text] = STATE(297), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(5197), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5199), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(5293), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5295), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, - [284] = { + [287] = { [sym__definition] = STATE(323), [sym_keyword] = STATE(323), [sym_php_statement] = STATE(323), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(323), [sym__inline_directive] = STATE(323), [sym__nested_directive] = STATE(323), @@ -60247,837 +61653,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(323), [sym_verbatim] = STATE(323), [sym_stack] = STATE(323), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(323), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(323), [sym_loop] = STATE(323), [sym_loop_operator] = STATE(323), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(323), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(323), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(323), [sym_text] = STATE(323), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(323), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(5201), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5203), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), - }, - [285] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(5205), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), - }, - [286] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(5207), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), - }, - [287] = { - [sym__definition] = STATE(285), - [sym_keyword] = STATE(285), - [sym_php_statement] = STATE(285), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(285), - [sym__inline_directive] = STATE(285), - [sym__nested_directive] = STATE(285), - [sym_fragment] = STATE(285), - [sym_section] = STATE(285), - [sym_inlineSection] = STATE(285), - [sym_once] = STATE(285), - [sym_verbatim] = STATE(285), - [sym_stack] = STATE(285), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(285), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(285), - [sym_loop] = STATE(285), - [sym_loop_operator] = STATE(285), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(285), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(285), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(285), - [sym_text] = STATE(285), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(5209), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(5211), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(5297), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5299), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [288] = { - [sym__definition] = STATE(286), - [sym_keyword] = STATE(286), - [sym_php_statement] = STATE(286), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(286), - [sym__inline_directive] = STATE(286), - [sym__nested_directive] = STATE(286), - [sym_fragment] = STATE(286), - [sym_section] = STATE(286), - [sym_inlineSection] = STATE(286), - [sym_once] = STATE(286), - [sym_verbatim] = STATE(286), - [sym_stack] = STATE(286), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(286), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(286), - [sym_loop] = STATE(286), - [sym_loop_operator] = STATE(286), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(286), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(286), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(286), - [sym_text] = STATE(286), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(5213), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(5215), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(284), + [sym_keyword] = STATE(284), + [sym_php_statement] = STATE(284), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(284), + [sym__inline_directive] = STATE(284), + [sym__nested_directive] = STATE(284), + [sym_fragment] = STATE(284), + [sym_section] = STATE(284), + [sym_inlineSection] = STATE(284), + [sym_once] = STATE(284), + [sym_verbatim] = STATE(284), + [sym_stack] = STATE(284), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(284), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(284), + [sym_loop] = STATE(284), + [sym_loop_operator] = STATE(284), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(284), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(284), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(284), + [aux_sym__directive_body] = STATE(284), + [sym_text] = STATE(284), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(5301), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(5303), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [289] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5217), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5305), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [290] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5219), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5307), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [291] = { [sym__definition] = STATE(289), [sym_keyword] = STATE(289), [sym_php_statement] = STATE(289), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(289), [sym__inline_directive] = STATE(289), [sym__nested_directive] = STATE(289), @@ -61087,237 +62141,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(289), [sym_verbatim] = STATE(289), [sym_stack] = STATE(289), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(289), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(289), [sym_loop] = STATE(289), [sym_loop_operator] = STATE(289), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(289), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(289), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(289), [sym_text] = STATE(289), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(289), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(5221), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5223), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(5309), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5311), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [292] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5223), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5311), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [293] = { [sym__definition] = STATE(290), [sym_keyword] = STATE(290), [sym_php_statement] = STATE(290), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(290), [sym__inline_directive] = STATE(290), [sym__nested_directive] = STATE(290), @@ -61327,237 +62385,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(290), [sym_verbatim] = STATE(290), [sym_stack] = STATE(290), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(290), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(290), [sym_loop] = STATE(290), [sym_loop_operator] = STATE(290), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(290), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(290), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(290), [aux_sym__directive_body] = STATE(290), [sym_text] = STATE(290), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(5225), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5227), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(5313), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5315), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [294] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5229), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5317), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [295] = { [sym__definition] = STATE(292), [sym_keyword] = STATE(292), [sym_php_statement] = STATE(292), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(292), [sym__inline_directive] = STATE(292), [sym__nested_directive] = STATE(292), @@ -61567,117 +62629,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(292), [sym_verbatim] = STATE(292), [sym_stack] = STATE(292), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(292), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(292), [sym_loop] = STATE(292), [sym_loop_operator] = STATE(292), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(292), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(292), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(292), [sym_text] = STATE(292), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(292), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(5231), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5233), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(5319), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5321), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [296] = { [sym__definition] = STATE(294), [sym_keyword] = STATE(294), [sym_php_statement] = STATE(294), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(294), [sym__inline_directive] = STATE(294), [sym__nested_directive] = STATE(294), @@ -61687,477 +62751,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(294), [sym_verbatim] = STATE(294), [sym_stack] = STATE(294), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(294), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(294), [sym_loop] = STATE(294), [sym_loop_operator] = STATE(294), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(294), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(294), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(294), [aux_sym__directive_body] = STATE(294), [sym_text] = STATE(294), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(5235), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5237), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(5323), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5325), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [297] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5239), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5327), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [298] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(5241), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(5329), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [299] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(5243), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(5331), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [300] = { [sym__definition] = STATE(298), [sym_keyword] = STATE(298), [sym_php_statement] = STATE(298), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), [sym_attribute] = STATE(298), [sym__inline_directive] = STATE(298), [sym__nested_directive] = STATE(298), @@ -62167,117 +63239,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(298), [sym_verbatim] = STATE(298), [sym_stack] = STATE(298), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), [sym_conditional] = STATE(298), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), [sym_switch] = STATE(298), [sym_loop] = STATE(298), [sym_loop_operator] = STATE(298), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), [sym_envoy] = STATE(298), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), [sym_livewire] = STATE(298), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(298), [aux_sym__directive_body] = STATE(298), [sym_text] = STATE(298), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(5245), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(5247), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(5333), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(5335), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [301] = { [sym__definition] = STATE(299), [sym_keyword] = STATE(299), [sym_php_statement] = STATE(299), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), [sym_attribute] = STATE(299), [sym__inline_directive] = STATE(299), [sym__nested_directive] = STATE(299), @@ -62287,357 +63361,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(299), [sym_verbatim] = STATE(299), [sym_stack] = STATE(299), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), [sym_conditional] = STATE(299), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), [sym_switch] = STATE(299), [sym_loop] = STATE(299), [sym_loop_operator] = STATE(299), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), [sym_envoy] = STATE(299), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), [sym_livewire] = STATE(299), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(299), [aux_sym__directive_body] = STATE(299), [sym_text] = STATE(299), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(5249), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(5251), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(5337), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(5339), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [302] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5253), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5341), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [303] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5255), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5343), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [304] = { [sym__definition] = STATE(302), [sym_keyword] = STATE(302), [sym_php_statement] = STATE(302), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(302), [sym__inline_directive] = STATE(302), [sym__nested_directive] = STATE(302), @@ -62647,237 +63727,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(302), [sym_verbatim] = STATE(302), [sym_stack] = STATE(302), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(302), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(302), [sym_loop] = STATE(302), [sym_loop_operator] = STATE(302), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(302), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(302), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(302), [sym_text] = STATE(302), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(302), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(5257), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5259), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(5345), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5347), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [305] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5259), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5347), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [306] = { [sym__definition] = STATE(303), [sym_keyword] = STATE(303), [sym_php_statement] = STATE(303), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(303), [sym__inline_directive] = STATE(303), [sym__nested_directive] = STATE(303), @@ -62887,237 +63971,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(303), [sym_verbatim] = STATE(303), [sym_stack] = STATE(303), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(303), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(303), [sym_loop] = STATE(303), [sym_loop_operator] = STATE(303), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(303), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(303), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(303), [aux_sym__directive_body] = STATE(303), [sym_text] = STATE(303), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(5261), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5263), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(5349), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5351), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [307] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5265), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5353), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [308] = { [sym__definition] = STATE(305), [sym_keyword] = STATE(305), [sym_php_statement] = STATE(305), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(305), [sym__inline_directive] = STATE(305), [sym__nested_directive] = STATE(305), @@ -63127,117 +64215,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(305), [sym_verbatim] = STATE(305), [sym_stack] = STATE(305), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(305), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(305), [sym_loop] = STATE(305), [sym_loop_operator] = STATE(305), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(305), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(305), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(305), [sym_text] = STATE(305), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(305), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(5267), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5269), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(5355), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5357), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [309] = { [sym__definition] = STATE(307), [sym_keyword] = STATE(307), [sym_php_statement] = STATE(307), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(307), [sym__inline_directive] = STATE(307), [sym__nested_directive] = STATE(307), @@ -63247,477 +64337,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(307), [sym_verbatim] = STATE(307), [sym_stack] = STATE(307), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(307), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(307), [sym_loop] = STATE(307), [sym_loop_operator] = STATE(307), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(307), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(307), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(307), [aux_sym__directive_body] = STATE(307), [sym_text] = STATE(307), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(5271), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5273), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(5359), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5361), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [310] = { - [sym__definition] = STATE(348), - [sym_keyword] = STATE(348), - [sym_php_statement] = STATE(348), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(348), - [sym__inline_directive] = STATE(348), - [sym__nested_directive] = STATE(348), - [sym_fragment] = STATE(348), - [sym_section] = STATE(348), - [sym_inlineSection] = STATE(348), - [sym_once] = STATE(348), - [sym_verbatim] = STATE(348), - [sym_stack] = STATE(348), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(348), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(348), - [sym_loop] = STATE(348), - [sym_loop_operator] = STATE(348), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(348), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(348), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(348), - [sym_text] = STATE(348), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(5275), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5277), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(351), + [sym_keyword] = STATE(351), + [sym_php_statement] = STATE(351), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(351), + [sym__inline_directive] = STATE(351), + [sym__nested_directive] = STATE(351), + [sym_fragment] = STATE(351), + [sym_section] = STATE(351), + [sym_inlineSection] = STATE(351), + [sym_once] = STATE(351), + [sym_verbatim] = STATE(351), + [sym_stack] = STATE(351), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(351), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(351), + [sym_loop] = STATE(351), + [sym_loop_operator] = STATE(351), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(351), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(351), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(351), + [aux_sym__directive_body] = STATE(351), + [sym_text] = STATE(351), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(5363), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5365), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [311] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(5279), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(5367), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [312] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(5281), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(5369), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [313] = { [sym__definition] = STATE(311), [sym_keyword] = STATE(311), [sym_php_statement] = STATE(311), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), [sym_attribute] = STATE(311), [sym__inline_directive] = STATE(311), [sym__nested_directive] = STATE(311), @@ -63727,117 +64825,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(311), [sym_verbatim] = STATE(311), [sym_stack] = STATE(311), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), [sym_conditional] = STATE(311), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), [sym_switch] = STATE(311), [sym_loop] = STATE(311), [sym_loop_operator] = STATE(311), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), [sym_envoy] = STATE(311), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), [sym_livewire] = STATE(311), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(311), [aux_sym__directive_body] = STATE(311), [sym_text] = STATE(311), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(5283), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(5285), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(5371), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(5373), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [314] = { [sym__definition] = STATE(312), [sym_keyword] = STATE(312), [sym_php_statement] = STATE(312), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), [sym_attribute] = STATE(312), [sym__inline_directive] = STATE(312), [sym__nested_directive] = STATE(312), @@ -63847,357 +64947,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(312), [sym_verbatim] = STATE(312), [sym_stack] = STATE(312), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), [sym_conditional] = STATE(312), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), [sym_switch] = STATE(312), [sym_loop] = STATE(312), [sym_loop_operator] = STATE(312), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), [sym_envoy] = STATE(312), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), [sym_livewire] = STATE(312), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(312), [aux_sym__directive_body] = STATE(312), [sym_text] = STATE(312), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(5287), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(5289), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(5375), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(5377), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [315] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5291), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5379), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [316] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5293), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5381), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [317] = { [sym__definition] = STATE(315), [sym_keyword] = STATE(315), [sym_php_statement] = STATE(315), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(315), [sym__inline_directive] = STATE(315), [sym__nested_directive] = STATE(315), @@ -64207,237 +65313,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(315), [sym_verbatim] = STATE(315), [sym_stack] = STATE(315), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(315), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(315), [sym_loop] = STATE(315), [sym_loop_operator] = STATE(315), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(315), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(315), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(315), [sym_text] = STATE(315), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(315), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(5295), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5297), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(5383), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5385), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [318] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5297), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5385), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [319] = { [sym__definition] = STATE(316), [sym_keyword] = STATE(316), [sym_php_statement] = STATE(316), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(316), [sym__inline_directive] = STATE(316), [sym__nested_directive] = STATE(316), @@ -64447,237 +65557,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(316), [sym_verbatim] = STATE(316), [sym_stack] = STATE(316), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(316), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(316), [sym_loop] = STATE(316), [sym_loop_operator] = STATE(316), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(316), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(316), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(316), [aux_sym__directive_body] = STATE(316), [sym_text] = STATE(316), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(5299), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5301), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(5387), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5389), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [320] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5303), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5391), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [321] = { [sym__definition] = STATE(318), [sym_keyword] = STATE(318), [sym_php_statement] = STATE(318), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(318), [sym__inline_directive] = STATE(318), [sym__nested_directive] = STATE(318), @@ -64687,117 +65801,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(318), [sym_verbatim] = STATE(318), [sym_stack] = STATE(318), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(318), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(318), [sym_loop] = STATE(318), [sym_loop_operator] = STATE(318), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(318), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(318), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(318), [sym_text] = STATE(318), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(318), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(5305), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5307), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(5393), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5395), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [322] = { [sym__definition] = STATE(320), [sym_keyword] = STATE(320), [sym_php_statement] = STATE(320), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(320), [sym__inline_directive] = STATE(320), [sym__nested_directive] = STATE(320), @@ -64807,477 +65923,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(320), [sym_verbatim] = STATE(320), [sym_stack] = STATE(320), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(320), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(320), [sym_loop] = STATE(320), [sym_loop_operator] = STATE(320), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(320), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(320), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(320), [aux_sym__directive_body] = STATE(320), [sym_text] = STATE(320), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(5309), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5311), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(5397), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5399), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [323] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5313), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5401), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [324] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(5315), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(5403), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [325] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(5317), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(5405), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [326] = { [sym__definition] = STATE(324), [sym_keyword] = STATE(324), [sym_php_statement] = STATE(324), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), [sym_attribute] = STATE(324), [sym__inline_directive] = STATE(324), [sym__nested_directive] = STATE(324), @@ -65287,117 +66411,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(324), [sym_verbatim] = STATE(324), [sym_stack] = STATE(324), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), [sym_conditional] = STATE(324), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), [sym_switch] = STATE(324), [sym_loop] = STATE(324), [sym_loop_operator] = STATE(324), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), [sym_envoy] = STATE(324), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), [sym_livewire] = STATE(324), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(324), [aux_sym__directive_body] = STATE(324), [sym_text] = STATE(324), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(5319), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(5321), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(5407), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(5409), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [327] = { [sym__definition] = STATE(325), [sym_keyword] = STATE(325), [sym_php_statement] = STATE(325), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), [sym_attribute] = STATE(325), [sym__inline_directive] = STATE(325), [sym__nested_directive] = STATE(325), @@ -65407,477 +66533,607 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(325), [sym_verbatim] = STATE(325), [sym_stack] = STATE(325), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), [sym_conditional] = STATE(325), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), [sym_switch] = STATE(325), [sym_loop] = STATE(325), [sym_loop_operator] = STATE(325), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), [sym_envoy] = STATE(325), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), [sym_livewire] = STATE(325), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(325), [aux_sym__directive_body] = STATE(325), [sym_text] = STATE(325), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(5323), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(5325), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(5411), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(5413), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [328] = { - [sym__definition] = STATE(622), - [sym_keyword] = STATE(622), - [sym_php_statement] = STATE(622), - [sym__escaped] = STATE(2257), - [sym__unescaped] = STATE(2257), - [sym__raw] = STATE(2257), - [sym__inline_raw] = STATE(2257), - [sym__multi_line_raw] = STATE(2257), - [sym_attribute] = STATE(622), - [sym__inline_directive] = STATE(622), - [sym__nested_directive] = STATE(622), - [sym_fragment] = STATE(622), - [sym_section] = STATE(622), - [sym_inlineSection] = STATE(622), - [sym_once] = STATE(622), - [sym_verbatim] = STATE(622), - [sym_stack] = STATE(622), - [sym__push] = STATE(2258), - [sym__pushOnce] = STATE(2258), - [sym__pushIf] = STATE(2258), - [sym__prepend] = STATE(2258), - [sym__prependOnce] = STATE(2258), - [sym_conditional] = STATE(622), - [sym__if] = STATE(2259), - [sym__unless] = STATE(2259), - [sym__isset] = STATE(2259), - [sym__empty] = STATE(2259), - [sym__auth] = STATE(2259), - [sym__guest] = STATE(2259), - [sym__production] = STATE(2259), - [sym__env] = STATE(2259), - [sym__hasSection] = STATE(2259), - [sym__sectionMissing] = STATE(2259), - [sym__error] = STATE(2259), - [sym_authorization] = STATE(2259), - [sym__can] = STATE(2260), - [sym__cannot] = STATE(2260), - [sym__canany] = STATE(2260), - [sym__feature] = STATE(2259), - [sym__custom] = STATE(2259), - [sym_switch] = STATE(622), - [sym_loop] = STATE(622), - [sym_loop_operator] = STATE(622), - [sym__for] = STATE(2261), - [sym__foreach] = STATE(2261), - [sym__forelse] = STATE(2261), - [sym__while] = STATE(2261), - [sym_envoy] = STATE(622), - [sym__setup] = STATE(2257), - [sym__task] = STATE(2262), - [sym__story] = STATE(2262), - [sym__hooks] = STATE(2257), - [sym__before] = STATE(2257), - [sym__after] = STATE(2257), - [sym__envoy_error] = STATE(2257), - [sym__success] = STATE(2257), - [sym__finished] = STATE(2257), - [sym_livewire] = STATE(622), - [sym__persist] = STATE(2263), - [sym__teleport] = STATE(2263), - [sym__volt] = STATE(2263), - [aux_sym__directive_body] = STATE(622), - [sym_text] = STATE(622), - [sym__text] = STATE(995), - [aux_sym_php_only_repeat1] = STATE(995), - [sym_comment] = ACTIONS(5327), - [aux_sym_keyword_token1] = ACTIONS(4697), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4699), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4701), - [anon_sym_ATphp] = ACTIONS(4703), - [aux_sym_attribute_token1] = ACTIONS(4705), - [aux_sym__inline_directive_token1] = ACTIONS(4707), - [anon_sym_ATfragment] = ACTIONS(4709), - [anon_sym_ATsection] = ACTIONS(4711), - [anon_sym_ATonce] = ACTIONS(4713), - [anon_sym_ATverbatim] = ACTIONS(4715), - [anon_sym_ATpush] = ACTIONS(4717), - [anon_sym_ATpushOnce] = ACTIONS(4719), - [anon_sym_ATpushIf] = ACTIONS(4721), - [anon_sym_ATprepend] = ACTIONS(4723), - [anon_sym_ATprependOnce] = ACTIONS(4725), - [anon_sym_ATif] = ACTIONS(4727), - [anon_sym_ATunless] = ACTIONS(4729), - [anon_sym_ATisset] = ACTIONS(4731), - [anon_sym_ATempty] = ACTIONS(4733), - [anon_sym_ATauth] = ACTIONS(4735), - [anon_sym_ATguest] = ACTIONS(4737), - [anon_sym_ATproduction] = ACTIONS(4739), - [anon_sym_ATenv] = ACTIONS(4741), - [anon_sym_AThasSection] = ACTIONS(4743), - [anon_sym_ATsectionMissing] = ACTIONS(4745), - [anon_sym_ATerror] = ACTIONS(4747), - [anon_sym_ATcan] = ACTIONS(4749), - [anon_sym_ATcannot] = ACTIONS(4751), - [anon_sym_ATcanany] = ACTIONS(4753), - [anon_sym_ATfeature] = ACTIONS(4755), - [aux_sym__custom_token1] = ACTIONS(4757), - [aux_sym__custom_token2] = ACTIONS(4759), - [anon_sym_ATswitch] = ACTIONS(4761), - [aux_sym_loop_operator_token1] = ACTIONS(4763), - [anon_sym_ATfor] = ACTIONS(4765), - [anon_sym_ATforeach] = ACTIONS(4767), - [anon_sym_ATendforeach] = ACTIONS(4996), - [anon_sym_ATforelse] = ACTIONS(4769), - [anon_sym_ATwhile] = ACTIONS(4771), - [anon_sym_ATsetup] = ACTIONS(4773), - [anon_sym_ATtask] = ACTIONS(4775), - [anon_sym_ATstory] = ACTIONS(4777), - [anon_sym_ATbefore] = ACTIONS(4779), - [anon_sym_ATafter] = ACTIONS(4781), - [anon_sym_ATsuccess] = ACTIONS(4783), - [anon_sym_ATfinished] = ACTIONS(4785), - [anon_sym_ATpersist] = ACTIONS(4787), - [anon_sym_ATteleport] = ACTIONS(4789), - [anon_sym_ATvolt] = ACTIONS(4791), - [aux_sym__text_token1] = ACTIONS(4793), - [aux_sym__text_token2] = ACTIONS(4793), - [aux_sym__text_token3] = ACTIONS(4795), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5415), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [329] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5329), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5417), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [330] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5331), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(328), + [sym_keyword] = STATE(328), + [sym_php_statement] = STATE(328), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(328), + [sym__inline_directive] = STATE(328), + [sym__nested_directive] = STATE(328), + [sym_fragment] = STATE(328), + [sym_section] = STATE(328), + [sym_inlineSection] = STATE(328), + [sym_once] = STATE(328), + [sym_verbatim] = STATE(328), + [sym_stack] = STATE(328), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(328), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(328), + [sym_loop] = STATE(328), + [sym_loop_operator] = STATE(328), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(328), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(328), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(328), + [sym_text] = STATE(328), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(328), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(5419), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5421), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [331] = { + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5421), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), + }, + [332] = { [sym__definition] = STATE(329), [sym_keyword] = STATE(329), [sym_php_statement] = STATE(329), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(329), [sym__inline_directive] = STATE(329), [sym__nested_directive] = STATE(329), @@ -65887,597 +67143,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(329), [sym_verbatim] = STATE(329), [sym_stack] = STATE(329), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(329), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(329), [sym_loop] = STATE(329), [sym_loop_operator] = STATE(329), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(329), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(329), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(329), + [aux_sym__directive_body] = STATE(329), [sym_text] = STATE(329), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(329), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(5333), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5335), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), - }, - [332] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5335), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(5423), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5425), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [333] = { - [sym__definition] = STATE(330), - [sym_keyword] = STATE(330), - [sym_php_statement] = STATE(330), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(330), - [sym__inline_directive] = STATE(330), - [sym__nested_directive] = STATE(330), - [sym_fragment] = STATE(330), - [sym_section] = STATE(330), - [sym_inlineSection] = STATE(330), - [sym_once] = STATE(330), - [sym_verbatim] = STATE(330), - [sym_stack] = STATE(330), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(330), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(330), - [sym_loop] = STATE(330), - [sym_loop_operator] = STATE(330), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(330), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(330), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(330), - [sym_text] = STATE(330), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(5337), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5339), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(428), + [sym_keyword] = STATE(428), + [sym_php_statement] = STATE(428), + [sym__escaped] = STATE(2284), + [sym__unescaped] = STATE(2284), + [sym__raw] = STATE(2284), + [sym__inline_raw] = STATE(2284), + [sym__multi_line_raw] = STATE(2284), + [sym_attribute] = STATE(428), + [sym__inline_directive] = STATE(428), + [sym__nested_directive] = STATE(428), + [sym_fragment] = STATE(428), + [sym_section] = STATE(428), + [sym_inlineSection] = STATE(428), + [sym_once] = STATE(428), + [sym_verbatim] = STATE(428), + [sym_stack] = STATE(428), + [sym__push] = STATE(2285), + [sym__pushOnce] = STATE(2285), + [sym__pushIf] = STATE(2285), + [sym__prepend] = STATE(2285), + [sym__prependOnce] = STATE(2285), + [sym_conditional] = STATE(428), + [sym__if] = STATE(2286), + [sym__unless] = STATE(2286), + [sym__isset] = STATE(2286), + [sym__empty] = STATE(2286), + [sym__auth] = STATE(2286), + [sym__guest] = STATE(2286), + [sym__production] = STATE(2286), + [sym__env] = STATE(2286), + [sym__hasSection] = STATE(2286), + [sym__sectionMissing] = STATE(2286), + [sym__error] = STATE(2286), + [sym_authorization] = STATE(2286), + [sym__can] = STATE(2287), + [sym__cannot] = STATE(2287), + [sym__canany] = STATE(2287), + [sym__feature] = STATE(2286), + [sym__custom] = STATE(2286), + [sym_switch] = STATE(428), + [sym_loop] = STATE(428), + [sym_loop_operator] = STATE(428), + [sym__for] = STATE(2288), + [sym__foreach] = STATE(2288), + [sym__forelse] = STATE(2288), + [sym__while] = STATE(2288), + [sym_envoy] = STATE(428), + [sym__setup] = STATE(2284), + [sym__task] = STATE(2289), + [sym__story] = STATE(2289), + [sym__hooks] = STATE(2284), + [sym__before] = STATE(2284), + [sym__after] = STATE(2284), + [sym__envoy_error] = STATE(2284), + [sym__success] = STATE(2284), + [sym__finished] = STATE(2284), + [sym_livewire] = STATE(428), + [sym__persist] = STATE(2290), + [sym__teleport] = STATE(2290), + [sym__volt] = STATE(2290), + [sym_alpine_js] = STATE(428), + [aux_sym__directive_body] = STATE(428), + [sym_text] = STATE(428), + [sym__text] = STATE(988), + [aux_sym_php_only_repeat1] = STATE(988), + [sym_comment] = ACTIONS(5427), + [aux_sym_keyword_token1] = ACTIONS(5429), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5431), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5433), + [anon_sym_ATphp] = ACTIONS(5435), + [aux_sym_attribute_token1] = ACTIONS(5437), + [aux_sym__inline_directive_token1] = ACTIONS(5439), + [anon_sym_ATfragment] = ACTIONS(5441), + [anon_sym_ATsection] = ACTIONS(5443), + [anon_sym_ATonce] = ACTIONS(5445), + [anon_sym_ATverbatim] = ACTIONS(5447), + [anon_sym_ATpush] = ACTIONS(5449), + [anon_sym_ATpushOnce] = ACTIONS(5451), + [anon_sym_ATpushIf] = ACTIONS(5453), + [anon_sym_ATprepend] = ACTIONS(5455), + [anon_sym_ATprependOnce] = ACTIONS(5457), + [anon_sym_ATif] = ACTIONS(5459), + [anon_sym_ATunless] = ACTIONS(5461), + [anon_sym_ATisset] = ACTIONS(5463), + [anon_sym_ATempty] = ACTIONS(5465), + [anon_sym_ATauth] = ACTIONS(5467), + [anon_sym_ATguest] = ACTIONS(5469), + [anon_sym_ATproduction] = ACTIONS(5471), + [anon_sym_ATenv] = ACTIONS(5473), + [anon_sym_AThasSection] = ACTIONS(5475), + [anon_sym_ATsectionMissing] = ACTIONS(5477), + [anon_sym_ATerror] = ACTIONS(5479), + [anon_sym_ATcan] = ACTIONS(5481), + [anon_sym_ATcannot] = ACTIONS(5483), + [anon_sym_ATcanany] = ACTIONS(5485), + [anon_sym_ATfeature] = ACTIONS(5487), + [aux_sym__custom_token1] = ACTIONS(5489), + [aux_sym__custom_token2] = ACTIONS(5491), + [anon_sym_ATswitch] = ACTIONS(5493), + [aux_sym_loop_operator_token1] = ACTIONS(5495), + [anon_sym_ATfor] = ACTIONS(5497), + [anon_sym_ATforeach] = ACTIONS(5499), + [anon_sym_ATendforeach] = ACTIONS(4699), + [anon_sym_ATforelse] = ACTIONS(5501), + [anon_sym_ATwhile] = ACTIONS(5503), + [anon_sym_ATsetup] = ACTIONS(5505), + [anon_sym_ATtask] = ACTIONS(5507), + [anon_sym_ATstory] = ACTIONS(5509), + [anon_sym_ATbefore] = ACTIONS(5511), + [anon_sym_ATafter] = ACTIONS(5513), + [anon_sym_ATsuccess] = ACTIONS(5515), + [anon_sym_ATfinished] = ACTIONS(5517), + [anon_sym_ATpersist] = ACTIONS(5519), + [anon_sym_ATteleport] = ACTIONS(5521), + [anon_sym_ATvolt] = ACTIONS(5523), + [aux_sym_alpine_js_token1] = ACTIONS(5525), + [aux_sym__text_token1] = ACTIONS(5527), + [aux_sym__text_token2] = ACTIONS(5527), + [aux_sym__text_token3] = ACTIONS(5529), }, [334] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5341), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5531), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [335] = { - [sym__definition] = STATE(332), - [sym_keyword] = STATE(332), - [sym_php_statement] = STATE(332), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(332), - [sym__inline_directive] = STATE(332), - [sym__nested_directive] = STATE(332), - [sym_fragment] = STATE(332), - [sym_section] = STATE(332), - [sym_inlineSection] = STATE(332), - [sym_once] = STATE(332), - [sym_verbatim] = STATE(332), - [sym_stack] = STATE(332), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(332), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(332), - [sym_loop] = STATE(332), - [sym_loop_operator] = STATE(332), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(332), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(332), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(332), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(332), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(5343), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5345), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(331), + [sym_keyword] = STATE(331), + [sym_php_statement] = STATE(331), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(331), + [sym__inline_directive] = STATE(331), + [sym__nested_directive] = STATE(331), + [sym_fragment] = STATE(331), + [sym_section] = STATE(331), + [sym_inlineSection] = STATE(331), + [sym_once] = STATE(331), + [sym_verbatim] = STATE(331), + [sym_stack] = STATE(331), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(331), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(331), + [sym_loop] = STATE(331), + [sym_loop_operator] = STATE(331), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(331), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(331), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(331), + [sym_text] = STATE(331), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(331), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(5533), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5535), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [336] = { [sym__definition] = STATE(334), [sym_keyword] = STATE(334), [sym_php_statement] = STATE(334), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(334), [sym__inline_directive] = STATE(334), [sym__nested_directive] = STATE(334), @@ -66487,117 +67631,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(334), [sym_verbatim] = STATE(334), [sym_stack] = STATE(334), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(334), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(334), [sym_loop] = STATE(334), [sym_loop_operator] = STATE(334), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(334), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(334), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(334), [aux_sym__directive_body] = STATE(334), [sym_text] = STATE(334), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(5347), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5349), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(5537), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5539), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [337] = { [sym__definition] = STATE(353), [sym_keyword] = STATE(353), [sym_php_statement] = STATE(353), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(353), [sym__inline_directive] = STATE(353), [sym__nested_directive] = STATE(353), @@ -66607,477 +67753,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(353), [sym_verbatim] = STATE(353), [sym_stack] = STATE(353), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(353), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(353), [sym_loop] = STATE(353), [sym_loop_operator] = STATE(353), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(353), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(353), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(353), [sym_text] = STATE(353), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(353), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(5351), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5313), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(5541), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5401), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [338] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(5353), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(5543), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [339] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(5355), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), - }, - [340] = { - [sym__definition] = STATE(338), - [sym_keyword] = STATE(338), - [sym_php_statement] = STATE(338), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(338), - [sym__inline_directive] = STATE(338), - [sym__nested_directive] = STATE(338), - [sym_fragment] = STATE(338), - [sym_section] = STATE(338), - [sym_inlineSection] = STATE(338), - [sym_once] = STATE(338), - [sym_verbatim] = STATE(338), - [sym_stack] = STATE(338), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(338), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(338), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(5545), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), + }, + [340] = { + [sym__definition] = STATE(338), + [sym_keyword] = STATE(338), + [sym_php_statement] = STATE(338), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(338), + [sym__inline_directive] = STATE(338), + [sym__nested_directive] = STATE(338), + [sym_fragment] = STATE(338), + [sym_section] = STATE(338), + [sym_inlineSection] = STATE(338), + [sym_once] = STATE(338), + [sym_verbatim] = STATE(338), + [sym_stack] = STATE(338), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(338), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(338), [sym_loop] = STATE(338), [sym_loop_operator] = STATE(338), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), [sym_envoy] = STATE(338), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), [sym_livewire] = STATE(338), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(338), [aux_sym__directive_body] = STATE(338), [sym_text] = STATE(338), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(5357), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(5359), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(5547), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(5549), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [341] = { [sym__definition] = STATE(339), [sym_keyword] = STATE(339), [sym_php_statement] = STATE(339), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), [sym_attribute] = STATE(339), [sym__inline_directive] = STATE(339), [sym__nested_directive] = STATE(339), @@ -67087,357 +68241,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(339), [sym_verbatim] = STATE(339), [sym_stack] = STATE(339), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), [sym_conditional] = STATE(339), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), [sym_switch] = STATE(339), [sym_loop] = STATE(339), [sym_loop_operator] = STATE(339), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), [sym_envoy] = STATE(339), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), [sym_livewire] = STATE(339), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(339), [aux_sym__directive_body] = STATE(339), [sym_text] = STATE(339), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(5361), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(5363), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(5551), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(5553), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [342] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5365), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5555), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [343] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5367), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5557), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [344] = { [sym__definition] = STATE(342), [sym_keyword] = STATE(342), [sym_php_statement] = STATE(342), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(342), [sym__inline_directive] = STATE(342), [sym__nested_directive] = STATE(342), @@ -67447,357 +68607,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(342), [sym_verbatim] = STATE(342), [sym_stack] = STATE(342), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(342), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(342), [sym_loop] = STATE(342), [sym_loop_operator] = STATE(342), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(342), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(342), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(342), [sym_text] = STATE(342), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(342), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(5369), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5371), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(5559), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5561), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [345] = { - [sym__definition] = STATE(364), - [sym_keyword] = STATE(364), - [sym_php_statement] = STATE(364), - [sym__escaped] = STATE(3470), - [sym__unescaped] = STATE(3470), - [sym__raw] = STATE(3470), - [sym__inline_raw] = STATE(3470), - [sym__multi_line_raw] = STATE(3470), - [sym_attribute] = STATE(364), - [sym__inline_directive] = STATE(364), - [sym__nested_directive] = STATE(364), - [sym_fragment] = STATE(364), - [sym_section] = STATE(364), - [sym_inlineSection] = STATE(364), - [sym_once] = STATE(364), - [sym_verbatim] = STATE(364), - [sym_stack] = STATE(364), - [sym__push] = STATE(3469), - [sym__pushOnce] = STATE(3469), - [sym__pushIf] = STATE(3469), - [sym__prepend] = STATE(3469), - [sym__prependOnce] = STATE(3469), - [sym_conditional] = STATE(364), - [sym__if] = STATE(3467), - [sym__unless] = STATE(3467), - [sym__isset] = STATE(3467), - [sym__empty] = STATE(3467), - [sym__auth] = STATE(3467), - [sym__guest] = STATE(3467), - [sym__production] = STATE(3467), - [sym__env] = STATE(3467), - [sym__hasSection] = STATE(3467), - [sym__sectionMissing] = STATE(3467), - [sym__error] = STATE(3467), - [sym_authorization] = STATE(3467), - [sym__can] = STATE(3465), - [sym__cannot] = STATE(3465), - [sym__canany] = STATE(3465), - [sym__feature] = STATE(3467), - [sym__custom] = STATE(3467), - [sym_switch] = STATE(364), - [sym_loop] = STATE(364), - [sym_loop_operator] = STATE(364), - [sym__for] = STATE(3463), - [sym__foreach] = STATE(3463), - [sym__forelse] = STATE(3463), - [sym__while] = STATE(3463), - [sym_envoy] = STATE(364), - [sym__setup] = STATE(3470), - [sym__task] = STATE(3461), - [sym__story] = STATE(3461), - [sym__hooks] = STATE(3470), - [sym__before] = STATE(3470), - [sym__after] = STATE(3470), - [sym__envoy_error] = STATE(3470), - [sym__success] = STATE(3470), - [sym__finished] = STATE(3470), - [sym_livewire] = STATE(364), - [sym__persist] = STATE(3433), - [sym__teleport] = STATE(3433), - [sym__volt] = STATE(3433), - [aux_sym__directive_body] = STATE(364), - [sym_text] = STATE(364), - [sym__text] = STATE(987), - [aux_sym_php_only_repeat1] = STATE(987), - [sym_comment] = ACTIONS(5373), - [aux_sym_keyword_token1] = ACTIONS(5375), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5377), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5379), - [anon_sym_ATphp] = ACTIONS(5381), - [aux_sym_attribute_token1] = ACTIONS(5383), - [aux_sym__inline_directive_token1] = ACTIONS(5385), - [anon_sym_ATfragment] = ACTIONS(5387), - [anon_sym_ATsection] = ACTIONS(5389), - [anon_sym_ATonce] = ACTIONS(5391), - [anon_sym_ATverbatim] = ACTIONS(5393), - [anon_sym_ATpush] = ACTIONS(5395), - [anon_sym_ATpushOnce] = ACTIONS(5397), - [anon_sym_ATendPushOnce] = ACTIONS(4609), - [anon_sym_ATpushIf] = ACTIONS(5399), - [anon_sym_ATprepend] = ACTIONS(5401), - [anon_sym_ATprependOnce] = ACTIONS(5403), - [anon_sym_ATif] = ACTIONS(5405), - [anon_sym_ATunless] = ACTIONS(5407), - [anon_sym_ATisset] = ACTIONS(5409), - [anon_sym_ATempty] = ACTIONS(5411), - [anon_sym_ATauth] = ACTIONS(5413), - [anon_sym_ATguest] = ACTIONS(5415), - [anon_sym_ATproduction] = ACTIONS(5417), - [anon_sym_ATenv] = ACTIONS(5419), - [anon_sym_AThasSection] = ACTIONS(5421), - [anon_sym_ATsectionMissing] = ACTIONS(5423), - [anon_sym_ATerror] = ACTIONS(5425), - [anon_sym_ATcan] = ACTIONS(5427), - [anon_sym_ATcannot] = ACTIONS(5429), - [anon_sym_ATcanany] = ACTIONS(5431), - [anon_sym_ATfeature] = ACTIONS(5433), - [aux_sym__custom_token1] = ACTIONS(5435), - [aux_sym__custom_token2] = ACTIONS(5437), - [anon_sym_ATswitch] = ACTIONS(5439), - [aux_sym_loop_operator_token1] = ACTIONS(5441), - [anon_sym_ATfor] = ACTIONS(5443), - [anon_sym_ATforeach] = ACTIONS(5445), - [anon_sym_ATforelse] = ACTIONS(5447), - [anon_sym_ATwhile] = ACTIONS(5449), - [anon_sym_ATsetup] = ACTIONS(5451), - [anon_sym_ATtask] = ACTIONS(5453), - [anon_sym_ATstory] = ACTIONS(5455), - [anon_sym_ATbefore] = ACTIONS(5457), - [anon_sym_ATafter] = ACTIONS(5459), - [anon_sym_ATsuccess] = ACTIONS(5461), - [anon_sym_ATfinished] = ACTIONS(5463), - [anon_sym_ATpersist] = ACTIONS(5465), - [anon_sym_ATteleport] = ACTIONS(5467), - [anon_sym_ATvolt] = ACTIONS(5469), - [aux_sym__text_token1] = ACTIONS(5471), - [aux_sym__text_token2] = ACTIONS(5471), - [aux_sym__text_token3] = ACTIONS(5473), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5561), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [346] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5371), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), - }, - [347] = { [sym__definition] = STATE(343), [sym_keyword] = STATE(343), [sym_php_statement] = STATE(343), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(343), [sym__inline_directive] = STATE(343), [sym__nested_directive] = STATE(343), @@ -67807,1077 +68851,1339 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(343), [sym_verbatim] = STATE(343), [sym_stack] = STATE(343), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(343), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(343), [sym_loop] = STATE(343), [sym_loop_operator] = STATE(343), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(343), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(343), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(343), [aux_sym__directive_body] = STATE(343), [sym_text] = STATE(343), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(5475), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5477), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(5563), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5565), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), + }, + [347] = { + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5567), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [348] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5479), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(345), + [sym_keyword] = STATE(345), + [sym_php_statement] = STATE(345), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(345), + [sym__inline_directive] = STATE(345), + [sym__nested_directive] = STATE(345), + [sym_fragment] = STATE(345), + [sym_section] = STATE(345), + [sym_inlineSection] = STATE(345), + [sym_once] = STATE(345), + [sym_verbatim] = STATE(345), + [sym_stack] = STATE(345), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(345), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(345), + [sym_loop] = STATE(345), + [sym_loop_operator] = STATE(345), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(345), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(345), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(345), + [sym_text] = STATE(345), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(345), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(5569), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5571), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [349] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5481), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(347), + [sym_keyword] = STATE(347), + [sym_php_statement] = STATE(347), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(347), + [sym__inline_directive] = STATE(347), + [sym__nested_directive] = STATE(347), + [sym_fragment] = STATE(347), + [sym_section] = STATE(347), + [sym_inlineSection] = STATE(347), + [sym_once] = STATE(347), + [sym_verbatim] = STATE(347), + [sym_stack] = STATE(347), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(347), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(347), + [sym_loop] = STATE(347), + [sym_loop_operator] = STATE(347), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(347), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(347), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(347), + [aux_sym__directive_body] = STATE(347), + [sym_text] = STATE(347), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(5573), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5575), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [350] = { - [sym__definition] = STATE(350), - [sym_keyword] = STATE(350), - [sym_php_statement] = STATE(350), - [sym__escaped] = STATE(2024), - [sym__unescaped] = STATE(2024), - [sym__raw] = STATE(2024), - [sym__inline_raw] = STATE(2024), - [sym__multi_line_raw] = STATE(2024), - [sym_attribute] = STATE(350), - [sym__inline_directive] = STATE(350), - [sym__nested_directive] = STATE(350), - [sym_fragment] = STATE(350), - [sym_section] = STATE(350), - [sym_inlineSection] = STATE(350), - [sym_once] = STATE(350), - [sym_verbatim] = STATE(350), - [sym_stack] = STATE(350), - [sym__push] = STATE(2023), - [sym__pushOnce] = STATE(2023), - [sym__pushIf] = STATE(2023), - [sym__prepend] = STATE(2023), - [sym__prependOnce] = STATE(2023), - [sym_conditional] = STATE(350), - [sym__if] = STATE(2022), - [sym__unless] = STATE(2022), - [sym__isset] = STATE(2022), - [sym__empty] = STATE(2022), - [sym__auth] = STATE(2022), - [sym__guest] = STATE(2022), - [sym__production] = STATE(2022), - [sym__env] = STATE(2022), - [sym__hasSection] = STATE(2022), - [sym__sectionMissing] = STATE(2022), - [sym__error] = STATE(2022), - [sym_authorization] = STATE(2022), - [sym__can] = STATE(2021), - [sym__cannot] = STATE(2021), - [sym__canany] = STATE(2021), - [sym__feature] = STATE(2022), - [sym__custom] = STATE(2022), - [sym_switch] = STATE(350), - [sym_loop] = STATE(350), - [sym_loop_operator] = STATE(350), - [sym__for] = STATE(2020), - [sym__foreach] = STATE(2020), - [sym__forelse] = STATE(2020), - [sym__while] = STATE(2020), - [sym_envoy] = STATE(350), - [sym__setup] = STATE(2024), - [sym__task] = STATE(2019), - [sym__story] = STATE(2019), - [sym__hooks] = STATE(2024), - [sym__before] = STATE(2024), - [sym__after] = STATE(2024), - [sym__envoy_error] = STATE(2024), - [sym__success] = STATE(2024), - [sym__finished] = STATE(2024), - [sym_livewire] = STATE(350), - [sym__persist] = STATE(2018), - [sym__teleport] = STATE(2018), - [sym__volt] = STATE(2018), - [aux_sym__directive_body] = STATE(350), - [sym_text] = STATE(350), - [sym__text] = STATE(1256), - [aux_sym_php_only_repeat1] = STATE(1256), - [sym_comment] = ACTIONS(5483), - [aux_sym_keyword_token1] = ACTIONS(5486), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5489), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5492), - [anon_sym_ATphp] = ACTIONS(5495), - [aux_sym_attribute_token1] = ACTIONS(5498), - [aux_sym__inline_directive_token1] = ACTIONS(5501), - [anon_sym_ATfragment] = ACTIONS(5504), - [anon_sym_ATsection] = ACTIONS(5507), - [anon_sym_ATonce] = ACTIONS(5510), - [anon_sym_ATverbatim] = ACTIONS(5513), - [anon_sym_ATpush] = ACTIONS(5516), - [anon_sym_ATpushOnce] = ACTIONS(5519), - [anon_sym_ATpushIf] = ACTIONS(5522), - [anon_sym_ATprepend] = ACTIONS(5525), - [anon_sym_ATprependOnce] = ACTIONS(5528), - [anon_sym_ATendPrependOnce] = ACTIONS(5035), - [anon_sym_ATif] = ACTIONS(5531), - [anon_sym_ATunless] = ACTIONS(5534), - [anon_sym_ATisset] = ACTIONS(5537), - [anon_sym_ATempty] = ACTIONS(5540), - [anon_sym_ATauth] = ACTIONS(5543), - [anon_sym_ATguest] = ACTIONS(5546), - [anon_sym_ATproduction] = ACTIONS(5549), - [anon_sym_ATenv] = ACTIONS(5552), - [anon_sym_AThasSection] = ACTIONS(5555), - [anon_sym_ATsectionMissing] = ACTIONS(5558), - [anon_sym_ATerror] = ACTIONS(5561), - [anon_sym_ATcan] = ACTIONS(5564), - [anon_sym_ATcannot] = ACTIONS(5567), - [anon_sym_ATcanany] = ACTIONS(5570), - [anon_sym_ATfeature] = ACTIONS(5573), - [aux_sym__custom_token1] = ACTIONS(5576), - [aux_sym__custom_token2] = ACTIONS(5579), - [anon_sym_ATswitch] = ACTIONS(5582), - [aux_sym_loop_operator_token1] = ACTIONS(5585), - [anon_sym_ATfor] = ACTIONS(5588), - [anon_sym_ATforeach] = ACTIONS(5591), - [anon_sym_ATforelse] = ACTIONS(5594), - [anon_sym_ATwhile] = ACTIONS(5597), - [anon_sym_ATsetup] = ACTIONS(5600), - [anon_sym_ATtask] = ACTIONS(5603), - [anon_sym_ATstory] = ACTIONS(5606), - [anon_sym_ATbefore] = ACTIONS(5609), - [anon_sym_ATafter] = ACTIONS(5612), - [anon_sym_ATsuccess] = ACTIONS(5615), - [anon_sym_ATfinished] = ACTIONS(5618), - [anon_sym_ATpersist] = ACTIONS(5621), - [anon_sym_ATteleport] = ACTIONS(5624), - [anon_sym_ATvolt] = ACTIONS(5627), - [aux_sym__text_token1] = ACTIONS(5630), - [aux_sym__text_token2] = ACTIONS(5630), - [aux_sym__text_token3] = ACTIONS(5633), + [sym__definition] = STATE(369), + [sym_keyword] = STATE(369), + [sym_php_statement] = STATE(369), + [sym__escaped] = STATE(3431), + [sym__unescaped] = STATE(3431), + [sym__raw] = STATE(3431), + [sym__inline_raw] = STATE(3431), + [sym__multi_line_raw] = STATE(3431), + [sym_attribute] = STATE(369), + [sym__inline_directive] = STATE(369), + [sym__nested_directive] = STATE(369), + [sym_fragment] = STATE(369), + [sym_section] = STATE(369), + [sym_inlineSection] = STATE(369), + [sym_once] = STATE(369), + [sym_verbatim] = STATE(369), + [sym_stack] = STATE(369), + [sym__push] = STATE(3403), + [sym__pushOnce] = STATE(3403), + [sym__pushIf] = STATE(3403), + [sym__prepend] = STATE(3403), + [sym__prependOnce] = STATE(3403), + [sym_conditional] = STATE(369), + [sym__if] = STATE(3391), + [sym__unless] = STATE(3391), + [sym__isset] = STATE(3391), + [sym__empty] = STATE(3391), + [sym__auth] = STATE(3391), + [sym__guest] = STATE(3391), + [sym__production] = STATE(3391), + [sym__env] = STATE(3391), + [sym__hasSection] = STATE(3391), + [sym__sectionMissing] = STATE(3391), + [sym__error] = STATE(3391), + [sym_authorization] = STATE(3391), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3391), + [sym__custom] = STATE(3391), + [sym_switch] = STATE(369), + [sym_loop] = STATE(369), + [sym_loop_operator] = STATE(369), + [sym__for] = STATE(3378), + [sym__foreach] = STATE(3378), + [sym__forelse] = STATE(3378), + [sym__while] = STATE(3378), + [sym_envoy] = STATE(369), + [sym__setup] = STATE(3431), + [sym__task] = STATE(3377), + [sym__story] = STATE(3377), + [sym__hooks] = STATE(3431), + [sym__before] = STATE(3431), + [sym__after] = STATE(3431), + [sym__envoy_error] = STATE(3431), + [sym__success] = STATE(3431), + [sym__finished] = STATE(3431), + [sym_livewire] = STATE(369), + [sym__persist] = STATE(3371), + [sym__teleport] = STATE(3371), + [sym__volt] = STATE(3371), + [sym_alpine_js] = STATE(369), + [aux_sym__directive_body] = STATE(369), + [sym_text] = STATE(369), + [sym__text] = STATE(999), + [aux_sym_php_only_repeat1] = STATE(999), + [sym_comment] = ACTIONS(5577), + [aux_sym_keyword_token1] = ACTIONS(5579), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5581), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5583), + [anon_sym_ATphp] = ACTIONS(5585), + [aux_sym_attribute_token1] = ACTIONS(5587), + [aux_sym__inline_directive_token1] = ACTIONS(5589), + [anon_sym_ATfragment] = ACTIONS(5591), + [anon_sym_ATsection] = ACTIONS(5593), + [anon_sym_ATonce] = ACTIONS(5595), + [anon_sym_ATverbatim] = ACTIONS(5597), + [anon_sym_ATpush] = ACTIONS(5599), + [anon_sym_ATpushOnce] = ACTIONS(5601), + [anon_sym_ATendPushOnce] = ACTIONS(4699), + [anon_sym_ATpushIf] = ACTIONS(5603), + [anon_sym_ATprepend] = ACTIONS(5605), + [anon_sym_ATprependOnce] = ACTIONS(5607), + [anon_sym_ATif] = ACTIONS(5609), + [anon_sym_ATunless] = ACTIONS(5611), + [anon_sym_ATisset] = ACTIONS(5613), + [anon_sym_ATempty] = ACTIONS(5615), + [anon_sym_ATauth] = ACTIONS(5617), + [anon_sym_ATguest] = ACTIONS(5619), + [anon_sym_ATproduction] = ACTIONS(5621), + [anon_sym_ATenv] = ACTIONS(5623), + [anon_sym_AThasSection] = ACTIONS(5625), + [anon_sym_ATsectionMissing] = ACTIONS(5627), + [anon_sym_ATerror] = ACTIONS(5629), + [anon_sym_ATcan] = ACTIONS(5631), + [anon_sym_ATcannot] = ACTIONS(5633), + [anon_sym_ATcanany] = ACTIONS(5635), + [anon_sym_ATfeature] = ACTIONS(5637), + [aux_sym__custom_token1] = ACTIONS(5639), + [aux_sym__custom_token2] = ACTIONS(5641), + [anon_sym_ATswitch] = ACTIONS(5643), + [aux_sym_loop_operator_token1] = ACTIONS(5645), + [anon_sym_ATfor] = ACTIONS(5647), + [anon_sym_ATforeach] = ACTIONS(5649), + [anon_sym_ATforelse] = ACTIONS(5651), + [anon_sym_ATwhile] = ACTIONS(5653), + [anon_sym_ATsetup] = ACTIONS(5655), + [anon_sym_ATtask] = ACTIONS(5657), + [anon_sym_ATstory] = ACTIONS(5659), + [anon_sym_ATbefore] = ACTIONS(5661), + [anon_sym_ATafter] = ACTIONS(5663), + [anon_sym_ATsuccess] = ACTIONS(5665), + [anon_sym_ATfinished] = ACTIONS(5667), + [anon_sym_ATpersist] = ACTIONS(5669), + [anon_sym_ATteleport] = ACTIONS(5671), + [anon_sym_ATvolt] = ACTIONS(5673), + [aux_sym_alpine_js_token1] = ACTIONS(5675), + [aux_sym__text_token1] = ACTIONS(5677), + [aux_sym__text_token2] = ACTIONS(5677), + [aux_sym__text_token3] = ACTIONS(5679), }, [351] = { - [sym__definition] = STATE(346), - [sym_keyword] = STATE(346), - [sym_php_statement] = STATE(346), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(346), - [sym__inline_directive] = STATE(346), - [sym__nested_directive] = STATE(346), - [sym_fragment] = STATE(346), - [sym_section] = STATE(346), - [sym_inlineSection] = STATE(346), - [sym_once] = STATE(346), - [sym_verbatim] = STATE(346), - [sym_stack] = STATE(346), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(346), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(346), - [sym_loop] = STATE(346), - [sym_loop_operator] = STATE(346), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(346), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(346), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(346), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(346), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(5636), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5638), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5681), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [352] = { - [sym__definition] = STATE(349), - [sym_keyword] = STATE(349), - [sym_php_statement] = STATE(349), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(349), - [sym__inline_directive] = STATE(349), - [sym__nested_directive] = STATE(349), - [sym_fragment] = STATE(349), - [sym_section] = STATE(349), - [sym_inlineSection] = STATE(349), - [sym_once] = STATE(349), - [sym_verbatim] = STATE(349), - [sym_stack] = STATE(349), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(349), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(349), - [sym_loop] = STATE(349), - [sym_loop_operator] = STATE(349), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(349), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(349), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(349), - [sym_text] = STATE(349), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(5640), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5642), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(5683), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [353] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5644), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5685), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [354] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(5646), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(5687), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [355] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(5648), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(640), + [sym_keyword] = STATE(640), + [sym_php_statement] = STATE(640), + [sym__escaped] = STATE(3487), + [sym__unescaped] = STATE(3487), + [sym__raw] = STATE(3487), + [sym__inline_raw] = STATE(3487), + [sym__multi_line_raw] = STATE(3487), + [sym_attribute] = STATE(640), + [sym__inline_directive] = STATE(640), + [sym__nested_directive] = STATE(640), + [sym_fragment] = STATE(640), + [sym_section] = STATE(640), + [sym_inlineSection] = STATE(640), + [sym_once] = STATE(640), + [sym_verbatim] = STATE(640), + [sym_stack] = STATE(640), + [sym__push] = STATE(3483), + [sym__pushOnce] = STATE(3483), + [sym__pushIf] = STATE(3483), + [sym__prepend] = STATE(3483), + [sym__prependOnce] = STATE(3483), + [sym_conditional] = STATE(640), + [sym__if] = STATE(3482), + [sym__unless] = STATE(3482), + [sym__isset] = STATE(3482), + [sym__empty] = STATE(3482), + [sym__auth] = STATE(3482), + [sym__guest] = STATE(3482), + [sym__production] = STATE(3482), + [sym__env] = STATE(3482), + [sym__hasSection] = STATE(3482), + [sym__sectionMissing] = STATE(3482), + [sym__error] = STATE(3482), + [sym_authorization] = STATE(3482), + [sym__can] = STATE(3478), + [sym__cannot] = STATE(3478), + [sym__canany] = STATE(3478), + [sym__feature] = STATE(3482), + [sym__custom] = STATE(3482), + [sym_switch] = STATE(640), + [sym_loop] = STATE(640), + [sym_loop_operator] = STATE(640), + [sym__for] = STATE(3477), + [sym__foreach] = STATE(3477), + [sym__forelse] = STATE(3477), + [sym__while] = STATE(3477), + [sym_envoy] = STATE(640), + [sym__setup] = STATE(3487), + [sym__task] = STATE(3408), + [sym__story] = STATE(3408), + [sym__hooks] = STATE(3487), + [sym__before] = STATE(3487), + [sym__after] = STATE(3487), + [sym__envoy_error] = STATE(3487), + [sym__success] = STATE(3487), + [sym__finished] = STATE(3487), + [sym_livewire] = STATE(640), + [sym__persist] = STATE(3459), + [sym__teleport] = STATE(3459), + [sym__volt] = STATE(3459), + [sym_alpine_js] = STATE(640), + [sym_text] = STATE(640), + [sym__text] = STATE(752), + [aux_sym_blade_repeat1] = STATE(640), + [aux_sym_php_only_repeat1] = STATE(752), + [ts_builtin_sym_end] = ACTIONS(5689), + [sym_comment] = ACTIONS(5691), + [aux_sym_keyword_token1] = ACTIONS(7), + [anon_sym_LBRACE_LBRACE] = ACTIONS(9), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(11), + [anon_sym_ATphp] = ACTIONS(13), + [aux_sym_attribute_token1] = ACTIONS(15), + [aux_sym__inline_directive_token1] = ACTIONS(17), + [anon_sym_ATfragment] = ACTIONS(19), + [anon_sym_ATsection] = ACTIONS(21), + [anon_sym_ATonce] = ACTIONS(23), + [anon_sym_ATverbatim] = ACTIONS(25), + [anon_sym_ATpush] = ACTIONS(27), + [anon_sym_ATpushOnce] = ACTIONS(29), + [anon_sym_ATpushIf] = ACTIONS(31), + [anon_sym_ATprepend] = ACTIONS(33), + [anon_sym_ATprependOnce] = ACTIONS(35), + [anon_sym_ATif] = ACTIONS(37), + [anon_sym_ATunless] = ACTIONS(39), + [anon_sym_ATisset] = ACTIONS(41), + [anon_sym_ATempty] = ACTIONS(43), + [anon_sym_ATauth] = ACTIONS(45), + [anon_sym_ATguest] = ACTIONS(47), + [anon_sym_ATproduction] = ACTIONS(49), + [anon_sym_ATenv] = ACTIONS(51), + [anon_sym_AThasSection] = ACTIONS(53), + [anon_sym_ATsectionMissing] = ACTIONS(55), + [anon_sym_ATerror] = ACTIONS(57), + [anon_sym_ATcan] = ACTIONS(59), + [anon_sym_ATcannot] = ACTIONS(61), + [anon_sym_ATcanany] = ACTIONS(63), + [anon_sym_ATfeature] = ACTIONS(65), + [aux_sym__custom_token1] = ACTIONS(67), + [aux_sym__custom_token2] = ACTIONS(69), + [anon_sym_ATswitch] = ACTIONS(71), + [aux_sym_loop_operator_token1] = ACTIONS(73), + [anon_sym_ATfor] = ACTIONS(75), + [anon_sym_ATforeach] = ACTIONS(77), + [anon_sym_ATforelse] = ACTIONS(79), + [anon_sym_ATwhile] = ACTIONS(81), + [anon_sym_ATsetup] = ACTIONS(83), + [anon_sym_ATtask] = ACTIONS(85), + [anon_sym_ATstory] = ACTIONS(87), + [anon_sym_ATbefore] = ACTIONS(89), + [anon_sym_ATafter] = ACTIONS(91), + [anon_sym_ATsuccess] = ACTIONS(93), + [anon_sym_ATfinished] = ACTIONS(95), + [anon_sym_ATpersist] = ACTIONS(97), + [anon_sym_ATteleport] = ACTIONS(99), + [anon_sym_ATvolt] = ACTIONS(101), + [aux_sym_alpine_js_token1] = ACTIONS(103), + [aux_sym__text_token1] = ACTIONS(105), + [aux_sym__text_token2] = ACTIONS(105), + [aux_sym__text_token3] = ACTIONS(107), }, [356] = { + [sym__definition] = STATE(352), + [sym_keyword] = STATE(352), + [sym_php_statement] = STATE(352), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(352), + [sym__inline_directive] = STATE(352), + [sym__nested_directive] = STATE(352), + [sym_fragment] = STATE(352), + [sym_section] = STATE(352), + [sym_inlineSection] = STATE(352), + [sym_once] = STATE(352), + [sym_verbatim] = STATE(352), + [sym_stack] = STATE(352), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(352), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(352), + [sym_loop] = STATE(352), + [sym_loop_operator] = STATE(352), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(352), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(352), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(352), + [aux_sym__directive_body] = STATE(352), + [sym_text] = STATE(352), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(5693), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(5695), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), + }, + [357] = { [sym__definition] = STATE(354), [sym_keyword] = STATE(354), [sym_php_statement] = STATE(354), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), [sym_attribute] = STATE(354), [sym__inline_directive] = STATE(354), [sym__nested_directive] = STATE(354), @@ -68887,477 +70193,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(354), [sym_verbatim] = STATE(354), [sym_stack] = STATE(354), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), [sym_conditional] = STATE(354), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), [sym_switch] = STATE(354), [sym_loop] = STATE(354), [sym_loop_operator] = STATE(354), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), [sym_envoy] = STATE(354), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), [sym_livewire] = STATE(354), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(354), [aux_sym__directive_body] = STATE(354), [sym_text] = STATE(354), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(5650), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(5652), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), - }, - [357] = { - [sym__definition] = STATE(355), - [sym_keyword] = STATE(355), - [sym_php_statement] = STATE(355), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(355), - [sym__inline_directive] = STATE(355), - [sym__nested_directive] = STATE(355), - [sym_fragment] = STATE(355), - [sym_section] = STATE(355), - [sym_inlineSection] = STATE(355), - [sym_once] = STATE(355), - [sym_verbatim] = STATE(355), - [sym_stack] = STATE(355), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(355), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(355), - [sym_loop] = STATE(355), - [sym_loop_operator] = STATE(355), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(355), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(355), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(355), - [sym_text] = STATE(355), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(5654), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(5656), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(5697), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(5699), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [358] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5658), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5701), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [359] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5660), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5703), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [360] = { [sym__definition] = STATE(358), [sym_keyword] = STATE(358), [sym_php_statement] = STATE(358), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(358), [sym__inline_directive] = STATE(358), [sym__nested_directive] = STATE(358), @@ -69367,237 +70559,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(358), [sym_verbatim] = STATE(358), [sym_stack] = STATE(358), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(358), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(358), [sym_loop] = STATE(358), [sym_loop_operator] = STATE(358), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(358), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(358), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(358), [sym_text] = STATE(358), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(358), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(5662), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5664), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(5705), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5707), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [361] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5664), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5707), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [362] = { [sym__definition] = STATE(359), [sym_keyword] = STATE(359), [sym_php_statement] = STATE(359), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(359), [sym__inline_directive] = STATE(359), [sym__nested_directive] = STATE(359), @@ -69607,357 +70803,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(359), [sym_verbatim] = STATE(359), [sym_stack] = STATE(359), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(359), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(359), [sym_loop] = STATE(359), [sym_loop_operator] = STATE(359), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(359), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(359), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(359), [aux_sym__directive_body] = STATE(359), [sym_text] = STATE(359), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(5666), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5668), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(5709), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5711), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [363] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5670), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5713), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [364] = { - [sym__definition] = STATE(554), - [sym_keyword] = STATE(554), - [sym_php_statement] = STATE(554), - [sym__escaped] = STATE(3470), - [sym__unescaped] = STATE(3470), - [sym__raw] = STATE(3470), - [sym__inline_raw] = STATE(3470), - [sym__multi_line_raw] = STATE(3470), - [sym_attribute] = STATE(554), - [sym__inline_directive] = STATE(554), - [sym__nested_directive] = STATE(554), - [sym_fragment] = STATE(554), - [sym_section] = STATE(554), - [sym_inlineSection] = STATE(554), - [sym_once] = STATE(554), - [sym_verbatim] = STATE(554), - [sym_stack] = STATE(554), - [sym__push] = STATE(3469), - [sym__pushOnce] = STATE(3469), - [sym__pushIf] = STATE(3469), - [sym__prepend] = STATE(3469), - [sym__prependOnce] = STATE(3469), - [sym_conditional] = STATE(554), - [sym__if] = STATE(3467), - [sym__unless] = STATE(3467), - [sym__isset] = STATE(3467), - [sym__empty] = STATE(3467), - [sym__auth] = STATE(3467), - [sym__guest] = STATE(3467), - [sym__production] = STATE(3467), - [sym__env] = STATE(3467), - [sym__hasSection] = STATE(3467), - [sym__sectionMissing] = STATE(3467), - [sym__error] = STATE(3467), - [sym_authorization] = STATE(3467), - [sym__can] = STATE(3465), - [sym__cannot] = STATE(3465), - [sym__canany] = STATE(3465), - [sym__feature] = STATE(3467), - [sym__custom] = STATE(3467), - [sym_switch] = STATE(554), - [sym_loop] = STATE(554), - [sym_loop_operator] = STATE(554), - [sym__for] = STATE(3463), - [sym__foreach] = STATE(3463), - [sym__forelse] = STATE(3463), - [sym__while] = STATE(3463), - [sym_envoy] = STATE(554), - [sym__setup] = STATE(3470), - [sym__task] = STATE(3461), - [sym__story] = STATE(3461), - [sym__hooks] = STATE(3470), - [sym__before] = STATE(3470), - [sym__after] = STATE(3470), - [sym__envoy_error] = STATE(3470), - [sym__success] = STATE(3470), - [sym__finished] = STATE(3470), - [sym_livewire] = STATE(554), - [sym__persist] = STATE(3433), - [sym__teleport] = STATE(3433), - [sym__volt] = STATE(3433), - [aux_sym__directive_body] = STATE(554), - [sym_text] = STATE(554), - [sym__text] = STATE(987), - [aux_sym_php_only_repeat1] = STATE(987), - [sym_comment] = ACTIONS(5672), - [aux_sym_keyword_token1] = ACTIONS(5375), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5377), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5379), - [anon_sym_ATphp] = ACTIONS(5381), - [aux_sym_attribute_token1] = ACTIONS(5383), - [aux_sym__inline_directive_token1] = ACTIONS(5385), - [anon_sym_ATfragment] = ACTIONS(5387), - [anon_sym_ATsection] = ACTIONS(5389), - [anon_sym_ATonce] = ACTIONS(5391), - [anon_sym_ATverbatim] = ACTIONS(5393), - [anon_sym_ATpush] = ACTIONS(5395), - [anon_sym_ATpushOnce] = ACTIONS(5397), - [anon_sym_ATendPushOnce] = ACTIONS(4996), - [anon_sym_ATpushIf] = ACTIONS(5399), - [anon_sym_ATprepend] = ACTIONS(5401), - [anon_sym_ATprependOnce] = ACTIONS(5403), - [anon_sym_ATif] = ACTIONS(5405), - [anon_sym_ATunless] = ACTIONS(5407), - [anon_sym_ATisset] = ACTIONS(5409), - [anon_sym_ATempty] = ACTIONS(5411), - [anon_sym_ATauth] = ACTIONS(5413), - [anon_sym_ATguest] = ACTIONS(5415), - [anon_sym_ATproduction] = ACTIONS(5417), - [anon_sym_ATenv] = ACTIONS(5419), - [anon_sym_AThasSection] = ACTIONS(5421), - [anon_sym_ATsectionMissing] = ACTIONS(5423), - [anon_sym_ATerror] = ACTIONS(5425), - [anon_sym_ATcan] = ACTIONS(5427), - [anon_sym_ATcannot] = ACTIONS(5429), - [anon_sym_ATcanany] = ACTIONS(5431), - [anon_sym_ATfeature] = ACTIONS(5433), - [aux_sym__custom_token1] = ACTIONS(5435), - [aux_sym__custom_token2] = ACTIONS(5437), - [anon_sym_ATswitch] = ACTIONS(5439), - [aux_sym_loop_operator_token1] = ACTIONS(5441), - [anon_sym_ATfor] = ACTIONS(5443), - [anon_sym_ATforeach] = ACTIONS(5445), - [anon_sym_ATforelse] = ACTIONS(5447), - [anon_sym_ATwhile] = ACTIONS(5449), - [anon_sym_ATsetup] = ACTIONS(5451), - [anon_sym_ATtask] = ACTIONS(5453), - [anon_sym_ATstory] = ACTIONS(5455), - [anon_sym_ATbefore] = ACTIONS(5457), - [anon_sym_ATafter] = ACTIONS(5459), - [anon_sym_ATsuccess] = ACTIONS(5461), - [anon_sym_ATfinished] = ACTIONS(5463), - [anon_sym_ATpersist] = ACTIONS(5465), - [anon_sym_ATteleport] = ACTIONS(5467), - [anon_sym_ATvolt] = ACTIONS(5469), - [aux_sym__text_token1] = ACTIONS(5471), - [aux_sym__text_token2] = ACTIONS(5471), - [aux_sym__text_token3] = ACTIONS(5473), - }, - [365] = { [sym__definition] = STATE(361), [sym_keyword] = STATE(361), [sym_php_statement] = STATE(361), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(361), [sym__inline_directive] = STATE(361), [sym__nested_directive] = STATE(361), @@ -69967,117 +71047,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(361), [sym_verbatim] = STATE(361), [sym_stack] = STATE(361), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(361), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(361), [sym_loop] = STATE(361), [sym_loop_operator] = STATE(361), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(361), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(361), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(361), [sym_text] = STATE(361), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(361), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(5674), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5676), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(5715), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(5717), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), + }, + [365] = { + [sym__definition] = STATE(363), + [sym_keyword] = STATE(363), + [sym_php_statement] = STATE(363), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(363), + [sym__inline_directive] = STATE(363), + [sym__nested_directive] = STATE(363), + [sym_fragment] = STATE(363), + [sym_section] = STATE(363), + [sym_inlineSection] = STATE(363), + [sym_once] = STATE(363), + [sym_verbatim] = STATE(363), + [sym_stack] = STATE(363), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(363), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(363), + [sym_loop] = STATE(363), + [sym_loop_operator] = STATE(363), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(363), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(363), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(363), + [aux_sym__directive_body] = STATE(363), + [sym_text] = STATE(363), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(5719), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(5721), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [366] = { [sym__definition] = STATE(366), [sym_keyword] = STATE(366), [sym_php_statement] = STATE(366), - [sym__escaped] = STATE(1993), - [sym__unescaped] = STATE(1993), - [sym__raw] = STATE(1993), - [sym__inline_raw] = STATE(1993), - [sym__multi_line_raw] = STATE(1993), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), [sym_attribute] = STATE(366), [sym__inline_directive] = STATE(366), [sym__nested_directive] = STATE(366), @@ -70087,1197 +71291,1339 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(366), [sym_verbatim] = STATE(366), [sym_stack] = STATE(366), - [sym__push] = STATE(2111), - [sym__pushOnce] = STATE(2111), - [sym__pushIf] = STATE(2111), - [sym__prepend] = STATE(2111), - [sym__prependOnce] = STATE(2111), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), [sym_conditional] = STATE(366), - [sym__if] = STATE(2008), - [sym__unless] = STATE(2008), - [sym__isset] = STATE(2008), - [sym__empty] = STATE(2008), - [sym__auth] = STATE(2008), - [sym__guest] = STATE(2008), - [sym__production] = STATE(2008), - [sym__env] = STATE(2008), - [sym__hasSection] = STATE(2008), - [sym__sectionMissing] = STATE(2008), - [sym__error] = STATE(2008), - [sym_authorization] = STATE(2008), - [sym__can] = STATE(2011), - [sym__cannot] = STATE(2011), - [sym__canany] = STATE(2011), - [sym__feature] = STATE(2008), - [sym__custom] = STATE(2008), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), [sym_switch] = STATE(366), [sym_loop] = STATE(366), [sym_loop_operator] = STATE(366), - [sym__for] = STATE(2025), - [sym__foreach] = STATE(2025), - [sym__forelse] = STATE(2025), - [sym__while] = STATE(2025), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), [sym_envoy] = STATE(366), - [sym__setup] = STATE(1993), - [sym__task] = STATE(2065), - [sym__story] = STATE(2065), - [sym__hooks] = STATE(1993), - [sym__before] = STATE(1993), - [sym__after] = STATE(1993), - [sym__envoy_error] = STATE(1993), - [sym__success] = STATE(1993), - [sym__finished] = STATE(1993), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), [sym_livewire] = STATE(366), - [sym__persist] = STATE(2070), - [sym__teleport] = STATE(2070), - [sym__volt] = STATE(2070), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), [aux_sym__directive_body] = STATE(366), [sym_text] = STATE(366), - [sym__text] = STATE(1106), - [aux_sym_php_only_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(5678), - [aux_sym_keyword_token1] = ACTIONS(5681), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5684), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5687), - [anon_sym_ATphp] = ACTIONS(5690), - [aux_sym_attribute_token1] = ACTIONS(5693), - [aux_sym__inline_directive_token1] = ACTIONS(5696), - [anon_sym_ATfragment] = ACTIONS(5699), - [anon_sym_ATendfragment] = ACTIONS(5035), - [anon_sym_ATsection] = ACTIONS(5702), - [anon_sym_ATonce] = ACTIONS(5705), - [anon_sym_ATverbatim] = ACTIONS(5708), - [anon_sym_ATpush] = ACTIONS(5711), - [anon_sym_ATpushOnce] = ACTIONS(5714), - [anon_sym_ATpushIf] = ACTIONS(5717), - [anon_sym_ATprepend] = ACTIONS(5720), - [anon_sym_ATprependOnce] = ACTIONS(5723), - [anon_sym_ATif] = ACTIONS(5726), - [anon_sym_ATunless] = ACTIONS(5729), - [anon_sym_ATisset] = ACTIONS(5732), - [anon_sym_ATempty] = ACTIONS(5735), - [anon_sym_ATauth] = ACTIONS(5738), - [anon_sym_ATguest] = ACTIONS(5741), - [anon_sym_ATproduction] = ACTIONS(5744), - [anon_sym_ATenv] = ACTIONS(5747), - [anon_sym_AThasSection] = ACTIONS(5750), - [anon_sym_ATsectionMissing] = ACTIONS(5753), - [anon_sym_ATerror] = ACTIONS(5756), - [anon_sym_ATcan] = ACTIONS(5759), - [anon_sym_ATcannot] = ACTIONS(5762), - [anon_sym_ATcanany] = ACTIONS(5765), - [anon_sym_ATfeature] = ACTIONS(5768), - [aux_sym__custom_token1] = ACTIONS(5771), - [aux_sym__custom_token2] = ACTIONS(5774), - [anon_sym_ATswitch] = ACTIONS(5777), - [aux_sym_loop_operator_token1] = ACTIONS(5780), - [anon_sym_ATfor] = ACTIONS(5783), - [anon_sym_ATforeach] = ACTIONS(5786), - [anon_sym_ATforelse] = ACTIONS(5789), - [anon_sym_ATwhile] = ACTIONS(5792), - [anon_sym_ATsetup] = ACTIONS(5795), - [anon_sym_ATtask] = ACTIONS(5798), - [anon_sym_ATstory] = ACTIONS(5801), - [anon_sym_ATbefore] = ACTIONS(5804), - [anon_sym_ATafter] = ACTIONS(5807), - [anon_sym_ATsuccess] = ACTIONS(5810), - [anon_sym_ATfinished] = ACTIONS(5813), - [anon_sym_ATpersist] = ACTIONS(5816), - [anon_sym_ATteleport] = ACTIONS(5819), - [anon_sym_ATvolt] = ACTIONS(5822), - [aux_sym__text_token1] = ACTIONS(5825), - [aux_sym__text_token2] = ACTIONS(5825), - [aux_sym__text_token3] = ACTIONS(5828), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(5723), + [aux_sym_keyword_token1] = ACTIONS(5726), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5729), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5732), + [anon_sym_ATphp] = ACTIONS(5735), + [aux_sym_attribute_token1] = ACTIONS(5738), + [aux_sym__inline_directive_token1] = ACTIONS(5741), + [anon_sym_ATfragment] = ACTIONS(5744), + [anon_sym_ATsection] = ACTIONS(5747), + [anon_sym_ATonce] = ACTIONS(5750), + [anon_sym_ATendonce] = ACTIONS(5134), + [anon_sym_ATverbatim] = ACTIONS(5753), + [anon_sym_ATpush] = ACTIONS(5756), + [anon_sym_ATpushOnce] = ACTIONS(5759), + [anon_sym_ATpushIf] = ACTIONS(5762), + [anon_sym_ATprepend] = ACTIONS(5765), + [anon_sym_ATprependOnce] = ACTIONS(5768), + [anon_sym_ATif] = ACTIONS(5771), + [anon_sym_ATunless] = ACTIONS(5774), + [anon_sym_ATisset] = ACTIONS(5777), + [anon_sym_ATempty] = ACTIONS(5780), + [anon_sym_ATauth] = ACTIONS(5783), + [anon_sym_ATguest] = ACTIONS(5786), + [anon_sym_ATproduction] = ACTIONS(5789), + [anon_sym_ATenv] = ACTIONS(5792), + [anon_sym_AThasSection] = ACTIONS(5795), + [anon_sym_ATsectionMissing] = ACTIONS(5798), + [anon_sym_ATerror] = ACTIONS(5801), + [anon_sym_ATcan] = ACTIONS(5804), + [anon_sym_ATcannot] = ACTIONS(5807), + [anon_sym_ATcanany] = ACTIONS(5810), + [anon_sym_ATfeature] = ACTIONS(5813), + [aux_sym__custom_token1] = ACTIONS(5816), + [aux_sym__custom_token2] = ACTIONS(5819), + [anon_sym_ATswitch] = ACTIONS(5822), + [aux_sym_loop_operator_token1] = ACTIONS(5825), + [anon_sym_ATfor] = ACTIONS(5828), + [anon_sym_ATforeach] = ACTIONS(5831), + [anon_sym_ATforelse] = ACTIONS(5834), + [anon_sym_ATwhile] = ACTIONS(5837), + [anon_sym_ATsetup] = ACTIONS(5840), + [anon_sym_ATtask] = ACTIONS(5843), + [anon_sym_ATstory] = ACTIONS(5846), + [anon_sym_ATbefore] = ACTIONS(5849), + [anon_sym_ATafter] = ACTIONS(5852), + [anon_sym_ATsuccess] = ACTIONS(5855), + [anon_sym_ATfinished] = ACTIONS(5858), + [anon_sym_ATpersist] = ACTIONS(5861), + [anon_sym_ATteleport] = ACTIONS(5864), + [anon_sym_ATvolt] = ACTIONS(5867), + [aux_sym_alpine_js_token1] = ACTIONS(5870), + [aux_sym__text_token1] = ACTIONS(5873), + [aux_sym__text_token2] = ACTIONS(5873), + [aux_sym__text_token3] = ACTIONS(5876), }, [367] = { - [sym__definition] = STATE(363), - [sym_keyword] = STATE(363), - [sym_php_statement] = STATE(363), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(363), - [sym__inline_directive] = STATE(363), - [sym__nested_directive] = STATE(363), - [sym_fragment] = STATE(363), - [sym_section] = STATE(363), - [sym_inlineSection] = STATE(363), - [sym_once] = STATE(363), - [sym_verbatim] = STATE(363), - [sym_stack] = STATE(363), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(363), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(363), - [sym_loop] = STATE(363), - [sym_loop_operator] = STATE(363), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(363), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(363), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(363), - [sym_text] = STATE(363), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(5831), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5833), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(5879), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [368] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(5835), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(5881), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [369] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(5837), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(561), + [sym_keyword] = STATE(561), + [sym_php_statement] = STATE(561), + [sym__escaped] = STATE(3431), + [sym__unescaped] = STATE(3431), + [sym__raw] = STATE(3431), + [sym__inline_raw] = STATE(3431), + [sym__multi_line_raw] = STATE(3431), + [sym_attribute] = STATE(561), + [sym__inline_directive] = STATE(561), + [sym__nested_directive] = STATE(561), + [sym_fragment] = STATE(561), + [sym_section] = STATE(561), + [sym_inlineSection] = STATE(561), + [sym_once] = STATE(561), + [sym_verbatim] = STATE(561), + [sym_stack] = STATE(561), + [sym__push] = STATE(3403), + [sym__pushOnce] = STATE(3403), + [sym__pushIf] = STATE(3403), + [sym__prepend] = STATE(3403), + [sym__prependOnce] = STATE(3403), + [sym_conditional] = STATE(561), + [sym__if] = STATE(3391), + [sym__unless] = STATE(3391), + [sym__isset] = STATE(3391), + [sym__empty] = STATE(3391), + [sym__auth] = STATE(3391), + [sym__guest] = STATE(3391), + [sym__production] = STATE(3391), + [sym__env] = STATE(3391), + [sym__hasSection] = STATE(3391), + [sym__sectionMissing] = STATE(3391), + [sym__error] = STATE(3391), + [sym_authorization] = STATE(3391), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3391), + [sym__custom] = STATE(3391), + [sym_switch] = STATE(561), + [sym_loop] = STATE(561), + [sym_loop_operator] = STATE(561), + [sym__for] = STATE(3378), + [sym__foreach] = STATE(3378), + [sym__forelse] = STATE(3378), + [sym__while] = STATE(3378), + [sym_envoy] = STATE(561), + [sym__setup] = STATE(3431), + [sym__task] = STATE(3377), + [sym__story] = STATE(3377), + [sym__hooks] = STATE(3431), + [sym__before] = STATE(3431), + [sym__after] = STATE(3431), + [sym__envoy_error] = STATE(3431), + [sym__success] = STATE(3431), + [sym__finished] = STATE(3431), + [sym_livewire] = STATE(561), + [sym__persist] = STATE(3371), + [sym__teleport] = STATE(3371), + [sym__volt] = STATE(3371), + [sym_alpine_js] = STATE(561), + [aux_sym__directive_body] = STATE(561), + [sym_text] = STATE(561), + [sym__text] = STATE(999), + [aux_sym_php_only_repeat1] = STATE(999), + [sym_comment] = ACTIONS(5883), + [aux_sym_keyword_token1] = ACTIONS(5579), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5581), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5583), + [anon_sym_ATphp] = ACTIONS(5585), + [aux_sym_attribute_token1] = ACTIONS(5587), + [aux_sym__inline_directive_token1] = ACTIONS(5589), + [anon_sym_ATfragment] = ACTIONS(5591), + [anon_sym_ATsection] = ACTIONS(5593), + [anon_sym_ATonce] = ACTIONS(5595), + [anon_sym_ATverbatim] = ACTIONS(5597), + [anon_sym_ATpush] = ACTIONS(5599), + [anon_sym_ATpushOnce] = ACTIONS(5601), + [anon_sym_ATendPushOnce] = ACTIONS(4859), + [anon_sym_ATpushIf] = ACTIONS(5603), + [anon_sym_ATprepend] = ACTIONS(5605), + [anon_sym_ATprependOnce] = ACTIONS(5607), + [anon_sym_ATif] = ACTIONS(5609), + [anon_sym_ATunless] = ACTIONS(5611), + [anon_sym_ATisset] = ACTIONS(5613), + [anon_sym_ATempty] = ACTIONS(5615), + [anon_sym_ATauth] = ACTIONS(5617), + [anon_sym_ATguest] = ACTIONS(5619), + [anon_sym_ATproduction] = ACTIONS(5621), + [anon_sym_ATenv] = ACTIONS(5623), + [anon_sym_AThasSection] = ACTIONS(5625), + [anon_sym_ATsectionMissing] = ACTIONS(5627), + [anon_sym_ATerror] = ACTIONS(5629), + [anon_sym_ATcan] = ACTIONS(5631), + [anon_sym_ATcannot] = ACTIONS(5633), + [anon_sym_ATcanany] = ACTIONS(5635), + [anon_sym_ATfeature] = ACTIONS(5637), + [aux_sym__custom_token1] = ACTIONS(5639), + [aux_sym__custom_token2] = ACTIONS(5641), + [anon_sym_ATswitch] = ACTIONS(5643), + [aux_sym_loop_operator_token1] = ACTIONS(5645), + [anon_sym_ATfor] = ACTIONS(5647), + [anon_sym_ATforeach] = ACTIONS(5649), + [anon_sym_ATforelse] = ACTIONS(5651), + [anon_sym_ATwhile] = ACTIONS(5653), + [anon_sym_ATsetup] = ACTIONS(5655), + [anon_sym_ATtask] = ACTIONS(5657), + [anon_sym_ATstory] = ACTIONS(5659), + [anon_sym_ATbefore] = ACTIONS(5661), + [anon_sym_ATafter] = ACTIONS(5663), + [anon_sym_ATsuccess] = ACTIONS(5665), + [anon_sym_ATfinished] = ACTIONS(5667), + [anon_sym_ATpersist] = ACTIONS(5669), + [anon_sym_ATteleport] = ACTIONS(5671), + [anon_sym_ATvolt] = ACTIONS(5673), + [aux_sym_alpine_js_token1] = ACTIONS(5675), + [aux_sym__text_token1] = ACTIONS(5677), + [aux_sym__text_token2] = ACTIONS(5677), + [aux_sym__text_token3] = ACTIONS(5679), }, [370] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(5839), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(367), + [sym_keyword] = STATE(367), + [sym_php_statement] = STATE(367), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(367), + [sym__inline_directive] = STATE(367), + [sym__nested_directive] = STATE(367), + [sym_fragment] = STATE(367), + [sym_section] = STATE(367), + [sym_inlineSection] = STATE(367), + [sym_once] = STATE(367), + [sym_verbatim] = STATE(367), + [sym_stack] = STATE(367), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(367), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(367), + [sym_loop] = STATE(367), + [sym_loop_operator] = STATE(367), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(367), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(367), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(367), + [aux_sym__directive_body] = STATE(367), + [sym_text] = STATE(367), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(5885), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(5887), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [371] = { - [sym__definition] = STATE(369), - [sym_keyword] = STATE(369), - [sym_php_statement] = STATE(369), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(369), - [sym__inline_directive] = STATE(369), - [sym__nested_directive] = STATE(369), - [sym_fragment] = STATE(369), - [sym_section] = STATE(369), - [sym_inlineSection] = STATE(369), - [sym_once] = STATE(369), - [sym_verbatim] = STATE(369), - [sym_stack] = STATE(369), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(369), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(369), - [sym_loop] = STATE(369), - [sym_loop_operator] = STATE(369), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(369), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(369), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(369), - [sym_text] = STATE(369), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(5841), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(5843), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(371), + [sym_keyword] = STATE(371), + [sym_php_statement] = STATE(371), + [sym__escaped] = STATE(2102), + [sym__unescaped] = STATE(2102), + [sym__raw] = STATE(2102), + [sym__inline_raw] = STATE(2102), + [sym__multi_line_raw] = STATE(2102), + [sym_attribute] = STATE(371), + [sym__inline_directive] = STATE(371), + [sym__nested_directive] = STATE(371), + [sym_fragment] = STATE(371), + [sym_section] = STATE(371), + [sym_inlineSection] = STATE(371), + [sym_once] = STATE(371), + [sym_verbatim] = STATE(371), + [sym_stack] = STATE(371), + [sym__push] = STATE(2104), + [sym__pushOnce] = STATE(2104), + [sym__pushIf] = STATE(2104), + [sym__prepend] = STATE(2104), + [sym__prependOnce] = STATE(2104), + [sym_conditional] = STATE(371), + [sym__if] = STATE(2107), + [sym__unless] = STATE(2107), + [sym__isset] = STATE(2107), + [sym__empty] = STATE(2107), + [sym__auth] = STATE(2107), + [sym__guest] = STATE(2107), + [sym__production] = STATE(2107), + [sym__env] = STATE(2107), + [sym__hasSection] = STATE(2107), + [sym__sectionMissing] = STATE(2107), + [sym__error] = STATE(2107), + [sym_authorization] = STATE(2107), + [sym__can] = STATE(2121), + [sym__cannot] = STATE(2121), + [sym__canany] = STATE(2121), + [sym__feature] = STATE(2107), + [sym__custom] = STATE(2107), + [sym_switch] = STATE(371), + [sym_loop] = STATE(371), + [sym_loop_operator] = STATE(371), + [sym__for] = STATE(2162), + [sym__foreach] = STATE(2162), + [sym__forelse] = STATE(2162), + [sym__while] = STATE(2162), + [sym_envoy] = STATE(371), + [sym__setup] = STATE(2102), + [sym__task] = STATE(3202), + [sym__story] = STATE(3202), + [sym__hooks] = STATE(2102), + [sym__before] = STATE(2102), + [sym__after] = STATE(2102), + [sym__envoy_error] = STATE(2102), + [sym__success] = STATE(2102), + [sym__finished] = STATE(2102), + [sym_livewire] = STATE(371), + [sym__persist] = STATE(2174), + [sym__teleport] = STATE(2174), + [sym__volt] = STATE(2174), + [sym_alpine_js] = STATE(371), + [aux_sym__directive_body] = STATE(371), + [sym_text] = STATE(371), + [sym__text] = STATE(1025), + [aux_sym_php_only_repeat1] = STATE(1025), + [sym_comment] = ACTIONS(5889), + [aux_sym_keyword_token1] = ACTIONS(5892), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5895), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5898), + [anon_sym_ATphp] = ACTIONS(5901), + [aux_sym_attribute_token1] = ACTIONS(5904), + [aux_sym__inline_directive_token1] = ACTIONS(5907), + [anon_sym_ATfragment] = ACTIONS(5910), + [anon_sym_ATendfragment] = ACTIONS(5134), + [anon_sym_ATsection] = ACTIONS(5913), + [anon_sym_ATonce] = ACTIONS(5916), + [anon_sym_ATverbatim] = ACTIONS(5919), + [anon_sym_ATpush] = ACTIONS(5922), + [anon_sym_ATpushOnce] = ACTIONS(5925), + [anon_sym_ATpushIf] = ACTIONS(5928), + [anon_sym_ATprepend] = ACTIONS(5931), + [anon_sym_ATprependOnce] = ACTIONS(5934), + [anon_sym_ATif] = ACTIONS(5937), + [anon_sym_ATunless] = ACTIONS(5940), + [anon_sym_ATisset] = ACTIONS(5943), + [anon_sym_ATempty] = ACTIONS(5946), + [anon_sym_ATauth] = ACTIONS(5949), + [anon_sym_ATguest] = ACTIONS(5952), + [anon_sym_ATproduction] = ACTIONS(5955), + [anon_sym_ATenv] = ACTIONS(5958), + [anon_sym_AThasSection] = ACTIONS(5961), + [anon_sym_ATsectionMissing] = ACTIONS(5964), + [anon_sym_ATerror] = ACTIONS(5967), + [anon_sym_ATcan] = ACTIONS(5970), + [anon_sym_ATcannot] = ACTIONS(5973), + [anon_sym_ATcanany] = ACTIONS(5976), + [anon_sym_ATfeature] = ACTIONS(5979), + [aux_sym__custom_token1] = ACTIONS(5982), + [aux_sym__custom_token2] = ACTIONS(5985), + [anon_sym_ATswitch] = ACTIONS(5988), + [aux_sym_loop_operator_token1] = ACTIONS(5991), + [anon_sym_ATfor] = ACTIONS(5994), + [anon_sym_ATforeach] = ACTIONS(5997), + [anon_sym_ATforelse] = ACTIONS(6000), + [anon_sym_ATwhile] = ACTIONS(6003), + [anon_sym_ATsetup] = ACTIONS(6006), + [anon_sym_ATtask] = ACTIONS(6009), + [anon_sym_ATstory] = ACTIONS(6012), + [anon_sym_ATbefore] = ACTIONS(6015), + [anon_sym_ATafter] = ACTIONS(6018), + [anon_sym_ATsuccess] = ACTIONS(6021), + [anon_sym_ATfinished] = ACTIONS(6024), + [anon_sym_ATpersist] = ACTIONS(6027), + [anon_sym_ATteleport] = ACTIONS(6030), + [anon_sym_ATvolt] = ACTIONS(6033), + [aux_sym_alpine_js_token1] = ACTIONS(6036), + [aux_sym__text_token1] = ACTIONS(6039), + [aux_sym__text_token2] = ACTIONS(6039), + [aux_sym__text_token3] = ACTIONS(6042), }, [372] = { - [sym__definition] = STATE(370), - [sym_keyword] = STATE(370), - [sym_php_statement] = STATE(370), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(370), - [sym__inline_directive] = STATE(370), - [sym__nested_directive] = STATE(370), - [sym_fragment] = STATE(370), - [sym_section] = STATE(370), - [sym_inlineSection] = STATE(370), - [sym_once] = STATE(370), - [sym_verbatim] = STATE(370), - [sym_stack] = STATE(370), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(370), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(370), - [sym_loop] = STATE(370), - [sym_loop_operator] = STATE(370), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(370), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(370), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(370), - [sym_text] = STATE(370), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(5845), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(5847), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(368), + [sym_keyword] = STATE(368), + [sym_php_statement] = STATE(368), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(368), + [sym__inline_directive] = STATE(368), + [sym__nested_directive] = STATE(368), + [sym_fragment] = STATE(368), + [sym_section] = STATE(368), + [sym_inlineSection] = STATE(368), + [sym_once] = STATE(368), + [sym_verbatim] = STATE(368), + [sym_stack] = STATE(368), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(368), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(368), + [sym_loop] = STATE(368), + [sym_loop_operator] = STATE(368), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(368), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(368), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(368), + [aux_sym__directive_body] = STATE(368), + [sym_text] = STATE(368), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(6045), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(6047), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [373] = { - [sym__definition] = STATE(380), - [sym_keyword] = STATE(380), - [sym_php_statement] = STATE(380), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(380), - [sym__inline_directive] = STATE(380), - [sym__nested_directive] = STATE(380), - [sym_fragment] = STATE(380), - [sym_section] = STATE(380), - [sym_inlineSection] = STATE(380), - [sym_once] = STATE(380), - [sym_verbatim] = STATE(380), - [sym_stack] = STATE(380), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(380), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(380), - [sym_loop] = STATE(380), - [sym_loop_operator] = STATE(380), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(380), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(380), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(380), - [sym_text] = STATE(380), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(5849), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(5851), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6049), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [374] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(5853), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(374), + [sym_keyword] = STATE(374), + [sym_php_statement] = STATE(374), + [sym__escaped] = STATE(2120), + [sym__unescaped] = STATE(2120), + [sym__raw] = STATE(2120), + [sym__inline_raw] = STATE(2120), + [sym__multi_line_raw] = STATE(2120), + [sym_attribute] = STATE(374), + [sym__inline_directive] = STATE(374), + [sym__nested_directive] = STATE(374), + [sym_fragment] = STATE(374), + [sym_section] = STATE(374), + [sym_inlineSection] = STATE(374), + [sym_once] = STATE(374), + [sym_verbatim] = STATE(374), + [sym_stack] = STATE(374), + [sym__push] = STATE(2119), + [sym__pushOnce] = STATE(2119), + [sym__pushIf] = STATE(2119), + [sym__prepend] = STATE(2119), + [sym__prependOnce] = STATE(2119), + [sym_conditional] = STATE(374), + [sym__if] = STATE(2118), + [sym__unless] = STATE(2118), + [sym__isset] = STATE(2118), + [sym__empty] = STATE(2118), + [sym__auth] = STATE(2118), + [sym__guest] = STATE(2118), + [sym__production] = STATE(2118), + [sym__env] = STATE(2118), + [sym__hasSection] = STATE(2118), + [sym__sectionMissing] = STATE(2118), + [sym__error] = STATE(2118), + [sym_authorization] = STATE(2118), + [sym__can] = STATE(2117), + [sym__cannot] = STATE(2117), + [sym__canany] = STATE(2117), + [sym__feature] = STATE(2118), + [sym__custom] = STATE(2118), + [sym_switch] = STATE(374), + [sym_loop] = STATE(374), + [sym_loop_operator] = STATE(374), + [sym__for] = STATE(2116), + [sym__foreach] = STATE(2116), + [sym__forelse] = STATE(2116), + [sym__while] = STATE(2116), + [sym_envoy] = STATE(374), + [sym__setup] = STATE(2120), + [sym__task] = STATE(2115), + [sym__story] = STATE(2115), + [sym__hooks] = STATE(2120), + [sym__before] = STATE(2120), + [sym__after] = STATE(2120), + [sym__envoy_error] = STATE(2120), + [sym__success] = STATE(2120), + [sym__finished] = STATE(2120), + [sym_livewire] = STATE(374), + [sym__persist] = STATE(2114), + [sym__teleport] = STATE(2114), + [sym__volt] = STATE(2114), + [sym_alpine_js] = STATE(374), + [aux_sym__directive_body] = STATE(374), + [sym_text] = STATE(374), + [sym__text] = STATE(1183), + [aux_sym_php_only_repeat1] = STATE(1183), + [sym_comment] = ACTIONS(6051), + [aux_sym_keyword_token1] = ACTIONS(6054), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6057), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6060), + [anon_sym_ATphp] = ACTIONS(6063), + [aux_sym_attribute_token1] = ACTIONS(6066), + [aux_sym__inline_directive_token1] = ACTIONS(6069), + [anon_sym_ATfragment] = ACTIONS(6072), + [anon_sym_ATsection] = ACTIONS(6075), + [anon_sym_ATonce] = ACTIONS(6078), + [anon_sym_ATverbatim] = ACTIONS(6081), + [anon_sym_ATpush] = ACTIONS(6084), + [anon_sym_ATpushOnce] = ACTIONS(6087), + [anon_sym_ATpushIf] = ACTIONS(6090), + [anon_sym_ATprepend] = ACTIONS(6093), + [anon_sym_ATendprepend] = ACTIONS(5134), + [anon_sym_ATprependOnce] = ACTIONS(6096), + [anon_sym_ATif] = ACTIONS(6099), + [anon_sym_ATunless] = ACTIONS(6102), + [anon_sym_ATisset] = ACTIONS(6105), + [anon_sym_ATempty] = ACTIONS(6108), + [anon_sym_ATauth] = ACTIONS(6111), + [anon_sym_ATguest] = ACTIONS(6114), + [anon_sym_ATproduction] = ACTIONS(6117), + [anon_sym_ATenv] = ACTIONS(6120), + [anon_sym_AThasSection] = ACTIONS(6123), + [anon_sym_ATsectionMissing] = ACTIONS(6126), + [anon_sym_ATerror] = ACTIONS(6129), + [anon_sym_ATcan] = ACTIONS(6132), + [anon_sym_ATcannot] = ACTIONS(6135), + [anon_sym_ATcanany] = ACTIONS(6138), + [anon_sym_ATfeature] = ACTIONS(6141), + [aux_sym__custom_token1] = ACTIONS(6144), + [aux_sym__custom_token2] = ACTIONS(6147), + [anon_sym_ATswitch] = ACTIONS(6150), + [aux_sym_loop_operator_token1] = ACTIONS(6153), + [anon_sym_ATfor] = ACTIONS(6156), + [anon_sym_ATforeach] = ACTIONS(6159), + [anon_sym_ATforelse] = ACTIONS(6162), + [anon_sym_ATwhile] = ACTIONS(6165), + [anon_sym_ATsetup] = ACTIONS(6168), + [anon_sym_ATtask] = ACTIONS(6171), + [anon_sym_ATstory] = ACTIONS(6174), + [anon_sym_ATbefore] = ACTIONS(6177), + [anon_sym_ATafter] = ACTIONS(6180), + [anon_sym_ATsuccess] = ACTIONS(6183), + [anon_sym_ATfinished] = ACTIONS(6186), + [anon_sym_ATpersist] = ACTIONS(6189), + [anon_sym_ATteleport] = ACTIONS(6192), + [anon_sym_ATvolt] = ACTIONS(6195), + [aux_sym_alpine_js_token1] = ACTIONS(6198), + [aux_sym__text_token1] = ACTIONS(6201), + [aux_sym__text_token2] = ACTIONS(6201), + [aux_sym__text_token3] = ACTIONS(6204), }, [375] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5855), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(373), + [sym_keyword] = STATE(373), + [sym_php_statement] = STATE(373), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(373), + [sym__inline_directive] = STATE(373), + [sym__nested_directive] = STATE(373), + [sym_fragment] = STATE(373), + [sym_section] = STATE(373), + [sym_inlineSection] = STATE(373), + [sym_once] = STATE(373), + [sym_verbatim] = STATE(373), + [sym_stack] = STATE(373), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(373), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(373), + [sym_loop] = STATE(373), + [sym_loop_operator] = STATE(373), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(373), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(373), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(373), + [sym_text] = STATE(373), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(373), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(6207), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6209), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [376] = { + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6209), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), + }, + [377] = { [sym__definition] = STATE(184), [sym_keyword] = STATE(184), [sym_php_statement] = STATE(184), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(184), [sym__inline_directive] = STATE(184), [sym__nested_directive] = STATE(184), @@ -71287,1197 +72633,1217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(184), [sym_verbatim] = STATE(184), [sym_stack] = STATE(184), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(184), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(184), [sym_loop] = STATE(184), [sym_loop_operator] = STATE(184), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(184), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(184), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(184), + [aux_sym__directive_body] = STATE(184), [sym_text] = STATE(184), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(184), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(5857), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5859), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), - }, - [377] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5859), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(6211), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6213), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [378] = { - [sym__definition] = STATE(375), - [sym_keyword] = STATE(375), - [sym_php_statement] = STATE(375), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(375), - [sym__inline_directive] = STATE(375), - [sym__nested_directive] = STATE(375), - [sym_fragment] = STATE(375), - [sym_section] = STATE(375), - [sym_inlineSection] = STATE(375), - [sym_once] = STATE(375), - [sym_verbatim] = STATE(375), - [sym_stack] = STATE(375), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(375), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(375), - [sym_loop] = STATE(375), - [sym_loop_operator] = STATE(375), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(375), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(375), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(375), - [sym_text] = STATE(375), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(5861), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5863), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6215), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [379] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5865), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(385), + [sym_keyword] = STATE(385), + [sym_php_statement] = STATE(385), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(385), + [sym__inline_directive] = STATE(385), + [sym__nested_directive] = STATE(385), + [sym_fragment] = STATE(385), + [sym_section] = STATE(385), + [sym_inlineSection] = STATE(385), + [sym_once] = STATE(385), + [sym_verbatim] = STATE(385), + [sym_stack] = STATE(385), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(385), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(385), + [sym_loop] = STATE(385), + [sym_loop_operator] = STATE(385), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(385), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(385), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(385), + [aux_sym__directive_body] = STATE(385), + [sym_text] = STATE(385), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(6217), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(6219), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [380] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(5867), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(376), + [sym_keyword] = STATE(376), + [sym_php_statement] = STATE(376), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(376), + [sym__inline_directive] = STATE(376), + [sym__nested_directive] = STATE(376), + [sym_fragment] = STATE(376), + [sym_section] = STATE(376), + [sym_inlineSection] = STATE(376), + [sym_once] = STATE(376), + [sym_verbatim] = STATE(376), + [sym_stack] = STATE(376), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(376), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(376), + [sym_loop] = STATE(376), + [sym_loop_operator] = STATE(376), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(376), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(376), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(376), + [sym_text] = STATE(376), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(376), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(6221), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6223), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [381] = { - [sym__definition] = STATE(377), - [sym_keyword] = STATE(377), - [sym_php_statement] = STATE(377), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(377), - [sym__inline_directive] = STATE(377), - [sym__nested_directive] = STATE(377), - [sym_fragment] = STATE(377), - [sym_section] = STATE(377), - [sym_inlineSection] = STATE(377), - [sym_once] = STATE(377), - [sym_verbatim] = STATE(377), - [sym_stack] = STATE(377), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(377), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(377), - [sym_loop] = STATE(377), - [sym_loop_operator] = STATE(377), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(377), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(377), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(377), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(377), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(5869), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5871), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(378), + [sym_keyword] = STATE(378), + [sym_php_statement] = STATE(378), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(378), + [sym__inline_directive] = STATE(378), + [sym__nested_directive] = STATE(378), + [sym_fragment] = STATE(378), + [sym_section] = STATE(378), + [sym_inlineSection] = STATE(378), + [sym_once] = STATE(378), + [sym_verbatim] = STATE(378), + [sym_stack] = STATE(378), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(378), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(378), + [sym_loop] = STATE(378), + [sym_loop_operator] = STATE(378), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(378), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(378), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(378), + [aux_sym__directive_body] = STATE(378), + [sym_text] = STATE(378), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(6225), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6227), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [382] = { - [sym__definition] = STATE(379), - [sym_keyword] = STATE(379), - [sym_php_statement] = STATE(379), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(379), - [sym__inline_directive] = STATE(379), - [sym__nested_directive] = STATE(379), - [sym_fragment] = STATE(379), - [sym_section] = STATE(379), - [sym_inlineSection] = STATE(379), - [sym_once] = STATE(379), - [sym_verbatim] = STATE(379), - [sym_stack] = STATE(379), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(379), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(379), - [sym_loop] = STATE(379), - [sym_loop_operator] = STATE(379), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(379), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(379), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(379), - [sym_text] = STATE(379), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(5873), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5875), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(6229), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [383] = { - [sym__definition] = STATE(409), - [sym_keyword] = STATE(409), - [sym_php_statement] = STATE(409), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(409), - [sym__inline_directive] = STATE(409), - [sym__nested_directive] = STATE(409), - [sym_fragment] = STATE(409), - [sym_section] = STATE(409), - [sym_inlineSection] = STATE(409), - [sym_once] = STATE(409), - [sym_verbatim] = STATE(409), - [sym_stack] = STATE(409), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(409), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(409), - [sym_loop] = STATE(409), - [sym_loop_operator] = STATE(409), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(409), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(409), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(409), - [sym_text] = STATE(409), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(5877), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5879), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(6231), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [384] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(5881), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(6233), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [385] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(5883), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(6235), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [386] = { + [sym__definition] = STATE(383), + [sym_keyword] = STATE(383), + [sym_php_statement] = STATE(383), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(383), + [sym__inline_directive] = STATE(383), + [sym__nested_directive] = STATE(383), + [sym_fragment] = STATE(383), + [sym_section] = STATE(383), + [sym_inlineSection] = STATE(383), + [sym_once] = STATE(383), + [sym_verbatim] = STATE(383), + [sym_stack] = STATE(383), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(383), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(383), + [sym_loop] = STATE(383), + [sym_loop_operator] = STATE(383), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(383), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(383), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(383), + [aux_sym__directive_body] = STATE(383), + [sym_text] = STATE(383), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(6237), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(6239), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), + }, + [387] = { [sym__definition] = STATE(384), [sym_keyword] = STATE(384), [sym_php_statement] = STATE(384), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), [sym_attribute] = STATE(384), [sym__inline_directive] = STATE(384), [sym__nested_directive] = STATE(384), @@ -72487,477 +73853,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(384), [sym_verbatim] = STATE(384), [sym_stack] = STATE(384), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), [sym_conditional] = STATE(384), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), [sym_switch] = STATE(384), [sym_loop] = STATE(384), [sym_loop_operator] = STATE(384), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), [sym_envoy] = STATE(384), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), [sym_livewire] = STATE(384), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(384), [aux_sym__directive_body] = STATE(384), [sym_text] = STATE(384), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(5885), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(5887), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), - }, - [387] = { - [sym__definition] = STATE(385), - [sym_keyword] = STATE(385), - [sym_php_statement] = STATE(385), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(385), - [sym__inline_directive] = STATE(385), - [sym__nested_directive] = STATE(385), - [sym_fragment] = STATE(385), - [sym_section] = STATE(385), - [sym_inlineSection] = STATE(385), - [sym_once] = STATE(385), - [sym_verbatim] = STATE(385), - [sym_stack] = STATE(385), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(385), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(385), - [sym_loop] = STATE(385), - [sym_loop_operator] = STATE(385), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(385), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(385), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(385), - [sym_text] = STATE(385), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(5889), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(5891), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(6241), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(6243), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [388] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5893), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6245), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [389] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5895), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6247), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [390] = { [sym__definition] = STATE(388), [sym_keyword] = STATE(388), [sym_php_statement] = STATE(388), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(388), [sym__inline_directive] = STATE(388), [sym__nested_directive] = STATE(388), @@ -72967,237 +74219,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(388), [sym_verbatim] = STATE(388), [sym_stack] = STATE(388), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(388), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(388), [sym_loop] = STATE(388), [sym_loop_operator] = STATE(388), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(388), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(388), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(388), [sym_text] = STATE(388), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(388), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(5897), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5899), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(6249), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6251), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [391] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5899), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6251), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [392] = { [sym__definition] = STATE(389), [sym_keyword] = STATE(389), [sym_php_statement] = STATE(389), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(389), [sym__inline_directive] = STATE(389), [sym__nested_directive] = STATE(389), @@ -73207,237 +74463,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(389), [sym_verbatim] = STATE(389), [sym_stack] = STATE(389), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(389), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(389), [sym_loop] = STATE(389), [sym_loop_operator] = STATE(389), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(389), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(389), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(389), [aux_sym__directive_body] = STATE(389), [sym_text] = STATE(389), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(5901), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5903), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(6253), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6255), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [393] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5905), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6257), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [394] = { [sym__definition] = STATE(391), [sym_keyword] = STATE(391), [sym_php_statement] = STATE(391), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(391), [sym__inline_directive] = STATE(391), [sym__nested_directive] = STATE(391), @@ -73447,117 +74707,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(391), [sym_verbatim] = STATE(391), [sym_stack] = STATE(391), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(391), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(391), [sym_loop] = STATE(391), [sym_loop_operator] = STATE(391), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(391), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(391), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(391), [sym_text] = STATE(391), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(391), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(5907), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5909), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(6259), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6261), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [395] = { [sym__definition] = STATE(393), [sym_keyword] = STATE(393), [sym_php_statement] = STATE(393), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(393), [sym__inline_directive] = STATE(393), [sym__nested_directive] = STATE(393), @@ -73567,477 +74829,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(393), [sym_verbatim] = STATE(393), [sym_stack] = STATE(393), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(393), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(393), [sym_loop] = STATE(393), [sym_loop_operator] = STATE(393), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(393), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(393), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(393), [aux_sym__directive_body] = STATE(393), [sym_text] = STATE(393), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(5911), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5913), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(6263), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6265), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [396] = { - [sym__definition] = STATE(438), - [sym_keyword] = STATE(438), - [sym_php_statement] = STATE(438), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(438), - [sym__inline_directive] = STATE(438), - [sym__nested_directive] = STATE(438), - [sym_fragment] = STATE(438), - [sym_section] = STATE(438), - [sym_inlineSection] = STATE(438), - [sym_once] = STATE(438), - [sym_verbatim] = STATE(438), - [sym_stack] = STATE(438), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(438), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(438), - [sym_loop] = STATE(438), - [sym_loop_operator] = STATE(438), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(438), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(438), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(438), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(438), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(5915), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5917), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(422), + [sym_keyword] = STATE(422), + [sym_php_statement] = STATE(422), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(422), + [sym__inline_directive] = STATE(422), + [sym__nested_directive] = STATE(422), + [sym_fragment] = STATE(422), + [sym_section] = STATE(422), + [sym_inlineSection] = STATE(422), + [sym_once] = STATE(422), + [sym_verbatim] = STATE(422), + [sym_stack] = STATE(422), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(422), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(422), + [sym_loop] = STATE(422), + [sym_loop_operator] = STATE(422), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(422), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(422), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(422), + [aux_sym__directive_body] = STATE(422), + [sym_text] = STATE(422), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(6267), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6269), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [397] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(5919), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(6271), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [398] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(5921), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(6273), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [399] = { [sym__definition] = STATE(397), [sym_keyword] = STATE(397), [sym_php_statement] = STATE(397), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), [sym_attribute] = STATE(397), [sym__inline_directive] = STATE(397), [sym__nested_directive] = STATE(397), @@ -74047,117 +75317,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(397), [sym_verbatim] = STATE(397), [sym_stack] = STATE(397), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), [sym_conditional] = STATE(397), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), [sym_switch] = STATE(397), [sym_loop] = STATE(397), [sym_loop_operator] = STATE(397), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), [sym_envoy] = STATE(397), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), [sym_livewire] = STATE(397), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(397), [aux_sym__directive_body] = STATE(397), [sym_text] = STATE(397), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(5923), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(5925), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(6275), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(6277), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [400] = { [sym__definition] = STATE(398), [sym_keyword] = STATE(398), [sym_php_statement] = STATE(398), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), [sym_attribute] = STATE(398), [sym__inline_directive] = STATE(398), [sym__nested_directive] = STATE(398), @@ -74167,357 +75439,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(398), [sym_verbatim] = STATE(398), [sym_stack] = STATE(398), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), [sym_conditional] = STATE(398), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), [sym_switch] = STATE(398), [sym_loop] = STATE(398), [sym_loop_operator] = STATE(398), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), [sym_envoy] = STATE(398), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), [sym_livewire] = STATE(398), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(398), [aux_sym__directive_body] = STATE(398), [sym_text] = STATE(398), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(5927), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(5929), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(6279), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(6281), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [401] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5931), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6283), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [402] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5933), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6285), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [403] = { [sym__definition] = STATE(401), [sym_keyword] = STATE(401), [sym_php_statement] = STATE(401), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(401), [sym__inline_directive] = STATE(401), [sym__nested_directive] = STATE(401), @@ -74527,237 +75805,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(401), [sym_verbatim] = STATE(401), [sym_stack] = STATE(401), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(401), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(401), [sym_loop] = STATE(401), [sym_loop_operator] = STATE(401), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(401), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(401), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(401), [sym_text] = STATE(401), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(401), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(5935), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5937), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(6287), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6289), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [404] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5937), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6289), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [405] = { [sym__definition] = STATE(402), [sym_keyword] = STATE(402), [sym_php_statement] = STATE(402), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(402), [sym__inline_directive] = STATE(402), [sym__nested_directive] = STATE(402), @@ -74767,237 +76049,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(402), [sym_verbatim] = STATE(402), [sym_stack] = STATE(402), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(402), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(402), [sym_loop] = STATE(402), [sym_loop_operator] = STATE(402), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(402), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(402), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(402), [aux_sym__directive_body] = STATE(402), [sym_text] = STATE(402), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(5939), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5941), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(6291), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6293), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [406] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5943), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6295), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [407] = { [sym__definition] = STATE(404), [sym_keyword] = STATE(404), [sym_php_statement] = STATE(404), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(404), [sym__inline_directive] = STATE(404), [sym__nested_directive] = STATE(404), @@ -75007,117 +76293,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(404), [sym_verbatim] = STATE(404), [sym_stack] = STATE(404), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(404), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(404), [sym_loop] = STATE(404), [sym_loop_operator] = STATE(404), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(404), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(404), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(404), [sym_text] = STATE(404), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(404), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(5945), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5947), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(6297), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6299), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [408] = { [sym__definition] = STATE(406), [sym_keyword] = STATE(406), [sym_php_statement] = STATE(406), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(406), [sym__inline_directive] = STATE(406), [sym__nested_directive] = STATE(406), @@ -75127,477 +76415,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(406), [sym_verbatim] = STATE(406), [sym_stack] = STATE(406), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(406), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(406), [sym_loop] = STATE(406), [sym_loop_operator] = STATE(406), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(406), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(406), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(406), [aux_sym__directive_body] = STATE(406), [sym_text] = STATE(406), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(5949), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5951), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(6301), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6303), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [409] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5953), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(448), + [sym_keyword] = STATE(448), + [sym_php_statement] = STATE(448), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(448), + [sym__inline_directive] = STATE(448), + [sym__nested_directive] = STATE(448), + [sym_fragment] = STATE(448), + [sym_section] = STATE(448), + [sym_inlineSection] = STATE(448), + [sym_once] = STATE(448), + [sym_verbatim] = STATE(448), + [sym_stack] = STATE(448), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(448), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(448), + [sym_loop] = STATE(448), + [sym_loop_operator] = STATE(448), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(448), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(448), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(448), + [sym_text] = STATE(448), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(448), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(6305), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6307), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [410] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(5955), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(6309), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [411] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(5957), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(6311), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [412] = { [sym__definition] = STATE(410), [sym_keyword] = STATE(410), [sym_php_statement] = STATE(410), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), [sym_attribute] = STATE(410), [sym__inline_directive] = STATE(410), [sym__nested_directive] = STATE(410), @@ -75607,117 +76903,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(410), [sym_verbatim] = STATE(410), [sym_stack] = STATE(410), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), [sym_conditional] = STATE(410), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), [sym_switch] = STATE(410), [sym_loop] = STATE(410), [sym_loop_operator] = STATE(410), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), [sym_envoy] = STATE(410), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), [sym_livewire] = STATE(410), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(410), [aux_sym__directive_body] = STATE(410), [sym_text] = STATE(410), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(5959), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(5961), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(6313), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(6315), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [413] = { [sym__definition] = STATE(411), [sym_keyword] = STATE(411), [sym_php_statement] = STATE(411), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), [sym_attribute] = STATE(411), [sym__inline_directive] = STATE(411), [sym__nested_directive] = STATE(411), @@ -75727,357 +77025,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(411), [sym_verbatim] = STATE(411), [sym_stack] = STATE(411), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), [sym_conditional] = STATE(411), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), [sym_switch] = STATE(411), [sym_loop] = STATE(411), [sym_loop_operator] = STATE(411), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), [sym_envoy] = STATE(411), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), [sym_livewire] = STATE(411), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(411), [aux_sym__directive_body] = STATE(411), [sym_text] = STATE(411), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(5963), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(5965), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(6317), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(6319), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [414] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5967), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6321), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [415] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5969), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6323), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [416] = { [sym__definition] = STATE(414), [sym_keyword] = STATE(414), [sym_php_statement] = STATE(414), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(414), [sym__inline_directive] = STATE(414), [sym__nested_directive] = STATE(414), @@ -76087,237 +77391,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(414), [sym_verbatim] = STATE(414), [sym_stack] = STATE(414), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(414), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(414), [sym_loop] = STATE(414), [sym_loop_operator] = STATE(414), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(414), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(414), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(414), [sym_text] = STATE(414), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(414), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(5971), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5973), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(6325), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6327), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [417] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5973), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6327), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [418] = { [sym__definition] = STATE(415), [sym_keyword] = STATE(415), [sym_php_statement] = STATE(415), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(415), [sym__inline_directive] = STATE(415), [sym__nested_directive] = STATE(415), @@ -76327,237 +77635,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(415), [sym_verbatim] = STATE(415), [sym_stack] = STATE(415), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(415), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(415), [sym_loop] = STATE(415), [sym_loop_operator] = STATE(415), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(415), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(415), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(415), [aux_sym__directive_body] = STATE(415), [sym_text] = STATE(415), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(5975), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5977), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(6329), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6331), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [419] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5979), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6333), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [420] = { [sym__definition] = STATE(417), [sym_keyword] = STATE(417), [sym_php_statement] = STATE(417), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(417), [sym__inline_directive] = STATE(417), [sym__nested_directive] = STATE(417), @@ -76567,117 +77879,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(417), [sym_verbatim] = STATE(417), [sym_stack] = STATE(417), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(417), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(417), [sym_loop] = STATE(417), [sym_loop_operator] = STATE(417), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(417), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(417), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(417), [sym_text] = STATE(417), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(417), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(5981), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(5983), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(6335), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6337), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [421] = { [sym__definition] = STATE(419), [sym_keyword] = STATE(419), [sym_php_statement] = STATE(419), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(419), [sym__inline_directive] = STATE(419), [sym__nested_directive] = STATE(419), @@ -76687,1317 +78001,973 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(419), [sym_verbatim] = STATE(419), [sym_stack] = STATE(419), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(419), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(419), [sym_loop] = STATE(419), [sym_loop_operator] = STATE(419), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(419), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(419), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(419), [aux_sym__directive_body] = STATE(419), [sym_text] = STATE(419), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(5985), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(5987), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(6339), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6341), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [422] = { - [sym__definition] = STATE(422), - [sym_keyword] = STATE(422), - [sym_php_statement] = STATE(422), - [sym__escaped] = STATE(2110), - [sym__unescaped] = STATE(2110), - [sym__raw] = STATE(2110), - [sym__inline_raw] = STATE(2110), - [sym__multi_line_raw] = STATE(2110), - [sym_attribute] = STATE(422), - [sym__inline_directive] = STATE(422), - [sym__nested_directive] = STATE(422), - [sym_fragment] = STATE(422), - [sym_section] = STATE(422), - [sym_inlineSection] = STATE(422), - [sym_once] = STATE(422), - [sym_verbatim] = STATE(422), - [sym_stack] = STATE(422), - [sym__push] = STATE(2109), - [sym__pushOnce] = STATE(2109), - [sym__pushIf] = STATE(2109), - [sym__prepend] = STATE(2109), - [sym__prependOnce] = STATE(2109), - [sym_conditional] = STATE(422), - [sym__if] = STATE(2108), - [sym__unless] = STATE(2108), - [sym__isset] = STATE(2108), - [sym__empty] = STATE(2108), - [sym__auth] = STATE(2108), - [sym__guest] = STATE(2108), - [sym__production] = STATE(2108), - [sym__env] = STATE(2108), - [sym__hasSection] = STATE(2108), - [sym__sectionMissing] = STATE(2108), - [sym__error] = STATE(2108), - [sym_authorization] = STATE(2108), - [sym__can] = STATE(2107), - [sym__cannot] = STATE(2107), - [sym__canany] = STATE(2107), - [sym__feature] = STATE(2108), - [sym__custom] = STATE(2108), - [sym_switch] = STATE(422), - [sym_loop] = STATE(422), - [sym_loop_operator] = STATE(422), - [sym__for] = STATE(2106), - [sym__foreach] = STATE(2106), - [sym__forelse] = STATE(2106), - [sym__while] = STATE(2106), - [sym_envoy] = STATE(422), - [sym__setup] = STATE(2110), - [sym__task] = STATE(2105), - [sym__story] = STATE(2105), - [sym__hooks] = STATE(2110), - [sym__before] = STATE(2110), - [sym__after] = STATE(2110), - [sym__envoy_error] = STATE(2110), - [sym__success] = STATE(2110), - [sym__finished] = STATE(2110), - [sym_livewire] = STATE(422), - [sym__persist] = STATE(2104), - [sym__teleport] = STATE(2104), - [sym__volt] = STATE(2104), - [aux_sym__directive_body] = STATE(422), - [sym_text] = STATE(422), - [sym__text] = STATE(1169), - [aux_sym_php_only_repeat1] = STATE(1169), - [sym_comment] = ACTIONS(5989), - [aux_sym_keyword_token1] = ACTIONS(5992), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5995), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5998), - [anon_sym_ATphp] = ACTIONS(6001), - [aux_sym_attribute_token1] = ACTIONS(6004), - [aux_sym__inline_directive_token1] = ACTIONS(6007), - [anon_sym_ATfragment] = ACTIONS(6010), - [anon_sym_ATsection] = ACTIONS(6013), - [anon_sym_ATonce] = ACTIONS(6016), - [anon_sym_ATverbatim] = ACTIONS(6019), - [anon_sym_ATpush] = ACTIONS(6022), - [anon_sym_ATpushOnce] = ACTIONS(6025), - [anon_sym_ATpushIf] = ACTIONS(6028), - [anon_sym_ATprepend] = ACTIONS(6031), - [anon_sym_ATendprepend] = ACTIONS(5035), - [anon_sym_ATprependOnce] = ACTIONS(6034), - [anon_sym_ATif] = ACTIONS(6037), - [anon_sym_ATunless] = ACTIONS(6040), - [anon_sym_ATisset] = ACTIONS(6043), - [anon_sym_ATempty] = ACTIONS(6046), - [anon_sym_ATauth] = ACTIONS(6049), - [anon_sym_ATguest] = ACTIONS(6052), - [anon_sym_ATproduction] = ACTIONS(6055), - [anon_sym_ATenv] = ACTIONS(6058), - [anon_sym_AThasSection] = ACTIONS(6061), - [anon_sym_ATsectionMissing] = ACTIONS(6064), - [anon_sym_ATerror] = ACTIONS(6067), - [anon_sym_ATcan] = ACTIONS(6070), - [anon_sym_ATcannot] = ACTIONS(6073), - [anon_sym_ATcanany] = ACTIONS(6076), - [anon_sym_ATfeature] = ACTIONS(6079), - [aux_sym__custom_token1] = ACTIONS(6082), - [aux_sym__custom_token2] = ACTIONS(6085), - [anon_sym_ATswitch] = ACTIONS(6088), - [aux_sym_loop_operator_token1] = ACTIONS(6091), - [anon_sym_ATfor] = ACTIONS(6094), - [anon_sym_ATforeach] = ACTIONS(6097), - [anon_sym_ATforelse] = ACTIONS(6100), - [anon_sym_ATwhile] = ACTIONS(6103), - [anon_sym_ATsetup] = ACTIONS(6106), - [anon_sym_ATtask] = ACTIONS(6109), - [anon_sym_ATstory] = ACTIONS(6112), - [anon_sym_ATbefore] = ACTIONS(6115), - [anon_sym_ATafter] = ACTIONS(6118), - [anon_sym_ATsuccess] = ACTIONS(6121), - [anon_sym_ATfinished] = ACTIONS(6124), - [anon_sym_ATpersist] = ACTIONS(6127), - [anon_sym_ATteleport] = ACTIONS(6130), - [anon_sym_ATvolt] = ACTIONS(6133), - [aux_sym__text_token1] = ACTIONS(6136), - [aux_sym__text_token2] = ACTIONS(6136), - [aux_sym__text_token3] = ACTIONS(6139), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6343), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [423] = { - [sym__definition] = STATE(640), - [sym_keyword] = STATE(640), - [sym_php_statement] = STATE(640), - [sym__escaped] = STATE(1938), - [sym__unescaped] = STATE(1938), - [sym__raw] = STATE(1938), - [sym__inline_raw] = STATE(1938), - [sym__multi_line_raw] = STATE(1938), - [sym_attribute] = STATE(640), - [sym__inline_directive] = STATE(640), - [sym__nested_directive] = STATE(640), - [sym_fragment] = STATE(640), - [sym_section] = STATE(640), - [sym_inlineSection] = STATE(640), - [sym_once] = STATE(640), - [sym_verbatim] = STATE(640), - [sym_stack] = STATE(640), - [sym__push] = STATE(1939), - [sym__pushOnce] = STATE(1939), - [sym__pushIf] = STATE(1939), - [sym__prepend] = STATE(1939), - [sym__prependOnce] = STATE(1939), - [sym_conditional] = STATE(640), - [sym__if] = STATE(1940), - [sym__unless] = STATE(1940), - [sym__isset] = STATE(1940), - [sym__empty] = STATE(1940), - [sym__auth] = STATE(1940), - [sym__guest] = STATE(1940), - [sym__production] = STATE(1940), - [sym__env] = STATE(1940), - [sym__hasSection] = STATE(1940), - [sym__sectionMissing] = STATE(1940), - [sym__error] = STATE(1940), - [sym_authorization] = STATE(1940), - [sym__can] = STATE(2000), - [sym__cannot] = STATE(2000), - [sym__canany] = STATE(2000), - [sym__feature] = STATE(1940), - [sym__custom] = STATE(1940), - [sym_switch] = STATE(640), - [sym_loop] = STATE(640), - [sym_loop_operator] = STATE(640), - [sym__for] = STATE(2077), - [sym__foreach] = STATE(2077), - [sym__forelse] = STATE(2077), - [sym__while] = STATE(2077), - [sym_envoy] = STATE(640), - [sym__setup] = STATE(1938), - [sym__task] = STATE(2085), - [sym__story] = STATE(2085), - [sym__hooks] = STATE(1938), - [sym__before] = STATE(1938), - [sym__after] = STATE(1938), - [sym__envoy_error] = STATE(1938), - [sym__success] = STATE(1938), - [sym__finished] = STATE(1938), - [sym_livewire] = STATE(640), - [sym__persist] = STATE(3158), - [sym__teleport] = STATE(3158), - [sym__volt] = STATE(3158), - [sym_text] = STATE(640), - [sym__text] = STATE(752), - [aux_sym_blade_repeat1] = STATE(640), - [aux_sym_php_only_repeat1] = STATE(752), - [ts_builtin_sym_end] = ACTIONS(6142), - [sym_comment] = ACTIONS(6144), - [aux_sym_keyword_token1] = ACTIONS(7), - [anon_sym_LBRACE_LBRACE] = ACTIONS(9), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(11), - [anon_sym_ATphp] = ACTIONS(13), - [aux_sym_attribute_token1] = ACTIONS(15), - [aux_sym__inline_directive_token1] = ACTIONS(17), - [anon_sym_ATfragment] = ACTIONS(19), - [anon_sym_ATsection] = ACTIONS(21), - [anon_sym_ATonce] = ACTIONS(23), - [anon_sym_ATverbatim] = ACTIONS(25), - [anon_sym_ATpush] = ACTIONS(27), - [anon_sym_ATpushOnce] = ACTIONS(29), - [anon_sym_ATpushIf] = ACTIONS(31), - [anon_sym_ATprepend] = ACTIONS(33), - [anon_sym_ATprependOnce] = ACTIONS(35), - [anon_sym_ATif] = ACTIONS(37), - [anon_sym_ATunless] = ACTIONS(39), - [anon_sym_ATisset] = ACTIONS(41), - [anon_sym_ATempty] = ACTIONS(43), - [anon_sym_ATauth] = ACTIONS(45), - [anon_sym_ATguest] = ACTIONS(47), - [anon_sym_ATproduction] = ACTIONS(49), - [anon_sym_ATenv] = ACTIONS(51), - [anon_sym_AThasSection] = ACTIONS(53), - [anon_sym_ATsectionMissing] = ACTIONS(55), - [anon_sym_ATerror] = ACTIONS(57), - [anon_sym_ATcan] = ACTIONS(59), - [anon_sym_ATcannot] = ACTIONS(61), - [anon_sym_ATcanany] = ACTIONS(63), - [anon_sym_ATfeature] = ACTIONS(65), - [aux_sym__custom_token1] = ACTIONS(67), - [aux_sym__custom_token2] = ACTIONS(69), - [anon_sym_ATswitch] = ACTIONS(71), - [aux_sym_loop_operator_token1] = ACTIONS(73), - [anon_sym_ATfor] = ACTIONS(75), - [anon_sym_ATforeach] = ACTIONS(77), - [anon_sym_ATforelse] = ACTIONS(79), - [anon_sym_ATwhile] = ACTIONS(81), - [anon_sym_ATsetup] = ACTIONS(83), - [anon_sym_ATtask] = ACTIONS(85), - [anon_sym_ATstory] = ACTIONS(87), - [anon_sym_ATbefore] = ACTIONS(89), - [anon_sym_ATafter] = ACTIONS(91), - [anon_sym_ATsuccess] = ACTIONS(93), - [anon_sym_ATfinished] = ACTIONS(95), - [anon_sym_ATpersist] = ACTIONS(97), - [anon_sym_ATteleport] = ACTIONS(99), - [anon_sym_ATvolt] = ACTIONS(101), - [aux_sym__text_token1] = ACTIONS(103), - [aux_sym__text_token2] = ACTIONS(103), - [aux_sym__text_token3] = ACTIONS(105), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(6345), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [424] = { - [sym__definition] = STATE(454), - [sym_keyword] = STATE(454), - [sym_php_statement] = STATE(454), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(454), - [sym__inline_directive] = STATE(454), - [sym__nested_directive] = STATE(454), - [sym_fragment] = STATE(454), - [sym_section] = STATE(454), - [sym_inlineSection] = STATE(454), - [sym_once] = STATE(454), - [sym_verbatim] = STATE(454), - [sym_stack] = STATE(454), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(454), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(454), - [sym_loop] = STATE(454), - [sym_loop_operator] = STATE(454), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(454), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(454), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(454), - [sym_text] = STATE(454), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(6146), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(6148), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(6347), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [425] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(6150), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(423), + [sym_keyword] = STATE(423), + [sym_php_statement] = STATE(423), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(423), + [sym__inline_directive] = STATE(423), + [sym__nested_directive] = STATE(423), + [sym_fragment] = STATE(423), + [sym_section] = STATE(423), + [sym_inlineSection] = STATE(423), + [sym_once] = STATE(423), + [sym_verbatim] = STATE(423), + [sym_stack] = STATE(423), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(423), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(423), + [sym_loop] = STATE(423), + [sym_loop_operator] = STATE(423), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(423), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(423), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(423), + [aux_sym__directive_body] = STATE(423), + [sym_text] = STATE(423), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(6349), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(6351), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [426] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(6152), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(424), + [sym_keyword] = STATE(424), + [sym_php_statement] = STATE(424), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(424), + [sym__inline_directive] = STATE(424), + [sym__nested_directive] = STATE(424), + [sym_fragment] = STATE(424), + [sym_section] = STATE(424), + [sym_inlineSection] = STATE(424), + [sym_once] = STATE(424), + [sym_verbatim] = STATE(424), + [sym_stack] = STATE(424), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(424), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(424), + [sym_loop] = STATE(424), + [sym_loop_operator] = STATE(424), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(424), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(424), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(424), + [aux_sym__directive_body] = STATE(424), + [sym_text] = STATE(424), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(6353), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(6355), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [427] = { - [sym__definition] = STATE(425), - [sym_keyword] = STATE(425), - [sym_php_statement] = STATE(425), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(425), - [sym__inline_directive] = STATE(425), - [sym__nested_directive] = STATE(425), - [sym_fragment] = STATE(425), - [sym_section] = STATE(425), - [sym_inlineSection] = STATE(425), - [sym_once] = STATE(425), - [sym_verbatim] = STATE(425), - [sym_stack] = STATE(425), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(425), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(425), - [sym_loop] = STATE(425), - [sym_loop_operator] = STATE(425), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(425), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(425), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(425), - [sym_text] = STATE(425), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(6154), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(6156), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6357), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [428] = { - [sym__definition] = STATE(426), - [sym_keyword] = STATE(426), - [sym_php_statement] = STATE(426), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(426), - [sym__inline_directive] = STATE(426), - [sym__nested_directive] = STATE(426), - [sym_fragment] = STATE(426), - [sym_section] = STATE(426), - [sym_inlineSection] = STATE(426), - [sym_once] = STATE(426), - [sym_verbatim] = STATE(426), - [sym_stack] = STATE(426), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(426), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(426), - [sym_loop] = STATE(426), - [sym_loop_operator] = STATE(426), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(426), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(426), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(426), - [sym_text] = STATE(426), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(6158), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(6160), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(622), + [sym_keyword] = STATE(622), + [sym_php_statement] = STATE(622), + [sym__escaped] = STATE(2284), + [sym__unescaped] = STATE(2284), + [sym__raw] = STATE(2284), + [sym__inline_raw] = STATE(2284), + [sym__multi_line_raw] = STATE(2284), + [sym_attribute] = STATE(622), + [sym__inline_directive] = STATE(622), + [sym__nested_directive] = STATE(622), + [sym_fragment] = STATE(622), + [sym_section] = STATE(622), + [sym_inlineSection] = STATE(622), + [sym_once] = STATE(622), + [sym_verbatim] = STATE(622), + [sym_stack] = STATE(622), + [sym__push] = STATE(2285), + [sym__pushOnce] = STATE(2285), + [sym__pushIf] = STATE(2285), + [sym__prepend] = STATE(2285), + [sym__prependOnce] = STATE(2285), + [sym_conditional] = STATE(622), + [sym__if] = STATE(2286), + [sym__unless] = STATE(2286), + [sym__isset] = STATE(2286), + [sym__empty] = STATE(2286), + [sym__auth] = STATE(2286), + [sym__guest] = STATE(2286), + [sym__production] = STATE(2286), + [sym__env] = STATE(2286), + [sym__hasSection] = STATE(2286), + [sym__sectionMissing] = STATE(2286), + [sym__error] = STATE(2286), + [sym_authorization] = STATE(2286), + [sym__can] = STATE(2287), + [sym__cannot] = STATE(2287), + [sym__canany] = STATE(2287), + [sym__feature] = STATE(2286), + [sym__custom] = STATE(2286), + [sym_switch] = STATE(622), + [sym_loop] = STATE(622), + [sym_loop_operator] = STATE(622), + [sym__for] = STATE(2288), + [sym__foreach] = STATE(2288), + [sym__forelse] = STATE(2288), + [sym__while] = STATE(2288), + [sym_envoy] = STATE(622), + [sym__setup] = STATE(2284), + [sym__task] = STATE(2289), + [sym__story] = STATE(2289), + [sym__hooks] = STATE(2284), + [sym__before] = STATE(2284), + [sym__after] = STATE(2284), + [sym__envoy_error] = STATE(2284), + [sym__success] = STATE(2284), + [sym__finished] = STATE(2284), + [sym_livewire] = STATE(622), + [sym__persist] = STATE(2290), + [sym__teleport] = STATE(2290), + [sym__volt] = STATE(2290), + [sym_alpine_js] = STATE(622), + [aux_sym__directive_body] = STATE(622), + [sym_text] = STATE(622), + [sym__text] = STATE(988), + [aux_sym_php_only_repeat1] = STATE(988), + [sym_comment] = ACTIONS(6359), + [aux_sym_keyword_token1] = ACTIONS(5429), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5431), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5433), + [anon_sym_ATphp] = ACTIONS(5435), + [aux_sym_attribute_token1] = ACTIONS(5437), + [aux_sym__inline_directive_token1] = ACTIONS(5439), + [anon_sym_ATfragment] = ACTIONS(5441), + [anon_sym_ATsection] = ACTIONS(5443), + [anon_sym_ATonce] = ACTIONS(5445), + [anon_sym_ATverbatim] = ACTIONS(5447), + [anon_sym_ATpush] = ACTIONS(5449), + [anon_sym_ATpushOnce] = ACTIONS(5451), + [anon_sym_ATpushIf] = ACTIONS(5453), + [anon_sym_ATprepend] = ACTIONS(5455), + [anon_sym_ATprependOnce] = ACTIONS(5457), + [anon_sym_ATif] = ACTIONS(5459), + [anon_sym_ATunless] = ACTIONS(5461), + [anon_sym_ATisset] = ACTIONS(5463), + [anon_sym_ATempty] = ACTIONS(5465), + [anon_sym_ATauth] = ACTIONS(5467), + [anon_sym_ATguest] = ACTIONS(5469), + [anon_sym_ATproduction] = ACTIONS(5471), + [anon_sym_ATenv] = ACTIONS(5473), + [anon_sym_AThasSection] = ACTIONS(5475), + [anon_sym_ATsectionMissing] = ACTIONS(5477), + [anon_sym_ATerror] = ACTIONS(5479), + [anon_sym_ATcan] = ACTIONS(5481), + [anon_sym_ATcannot] = ACTIONS(5483), + [anon_sym_ATcanany] = ACTIONS(5485), + [anon_sym_ATfeature] = ACTIONS(5487), + [aux_sym__custom_token1] = ACTIONS(5489), + [aux_sym__custom_token2] = ACTIONS(5491), + [anon_sym_ATswitch] = ACTIONS(5493), + [aux_sym_loop_operator_token1] = ACTIONS(5495), + [anon_sym_ATfor] = ACTIONS(5497), + [anon_sym_ATforeach] = ACTIONS(5499), + [anon_sym_ATendforeach] = ACTIONS(4859), + [anon_sym_ATforelse] = ACTIONS(5501), + [anon_sym_ATwhile] = ACTIONS(5503), + [anon_sym_ATsetup] = ACTIONS(5505), + [anon_sym_ATtask] = ACTIONS(5507), + [anon_sym_ATstory] = ACTIONS(5509), + [anon_sym_ATbefore] = ACTIONS(5511), + [anon_sym_ATafter] = ACTIONS(5513), + [anon_sym_ATsuccess] = ACTIONS(5515), + [anon_sym_ATfinished] = ACTIONS(5517), + [anon_sym_ATpersist] = ACTIONS(5519), + [anon_sym_ATteleport] = ACTIONS(5521), + [anon_sym_ATvolt] = ACTIONS(5523), + [aux_sym_alpine_js_token1] = ACTIONS(5525), + [aux_sym__text_token1] = ACTIONS(5527), + [aux_sym__text_token2] = ACTIONS(5527), + [aux_sym__text_token3] = ACTIONS(5529), }, [429] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(6162), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), - }, - [430] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(6164), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), - }, - [431] = { - [sym__definition] = STATE(538), - [sym_keyword] = STATE(538), - [sym_php_statement] = STATE(538), - [sym__escaped] = STATE(2175), - [sym__unescaped] = STATE(2175), - [sym__raw] = STATE(2175), - [sym__inline_raw] = STATE(2175), - [sym__multi_line_raw] = STATE(2175), - [sym_attribute] = STATE(538), - [sym__inline_directive] = STATE(538), - [sym__nested_directive] = STATE(538), - [sym_fragment] = STATE(538), - [sym_section] = STATE(538), - [sym_inlineSection] = STATE(538), - [sym_once] = STATE(538), - [sym_verbatim] = STATE(538), - [sym_stack] = STATE(538), - [sym__push] = STATE(2176), - [sym__pushOnce] = STATE(2176), - [sym__pushIf] = STATE(2176), - [sym__prepend] = STATE(2176), - [sym__prependOnce] = STATE(2176), - [sym_conditional] = STATE(538), - [sym__if] = STATE(2177), - [sym__unless] = STATE(2177), - [sym__isset] = STATE(2177), - [sym__empty] = STATE(2177), - [sym__auth] = STATE(2177), - [sym__guest] = STATE(2177), - [sym__production] = STATE(2177), - [sym__env] = STATE(2177), - [sym__hasSection] = STATE(2177), - [sym__sectionMissing] = STATE(2177), - [sym__error] = STATE(2177), - [sym_authorization] = STATE(2177), - [sym__can] = STATE(2178), - [sym__cannot] = STATE(2178), - [sym__canany] = STATE(2178), - [sym__feature] = STATE(2177), - [sym__custom] = STATE(2177), - [sym_switch] = STATE(538), - [sym_loop] = STATE(538), - [sym_loop_operator] = STATE(538), - [sym__for] = STATE(2179), - [sym__foreach] = STATE(2179), - [sym__forelse] = STATE(2179), - [sym__while] = STATE(2179), - [sym_envoy] = STATE(538), - [sym__setup] = STATE(2175), - [sym__task] = STATE(2180), - [sym__story] = STATE(2180), - [sym__hooks] = STATE(2175), - [sym__before] = STATE(2175), - [sym__after] = STATE(2175), - [sym__envoy_error] = STATE(2175), - [sym__success] = STATE(2175), - [sym__finished] = STATE(2175), - [sym_livewire] = STATE(538), - [sym__persist] = STATE(2181), - [sym__teleport] = STATE(2181), - [sym__volt] = STATE(2181), - [aux_sym__directive_body] = STATE(538), - [sym_text] = STATE(538), - [sym__text] = STATE(1001), - [aux_sym_php_only_repeat1] = STATE(1001), - [sym_comment] = ACTIONS(6166), - [aux_sym_keyword_token1] = ACTIONS(6168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6170), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6172), - [anon_sym_ATphp] = ACTIONS(6174), - [aux_sym_attribute_token1] = ACTIONS(6176), - [aux_sym__inline_directive_token1] = ACTIONS(6178), - [anon_sym_ATfragment] = ACTIONS(6180), - [anon_sym_ATsection] = ACTIONS(6182), - [anon_sym_ATonce] = ACTIONS(6184), - [anon_sym_ATverbatim] = ACTIONS(6186), - [anon_sym_ATpush] = ACTIONS(6188), - [anon_sym_ATpushOnce] = ACTIONS(6190), - [anon_sym_ATpushIf] = ACTIONS(6192), - [anon_sym_ATprepend] = ACTIONS(6194), - [anon_sym_ATprependOnce] = ACTIONS(6196), - [anon_sym_ATif] = ACTIONS(6198), - [anon_sym_ATunless] = ACTIONS(6200), - [anon_sym_ATisset] = ACTIONS(6202), - [anon_sym_ATempty] = ACTIONS(6204), - [anon_sym_ATauth] = ACTIONS(6206), - [anon_sym_ATguest] = ACTIONS(6208), - [anon_sym_ATproduction] = ACTIONS(6210), - [anon_sym_ATenv] = ACTIONS(6212), - [anon_sym_AThasSection] = ACTIONS(6214), - [anon_sym_ATsectionMissing] = ACTIONS(6216), - [anon_sym_ATerror] = ACTIONS(6218), - [anon_sym_ATcan] = ACTIONS(6220), - [anon_sym_ATcannot] = ACTIONS(6222), - [anon_sym_ATcanany] = ACTIONS(6224), - [anon_sym_ATfeature] = ACTIONS(6226), - [aux_sym__custom_token1] = ACTIONS(6228), - [aux_sym__custom_token2] = ACTIONS(6230), - [anon_sym_ATswitch] = ACTIONS(6232), - [aux_sym_loop_operator_token1] = ACTIONS(6234), - [anon_sym_ATfor] = ACTIONS(6236), - [anon_sym_ATendfor] = ACTIONS(4996), - [anon_sym_ATforeach] = ACTIONS(6238), - [anon_sym_ATforelse] = ACTIONS(6240), - [anon_sym_ATwhile] = ACTIONS(6242), - [anon_sym_ATsetup] = ACTIONS(6244), - [anon_sym_ATtask] = ACTIONS(6246), - [anon_sym_ATstory] = ACTIONS(6248), - [anon_sym_ATbefore] = ACTIONS(6250), - [anon_sym_ATafter] = ACTIONS(6252), - [anon_sym_ATsuccess] = ACTIONS(6254), - [anon_sym_ATfinished] = ACTIONS(6256), - [anon_sym_ATpersist] = ACTIONS(6258), - [anon_sym_ATteleport] = ACTIONS(6260), - [anon_sym_ATvolt] = ACTIONS(6262), - [aux_sym__text_token1] = ACTIONS(6264), - [aux_sym__text_token2] = ACTIONS(6264), - [aux_sym__text_token3] = ACTIONS(6266), - }, - [432] = { [sym__definition] = STATE(429), [sym_keyword] = STATE(429), [sym_php_statement] = STATE(429), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(2036), + [sym__unescaped] = STATE(2036), + [sym__raw] = STATE(2036), + [sym__inline_raw] = STATE(2036), + [sym__multi_line_raw] = STATE(2036), [sym_attribute] = STATE(429), [sym__inline_directive] = STATE(429), [sym__nested_directive] = STATE(429), @@ -78007,237 +78977,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(429), [sym_verbatim] = STATE(429), [sym_stack] = STATE(429), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(2035), + [sym__pushOnce] = STATE(2035), + [sym__pushIf] = STATE(2035), + [sym__prepend] = STATE(2035), + [sym__prependOnce] = STATE(2035), [sym_conditional] = STATE(429), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(2033), + [sym__unless] = STATE(2033), + [sym__isset] = STATE(2033), + [sym__empty] = STATE(2033), + [sym__auth] = STATE(2033), + [sym__guest] = STATE(2033), + [sym__production] = STATE(2033), + [sym__env] = STATE(2033), + [sym__hasSection] = STATE(2033), + [sym__sectionMissing] = STATE(2033), + [sym__error] = STATE(2033), + [sym_authorization] = STATE(2033), + [sym__can] = STATE(2032), + [sym__cannot] = STATE(2032), + [sym__canany] = STATE(2032), + [sym__feature] = STATE(2033), + [sym__custom] = STATE(2033), [sym_switch] = STATE(429), [sym_loop] = STATE(429), [sym_loop_operator] = STATE(429), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(2031), + [sym__foreach] = STATE(2031), + [sym__forelse] = STATE(2031), + [sym__while] = STATE(2031), [sym_envoy] = STATE(429), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(2036), + [sym__task] = STATE(2030), + [sym__story] = STATE(2030), + [sym__hooks] = STATE(2036), + [sym__before] = STATE(2036), + [sym__after] = STATE(2036), + [sym__envoy_error] = STATE(2036), + [sym__success] = STATE(2036), + [sym__finished] = STATE(2036), [sym_livewire] = STATE(429), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(2029), + [sym__teleport] = STATE(2029), + [sym__volt] = STATE(2029), + [sym_alpine_js] = STATE(429), + [aux_sym__directive_body] = STATE(429), [sym_text] = STATE(429), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(429), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(6268), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(6270), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__text] = STATE(1271), + [aux_sym_php_only_repeat1] = STATE(1271), + [sym_comment] = ACTIONS(6361), + [aux_sym_keyword_token1] = ACTIONS(6364), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6367), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6370), + [anon_sym_ATphp] = ACTIONS(6373), + [aux_sym_attribute_token1] = ACTIONS(6376), + [aux_sym__inline_directive_token1] = ACTIONS(6379), + [anon_sym_ATfragment] = ACTIONS(6382), + [anon_sym_ATsection] = ACTIONS(6385), + [anon_sym_ATonce] = ACTIONS(6388), + [anon_sym_ATverbatim] = ACTIONS(6391), + [anon_sym_ATpush] = ACTIONS(6394), + [anon_sym_ATpushOnce] = ACTIONS(6397), + [anon_sym_ATpushIf] = ACTIONS(6400), + [anon_sym_ATprepend] = ACTIONS(6403), + [anon_sym_ATprependOnce] = ACTIONS(6406), + [anon_sym_ATendPrependOnce] = ACTIONS(5134), + [anon_sym_ATif] = ACTIONS(6409), + [anon_sym_ATunless] = ACTIONS(6412), + [anon_sym_ATisset] = ACTIONS(6415), + [anon_sym_ATempty] = ACTIONS(6418), + [anon_sym_ATauth] = ACTIONS(6421), + [anon_sym_ATguest] = ACTIONS(6424), + [anon_sym_ATproduction] = ACTIONS(6427), + [anon_sym_ATenv] = ACTIONS(6430), + [anon_sym_AThasSection] = ACTIONS(6433), + [anon_sym_ATsectionMissing] = ACTIONS(6436), + [anon_sym_ATerror] = ACTIONS(6439), + [anon_sym_ATcan] = ACTIONS(6442), + [anon_sym_ATcannot] = ACTIONS(6445), + [anon_sym_ATcanany] = ACTIONS(6448), + [anon_sym_ATfeature] = ACTIONS(6451), + [aux_sym__custom_token1] = ACTIONS(6454), + [aux_sym__custom_token2] = ACTIONS(6457), + [anon_sym_ATswitch] = ACTIONS(6460), + [aux_sym_loop_operator_token1] = ACTIONS(6463), + [anon_sym_ATfor] = ACTIONS(6466), + [anon_sym_ATforeach] = ACTIONS(6469), + [anon_sym_ATforelse] = ACTIONS(6472), + [anon_sym_ATwhile] = ACTIONS(6475), + [anon_sym_ATsetup] = ACTIONS(6478), + [anon_sym_ATtask] = ACTIONS(6481), + [anon_sym_ATstory] = ACTIONS(6484), + [anon_sym_ATbefore] = ACTIONS(6487), + [anon_sym_ATafter] = ACTIONS(6490), + [anon_sym_ATsuccess] = ACTIONS(6493), + [anon_sym_ATfinished] = ACTIONS(6496), + [anon_sym_ATpersist] = ACTIONS(6499), + [anon_sym_ATteleport] = ACTIONS(6502), + [anon_sym_ATvolt] = ACTIONS(6505), + [aux_sym_alpine_js_token1] = ACTIONS(6508), + [aux_sym__text_token1] = ACTIONS(6511), + [aux_sym__text_token2] = ACTIONS(6511), + [aux_sym__text_token3] = ACTIONS(6514), }, - [433] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(6270), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [430] = { + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6517), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, - [434] = { + [431] = { + [sym__definition] = STATE(427), + [sym_keyword] = STATE(427), + [sym_php_statement] = STATE(427), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(427), + [sym__inline_directive] = STATE(427), + [sym__nested_directive] = STATE(427), + [sym_fragment] = STATE(427), + [sym_section] = STATE(427), + [sym_inlineSection] = STATE(427), + [sym_once] = STATE(427), + [sym_verbatim] = STATE(427), + [sym_stack] = STATE(427), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(427), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(427), + [sym_loop] = STATE(427), + [sym_loop_operator] = STATE(427), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(427), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(427), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(427), + [sym_text] = STATE(427), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(427), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(6519), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6521), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), + }, + [432] = { + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6521), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), + }, + [433] = { [sym__definition] = STATE(430), [sym_keyword] = STATE(430), [sym_php_statement] = STATE(430), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(430), [sym__inline_directive] = STATE(430), [sym__nested_directive] = STATE(430), @@ -78247,1077 +79465,1095 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(430), [sym_verbatim] = STATE(430), [sym_stack] = STATE(430), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(430), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(430), [sym_loop] = STATE(430), [sym_loop_operator] = STATE(430), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(430), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(430), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(430), [aux_sym__directive_body] = STATE(430), [sym_text] = STATE(430), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(6272), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(6274), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(6523), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6525), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), + }, + [434] = { + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6527), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [435] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(6276), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(432), + [sym_keyword] = STATE(432), + [sym_php_statement] = STATE(432), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(432), + [sym__inline_directive] = STATE(432), + [sym__nested_directive] = STATE(432), + [sym_fragment] = STATE(432), + [sym_section] = STATE(432), + [sym_inlineSection] = STATE(432), + [sym_once] = STATE(432), + [sym_verbatim] = STATE(432), + [sym_stack] = STATE(432), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(432), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(432), + [sym_loop] = STATE(432), + [sym_loop_operator] = STATE(432), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(432), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(432), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(432), + [sym_text] = STATE(432), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(432), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(6529), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6531), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [436] = { - [sym__definition] = STATE(433), - [sym_keyword] = STATE(433), - [sym_php_statement] = STATE(433), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(433), - [sym__inline_directive] = STATE(433), - [sym__nested_directive] = STATE(433), - [sym_fragment] = STATE(433), - [sym_section] = STATE(433), - [sym_inlineSection] = STATE(433), - [sym_once] = STATE(433), - [sym_verbatim] = STATE(433), - [sym_stack] = STATE(433), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(433), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(433), - [sym_loop] = STATE(433), - [sym_loop_operator] = STATE(433), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(433), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(433), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(433), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(433), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(6278), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(6280), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(434), + [sym_keyword] = STATE(434), + [sym_php_statement] = STATE(434), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(434), + [sym__inline_directive] = STATE(434), + [sym__nested_directive] = STATE(434), + [sym_fragment] = STATE(434), + [sym_section] = STATE(434), + [sym_inlineSection] = STATE(434), + [sym_once] = STATE(434), + [sym_verbatim] = STATE(434), + [sym_stack] = STATE(434), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(434), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(434), + [sym_loop] = STATE(434), + [sym_loop_operator] = STATE(434), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(434), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(434), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(434), + [aux_sym__directive_body] = STATE(434), + [sym_text] = STATE(434), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(6533), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6535), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [437] = { - [sym__definition] = STATE(435), - [sym_keyword] = STATE(435), - [sym_php_statement] = STATE(435), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(435), - [sym__inline_directive] = STATE(435), - [sym__nested_directive] = STATE(435), - [sym_fragment] = STATE(435), - [sym_section] = STATE(435), - [sym_inlineSection] = STATE(435), - [sym_once] = STATE(435), - [sym_verbatim] = STATE(435), - [sym_stack] = STATE(435), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(435), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(435), - [sym_loop] = STATE(435), - [sym_loop_operator] = STATE(435), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(435), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(435), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(435), - [sym_text] = STATE(435), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(6282), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(6284), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(569), + [sym_keyword] = STATE(569), + [sym_php_statement] = STATE(569), + [sym__escaped] = STATE(2102), + [sym__unescaped] = STATE(2102), + [sym__raw] = STATE(2102), + [sym__inline_raw] = STATE(2102), + [sym__multi_line_raw] = STATE(2102), + [sym_attribute] = STATE(569), + [sym__inline_directive] = STATE(569), + [sym__nested_directive] = STATE(569), + [sym_fragment] = STATE(569), + [sym_section] = STATE(569), + [sym_inlineSection] = STATE(569), + [sym_once] = STATE(569), + [sym_verbatim] = STATE(569), + [sym_stack] = STATE(569), + [sym__push] = STATE(2104), + [sym__pushOnce] = STATE(2104), + [sym__pushIf] = STATE(2104), + [sym__prepend] = STATE(2104), + [sym__prependOnce] = STATE(2104), + [sym_conditional] = STATE(569), + [sym__if] = STATE(2107), + [sym__unless] = STATE(2107), + [sym__isset] = STATE(2107), + [sym__empty] = STATE(2107), + [sym__auth] = STATE(2107), + [sym__guest] = STATE(2107), + [sym__production] = STATE(2107), + [sym__env] = STATE(2107), + [sym__hasSection] = STATE(2107), + [sym__sectionMissing] = STATE(2107), + [sym__error] = STATE(2107), + [sym_authorization] = STATE(2107), + [sym__can] = STATE(2121), + [sym__cannot] = STATE(2121), + [sym__canany] = STATE(2121), + [sym__feature] = STATE(2107), + [sym__custom] = STATE(2107), + [sym_switch] = STATE(569), + [sym_loop] = STATE(569), + [sym_loop_operator] = STATE(569), + [sym__for] = STATE(2162), + [sym__foreach] = STATE(2162), + [sym__forelse] = STATE(2162), + [sym__while] = STATE(2162), + [sym_envoy] = STATE(569), + [sym__setup] = STATE(2102), + [sym__task] = STATE(3202), + [sym__story] = STATE(3202), + [sym__hooks] = STATE(2102), + [sym__before] = STATE(2102), + [sym__after] = STATE(2102), + [sym__envoy_error] = STATE(2102), + [sym__success] = STATE(2102), + [sym__finished] = STATE(2102), + [sym_livewire] = STATE(569), + [sym__persist] = STATE(2174), + [sym__teleport] = STATE(2174), + [sym__volt] = STATE(2174), + [sym_alpine_js] = STATE(569), + [aux_sym__directive_body] = STATE(569), + [sym_text] = STATE(569), + [sym__text] = STATE(1025), + [aux_sym_php_only_repeat1] = STATE(1025), + [sym_comment] = ACTIONS(6537), + [aux_sym_keyword_token1] = ACTIONS(6539), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6541), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6543), + [anon_sym_ATphp] = ACTIONS(6545), + [aux_sym_attribute_token1] = ACTIONS(6547), + [aux_sym__inline_directive_token1] = ACTIONS(6549), + [anon_sym_ATfragment] = ACTIONS(6551), + [anon_sym_ATendfragment] = ACTIONS(4699), + [anon_sym_ATsection] = ACTIONS(6553), + [anon_sym_ATonce] = ACTIONS(6555), + [anon_sym_ATverbatim] = ACTIONS(6557), + [anon_sym_ATpush] = ACTIONS(6559), + [anon_sym_ATpushOnce] = ACTIONS(6561), + [anon_sym_ATpushIf] = ACTIONS(6563), + [anon_sym_ATprepend] = ACTIONS(6565), + [anon_sym_ATprependOnce] = ACTIONS(6567), + [anon_sym_ATif] = ACTIONS(6569), + [anon_sym_ATunless] = ACTIONS(6571), + [anon_sym_ATisset] = ACTIONS(6573), + [anon_sym_ATempty] = ACTIONS(6575), + [anon_sym_ATauth] = ACTIONS(6577), + [anon_sym_ATguest] = ACTIONS(6579), + [anon_sym_ATproduction] = ACTIONS(6581), + [anon_sym_ATenv] = ACTIONS(6583), + [anon_sym_AThasSection] = ACTIONS(6585), + [anon_sym_ATsectionMissing] = ACTIONS(6587), + [anon_sym_ATerror] = ACTIONS(6589), + [anon_sym_ATcan] = ACTIONS(6591), + [anon_sym_ATcannot] = ACTIONS(6593), + [anon_sym_ATcanany] = ACTIONS(6595), + [anon_sym_ATfeature] = ACTIONS(6597), + [aux_sym__custom_token1] = ACTIONS(6599), + [aux_sym__custom_token2] = ACTIONS(6601), + [anon_sym_ATswitch] = ACTIONS(6603), + [aux_sym_loop_operator_token1] = ACTIONS(6605), + [anon_sym_ATfor] = ACTIONS(6607), + [anon_sym_ATforeach] = ACTIONS(6609), + [anon_sym_ATforelse] = ACTIONS(6611), + [anon_sym_ATwhile] = ACTIONS(6613), + [anon_sym_ATsetup] = ACTIONS(6615), + [anon_sym_ATtask] = ACTIONS(6617), + [anon_sym_ATstory] = ACTIONS(6619), + [anon_sym_ATbefore] = ACTIONS(6621), + [anon_sym_ATafter] = ACTIONS(6623), + [anon_sym_ATsuccess] = ACTIONS(6625), + [anon_sym_ATfinished] = ACTIONS(6627), + [anon_sym_ATpersist] = ACTIONS(6629), + [anon_sym_ATteleport] = ACTIONS(6631), + [anon_sym_ATvolt] = ACTIONS(6633), + [aux_sym_alpine_js_token1] = ACTIONS(6635), + [aux_sym__text_token1] = ACTIONS(6637), + [aux_sym__text_token2] = ACTIONS(6637), + [aux_sym__text_token3] = ACTIONS(6639), }, [438] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(6286), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(469), + [sym_keyword] = STATE(469), + [sym_php_statement] = STATE(469), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(469), + [sym__inline_directive] = STATE(469), + [sym__nested_directive] = STATE(469), + [sym_fragment] = STATE(469), + [sym_section] = STATE(469), + [sym_inlineSection] = STATE(469), + [sym_once] = STATE(469), + [sym_verbatim] = STATE(469), + [sym_stack] = STATE(469), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(469), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(469), + [sym_loop] = STATE(469), + [sym_loop_operator] = STATE(469), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(469), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(469), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(469), + [aux_sym__directive_body] = STATE(469), + [sym_text] = STATE(469), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(6641), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6643), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [439] = { - [sym__definition] = STATE(458), - [sym_keyword] = STATE(458), - [sym_php_statement] = STATE(458), - [sym__escaped] = STATE(2666), - [sym__unescaped] = STATE(2666), - [sym__raw] = STATE(2666), - [sym__inline_raw] = STATE(2666), - [sym__multi_line_raw] = STATE(2666), - [sym_attribute] = STATE(458), - [sym__inline_directive] = STATE(458), - [sym__nested_directive] = STATE(458), - [sym_fragment] = STATE(458), - [sym_section] = STATE(458), - [sym_inlineSection] = STATE(458), - [sym_once] = STATE(458), - [sym_verbatim] = STATE(458), - [sym_stack] = STATE(458), - [sym__push] = STATE(2665), - [sym__pushOnce] = STATE(2665), - [sym__pushIf] = STATE(2665), - [sym__prepend] = STATE(2665), - [sym__prependOnce] = STATE(2665), - [sym_conditional] = STATE(458), - [sym__if] = STATE(2608), - [sym__unless] = STATE(2608), - [sym__isset] = STATE(2608), - [sym__empty] = STATE(2608), - [sym__auth] = STATE(2608), - [sym__guest] = STATE(2608), - [sym__production] = STATE(2608), - [sym__env] = STATE(2608), - [sym__hasSection] = STATE(2608), - [sym__sectionMissing] = STATE(2608), - [sym__error] = STATE(2608), - [sym_authorization] = STATE(2608), - [sym__can] = STATE(2501), - [sym__cannot] = STATE(2501), - [sym__canany] = STATE(2501), - [sym__feature] = STATE(2608), - [sym__custom] = STATE(2608), - [sym_switch] = STATE(458), - [sym_loop] = STATE(458), - [sym_loop_operator] = STATE(458), - [sym__for] = STATE(2584), - [sym__foreach] = STATE(2584), - [sym__forelse] = STATE(2584), - [sym__while] = STATE(2584), - [sym_envoy] = STATE(458), - [sym__setup] = STATE(2666), - [sym__task] = STATE(2583), - [sym__story] = STATE(2583), - [sym__hooks] = STATE(2666), - [sym__before] = STATE(2666), - [sym__after] = STATE(2666), - [sym__envoy_error] = STATE(2666), - [sym__success] = STATE(2666), - [sym__finished] = STATE(2666), - [sym_livewire] = STATE(458), - [sym__persist] = STATE(2526), - [sym__teleport] = STATE(2526), - [sym__volt] = STATE(2526), - [aux_sym__directive_body] = STATE(458), - [sym_text] = STATE(458), - [sym__text] = STATE(1078), - [aux_sym_php_only_repeat1] = STATE(1078), - [sym_comment] = ACTIONS(6288), - [aux_sym_keyword_token1] = ACTIONS(6290), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6292), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6294), - [anon_sym_ATphp] = ACTIONS(6296), - [aux_sym_attribute_token1] = ACTIONS(6298), - [aux_sym__inline_directive_token1] = ACTIONS(6300), - [anon_sym_ATfragment] = ACTIONS(6302), - [anon_sym_ATsection] = ACTIONS(6304), - [anon_sym_ATonce] = ACTIONS(6306), - [anon_sym_ATverbatim] = ACTIONS(6308), - [anon_sym_ATpush] = ACTIONS(6310), - [anon_sym_ATpushOnce] = ACTIONS(6312), - [anon_sym_ATpushIf] = ACTIONS(6314), - [anon_sym_ATendPushIf] = ACTIONS(4609), - [anon_sym_ATprepend] = ACTIONS(6316), - [anon_sym_ATprependOnce] = ACTIONS(6318), - [anon_sym_ATif] = ACTIONS(6320), - [anon_sym_ATunless] = ACTIONS(6322), - [anon_sym_ATisset] = ACTIONS(6324), - [anon_sym_ATempty] = ACTIONS(6326), - [anon_sym_ATauth] = ACTIONS(6328), - [anon_sym_ATguest] = ACTIONS(6330), - [anon_sym_ATproduction] = ACTIONS(6332), - [anon_sym_ATenv] = ACTIONS(6334), - [anon_sym_AThasSection] = ACTIONS(6336), - [anon_sym_ATsectionMissing] = ACTIONS(6338), - [anon_sym_ATerror] = ACTIONS(6340), - [anon_sym_ATcan] = ACTIONS(6342), - [anon_sym_ATcannot] = ACTIONS(6344), - [anon_sym_ATcanany] = ACTIONS(6346), - [anon_sym_ATfeature] = ACTIONS(6348), - [aux_sym__custom_token1] = ACTIONS(6350), - [aux_sym__custom_token2] = ACTIONS(6352), - [anon_sym_ATswitch] = ACTIONS(6354), - [aux_sym_loop_operator_token1] = ACTIONS(6356), - [anon_sym_ATfor] = ACTIONS(6358), - [anon_sym_ATforeach] = ACTIONS(6360), - [anon_sym_ATforelse] = ACTIONS(6362), - [anon_sym_ATwhile] = ACTIONS(6364), - [anon_sym_ATsetup] = ACTIONS(6366), - [anon_sym_ATtask] = ACTIONS(6368), - [anon_sym_ATstory] = ACTIONS(6370), - [anon_sym_ATbefore] = ACTIONS(6372), - [anon_sym_ATafter] = ACTIONS(6374), - [anon_sym_ATsuccess] = ACTIONS(6376), - [anon_sym_ATfinished] = ACTIONS(6378), - [anon_sym_ATpersist] = ACTIONS(6380), - [anon_sym_ATteleport] = ACTIONS(6382), - [anon_sym_ATvolt] = ACTIONS(6384), - [aux_sym__text_token1] = ACTIONS(6386), - [aux_sym__text_token2] = ACTIONS(6386), - [aux_sym__text_token3] = ACTIONS(6388), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(6645), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [440] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(6390), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(6647), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [441] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(6392), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(439), + [sym_keyword] = STATE(439), + [sym_php_statement] = STATE(439), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(439), + [sym__inline_directive] = STATE(439), + [sym__nested_directive] = STATE(439), + [sym_fragment] = STATE(439), + [sym_section] = STATE(439), + [sym_inlineSection] = STATE(439), + [sym_once] = STATE(439), + [sym_verbatim] = STATE(439), + [sym_stack] = STATE(439), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(439), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(439), + [sym_loop] = STATE(439), + [sym_loop_operator] = STATE(439), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(439), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(439), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(439), + [aux_sym__directive_body] = STATE(439), + [sym_text] = STATE(439), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(6649), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(6651), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [442] = { - [sym__definition] = STATE(468), - [sym_keyword] = STATE(468), - [sym_php_statement] = STATE(468), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(468), - [sym__inline_directive] = STATE(468), - [sym__nested_directive] = STATE(468), - [sym_fragment] = STATE(468), - [sym_section] = STATE(468), - [sym_inlineSection] = STATE(468), - [sym_once] = STATE(468), - [sym_verbatim] = STATE(468), - [sym_stack] = STATE(468), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(468), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(468), - [sym_loop] = STATE(468), - [sym_loop_operator] = STATE(468), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(468), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(468), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(468), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(468), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(6394), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(6286), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), - }, - [443] = { [sym__definition] = STATE(440), [sym_keyword] = STATE(440), [sym_php_statement] = STATE(440), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), [sym_attribute] = STATE(440), [sym__inline_directive] = STATE(440), [sym__nested_directive] = STATE(440), @@ -79327,837 +80563,1217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(440), [sym_verbatim] = STATE(440), [sym_stack] = STATE(440), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), [sym_conditional] = STATE(440), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), [sym_switch] = STATE(440), [sym_loop] = STATE(440), [sym_loop_operator] = STATE(440), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), [sym_envoy] = STATE(440), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), [sym_livewire] = STATE(440), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(440), [aux_sym__directive_body] = STATE(440), [sym_text] = STATE(440), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(6396), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(6398), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(6653), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(6655), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), + }, + [443] = { + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6657), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [444] = { - [sym__definition] = STATE(568), - [sym_keyword] = STATE(568), - [sym_php_statement] = STATE(568), - [sym__escaped] = STATE(1993), - [sym__unescaped] = STATE(1993), - [sym__raw] = STATE(1993), - [sym__inline_raw] = STATE(1993), - [sym__multi_line_raw] = STATE(1993), - [sym_attribute] = STATE(568), - [sym__inline_directive] = STATE(568), - [sym__nested_directive] = STATE(568), - [sym_fragment] = STATE(568), - [sym_section] = STATE(568), - [sym_inlineSection] = STATE(568), - [sym_once] = STATE(568), - [sym_verbatim] = STATE(568), - [sym_stack] = STATE(568), - [sym__push] = STATE(2111), - [sym__pushOnce] = STATE(2111), - [sym__pushIf] = STATE(2111), - [sym__prepend] = STATE(2111), - [sym__prependOnce] = STATE(2111), - [sym_conditional] = STATE(568), - [sym__if] = STATE(2008), - [sym__unless] = STATE(2008), - [sym__isset] = STATE(2008), - [sym__empty] = STATE(2008), - [sym__auth] = STATE(2008), - [sym__guest] = STATE(2008), - [sym__production] = STATE(2008), - [sym__env] = STATE(2008), - [sym__hasSection] = STATE(2008), - [sym__sectionMissing] = STATE(2008), - [sym__error] = STATE(2008), - [sym_authorization] = STATE(2008), - [sym__can] = STATE(2011), - [sym__cannot] = STATE(2011), - [sym__canany] = STATE(2011), - [sym__feature] = STATE(2008), - [sym__custom] = STATE(2008), - [sym_switch] = STATE(568), - [sym_loop] = STATE(568), - [sym_loop_operator] = STATE(568), - [sym__for] = STATE(2025), - [sym__foreach] = STATE(2025), - [sym__forelse] = STATE(2025), - [sym__while] = STATE(2025), - [sym_envoy] = STATE(568), - [sym__setup] = STATE(1993), - [sym__task] = STATE(2065), - [sym__story] = STATE(2065), - [sym__hooks] = STATE(1993), - [sym__before] = STATE(1993), - [sym__after] = STATE(1993), - [sym__envoy_error] = STATE(1993), - [sym__success] = STATE(1993), - [sym__finished] = STATE(1993), - [sym_livewire] = STATE(568), - [sym__persist] = STATE(2070), - [sym__teleport] = STATE(2070), - [sym__volt] = STATE(2070), - [aux_sym__directive_body] = STATE(568), - [sym_text] = STATE(568), - [sym__text] = STATE(1106), - [aux_sym_php_only_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(6400), - [aux_sym_keyword_token1] = ACTIONS(6402), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6404), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6406), - [anon_sym_ATphp] = ACTIONS(6408), - [aux_sym_attribute_token1] = ACTIONS(6410), - [aux_sym__inline_directive_token1] = ACTIONS(6412), - [anon_sym_ATfragment] = ACTIONS(6414), - [anon_sym_ATendfragment] = ACTIONS(4609), - [anon_sym_ATsection] = ACTIONS(6416), - [anon_sym_ATonce] = ACTIONS(6418), - [anon_sym_ATverbatim] = ACTIONS(6420), - [anon_sym_ATpush] = ACTIONS(6422), - [anon_sym_ATpushOnce] = ACTIONS(6424), - [anon_sym_ATpushIf] = ACTIONS(6426), - [anon_sym_ATprepend] = ACTIONS(6428), - [anon_sym_ATprependOnce] = ACTIONS(6430), - [anon_sym_ATif] = ACTIONS(6432), - [anon_sym_ATunless] = ACTIONS(6434), - [anon_sym_ATisset] = ACTIONS(6436), - [anon_sym_ATempty] = ACTIONS(6438), - [anon_sym_ATauth] = ACTIONS(6440), - [anon_sym_ATguest] = ACTIONS(6442), - [anon_sym_ATproduction] = ACTIONS(6444), - [anon_sym_ATenv] = ACTIONS(6446), - [anon_sym_AThasSection] = ACTIONS(6448), - [anon_sym_ATsectionMissing] = ACTIONS(6450), - [anon_sym_ATerror] = ACTIONS(6452), - [anon_sym_ATcan] = ACTIONS(6454), - [anon_sym_ATcannot] = ACTIONS(6456), - [anon_sym_ATcanany] = ACTIONS(6458), - [anon_sym_ATfeature] = ACTIONS(6460), - [aux_sym__custom_token1] = ACTIONS(6462), - [aux_sym__custom_token2] = ACTIONS(6464), - [anon_sym_ATswitch] = ACTIONS(6466), - [aux_sym_loop_operator_token1] = ACTIONS(6468), - [anon_sym_ATfor] = ACTIONS(6470), - [anon_sym_ATforeach] = ACTIONS(6472), - [anon_sym_ATforelse] = ACTIONS(6474), - [anon_sym_ATwhile] = ACTIONS(6476), - [anon_sym_ATsetup] = ACTIONS(6478), - [anon_sym_ATtask] = ACTIONS(6480), - [anon_sym_ATstory] = ACTIONS(6482), - [anon_sym_ATbefore] = ACTIONS(6484), - [anon_sym_ATafter] = ACTIONS(6486), - [anon_sym_ATsuccess] = ACTIONS(6488), - [anon_sym_ATfinished] = ACTIONS(6490), - [anon_sym_ATpersist] = ACTIONS(6492), - [anon_sym_ATteleport] = ACTIONS(6494), - [anon_sym_ATvolt] = ACTIONS(6496), - [aux_sym__text_token1] = ACTIONS(6498), - [aux_sym__text_token2] = ACTIONS(6498), - [aux_sym__text_token3] = ACTIONS(6500), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6659), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [445] = { - [sym__definition] = STATE(441), - [sym_keyword] = STATE(441), - [sym_php_statement] = STATE(441), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(441), - [sym__inline_directive] = STATE(441), - [sym__nested_directive] = STATE(441), - [sym_fragment] = STATE(441), - [sym_section] = STATE(441), - [sym_inlineSection] = STATE(441), - [sym_once] = STATE(441), - [sym_verbatim] = STATE(441), - [sym_stack] = STATE(441), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(441), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(441), - [sym_loop] = STATE(441), - [sym_loop_operator] = STATE(441), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(441), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(441), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(441), - [sym_text] = STATE(441), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(6502), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(6504), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(464), + [sym_keyword] = STATE(464), + [sym_php_statement] = STATE(464), + [sym__escaped] = STATE(2365), + [sym__unescaped] = STATE(2365), + [sym__raw] = STATE(2365), + [sym__inline_raw] = STATE(2365), + [sym__multi_line_raw] = STATE(2365), + [sym_attribute] = STATE(464), + [sym__inline_directive] = STATE(464), + [sym__nested_directive] = STATE(464), + [sym_fragment] = STATE(464), + [sym_section] = STATE(464), + [sym_inlineSection] = STATE(464), + [sym_once] = STATE(464), + [sym_verbatim] = STATE(464), + [sym_stack] = STATE(464), + [sym__push] = STATE(2192), + [sym__pushOnce] = STATE(2192), + [sym__pushIf] = STATE(2192), + [sym__prepend] = STATE(2192), + [sym__prependOnce] = STATE(2192), + [sym_conditional] = STATE(464), + [sym__if] = STATE(2291), + [sym__unless] = STATE(2291), + [sym__isset] = STATE(2291), + [sym__empty] = STATE(2291), + [sym__auth] = STATE(2291), + [sym__guest] = STATE(2291), + [sym__production] = STATE(2291), + [sym__env] = STATE(2291), + [sym__hasSection] = STATE(2291), + [sym__sectionMissing] = STATE(2291), + [sym__error] = STATE(2291), + [sym_authorization] = STATE(2291), + [sym__can] = STATE(2283), + [sym__cannot] = STATE(2283), + [sym__canany] = STATE(2283), + [sym__feature] = STATE(2291), + [sym__custom] = STATE(2291), + [sym_switch] = STATE(464), + [sym_loop] = STATE(464), + [sym_loop_operator] = STATE(464), + [sym__for] = STATE(2282), + [sym__foreach] = STATE(2282), + [sym__forelse] = STATE(2282), + [sym__while] = STATE(2282), + [sym_envoy] = STATE(464), + [sym__setup] = STATE(2365), + [sym__task] = STATE(2224), + [sym__story] = STATE(2224), + [sym__hooks] = STATE(2365), + [sym__before] = STATE(2365), + [sym__after] = STATE(2365), + [sym__envoy_error] = STATE(2365), + [sym__success] = STATE(2365), + [sym__finished] = STATE(2365), + [sym_livewire] = STATE(464), + [sym__persist] = STATE(2208), + [sym__teleport] = STATE(2208), + [sym__volt] = STATE(2208), + [sym_alpine_js] = STATE(464), + [aux_sym__directive_body] = STATE(464), + [sym_text] = STATE(464), + [sym__text] = STATE(1091), + [aux_sym_php_only_repeat1] = STATE(1091), + [sym_comment] = ACTIONS(6661), + [aux_sym_keyword_token1] = ACTIONS(6663), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6665), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6667), + [anon_sym_ATphp] = ACTIONS(6669), + [aux_sym_attribute_token1] = ACTIONS(6671), + [aux_sym__inline_directive_token1] = ACTIONS(6673), + [anon_sym_ATfragment] = ACTIONS(6675), + [anon_sym_ATsection] = ACTIONS(6677), + [anon_sym_ATonce] = ACTIONS(6679), + [anon_sym_ATverbatim] = ACTIONS(6681), + [anon_sym_ATpush] = ACTIONS(6683), + [anon_sym_ATpushOnce] = ACTIONS(6685), + [anon_sym_ATpushIf] = ACTIONS(6687), + [anon_sym_ATendPushIf] = ACTIONS(4699), + [anon_sym_ATprepend] = ACTIONS(6689), + [anon_sym_ATprependOnce] = ACTIONS(6691), + [anon_sym_ATif] = ACTIONS(6693), + [anon_sym_ATunless] = ACTIONS(6695), + [anon_sym_ATisset] = ACTIONS(6697), + [anon_sym_ATempty] = ACTIONS(6699), + [anon_sym_ATauth] = ACTIONS(6701), + [anon_sym_ATguest] = ACTIONS(6703), + [anon_sym_ATproduction] = ACTIONS(6705), + [anon_sym_ATenv] = ACTIONS(6707), + [anon_sym_AThasSection] = ACTIONS(6709), + [anon_sym_ATsectionMissing] = ACTIONS(6711), + [anon_sym_ATerror] = ACTIONS(6713), + [anon_sym_ATcan] = ACTIONS(6715), + [anon_sym_ATcannot] = ACTIONS(6717), + [anon_sym_ATcanany] = ACTIONS(6719), + [anon_sym_ATfeature] = ACTIONS(6721), + [aux_sym__custom_token1] = ACTIONS(6723), + [aux_sym__custom_token2] = ACTIONS(6725), + [anon_sym_ATswitch] = ACTIONS(6727), + [aux_sym_loop_operator_token1] = ACTIONS(6729), + [anon_sym_ATfor] = ACTIONS(6731), + [anon_sym_ATforeach] = ACTIONS(6733), + [anon_sym_ATforelse] = ACTIONS(6735), + [anon_sym_ATwhile] = ACTIONS(6737), + [anon_sym_ATsetup] = ACTIONS(6739), + [anon_sym_ATtask] = ACTIONS(6741), + [anon_sym_ATstory] = ACTIONS(6743), + [anon_sym_ATbefore] = ACTIONS(6745), + [anon_sym_ATafter] = ACTIONS(6747), + [anon_sym_ATsuccess] = ACTIONS(6749), + [anon_sym_ATfinished] = ACTIONS(6751), + [anon_sym_ATpersist] = ACTIONS(6753), + [anon_sym_ATteleport] = ACTIONS(6755), + [anon_sym_ATvolt] = ACTIONS(6757), + [aux_sym_alpine_js_token1] = ACTIONS(6759), + [aux_sym__text_token1] = ACTIONS(6761), + [aux_sym__text_token2] = ACTIONS(6761), + [aux_sym__text_token3] = ACTIONS(6763), }, [446] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(6506), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(443), + [sym_keyword] = STATE(443), + [sym_php_statement] = STATE(443), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(443), + [sym__inline_directive] = STATE(443), + [sym__nested_directive] = STATE(443), + [sym_fragment] = STATE(443), + [sym_section] = STATE(443), + [sym_inlineSection] = STATE(443), + [sym_once] = STATE(443), + [sym_verbatim] = STATE(443), + [sym_stack] = STATE(443), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(443), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(443), + [sym_loop] = STATE(443), + [sym_loop_operator] = STATE(443), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(443), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(443), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(443), + [sym_text] = STATE(443), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(443), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(6765), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6767), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [447] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(6508), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6767), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [448] = { - [sym__definition] = STATE(446), - [sym_keyword] = STATE(446), - [sym_php_statement] = STATE(446), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(446), - [sym__inline_directive] = STATE(446), - [sym__nested_directive] = STATE(446), - [sym_fragment] = STATE(446), - [sym_section] = STATE(446), - [sym_inlineSection] = STATE(446), - [sym_once] = STATE(446), - [sym_verbatim] = STATE(446), - [sym_stack] = STATE(446), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(446), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(446), - [sym_loop] = STATE(446), - [sym_loop_operator] = STATE(446), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(446), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(446), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(446), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(446), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(6510), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(6512), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6769), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [449] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(6512), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(444), + [sym_keyword] = STATE(444), + [sym_php_statement] = STATE(444), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(444), + [sym__inline_directive] = STATE(444), + [sym__nested_directive] = STATE(444), + [sym_fragment] = STATE(444), + [sym_section] = STATE(444), + [sym_inlineSection] = STATE(444), + [sym_once] = STATE(444), + [sym_verbatim] = STATE(444), + [sym_stack] = STATE(444), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(444), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(444), + [sym_loop] = STATE(444), + [sym_loop_operator] = STATE(444), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(444), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(444), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(444), + [aux_sym__directive_body] = STATE(444), + [sym_text] = STATE(444), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(6771), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6773), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [450] = { + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(6775), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), + }, + [451] = { + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6777), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), + }, + [452] = { [sym__definition] = STATE(447), [sym_keyword] = STATE(447), [sym_php_statement] = STATE(447), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(447), [sym__inline_directive] = STATE(447), [sym__nested_directive] = STATE(447), @@ -80167,357 +81783,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(447), [sym_verbatim] = STATE(447), [sym_stack] = STATE(447), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(447), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(447), [sym_loop] = STATE(447), [sym_loop_operator] = STATE(447), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(447), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(447), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(447), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(447), [sym_text] = STATE(447), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(6514), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(6516), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), - }, - [451] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(6518), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), - }, - [452] = { - [sym__definition] = STATE(449), - [sym_keyword] = STATE(449), - [sym_php_statement] = STATE(449), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(449), - [sym__inline_directive] = STATE(449), - [sym__nested_directive] = STATE(449), - [sym_fragment] = STATE(449), - [sym_section] = STATE(449), - [sym_inlineSection] = STATE(449), - [sym_once] = STATE(449), - [sym_verbatim] = STATE(449), - [sym_stack] = STATE(449), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(449), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(449), - [sym_loop] = STATE(449), - [sym_loop_operator] = STATE(449), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(449), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(449), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(449), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(449), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(6520), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(6522), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(447), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(6779), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6781), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [453] = { [sym__definition] = STATE(451), [sym_keyword] = STATE(451), [sym_php_statement] = STATE(451), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(451), [sym__inline_directive] = STATE(451), [sym__nested_directive] = STATE(451), @@ -80527,477 +81905,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(451), [sym_verbatim] = STATE(451), [sym_stack] = STATE(451), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(451), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(451), [sym_loop] = STATE(451), [sym_loop_operator] = STATE(451), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(451), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(451), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(451), [aux_sym__directive_body] = STATE(451), [sym_text] = STATE(451), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(6524), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(6526), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(6783), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6785), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [454] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(6528), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(474), + [sym_keyword] = STATE(474), + [sym_php_statement] = STATE(474), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(474), + [sym__inline_directive] = STATE(474), + [sym__nested_directive] = STATE(474), + [sym_fragment] = STATE(474), + [sym_section] = STATE(474), + [sym_inlineSection] = STATE(474), + [sym_once] = STATE(474), + [sym_verbatim] = STATE(474), + [sym_stack] = STATE(474), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(474), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(474), + [sym_loop] = STATE(474), + [sym_loop_operator] = STATE(474), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(474), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(474), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(474), + [sym_text] = STATE(474), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(474), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(6787), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6769), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [455] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(6530), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(6789), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [456] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(6532), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(6791), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [457] = { [sym__definition] = STATE(455), [sym_keyword] = STATE(455), [sym_php_statement] = STATE(455), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), [sym_attribute] = STATE(455), [sym__inline_directive] = STATE(455), [sym__nested_directive] = STATE(455), @@ -81007,237 +82393,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(455), [sym_verbatim] = STATE(455), [sym_stack] = STATE(455), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), [sym_conditional] = STATE(455), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), [sym_switch] = STATE(455), [sym_loop] = STATE(455), [sym_loop_operator] = STATE(455), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), [sym_envoy] = STATE(455), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), [sym_livewire] = STATE(455), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(455), [aux_sym__directive_body] = STATE(455), [sym_text] = STATE(455), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(6534), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(6536), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(6793), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(6795), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [458] = { - [sym__definition] = STATE(648), - [sym_keyword] = STATE(648), - [sym_php_statement] = STATE(648), - [sym__escaped] = STATE(2666), - [sym__unescaped] = STATE(2666), - [sym__raw] = STATE(2666), - [sym__inline_raw] = STATE(2666), - [sym__multi_line_raw] = STATE(2666), - [sym_attribute] = STATE(648), - [sym__inline_directive] = STATE(648), - [sym__nested_directive] = STATE(648), - [sym_fragment] = STATE(648), - [sym_section] = STATE(648), - [sym_inlineSection] = STATE(648), - [sym_once] = STATE(648), - [sym_verbatim] = STATE(648), - [sym_stack] = STATE(648), - [sym__push] = STATE(2665), - [sym__pushOnce] = STATE(2665), - [sym__pushIf] = STATE(2665), - [sym__prepend] = STATE(2665), - [sym__prependOnce] = STATE(2665), - [sym_conditional] = STATE(648), - [sym__if] = STATE(2608), - [sym__unless] = STATE(2608), - [sym__isset] = STATE(2608), - [sym__empty] = STATE(2608), - [sym__auth] = STATE(2608), - [sym__guest] = STATE(2608), - [sym__production] = STATE(2608), - [sym__env] = STATE(2608), - [sym__hasSection] = STATE(2608), - [sym__sectionMissing] = STATE(2608), - [sym__error] = STATE(2608), - [sym_authorization] = STATE(2608), - [sym__can] = STATE(2501), - [sym__cannot] = STATE(2501), - [sym__canany] = STATE(2501), - [sym__feature] = STATE(2608), - [sym__custom] = STATE(2608), - [sym_switch] = STATE(648), - [sym_loop] = STATE(648), - [sym_loop_operator] = STATE(648), - [sym__for] = STATE(2584), - [sym__foreach] = STATE(2584), - [sym__forelse] = STATE(2584), - [sym__while] = STATE(2584), - [sym_envoy] = STATE(648), - [sym__setup] = STATE(2666), - [sym__task] = STATE(2583), - [sym__story] = STATE(2583), - [sym__hooks] = STATE(2666), - [sym__before] = STATE(2666), - [sym__after] = STATE(2666), - [sym__envoy_error] = STATE(2666), - [sym__success] = STATE(2666), - [sym__finished] = STATE(2666), - [sym_livewire] = STATE(648), - [sym__persist] = STATE(2526), - [sym__teleport] = STATE(2526), - [sym__volt] = STATE(2526), - [aux_sym__directive_body] = STATE(648), - [sym_text] = STATE(648), - [sym__text] = STATE(1078), - [aux_sym_php_only_repeat1] = STATE(1078), - [sym_comment] = ACTIONS(6538), - [aux_sym_keyword_token1] = ACTIONS(6290), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6292), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6294), - [anon_sym_ATphp] = ACTIONS(6296), - [aux_sym_attribute_token1] = ACTIONS(6298), - [aux_sym__inline_directive_token1] = ACTIONS(6300), - [anon_sym_ATfragment] = ACTIONS(6302), - [anon_sym_ATsection] = ACTIONS(6304), - [anon_sym_ATonce] = ACTIONS(6306), - [anon_sym_ATverbatim] = ACTIONS(6308), - [anon_sym_ATpush] = ACTIONS(6310), - [anon_sym_ATpushOnce] = ACTIONS(6312), - [anon_sym_ATpushIf] = ACTIONS(6314), - [anon_sym_ATendPushIf] = ACTIONS(4996), - [anon_sym_ATprepend] = ACTIONS(6316), - [anon_sym_ATprependOnce] = ACTIONS(6318), - [anon_sym_ATif] = ACTIONS(6320), - [anon_sym_ATunless] = ACTIONS(6322), - [anon_sym_ATisset] = ACTIONS(6324), - [anon_sym_ATempty] = ACTIONS(6326), - [anon_sym_ATauth] = ACTIONS(6328), - [anon_sym_ATguest] = ACTIONS(6330), - [anon_sym_ATproduction] = ACTIONS(6332), - [anon_sym_ATenv] = ACTIONS(6334), - [anon_sym_AThasSection] = ACTIONS(6336), - [anon_sym_ATsectionMissing] = ACTIONS(6338), - [anon_sym_ATerror] = ACTIONS(6340), - [anon_sym_ATcan] = ACTIONS(6342), - [anon_sym_ATcannot] = ACTIONS(6344), - [anon_sym_ATcanany] = ACTIONS(6346), - [anon_sym_ATfeature] = ACTIONS(6348), - [aux_sym__custom_token1] = ACTIONS(6350), - [aux_sym__custom_token2] = ACTIONS(6352), - [anon_sym_ATswitch] = ACTIONS(6354), - [aux_sym_loop_operator_token1] = ACTIONS(6356), - [anon_sym_ATfor] = ACTIONS(6358), - [anon_sym_ATforeach] = ACTIONS(6360), - [anon_sym_ATforelse] = ACTIONS(6362), - [anon_sym_ATwhile] = ACTIONS(6364), - [anon_sym_ATsetup] = ACTIONS(6366), - [anon_sym_ATtask] = ACTIONS(6368), - [anon_sym_ATstory] = ACTIONS(6370), - [anon_sym_ATbefore] = ACTIONS(6372), - [anon_sym_ATafter] = ACTIONS(6374), - [anon_sym_ATsuccess] = ACTIONS(6376), - [anon_sym_ATfinished] = ACTIONS(6378), - [anon_sym_ATpersist] = ACTIONS(6380), - [anon_sym_ATteleport] = ACTIONS(6382), - [anon_sym_ATvolt] = ACTIONS(6384), - [aux_sym__text_token1] = ACTIONS(6386), - [aux_sym__text_token2] = ACTIONS(6386), - [aux_sym__text_token3] = ACTIONS(6388), - }, - [459] = { [sym__definition] = STATE(456), [sym_keyword] = STATE(456), [sym_php_statement] = STATE(456), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), [sym_attribute] = STATE(456), [sym__inline_directive] = STATE(456), [sym__nested_directive] = STATE(456), @@ -81247,117 +82515,607 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(456), [sym_verbatim] = STATE(456), [sym_stack] = STATE(456), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), [sym_conditional] = STATE(456), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), [sym_switch] = STATE(456), [sym_loop] = STATE(456), [sym_loop_operator] = STATE(456), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), [sym_envoy] = STATE(456), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), [sym_livewire] = STATE(456), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(456), [aux_sym__directive_body] = STATE(456), [sym_text] = STATE(456), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(6540), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(6542), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(6797), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(6799), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), + }, + [459] = { + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6801), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [460] = { + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6803), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), + }, + [461] = { + [sym__definition] = STATE(459), + [sym_keyword] = STATE(459), + [sym_php_statement] = STATE(459), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(459), + [sym__inline_directive] = STATE(459), + [sym__nested_directive] = STATE(459), + [sym_fragment] = STATE(459), + [sym_section] = STATE(459), + [sym_inlineSection] = STATE(459), + [sym_once] = STATE(459), + [sym_verbatim] = STATE(459), + [sym_stack] = STATE(459), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(459), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(459), + [sym_loop] = STATE(459), + [sym_loop_operator] = STATE(459), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(459), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(459), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(459), + [sym_text] = STATE(459), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(459), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(6805), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6807), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), + }, + [462] = { + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6807), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), + }, + [463] = { [sym__definition] = STATE(460), [sym_keyword] = STATE(460), [sym_php_statement] = STATE(460), - [sym__escaped] = STATE(3486), - [sym__unescaped] = STATE(3486), - [sym__raw] = STATE(3486), - [sym__inline_raw] = STATE(3486), - [sym__multi_line_raw] = STATE(3486), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(460), [sym__inline_directive] = STATE(460), [sym__nested_directive] = STATE(460), @@ -81367,1077 +83125,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(460), [sym_verbatim] = STATE(460), [sym_stack] = STATE(460), - [sym__push] = STATE(3487), - [sym__pushOnce] = STATE(3487), - [sym__pushIf] = STATE(3487), - [sym__prepend] = STATE(3487), - [sym__prependOnce] = STATE(3487), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(460), - [sym__if] = STATE(3488), - [sym__unless] = STATE(3488), - [sym__isset] = STATE(3488), - [sym__empty] = STATE(3488), - [sym__auth] = STATE(3488), - [sym__guest] = STATE(3488), - [sym__production] = STATE(3488), - [sym__env] = STATE(3488), - [sym__hasSection] = STATE(3488), - [sym__sectionMissing] = STATE(3488), - [sym__error] = STATE(3488), - [sym_authorization] = STATE(3488), - [sym__can] = STATE(3489), - [sym__cannot] = STATE(3489), - [sym__canany] = STATE(3489), - [sym__feature] = STATE(3488), - [sym__custom] = STATE(3488), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(460), [sym_loop] = STATE(460), [sym_loop_operator] = STATE(460), - [sym__for] = STATE(3490), - [sym__foreach] = STATE(3490), - [sym__forelse] = STATE(3490), - [sym__while] = STATE(3490), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(460), - [sym__setup] = STATE(3486), - [sym__task] = STATE(3491), - [sym__story] = STATE(3491), - [sym__hooks] = STATE(3486), - [sym__before] = STATE(3486), - [sym__after] = STATE(3486), - [sym__envoy_error] = STATE(3486), - [sym__success] = STATE(3486), - [sym__finished] = STATE(3486), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(460), - [sym__persist] = STATE(3494), - [sym__teleport] = STATE(3494), - [sym__volt] = STATE(3494), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(460), [aux_sym__directive_body] = STATE(460), [sym_text] = STATE(460), - [sym__text] = STATE(895), - [aux_sym_php_only_repeat1] = STATE(895), - [sym_comment] = ACTIONS(6544), - [aux_sym_keyword_token1] = ACTIONS(6547), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6550), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6553), - [anon_sym_ATphp] = ACTIONS(6556), - [aux_sym_attribute_token1] = ACTIONS(6559), - [aux_sym__inline_directive_token1] = ACTIONS(6562), - [anon_sym_ATfragment] = ACTIONS(6565), - [anon_sym_ATsection] = ACTIONS(6568), - [anon_sym_ATonce] = ACTIONS(6571), - [anon_sym_ATverbatim] = ACTIONS(6574), - [anon_sym_ATpush] = ACTIONS(6577), - [anon_sym_ATendpush] = ACTIONS(5035), - [anon_sym_ATpushOnce] = ACTIONS(6580), - [anon_sym_ATpushIf] = ACTIONS(6583), - [anon_sym_ATprepend] = ACTIONS(6586), - [anon_sym_ATprependOnce] = ACTIONS(6589), - [anon_sym_ATif] = ACTIONS(6592), - [anon_sym_ATunless] = ACTIONS(6595), - [anon_sym_ATisset] = ACTIONS(6598), - [anon_sym_ATempty] = ACTIONS(6601), - [anon_sym_ATauth] = ACTIONS(6604), - [anon_sym_ATguest] = ACTIONS(6607), - [anon_sym_ATproduction] = ACTIONS(6610), - [anon_sym_ATenv] = ACTIONS(6613), - [anon_sym_AThasSection] = ACTIONS(6616), - [anon_sym_ATsectionMissing] = ACTIONS(6619), - [anon_sym_ATerror] = ACTIONS(6622), - [anon_sym_ATcan] = ACTIONS(6625), - [anon_sym_ATcannot] = ACTIONS(6628), - [anon_sym_ATcanany] = ACTIONS(6631), - [anon_sym_ATfeature] = ACTIONS(6634), - [aux_sym__custom_token1] = ACTIONS(6637), - [aux_sym__custom_token2] = ACTIONS(6640), - [anon_sym_ATswitch] = ACTIONS(6643), - [aux_sym_loop_operator_token1] = ACTIONS(6646), - [anon_sym_ATfor] = ACTIONS(6649), - [anon_sym_ATforeach] = ACTIONS(6652), - [anon_sym_ATforelse] = ACTIONS(6655), - [anon_sym_ATwhile] = ACTIONS(6658), - [anon_sym_ATsetup] = ACTIONS(6661), - [anon_sym_ATtask] = ACTIONS(6664), - [anon_sym_ATstory] = ACTIONS(6667), - [anon_sym_ATbefore] = ACTIONS(6670), - [anon_sym_ATafter] = ACTIONS(6673), - [anon_sym_ATsuccess] = ACTIONS(6676), - [anon_sym_ATfinished] = ACTIONS(6679), - [anon_sym_ATpersist] = ACTIONS(6682), - [anon_sym_ATteleport] = ACTIONS(6685), - [anon_sym_ATvolt] = ACTIONS(6688), - [aux_sym__text_token1] = ACTIONS(6691), - [aux_sym__text_token2] = ACTIONS(6691), - [aux_sym__text_token3] = ACTIONS(6694), - }, - [461] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(6697), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), - }, - [462] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(6699), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), - }, - [463] = { - [sym__definition] = STATE(461), - [sym_keyword] = STATE(461), - [sym_php_statement] = STATE(461), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(461), - [sym__inline_directive] = STATE(461), - [sym__nested_directive] = STATE(461), - [sym_fragment] = STATE(461), - [sym_section] = STATE(461), - [sym_inlineSection] = STATE(461), - [sym_once] = STATE(461), - [sym_verbatim] = STATE(461), - [sym_stack] = STATE(461), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(461), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(461), - [sym_loop] = STATE(461), - [sym_loop_operator] = STATE(461), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(461), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(461), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(461), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(461), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(6701), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(6703), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(6809), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6811), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [464] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(6703), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(656), + [sym_keyword] = STATE(656), + [sym_php_statement] = STATE(656), + [sym__escaped] = STATE(2365), + [sym__unescaped] = STATE(2365), + [sym__raw] = STATE(2365), + [sym__inline_raw] = STATE(2365), + [sym__multi_line_raw] = STATE(2365), + [sym_attribute] = STATE(656), + [sym__inline_directive] = STATE(656), + [sym__nested_directive] = STATE(656), + [sym_fragment] = STATE(656), + [sym_section] = STATE(656), + [sym_inlineSection] = STATE(656), + [sym_once] = STATE(656), + [sym_verbatim] = STATE(656), + [sym_stack] = STATE(656), + [sym__push] = STATE(2192), + [sym__pushOnce] = STATE(2192), + [sym__pushIf] = STATE(2192), + [sym__prepend] = STATE(2192), + [sym__prependOnce] = STATE(2192), + [sym_conditional] = STATE(656), + [sym__if] = STATE(2291), + [sym__unless] = STATE(2291), + [sym__isset] = STATE(2291), + [sym__empty] = STATE(2291), + [sym__auth] = STATE(2291), + [sym__guest] = STATE(2291), + [sym__production] = STATE(2291), + [sym__env] = STATE(2291), + [sym__hasSection] = STATE(2291), + [sym__sectionMissing] = STATE(2291), + [sym__error] = STATE(2291), + [sym_authorization] = STATE(2291), + [sym__can] = STATE(2283), + [sym__cannot] = STATE(2283), + [sym__canany] = STATE(2283), + [sym__feature] = STATE(2291), + [sym__custom] = STATE(2291), + [sym_switch] = STATE(656), + [sym_loop] = STATE(656), + [sym_loop_operator] = STATE(656), + [sym__for] = STATE(2282), + [sym__foreach] = STATE(2282), + [sym__forelse] = STATE(2282), + [sym__while] = STATE(2282), + [sym_envoy] = STATE(656), + [sym__setup] = STATE(2365), + [sym__task] = STATE(2224), + [sym__story] = STATE(2224), + [sym__hooks] = STATE(2365), + [sym__before] = STATE(2365), + [sym__after] = STATE(2365), + [sym__envoy_error] = STATE(2365), + [sym__success] = STATE(2365), + [sym__finished] = STATE(2365), + [sym_livewire] = STATE(656), + [sym__persist] = STATE(2208), + [sym__teleport] = STATE(2208), + [sym__volt] = STATE(2208), + [sym_alpine_js] = STATE(656), + [aux_sym__directive_body] = STATE(656), + [sym_text] = STATE(656), + [sym__text] = STATE(1091), + [aux_sym_php_only_repeat1] = STATE(1091), + [sym_comment] = ACTIONS(6813), + [aux_sym_keyword_token1] = ACTIONS(6663), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6665), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6667), + [anon_sym_ATphp] = ACTIONS(6669), + [aux_sym_attribute_token1] = ACTIONS(6671), + [aux_sym__inline_directive_token1] = ACTIONS(6673), + [anon_sym_ATfragment] = ACTIONS(6675), + [anon_sym_ATsection] = ACTIONS(6677), + [anon_sym_ATonce] = ACTIONS(6679), + [anon_sym_ATverbatim] = ACTIONS(6681), + [anon_sym_ATpush] = ACTIONS(6683), + [anon_sym_ATpushOnce] = ACTIONS(6685), + [anon_sym_ATpushIf] = ACTIONS(6687), + [anon_sym_ATendPushIf] = ACTIONS(4859), + [anon_sym_ATprepend] = ACTIONS(6689), + [anon_sym_ATprependOnce] = ACTIONS(6691), + [anon_sym_ATif] = ACTIONS(6693), + [anon_sym_ATunless] = ACTIONS(6695), + [anon_sym_ATisset] = ACTIONS(6697), + [anon_sym_ATempty] = ACTIONS(6699), + [anon_sym_ATauth] = ACTIONS(6701), + [anon_sym_ATguest] = ACTIONS(6703), + [anon_sym_ATproduction] = ACTIONS(6705), + [anon_sym_ATenv] = ACTIONS(6707), + [anon_sym_AThasSection] = ACTIONS(6709), + [anon_sym_ATsectionMissing] = ACTIONS(6711), + [anon_sym_ATerror] = ACTIONS(6713), + [anon_sym_ATcan] = ACTIONS(6715), + [anon_sym_ATcannot] = ACTIONS(6717), + [anon_sym_ATcanany] = ACTIONS(6719), + [anon_sym_ATfeature] = ACTIONS(6721), + [aux_sym__custom_token1] = ACTIONS(6723), + [aux_sym__custom_token2] = ACTIONS(6725), + [anon_sym_ATswitch] = ACTIONS(6727), + [aux_sym_loop_operator_token1] = ACTIONS(6729), + [anon_sym_ATfor] = ACTIONS(6731), + [anon_sym_ATforeach] = ACTIONS(6733), + [anon_sym_ATforelse] = ACTIONS(6735), + [anon_sym_ATwhile] = ACTIONS(6737), + [anon_sym_ATsetup] = ACTIONS(6739), + [anon_sym_ATtask] = ACTIONS(6741), + [anon_sym_ATstory] = ACTIONS(6743), + [anon_sym_ATbefore] = ACTIONS(6745), + [anon_sym_ATafter] = ACTIONS(6747), + [anon_sym_ATsuccess] = ACTIONS(6749), + [anon_sym_ATfinished] = ACTIONS(6751), + [anon_sym_ATpersist] = ACTIONS(6753), + [anon_sym_ATteleport] = ACTIONS(6755), + [anon_sym_ATvolt] = ACTIONS(6757), + [aux_sym_alpine_js_token1] = ACTIONS(6759), + [aux_sym__text_token1] = ACTIONS(6761), + [aux_sym__text_token2] = ACTIONS(6761), + [aux_sym__text_token3] = ACTIONS(6763), }, [465] = { - [sym__definition] = STATE(462), - [sym_keyword] = STATE(462), - [sym_php_statement] = STATE(462), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(462), - [sym__inline_directive] = STATE(462), - [sym__nested_directive] = STATE(462), - [sym_fragment] = STATE(462), - [sym_section] = STATE(462), - [sym_inlineSection] = STATE(462), - [sym_once] = STATE(462), - [sym_verbatim] = STATE(462), - [sym_stack] = STATE(462), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(462), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(462), - [sym_loop] = STATE(462), - [sym_loop_operator] = STATE(462), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(462), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(462), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(462), - [sym_text] = STATE(462), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(6705), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(6707), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6815), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [466] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(6709), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), - }, - [467] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(6711), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), - }, - [468] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(6713), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), - }, - [469] = { [sym__definition] = STATE(466), [sym_keyword] = STATE(466), [sym_php_statement] = STATE(466), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(3539), + [sym__unescaped] = STATE(3539), + [sym__raw] = STATE(3539), + [sym__inline_raw] = STATE(3539), + [sym__multi_line_raw] = STATE(3539), [sym_attribute] = STATE(466), [sym__inline_directive] = STATE(466), [sym__nested_directive] = STATE(466), @@ -82447,477 +83491,851 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(466), [sym_verbatim] = STATE(466), [sym_stack] = STATE(466), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(3540), + [sym__pushOnce] = STATE(3540), + [sym__pushIf] = STATE(3540), + [sym__prepend] = STATE(3540), + [sym__prependOnce] = STATE(3540), [sym_conditional] = STATE(466), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(3541), + [sym__unless] = STATE(3541), + [sym__isset] = STATE(3541), + [sym__empty] = STATE(3541), + [sym__auth] = STATE(3541), + [sym__guest] = STATE(3541), + [sym__production] = STATE(3541), + [sym__env] = STATE(3541), + [sym__hasSection] = STATE(3541), + [sym__sectionMissing] = STATE(3541), + [sym__error] = STATE(3541), + [sym_authorization] = STATE(3541), + [sym__can] = STATE(3542), + [sym__cannot] = STATE(3542), + [sym__canany] = STATE(3542), + [sym__feature] = STATE(3541), + [sym__custom] = STATE(3541), [sym_switch] = STATE(466), [sym_loop] = STATE(466), [sym_loop_operator] = STATE(466), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(3543), + [sym__foreach] = STATE(3543), + [sym__forelse] = STATE(3543), + [sym__while] = STATE(3543), [sym_envoy] = STATE(466), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(3539), + [sym__task] = STATE(3544), + [sym__story] = STATE(3544), + [sym__hooks] = STATE(3539), + [sym__before] = STATE(3539), + [sym__after] = STATE(3539), + [sym__envoy_error] = STATE(3539), + [sym__success] = STATE(3539), + [sym__finished] = STATE(3539), [sym_livewire] = STATE(466), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(3545), + [sym__teleport] = STATE(3545), + [sym__volt] = STATE(3545), + [sym_alpine_js] = STATE(466), [aux_sym__directive_body] = STATE(466), [sym_text] = STATE(466), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(6715), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(6717), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(906), + [aux_sym_php_only_repeat1] = STATE(906), + [sym_comment] = ACTIONS(6817), + [aux_sym_keyword_token1] = ACTIONS(6820), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6823), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6826), + [anon_sym_ATphp] = ACTIONS(6829), + [aux_sym_attribute_token1] = ACTIONS(6832), + [aux_sym__inline_directive_token1] = ACTIONS(6835), + [anon_sym_ATfragment] = ACTIONS(6838), + [anon_sym_ATsection] = ACTIONS(6841), + [anon_sym_ATonce] = ACTIONS(6844), + [anon_sym_ATverbatim] = ACTIONS(6847), + [anon_sym_ATpush] = ACTIONS(6850), + [anon_sym_ATendpush] = ACTIONS(5134), + [anon_sym_ATpushOnce] = ACTIONS(6853), + [anon_sym_ATpushIf] = ACTIONS(6856), + [anon_sym_ATprepend] = ACTIONS(6859), + [anon_sym_ATprependOnce] = ACTIONS(6862), + [anon_sym_ATif] = ACTIONS(6865), + [anon_sym_ATunless] = ACTIONS(6868), + [anon_sym_ATisset] = ACTIONS(6871), + [anon_sym_ATempty] = ACTIONS(6874), + [anon_sym_ATauth] = ACTIONS(6877), + [anon_sym_ATguest] = ACTIONS(6880), + [anon_sym_ATproduction] = ACTIONS(6883), + [anon_sym_ATenv] = ACTIONS(6886), + [anon_sym_AThasSection] = ACTIONS(6889), + [anon_sym_ATsectionMissing] = ACTIONS(6892), + [anon_sym_ATerror] = ACTIONS(6895), + [anon_sym_ATcan] = ACTIONS(6898), + [anon_sym_ATcannot] = ACTIONS(6901), + [anon_sym_ATcanany] = ACTIONS(6904), + [anon_sym_ATfeature] = ACTIONS(6907), + [aux_sym__custom_token1] = ACTIONS(6910), + [aux_sym__custom_token2] = ACTIONS(6913), + [anon_sym_ATswitch] = ACTIONS(6916), + [aux_sym_loop_operator_token1] = ACTIONS(6919), + [anon_sym_ATfor] = ACTIONS(6922), + [anon_sym_ATforeach] = ACTIONS(6925), + [anon_sym_ATforelse] = ACTIONS(6928), + [anon_sym_ATwhile] = ACTIONS(6931), + [anon_sym_ATsetup] = ACTIONS(6934), + [anon_sym_ATtask] = ACTIONS(6937), + [anon_sym_ATstory] = ACTIONS(6940), + [anon_sym_ATbefore] = ACTIONS(6943), + [anon_sym_ATafter] = ACTIONS(6946), + [anon_sym_ATsuccess] = ACTIONS(6949), + [anon_sym_ATfinished] = ACTIONS(6952), + [anon_sym_ATpersist] = ACTIONS(6955), + [anon_sym_ATteleport] = ACTIONS(6958), + [anon_sym_ATvolt] = ACTIONS(6961), + [aux_sym_alpine_js_token1] = ACTIONS(6964), + [aux_sym__text_token1] = ACTIONS(6967), + [aux_sym__text_token2] = ACTIONS(6967), + [aux_sym__text_token3] = ACTIONS(6970), + }, + [467] = { + [sym__definition] = STATE(214), + [sym_keyword] = STATE(214), + [sym_php_statement] = STATE(214), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(214), + [sym__inline_directive] = STATE(214), + [sym__nested_directive] = STATE(214), + [sym_fragment] = STATE(214), + [sym_section] = STATE(214), + [sym_inlineSection] = STATE(214), + [sym_once] = STATE(214), + [sym_verbatim] = STATE(214), + [sym_stack] = STATE(214), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(214), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(214), + [sym_loop] = STATE(214), + [sym_loop_operator] = STATE(214), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(214), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(214), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(214), + [sym_text] = STATE(214), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(214), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(6973), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6975), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), + }, + [468] = { + [sym__definition] = STATE(465), + [sym_keyword] = STATE(465), + [sym_php_statement] = STATE(465), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(465), + [sym__inline_directive] = STATE(465), + [sym__nested_directive] = STATE(465), + [sym_fragment] = STATE(465), + [sym_section] = STATE(465), + [sym_inlineSection] = STATE(465), + [sym_once] = STATE(465), + [sym_verbatim] = STATE(465), + [sym_stack] = STATE(465), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(465), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(465), + [sym_loop] = STATE(465), + [sym_loop_operator] = STATE(465), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(465), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(465), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(465), + [aux_sym__directive_body] = STATE(465), + [sym_text] = STATE(465), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(6977), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6979), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), + }, + [469] = { + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6981), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [470] = { - [sym__definition] = STATE(484), - [sym_keyword] = STATE(484), - [sym_php_statement] = STATE(484), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(484), - [sym__inline_directive] = STATE(484), - [sym__nested_directive] = STATE(484), - [sym_fragment] = STATE(484), - [sym_section] = STATE(484), - [sym_inlineSection] = STATE(484), - [sym_once] = STATE(484), - [sym_verbatim] = STATE(484), - [sym_stack] = STATE(484), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(484), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(484), - [sym_loop] = STATE(484), - [sym_loop_operator] = STATE(484), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(484), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(484), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(484), - [sym_text] = STATE(484), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(6719), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(6721), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(6983), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [471] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(6723), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(6985), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [472] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(6725), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(470), + [sym_keyword] = STATE(470), + [sym_php_statement] = STATE(470), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(470), + [sym__inline_directive] = STATE(470), + [sym__nested_directive] = STATE(470), + [sym_fragment] = STATE(470), + [sym_section] = STATE(470), + [sym_inlineSection] = STATE(470), + [sym_once] = STATE(470), + [sym_verbatim] = STATE(470), + [sym_stack] = STATE(470), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(470), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(470), + [sym_loop] = STATE(470), + [sym_loop_operator] = STATE(470), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(470), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(470), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(470), + [aux_sym__directive_body] = STATE(470), + [sym_text] = STATE(470), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(6987), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(6989), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [473] = { [sym__definition] = STATE(471), [sym_keyword] = STATE(471), [sym_php_statement] = STATE(471), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), [sym_attribute] = STATE(471), [sym__inline_directive] = STATE(471), [sym__nested_directive] = STATE(471), @@ -82927,1197 +84345,1217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(471), [sym_verbatim] = STATE(471), [sym_stack] = STATE(471), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), [sym_conditional] = STATE(471), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), [sym_switch] = STATE(471), [sym_loop] = STATE(471), [sym_loop_operator] = STATE(471), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), [sym_envoy] = STATE(471), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), [sym_livewire] = STATE(471), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(471), [aux_sym__directive_body] = STATE(471), [sym_text] = STATE(471), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(6727), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(6729), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(6991), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(6993), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [474] = { - [sym__definition] = STATE(368), - [sym_keyword] = STATE(368), - [sym_php_statement] = STATE(368), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(368), - [sym__inline_directive] = STATE(368), - [sym__nested_directive] = STATE(368), - [sym_fragment] = STATE(368), - [sym_section] = STATE(368), - [sym_inlineSection] = STATE(368), - [sym_once] = STATE(368), - [sym_verbatim] = STATE(368), - [sym_stack] = STATE(368), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(368), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(368), - [sym_loop] = STATE(368), - [sym_loop_operator] = STATE(368), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(368), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(368), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(368), - [sym_text] = STATE(368), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(6731), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(6733), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6995), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [475] = { - [sym__definition] = STATE(472), - [sym_keyword] = STATE(472), - [sym_php_statement] = STATE(472), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(472), - [sym__inline_directive] = STATE(472), - [sym__nested_directive] = STATE(472), - [sym_fragment] = STATE(472), - [sym_section] = STATE(472), - [sym_inlineSection] = STATE(472), - [sym_once] = STATE(472), - [sym_verbatim] = STATE(472), - [sym_stack] = STATE(472), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(472), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(472), - [sym_loop] = STATE(472), - [sym_loop_operator] = STATE(472), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(472), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(472), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(472), - [sym_text] = STATE(472), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(6735), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(6737), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(6997), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [476] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(6739), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(6999), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [477] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(6741), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(475), + [sym_keyword] = STATE(475), + [sym_php_statement] = STATE(475), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(475), + [sym__inline_directive] = STATE(475), + [sym__nested_directive] = STATE(475), + [sym_fragment] = STATE(475), + [sym_section] = STATE(475), + [sym_inlineSection] = STATE(475), + [sym_once] = STATE(475), + [sym_verbatim] = STATE(475), + [sym_stack] = STATE(475), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(475), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(475), + [sym_loop] = STATE(475), + [sym_loop_operator] = STATE(475), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(475), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(475), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(475), + [sym_text] = STATE(475), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(475), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(7001), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7003), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [478] = { - [sym__definition] = STATE(476), - [sym_keyword] = STATE(476), - [sym_php_statement] = STATE(476), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(476), - [sym__inline_directive] = STATE(476), - [sym__nested_directive] = STATE(476), - [sym_fragment] = STATE(476), - [sym_section] = STATE(476), - [sym_inlineSection] = STATE(476), - [sym_once] = STATE(476), - [sym_verbatim] = STATE(476), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7003), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), + }, + [479] = { + [sym__definition] = STATE(476), + [sym_keyword] = STATE(476), + [sym_php_statement] = STATE(476), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(476), + [sym__inline_directive] = STATE(476), + [sym__nested_directive] = STATE(476), + [sym_fragment] = STATE(476), + [sym_section] = STATE(476), + [sym_inlineSection] = STATE(476), + [sym_once] = STATE(476), + [sym_verbatim] = STATE(476), [sym_stack] = STATE(476), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(476), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(476), [sym_loop] = STATE(476), [sym_loop_operator] = STATE(476), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(476), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(476), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(476), + [aux_sym__directive_body] = STATE(476), [sym_text] = STATE(476), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(476), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(6743), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(6745), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), - }, - [479] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(6745), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(7005), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7007), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [480] = { - [sym__definition] = STATE(477), - [sym_keyword] = STATE(477), - [sym_php_statement] = STATE(477), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(477), - [sym__inline_directive] = STATE(477), - [sym__nested_directive] = STATE(477), - [sym_fragment] = STATE(477), - [sym_section] = STATE(477), - [sym_inlineSection] = STATE(477), - [sym_once] = STATE(477), - [sym_verbatim] = STATE(477), - [sym_stack] = STATE(477), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(477), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(477), - [sym_loop] = STATE(477), - [sym_loop_operator] = STATE(477), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(477), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(477), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(477), - [sym_text] = STATE(477), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(6747), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(6749), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(510), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(7009), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(7011), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [481] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(6751), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7013), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [482] = { - [sym__definition] = STATE(479), - [sym_keyword] = STATE(479), - [sym_php_statement] = STATE(479), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(479), - [sym__inline_directive] = STATE(479), - [sym__nested_directive] = STATE(479), - [sym_fragment] = STATE(479), - [sym_section] = STATE(479), - [sym_inlineSection] = STATE(479), - [sym_once] = STATE(479), - [sym_verbatim] = STATE(479), - [sym_stack] = STATE(479), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(479), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(479), - [sym_loop] = STATE(479), - [sym_loop_operator] = STATE(479), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(479), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(479), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(479), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(479), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(6753), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(6755), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(478), + [sym_keyword] = STATE(478), + [sym_php_statement] = STATE(478), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(478), + [sym__inline_directive] = STATE(478), + [sym__nested_directive] = STATE(478), + [sym_fragment] = STATE(478), + [sym_section] = STATE(478), + [sym_inlineSection] = STATE(478), + [sym_once] = STATE(478), + [sym_verbatim] = STATE(478), + [sym_stack] = STATE(478), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(478), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(478), + [sym_loop] = STATE(478), + [sym_loop_operator] = STATE(478), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(478), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(478), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(478), + [sym_text] = STATE(478), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(478), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(7015), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7017), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [483] = { [sym__definition] = STATE(481), [sym_keyword] = STATE(481), [sym_php_statement] = STATE(481), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(481), [sym__inline_directive] = STATE(481), [sym__nested_directive] = STATE(481), @@ -84127,477 +85565,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(481), [sym_verbatim] = STATE(481), [sym_stack] = STATE(481), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(481), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(481), [sym_loop] = STATE(481), [sym_loop_operator] = STATE(481), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(481), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(481), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(481), [aux_sym__directive_body] = STATE(481), [sym_text] = STATE(481), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(6757), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(6759), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(7019), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7021), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [484] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(6761), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(525), + [sym_keyword] = STATE(525), + [sym_php_statement] = STATE(525), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(525), + [sym__inline_directive] = STATE(525), + [sym__nested_directive] = STATE(525), + [sym_fragment] = STATE(525), + [sym_section] = STATE(525), + [sym_inlineSection] = STATE(525), + [sym_once] = STATE(525), + [sym_verbatim] = STATE(525), + [sym_stack] = STATE(525), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(525), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(525), + [sym_loop] = STATE(525), + [sym_loop_operator] = STATE(525), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(525), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(525), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(525), + [aux_sym__directive_body] = STATE(525), + [sym_text] = STATE(525), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(7023), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(7025), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [485] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(6763), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(7027), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [486] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(6765), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(7029), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [487] = { [sym__definition] = STATE(485), [sym_keyword] = STATE(485), [sym_php_statement] = STATE(485), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), [sym_attribute] = STATE(485), [sym__inline_directive] = STATE(485), [sym__nested_directive] = STATE(485), @@ -84607,117 +86053,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(485), [sym_verbatim] = STATE(485), [sym_stack] = STATE(485), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), [sym_conditional] = STATE(485), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), [sym_switch] = STATE(485), [sym_loop] = STATE(485), [sym_loop_operator] = STATE(485), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), [sym_envoy] = STATE(485), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), [sym_livewire] = STATE(485), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(485), [aux_sym__directive_body] = STATE(485), [sym_text] = STATE(485), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(6767), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(6769), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(7031), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(7033), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [488] = { [sym__definition] = STATE(486), [sym_keyword] = STATE(486), [sym_php_statement] = STATE(486), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), [sym_attribute] = STATE(486), [sym__inline_directive] = STATE(486), [sym__nested_directive] = STATE(486), @@ -84727,357 +86175,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(486), [sym_verbatim] = STATE(486), [sym_stack] = STATE(486), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), [sym_conditional] = STATE(486), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), [sym_switch] = STATE(486), [sym_loop] = STATE(486), [sym_loop_operator] = STATE(486), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), [sym_envoy] = STATE(486), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), [sym_livewire] = STATE(486), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(486), [aux_sym__directive_body] = STATE(486), [sym_text] = STATE(486), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(6771), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(6773), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(7035), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(7037), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [489] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(6775), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7039), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [490] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(6777), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7041), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [491] = { [sym__definition] = STATE(489), [sym_keyword] = STATE(489), [sym_php_statement] = STATE(489), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(489), [sym__inline_directive] = STATE(489), [sym__nested_directive] = STATE(489), @@ -85087,237 +86541,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(489), [sym_verbatim] = STATE(489), [sym_stack] = STATE(489), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(489), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(489), [sym_loop] = STATE(489), [sym_loop_operator] = STATE(489), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(489), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(489), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(489), [sym_text] = STATE(489), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(489), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(6779), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(6781), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(7043), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7045), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [492] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(6781), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7045), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [493] = { [sym__definition] = STATE(490), [sym_keyword] = STATE(490), [sym_php_statement] = STATE(490), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(490), [sym__inline_directive] = STATE(490), [sym__nested_directive] = STATE(490), @@ -85327,237 +86785,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(490), [sym_verbatim] = STATE(490), [sym_stack] = STATE(490), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(490), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(490), [sym_loop] = STATE(490), [sym_loop_operator] = STATE(490), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(490), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(490), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(490), [aux_sym__directive_body] = STATE(490), [sym_text] = STATE(490), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(6783), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(6785), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(7047), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7049), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [494] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(6787), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7051), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [495] = { [sym__definition] = STATE(492), [sym_keyword] = STATE(492), [sym_php_statement] = STATE(492), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(492), [sym__inline_directive] = STATE(492), [sym__nested_directive] = STATE(492), @@ -85567,117 +87029,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(492), [sym_verbatim] = STATE(492), [sym_stack] = STATE(492), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(492), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(492), [sym_loop] = STATE(492), [sym_loop_operator] = STATE(492), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(492), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(492), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(492), [sym_text] = STATE(492), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(492), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(6789), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(6791), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(7053), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7055), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [496] = { [sym__definition] = STATE(494), [sym_keyword] = STATE(494), [sym_php_statement] = STATE(494), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(494), [sym__inline_directive] = STATE(494), [sym__nested_directive] = STATE(494), @@ -85687,477 +87151,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(494), [sym_verbatim] = STATE(494), [sym_stack] = STATE(494), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(494), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(494), [sym_loop] = STATE(494), [sym_loop_operator] = STATE(494), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(494), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(494), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(494), [aux_sym__directive_body] = STATE(494), [sym_text] = STATE(494), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(6793), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(6795), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(7057), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7059), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [497] = { - [sym__definition] = STATE(204), - [sym_keyword] = STATE(204), - [sym_php_statement] = STATE(204), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(204), - [sym__inline_directive] = STATE(204), - [sym__nested_directive] = STATE(204), - [sym_fragment] = STATE(204), - [sym_section] = STATE(204), - [sym_inlineSection] = STATE(204), - [sym_once] = STATE(204), - [sym_verbatim] = STATE(204), - [sym_stack] = STATE(204), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(204), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(204), - [sym_loop] = STATE(204), - [sym_loop_operator] = STATE(204), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(204), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(204), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(204), - [sym_text] = STATE(204), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(6797), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(6799), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7061), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [498] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(6801), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(7063), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [499] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(6803), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(7065), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [500] = { [sym__definition] = STATE(498), [sym_keyword] = STATE(498), [sym_php_statement] = STATE(498), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), [sym_attribute] = STATE(498), [sym__inline_directive] = STATE(498), [sym__nested_directive] = STATE(498), @@ -86167,117 +87639,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(498), [sym_verbatim] = STATE(498), [sym_stack] = STATE(498), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), [sym_conditional] = STATE(498), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), [sym_switch] = STATE(498), [sym_loop] = STATE(498), [sym_loop_operator] = STATE(498), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), [sym_envoy] = STATE(498), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), [sym_livewire] = STATE(498), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(498), [aux_sym__directive_body] = STATE(498), [sym_text] = STATE(498), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(6805), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(6807), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(7067), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(7069), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [501] = { [sym__definition] = STATE(499), [sym_keyword] = STATE(499), [sym_php_statement] = STATE(499), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), [sym_attribute] = STATE(499), [sym__inline_directive] = STATE(499), [sym__nested_directive] = STATE(499), @@ -86287,357 +87761,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(499), [sym_verbatim] = STATE(499), [sym_stack] = STATE(499), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), [sym_conditional] = STATE(499), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), [sym_switch] = STATE(499), [sym_loop] = STATE(499), [sym_loop_operator] = STATE(499), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), [sym_envoy] = STATE(499), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), [sym_livewire] = STATE(499), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(499), [aux_sym__directive_body] = STATE(499), [sym_text] = STATE(499), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(6809), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(6811), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(7071), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(7073), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [502] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(6813), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7075), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [503] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(6815), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7077), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [504] = { [sym__definition] = STATE(502), [sym_keyword] = STATE(502), [sym_php_statement] = STATE(502), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(502), [sym__inline_directive] = STATE(502), [sym__nested_directive] = STATE(502), @@ -86647,237 +88127,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(502), [sym_verbatim] = STATE(502), [sym_stack] = STATE(502), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(502), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(502), [sym_loop] = STATE(502), [sym_loop_operator] = STATE(502), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(502), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(502), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(502), [sym_text] = STATE(502), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(502), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(6817), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(6819), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(7079), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7081), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [505] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(6819), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7081), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [506] = { [sym__definition] = STATE(503), [sym_keyword] = STATE(503), [sym_php_statement] = STATE(503), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(503), [sym__inline_directive] = STATE(503), [sym__nested_directive] = STATE(503), @@ -86887,237 +88371,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(503), [sym_verbatim] = STATE(503), [sym_stack] = STATE(503), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(503), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(503), [sym_loop] = STATE(503), [sym_loop_operator] = STATE(503), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(503), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(503), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(503), [aux_sym__directive_body] = STATE(503), [sym_text] = STATE(503), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(6821), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(6823), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(7083), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7085), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [507] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(6825), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7087), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [508] = { [sym__definition] = STATE(505), [sym_keyword] = STATE(505), [sym_php_statement] = STATE(505), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(505), [sym__inline_directive] = STATE(505), [sym__nested_directive] = STATE(505), @@ -87127,117 +88615,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(505), [sym_verbatim] = STATE(505), [sym_stack] = STATE(505), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(505), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(505), [sym_loop] = STATE(505), [sym_loop_operator] = STATE(505), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(505), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(505), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(505), [sym_text] = STATE(505), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(505), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(6827), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(6829), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(7089), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7091), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [509] = { [sym__definition] = STATE(507), [sym_keyword] = STATE(507), [sym_php_statement] = STATE(507), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(507), [sym__inline_directive] = STATE(507), [sym__nested_directive] = STATE(507), @@ -87247,477 +88737,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(507), [sym_verbatim] = STATE(507), [sym_stack] = STATE(507), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(507), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(507), [sym_loop] = STATE(507), [sym_loop_operator] = STATE(507), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(507), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(507), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(507), [aux_sym__directive_body] = STATE(507), [sym_text] = STATE(507), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(6831), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(6833), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(7093), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7095), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [510] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(6835), - [aux_sym_keyword_token1] = ACTIONS(6838), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6841), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6844), - [anon_sym_ATphp] = ACTIONS(6847), - [aux_sym_attribute_token1] = ACTIONS(6850), - [aux_sym__inline_directive_token1] = ACTIONS(6853), - [anon_sym_ATfragment] = ACTIONS(6856), - [anon_sym_ATsection] = ACTIONS(6859), - [anon_sym_ATonce] = ACTIONS(6862), - [anon_sym_ATendonce] = ACTIONS(5035), - [anon_sym_ATverbatim] = ACTIONS(6865), - [anon_sym_ATpush] = ACTIONS(6868), - [anon_sym_ATpushOnce] = ACTIONS(6871), - [anon_sym_ATpushIf] = ACTIONS(6874), - [anon_sym_ATprepend] = ACTIONS(6877), - [anon_sym_ATprependOnce] = ACTIONS(6880), - [anon_sym_ATif] = ACTIONS(6883), - [anon_sym_ATunless] = ACTIONS(6886), - [anon_sym_ATisset] = ACTIONS(6889), - [anon_sym_ATempty] = ACTIONS(6892), - [anon_sym_ATauth] = ACTIONS(6895), - [anon_sym_ATguest] = ACTIONS(6898), - [anon_sym_ATproduction] = ACTIONS(6901), - [anon_sym_ATenv] = ACTIONS(6904), - [anon_sym_AThasSection] = ACTIONS(6907), - [anon_sym_ATsectionMissing] = ACTIONS(6910), - [anon_sym_ATerror] = ACTIONS(6913), - [anon_sym_ATcan] = ACTIONS(6916), - [anon_sym_ATcannot] = ACTIONS(6919), - [anon_sym_ATcanany] = ACTIONS(6922), - [anon_sym_ATfeature] = ACTIONS(6925), - [aux_sym__custom_token1] = ACTIONS(6928), - [aux_sym__custom_token2] = ACTIONS(6931), - [anon_sym_ATswitch] = ACTIONS(6934), - [aux_sym_loop_operator_token1] = ACTIONS(6937), - [anon_sym_ATfor] = ACTIONS(6940), - [anon_sym_ATforeach] = ACTIONS(6943), - [anon_sym_ATforelse] = ACTIONS(6946), - [anon_sym_ATwhile] = ACTIONS(6949), - [anon_sym_ATsetup] = ACTIONS(6952), - [anon_sym_ATtask] = ACTIONS(6955), - [anon_sym_ATstory] = ACTIONS(6958), - [anon_sym_ATbefore] = ACTIONS(6961), - [anon_sym_ATafter] = ACTIONS(6964), - [anon_sym_ATsuccess] = ACTIONS(6967), - [anon_sym_ATfinished] = ACTIONS(6970), - [anon_sym_ATpersist] = ACTIONS(6973), - [anon_sym_ATteleport] = ACTIONS(6976), - [anon_sym_ATvolt] = ACTIONS(6979), - [aux_sym__text_token1] = ACTIONS(6982), - [aux_sym__text_token2] = ACTIONS(6982), - [aux_sym__text_token3] = ACTIONS(6985), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(7097), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [511] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(6988), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(7099), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [512] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(6990), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(7101), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [513] = { [sym__definition] = STATE(511), [sym_keyword] = STATE(511), [sym_php_statement] = STATE(511), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), [sym_attribute] = STATE(511), [sym__inline_directive] = STATE(511), [sym__nested_directive] = STATE(511), @@ -87727,117 +89225,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(511), [sym_verbatim] = STATE(511), [sym_stack] = STATE(511), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), [sym_conditional] = STATE(511), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), [sym_switch] = STATE(511), [sym_loop] = STATE(511), [sym_loop_operator] = STATE(511), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), [sym_envoy] = STATE(511), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), [sym_livewire] = STATE(511), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(511), [aux_sym__directive_body] = STATE(511), [sym_text] = STATE(511), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(6992), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(6994), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(7103), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(7105), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [514] = { [sym__definition] = STATE(512), [sym_keyword] = STATE(512), [sym_php_statement] = STATE(512), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), [sym_attribute] = STATE(512), [sym__inline_directive] = STATE(512), [sym__nested_directive] = STATE(512), @@ -87847,597 +89347,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(512), [sym_verbatim] = STATE(512), [sym_stack] = STATE(512), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), [sym_conditional] = STATE(512), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), [sym_switch] = STATE(512), [sym_loop] = STATE(512), [sym_loop_operator] = STATE(512), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), [sym_envoy] = STATE(512), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), [sym_livewire] = STATE(512), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(512), [aux_sym__directive_body] = STATE(512), [sym_text] = STATE(512), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(6996), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(6998), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(7107), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(7109), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [515] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7000), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7111), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [516] = { - [sym__definition] = STATE(525), - [sym_keyword] = STATE(525), - [sym_php_statement] = STATE(525), - [sym__escaped] = STATE(2339), - [sym__unescaped] = STATE(2339), - [sym__raw] = STATE(2339), - [sym__inline_raw] = STATE(2339), - [sym__multi_line_raw] = STATE(2339), - [sym_attribute] = STATE(525), - [sym__inline_directive] = STATE(525), - [sym__nested_directive] = STATE(525), - [sym_fragment] = STATE(525), - [sym_section] = STATE(525), - [sym_inlineSection] = STATE(525), - [sym_once] = STATE(525), - [sym_verbatim] = STATE(525), - [sym_stack] = STATE(525), - [sym__push] = STATE(2340), - [sym__pushOnce] = STATE(2340), - [sym__pushIf] = STATE(2340), - [sym__prepend] = STATE(2340), - [sym__prependOnce] = STATE(2340), - [sym_conditional] = STATE(525), - [sym__if] = STATE(2341), - [sym__unless] = STATE(2341), - [sym__isset] = STATE(2341), - [sym__empty] = STATE(2341), - [sym__auth] = STATE(2341), - [sym__guest] = STATE(2341), - [sym__production] = STATE(2341), - [sym__env] = STATE(2341), - [sym__hasSection] = STATE(2341), - [sym__sectionMissing] = STATE(2341), - [sym__error] = STATE(2341), - [sym_authorization] = STATE(2341), - [sym__can] = STATE(2342), - [sym__cannot] = STATE(2342), - [sym__canany] = STATE(2342), - [sym__feature] = STATE(2341), - [sym__custom] = STATE(2341), - [sym_switch] = STATE(525), - [sym_loop] = STATE(525), - [sym_loop_operator] = STATE(525), - [sym__for] = STATE(2343), - [sym__foreach] = STATE(2343), - [sym__forelse] = STATE(2343), - [sym__while] = STATE(2343), - [sym_envoy] = STATE(525), - [sym__setup] = STATE(2339), - [sym__task] = STATE(2344), - [sym__story] = STATE(2344), - [sym__hooks] = STATE(2339), - [sym__before] = STATE(2339), - [sym__after] = STATE(2339), - [sym__envoy_error] = STATE(2339), - [sym__success] = STATE(2339), - [sym__finished] = STATE(2339), - [sym_livewire] = STATE(525), - [sym__persist] = STATE(2345), - [sym__teleport] = STATE(2345), - [sym__volt] = STATE(2345), - [aux_sym__directive_body] = STATE(525), - [sym_text] = STATE(525), - [sym__text] = STATE(991), - [aux_sym_php_only_repeat1] = STATE(991), - [sym_comment] = ACTIONS(7002), - [aux_sym_keyword_token1] = ACTIONS(7004), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7006), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7008), - [anon_sym_ATphp] = ACTIONS(7010), - [aux_sym_attribute_token1] = ACTIONS(7012), - [aux_sym__inline_directive_token1] = ACTIONS(7014), - [anon_sym_ATfragment] = ACTIONS(7016), - [anon_sym_ATsection] = ACTIONS(7018), - [anon_sym_ATonce] = ACTIONS(7020), - [anon_sym_ATverbatim] = ACTIONS(7022), - [anon_sym_ATpush] = ACTIONS(7024), - [anon_sym_ATpushOnce] = ACTIONS(7026), - [anon_sym_ATpushIf] = ACTIONS(7028), - [anon_sym_ATprepend] = ACTIONS(7030), - [anon_sym_ATprependOnce] = ACTIONS(7032), - [anon_sym_ATif] = ACTIONS(7034), - [anon_sym_ATunless] = ACTIONS(7036), - [anon_sym_ATisset] = ACTIONS(7038), - [anon_sym_ATempty] = ACTIONS(7040), - [anon_sym_ATauth] = ACTIONS(7042), - [anon_sym_ATguest] = ACTIONS(7044), - [anon_sym_ATproduction] = ACTIONS(7046), - [anon_sym_ATenv] = ACTIONS(7048), - [anon_sym_AThasSection] = ACTIONS(7050), - [anon_sym_ATsectionMissing] = ACTIONS(7052), - [anon_sym_ATerror] = ACTIONS(7054), - [anon_sym_ATcan] = ACTIONS(7056), - [anon_sym_ATcannot] = ACTIONS(7058), - [anon_sym_ATcanany] = ACTIONS(7060), - [anon_sym_ATfeature] = ACTIONS(7062), - [aux_sym__custom_token1] = ACTIONS(7064), - [aux_sym__custom_token2] = ACTIONS(7066), - [anon_sym_ATswitch] = ACTIONS(7068), - [aux_sym_loop_operator_token1] = ACTIONS(7070), - [anon_sym_ATfor] = ACTIONS(7072), - [anon_sym_ATforeach] = ACTIONS(7074), - [anon_sym_ATforelse] = ACTIONS(7076), - [anon_sym_ATendforelse] = ACTIONS(4609), - [anon_sym_ATwhile] = ACTIONS(7078), - [anon_sym_ATsetup] = ACTIONS(7080), - [anon_sym_ATtask] = ACTIONS(7082), - [anon_sym_ATstory] = ACTIONS(7084), - [anon_sym_ATbefore] = ACTIONS(7086), - [anon_sym_ATafter] = ACTIONS(7088), - [anon_sym_ATsuccess] = ACTIONS(7090), - [anon_sym_ATfinished] = ACTIONS(7092), - [anon_sym_ATpersist] = ACTIONS(7094), - [anon_sym_ATteleport] = ACTIONS(7096), - [anon_sym_ATvolt] = ACTIONS(7098), - [aux_sym__text_token1] = ACTIONS(7100), - [aux_sym__text_token2] = ACTIONS(7100), - [aux_sym__text_token3] = ACTIONS(7102), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7113), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [517] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(7104), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), - }, - [518] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7106), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), - }, - [519] = { [sym__definition] = STATE(515), [sym_keyword] = STATE(515), [sym_php_statement] = STATE(515), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(515), [sym__inline_directive] = STATE(515), [sym__nested_directive] = STATE(515), @@ -88447,237 +89713,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(515), [sym_verbatim] = STATE(515), [sym_stack] = STATE(515), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(515), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(515), [sym_loop] = STATE(515), [sym_loop_operator] = STATE(515), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(515), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(515), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(515), [sym_text] = STATE(515), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(515), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(7108), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7110), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(7115), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7117), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), + }, + [518] = { + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7117), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), + }, + [519] = { + [sym__definition] = STATE(516), + [sym_keyword] = STATE(516), + [sym_php_statement] = STATE(516), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(516), + [sym__inline_directive] = STATE(516), + [sym__nested_directive] = STATE(516), + [sym_fragment] = STATE(516), + [sym_section] = STATE(516), + [sym_inlineSection] = STATE(516), + [sym_once] = STATE(516), + [sym_verbatim] = STATE(516), + [sym_stack] = STATE(516), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(516), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(516), + [sym_loop] = STATE(516), + [sym_loop_operator] = STATE(516), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(516), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(516), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(516), + [aux_sym__directive_body] = STATE(516), + [sym_text] = STATE(516), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(7119), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7121), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [520] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7110), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7123), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [521] = { [sym__definition] = STATE(518), [sym_keyword] = STATE(518), [sym_php_statement] = STATE(518), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(518), [sym__inline_directive] = STATE(518), [sym__nested_directive] = STATE(518), @@ -88687,237 +90201,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(518), [sym_verbatim] = STATE(518), [sym_stack] = STATE(518), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(518), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(518), [sym_loop] = STATE(518), [sym_loop_operator] = STATE(518), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(518), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(518), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(518), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(518), [sym_text] = STATE(518), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(7112), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7114), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(518), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(7125), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7127), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [522] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7116), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), - }, - [523] = { [sym__definition] = STATE(520), [sym_keyword] = STATE(520), [sym_php_statement] = STATE(520), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(520), [sym__inline_directive] = STATE(520), [sym__nested_directive] = STATE(520), @@ -88927,717 +90323,851 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(520), [sym_verbatim] = STATE(520), [sym_stack] = STATE(520), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(520), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(520), [sym_loop] = STATE(520), [sym_loop_operator] = STATE(520), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(520), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(520), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(520), + [aux_sym__directive_body] = STATE(520), [sym_text] = STATE(520), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(520), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(7118), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7120), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(7129), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7131), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), + }, + [523] = { + [sym__definition] = STATE(545), + [sym_keyword] = STATE(545), + [sym_php_statement] = STATE(545), + [sym__escaped] = STATE(2367), + [sym__unescaped] = STATE(2367), + [sym__raw] = STATE(2367), + [sym__inline_raw] = STATE(2367), + [sym__multi_line_raw] = STATE(2367), + [sym_attribute] = STATE(545), + [sym__inline_directive] = STATE(545), + [sym__nested_directive] = STATE(545), + [sym_fragment] = STATE(545), + [sym_section] = STATE(545), + [sym_inlineSection] = STATE(545), + [sym_once] = STATE(545), + [sym_verbatim] = STATE(545), + [sym_stack] = STATE(545), + [sym__push] = STATE(2368), + [sym__pushOnce] = STATE(2368), + [sym__pushIf] = STATE(2368), + [sym__prepend] = STATE(2368), + [sym__prependOnce] = STATE(2368), + [sym_conditional] = STATE(545), + [sym__if] = STATE(2369), + [sym__unless] = STATE(2369), + [sym__isset] = STATE(2369), + [sym__empty] = STATE(2369), + [sym__auth] = STATE(2369), + [sym__guest] = STATE(2369), + [sym__production] = STATE(2369), + [sym__env] = STATE(2369), + [sym__hasSection] = STATE(2369), + [sym__sectionMissing] = STATE(2369), + [sym__error] = STATE(2369), + [sym_authorization] = STATE(2369), + [sym__can] = STATE(2370), + [sym__cannot] = STATE(2370), + [sym__canany] = STATE(2370), + [sym__feature] = STATE(2369), + [sym__custom] = STATE(2369), + [sym_switch] = STATE(545), + [sym_loop] = STATE(545), + [sym_loop_operator] = STATE(545), + [sym__for] = STATE(2371), + [sym__foreach] = STATE(2371), + [sym__forelse] = STATE(2371), + [sym__while] = STATE(2371), + [sym_envoy] = STATE(545), + [sym__setup] = STATE(2367), + [sym__task] = STATE(2372), + [sym__story] = STATE(2372), + [sym__hooks] = STATE(2367), + [sym__before] = STATE(2367), + [sym__after] = STATE(2367), + [sym__envoy_error] = STATE(2367), + [sym__success] = STATE(2367), + [sym__finished] = STATE(2367), + [sym_livewire] = STATE(545), + [sym__persist] = STATE(2373), + [sym__teleport] = STATE(2373), + [sym__volt] = STATE(2373), + [sym_alpine_js] = STATE(545), + [aux_sym__directive_body] = STATE(545), + [sym_text] = STATE(545), + [sym__text] = STATE(984), + [aux_sym_php_only_repeat1] = STATE(984), + [sym_comment] = ACTIONS(7133), + [aux_sym_keyword_token1] = ACTIONS(7135), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7137), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7139), + [anon_sym_ATphp] = ACTIONS(7141), + [aux_sym_attribute_token1] = ACTIONS(7143), + [aux_sym__inline_directive_token1] = ACTIONS(7145), + [anon_sym_ATfragment] = ACTIONS(7147), + [anon_sym_ATsection] = ACTIONS(7149), + [anon_sym_ATonce] = ACTIONS(7151), + [anon_sym_ATverbatim] = ACTIONS(7153), + [anon_sym_ATpush] = ACTIONS(7155), + [anon_sym_ATpushOnce] = ACTIONS(7157), + [anon_sym_ATpushIf] = ACTIONS(7159), + [anon_sym_ATprepend] = ACTIONS(7161), + [anon_sym_ATprependOnce] = ACTIONS(7163), + [anon_sym_ATif] = ACTIONS(7165), + [anon_sym_ATunless] = ACTIONS(7167), + [anon_sym_ATisset] = ACTIONS(7169), + [anon_sym_ATempty] = ACTIONS(7171), + [anon_sym_ATauth] = ACTIONS(7173), + [anon_sym_ATguest] = ACTIONS(7175), + [anon_sym_ATproduction] = ACTIONS(7177), + [anon_sym_ATenv] = ACTIONS(7179), + [anon_sym_AThasSection] = ACTIONS(7181), + [anon_sym_ATsectionMissing] = ACTIONS(7183), + [anon_sym_ATerror] = ACTIONS(7185), + [anon_sym_ATcan] = ACTIONS(7187), + [anon_sym_ATcannot] = ACTIONS(7189), + [anon_sym_ATcanany] = ACTIONS(7191), + [anon_sym_ATfeature] = ACTIONS(7193), + [aux_sym__custom_token1] = ACTIONS(7195), + [aux_sym__custom_token2] = ACTIONS(7197), + [anon_sym_ATswitch] = ACTIONS(7199), + [aux_sym_loop_operator_token1] = ACTIONS(7201), + [anon_sym_ATfor] = ACTIONS(7203), + [anon_sym_ATforeach] = ACTIONS(7205), + [anon_sym_ATforelse] = ACTIONS(7207), + [anon_sym_ATendforelse] = ACTIONS(4699), + [anon_sym_ATwhile] = ACTIONS(7209), + [anon_sym_ATsetup] = ACTIONS(7211), + [anon_sym_ATtask] = ACTIONS(7213), + [anon_sym_ATstory] = ACTIONS(7215), + [anon_sym_ATbefore] = ACTIONS(7217), + [anon_sym_ATafter] = ACTIONS(7219), + [anon_sym_ATsuccess] = ACTIONS(7221), + [anon_sym_ATfinished] = ACTIONS(7223), + [anon_sym_ATpersist] = ACTIONS(7225), + [anon_sym_ATteleport] = ACTIONS(7227), + [anon_sym_ATvolt] = ACTIONS(7229), + [aux_sym_alpine_js_token1] = ACTIONS(7231), + [aux_sym__text_token1] = ACTIONS(7233), + [aux_sym__text_token2] = ACTIONS(7233), + [aux_sym__text_token3] = ACTIONS(7235), }, [524] = { - [sym__definition] = STATE(522), - [sym_keyword] = STATE(522), - [sym_php_statement] = STATE(522), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(522), - [sym__inline_directive] = STATE(522), - [sym__nested_directive] = STATE(522), - [sym_fragment] = STATE(522), - [sym_section] = STATE(522), - [sym_inlineSection] = STATE(522), - [sym_once] = STATE(522), - [sym_verbatim] = STATE(522), - [sym_stack] = STATE(522), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(522), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(522), - [sym_loop] = STATE(522), - [sym_loop_operator] = STATE(522), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(522), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(522), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(522), - [sym_text] = STATE(522), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(7122), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7124), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(7237), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [525] = { - [sym__definition] = STATE(629), - [sym_keyword] = STATE(629), - [sym_php_statement] = STATE(629), - [sym__escaped] = STATE(2339), - [sym__unescaped] = STATE(2339), - [sym__raw] = STATE(2339), - [sym__inline_raw] = STATE(2339), - [sym__multi_line_raw] = STATE(2339), - [sym_attribute] = STATE(629), - [sym__inline_directive] = STATE(629), - [sym__nested_directive] = STATE(629), - [sym_fragment] = STATE(629), - [sym_section] = STATE(629), - [sym_inlineSection] = STATE(629), - [sym_once] = STATE(629), - [sym_verbatim] = STATE(629), - [sym_stack] = STATE(629), - [sym__push] = STATE(2340), - [sym__pushOnce] = STATE(2340), - [sym__pushIf] = STATE(2340), - [sym__prepend] = STATE(2340), - [sym__prependOnce] = STATE(2340), - [sym_conditional] = STATE(629), - [sym__if] = STATE(2341), - [sym__unless] = STATE(2341), - [sym__isset] = STATE(2341), - [sym__empty] = STATE(2341), - [sym__auth] = STATE(2341), - [sym__guest] = STATE(2341), - [sym__production] = STATE(2341), - [sym__env] = STATE(2341), - [sym__hasSection] = STATE(2341), - [sym__sectionMissing] = STATE(2341), - [sym__error] = STATE(2341), - [sym_authorization] = STATE(2341), - [sym__can] = STATE(2342), - [sym__cannot] = STATE(2342), - [sym__canany] = STATE(2342), - [sym__feature] = STATE(2341), - [sym__custom] = STATE(2341), - [sym_switch] = STATE(629), - [sym_loop] = STATE(629), - [sym_loop_operator] = STATE(629), - [sym__for] = STATE(2343), - [sym__foreach] = STATE(2343), - [sym__forelse] = STATE(2343), - [sym__while] = STATE(2343), - [sym_envoy] = STATE(629), - [sym__setup] = STATE(2339), - [sym__task] = STATE(2344), - [sym__story] = STATE(2344), - [sym__hooks] = STATE(2339), - [sym__before] = STATE(2339), - [sym__after] = STATE(2339), - [sym__envoy_error] = STATE(2339), - [sym__success] = STATE(2339), - [sym__finished] = STATE(2339), - [sym_livewire] = STATE(629), - [sym__persist] = STATE(2345), - [sym__teleport] = STATE(2345), - [sym__volt] = STATE(2345), - [aux_sym__directive_body] = STATE(629), - [sym_text] = STATE(629), - [sym__text] = STATE(991), - [aux_sym_php_only_repeat1] = STATE(991), - [sym_comment] = ACTIONS(7126), - [aux_sym_keyword_token1] = ACTIONS(7004), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7006), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7008), - [anon_sym_ATphp] = ACTIONS(7010), - [aux_sym_attribute_token1] = ACTIONS(7012), - [aux_sym__inline_directive_token1] = ACTIONS(7014), - [anon_sym_ATfragment] = ACTIONS(7016), - [anon_sym_ATsection] = ACTIONS(7018), - [anon_sym_ATonce] = ACTIONS(7020), - [anon_sym_ATverbatim] = ACTIONS(7022), - [anon_sym_ATpush] = ACTIONS(7024), - [anon_sym_ATpushOnce] = ACTIONS(7026), - [anon_sym_ATpushIf] = ACTIONS(7028), - [anon_sym_ATprepend] = ACTIONS(7030), - [anon_sym_ATprependOnce] = ACTIONS(7032), - [anon_sym_ATif] = ACTIONS(7034), - [anon_sym_ATunless] = ACTIONS(7036), - [anon_sym_ATisset] = ACTIONS(7038), - [anon_sym_ATempty] = ACTIONS(7040), - [anon_sym_ATauth] = ACTIONS(7042), - [anon_sym_ATguest] = ACTIONS(7044), - [anon_sym_ATproduction] = ACTIONS(7046), - [anon_sym_ATenv] = ACTIONS(7048), - [anon_sym_AThasSection] = ACTIONS(7050), - [anon_sym_ATsectionMissing] = ACTIONS(7052), - [anon_sym_ATerror] = ACTIONS(7054), - [anon_sym_ATcan] = ACTIONS(7056), - [anon_sym_ATcannot] = ACTIONS(7058), - [anon_sym_ATcanany] = ACTIONS(7060), - [anon_sym_ATfeature] = ACTIONS(7062), - [aux_sym__custom_token1] = ACTIONS(7064), - [aux_sym__custom_token2] = ACTIONS(7066), - [anon_sym_ATswitch] = ACTIONS(7068), - [aux_sym_loop_operator_token1] = ACTIONS(7070), - [anon_sym_ATfor] = ACTIONS(7072), - [anon_sym_ATforeach] = ACTIONS(7074), - [anon_sym_ATforelse] = ACTIONS(7076), - [anon_sym_ATendforelse] = ACTIONS(4996), - [anon_sym_ATwhile] = ACTIONS(7078), - [anon_sym_ATsetup] = ACTIONS(7080), - [anon_sym_ATtask] = ACTIONS(7082), - [anon_sym_ATstory] = ACTIONS(7084), - [anon_sym_ATbefore] = ACTIONS(7086), - [anon_sym_ATafter] = ACTIONS(7088), - [anon_sym_ATsuccess] = ACTIONS(7090), - [anon_sym_ATfinished] = ACTIONS(7092), - [anon_sym_ATpersist] = ACTIONS(7094), - [anon_sym_ATteleport] = ACTIONS(7096), - [anon_sym_ATvolt] = ACTIONS(7098), - [aux_sym__text_token1] = ACTIONS(7100), - [aux_sym__text_token2] = ACTIONS(7100), - [aux_sym__text_token3] = ACTIONS(7102), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(7239), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [526] = { - [sym__definition] = STATE(542), - [sym_keyword] = STATE(542), - [sym_php_statement] = STATE(542), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(542), - [sym__inline_directive] = STATE(542), - [sym__nested_directive] = STATE(542), - [sym_fragment] = STATE(542), - [sym_section] = STATE(542), - [sym_inlineSection] = STATE(542), - [sym_once] = STATE(542), - [sym_verbatim] = STATE(542), - [sym_stack] = STATE(542), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(542), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(542), - [sym_loop] = STATE(542), - [sym_loop_operator] = STATE(542), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(542), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(542), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(542), - [sym_text] = STATE(542), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(7128), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7130), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(7241), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [527] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(7132), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(7243), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [528] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(7134), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(526), + [sym_keyword] = STATE(526), + [sym_php_statement] = STATE(526), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(526), + [sym__inline_directive] = STATE(526), + [sym__nested_directive] = STATE(526), + [sym_fragment] = STATE(526), + [sym_section] = STATE(526), + [sym_inlineSection] = STATE(526), + [sym_once] = STATE(526), + [sym_verbatim] = STATE(526), + [sym_stack] = STATE(526), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(526), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(526), + [sym_loop] = STATE(526), + [sym_loop_operator] = STATE(526), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(526), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(526), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(526), + [aux_sym__directive_body] = STATE(526), + [sym_text] = STATE(526), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(7245), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(7247), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [529] = { [sym__definition] = STATE(527), [sym_keyword] = STATE(527), [sym_php_statement] = STATE(527), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), [sym_attribute] = STATE(527), [sym__inline_directive] = STATE(527), [sym__nested_directive] = STATE(527), @@ -89647,597 +91177,729 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(527), [sym_verbatim] = STATE(527), [sym_stack] = STATE(527), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), [sym_conditional] = STATE(527), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), [sym_switch] = STATE(527), [sym_loop] = STATE(527), [sym_loop_operator] = STATE(527), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), [sym_envoy] = STATE(527), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), [sym_livewire] = STATE(527), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(527), [aux_sym__directive_body] = STATE(527), [sym_text] = STATE(527), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(7136), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(7138), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(7249), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(7251), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [530] = { - [sym__definition] = STATE(528), - [sym_keyword] = STATE(528), - [sym_php_statement] = STATE(528), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(528), - [sym__inline_directive] = STATE(528), - [sym__nested_directive] = STATE(528), - [sym_fragment] = STATE(528), - [sym_section] = STATE(528), - [sym_inlineSection] = STATE(528), - [sym_once] = STATE(528), - [sym_verbatim] = STATE(528), - [sym_stack] = STATE(528), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(528), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(528), - [sym_loop] = STATE(528), - [sym_loop_operator] = STATE(528), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(528), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(528), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(528), - [sym_text] = STATE(528), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(7140), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(7142), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7253), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [531] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7144), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7255), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [532] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7146), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(253), + [sym_keyword] = STATE(253), + [sym_php_statement] = STATE(253), + [sym__escaped] = STATE(2201), + [sym__unescaped] = STATE(2201), + [sym__raw] = STATE(2201), + [sym__inline_raw] = STATE(2201), + [sym__multi_line_raw] = STATE(2201), + [sym_attribute] = STATE(253), + [sym__inline_directive] = STATE(253), + [sym__nested_directive] = STATE(253), + [sym_fragment] = STATE(253), + [sym_section] = STATE(253), + [sym_inlineSection] = STATE(253), + [sym_once] = STATE(253), + [sym_verbatim] = STATE(253), + [sym_stack] = STATE(253), + [sym__push] = STATE(2202), + [sym__pushOnce] = STATE(2202), + [sym__pushIf] = STATE(2202), + [sym__prepend] = STATE(2202), + [sym__prependOnce] = STATE(2202), + [sym_conditional] = STATE(253), + [sym__if] = STATE(2203), + [sym__unless] = STATE(2203), + [sym__isset] = STATE(2203), + [sym__empty] = STATE(2203), + [sym__auth] = STATE(2203), + [sym__guest] = STATE(2203), + [sym__production] = STATE(2203), + [sym__env] = STATE(2203), + [sym__hasSection] = STATE(2203), + [sym__sectionMissing] = STATE(2203), + [sym__error] = STATE(2203), + [sym_authorization] = STATE(2203), + [sym__can] = STATE(2204), + [sym__cannot] = STATE(2204), + [sym__canany] = STATE(2204), + [sym__feature] = STATE(2203), + [sym__custom] = STATE(2203), + [sym_switch] = STATE(253), + [sym_loop] = STATE(253), + [sym_loop_operator] = STATE(253), + [sym__for] = STATE(2205), + [sym__foreach] = STATE(2205), + [sym__forelse] = STATE(2205), + [sym__while] = STATE(2205), + [sym_envoy] = STATE(253), + [sym__setup] = STATE(2201), + [sym__task] = STATE(2206), + [sym__story] = STATE(2206), + [sym__hooks] = STATE(2201), + [sym__before] = STATE(2201), + [sym__after] = STATE(2201), + [sym__envoy_error] = STATE(2201), + [sym__success] = STATE(2201), + [sym__finished] = STATE(2201), + [sym_livewire] = STATE(253), + [sym__persist] = STATE(2207), + [sym__teleport] = STATE(2207), + [sym__volt] = STATE(2207), + [sym_alpine_js] = STATE(253), + [aux_sym__directive_body] = STATE(253), + [sym_text] = STATE(253), + [sym__text] = STATE(993), + [aux_sym_php_only_repeat1] = STATE(993), + [sym_comment] = ACTIONS(7257), + [aux_sym_keyword_token1] = ACTIONS(4789), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4791), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4793), + [anon_sym_ATphp] = ACTIONS(4795), + [aux_sym_attribute_token1] = ACTIONS(4797), + [aux_sym__inline_directive_token1] = ACTIONS(4799), + [anon_sym_ATfragment] = ACTIONS(4801), + [anon_sym_ATsection] = ACTIONS(4803), + [anon_sym_ATonce] = ACTIONS(4805), + [anon_sym_ATverbatim] = ACTIONS(4807), + [anon_sym_ATpush] = ACTIONS(4809), + [anon_sym_ATpushOnce] = ACTIONS(4811), + [anon_sym_ATpushIf] = ACTIONS(4813), + [anon_sym_ATprepend] = ACTIONS(4815), + [anon_sym_ATprependOnce] = ACTIONS(4817), + [anon_sym_ATif] = ACTIONS(4819), + [anon_sym_ATunless] = ACTIONS(4821), + [anon_sym_ATisset] = ACTIONS(4823), + [anon_sym_ATempty] = ACTIONS(4825), + [anon_sym_ATauth] = ACTIONS(4827), + [anon_sym_ATguest] = ACTIONS(4829), + [anon_sym_ATproduction] = ACTIONS(4831), + [anon_sym_ATenv] = ACTIONS(4833), + [anon_sym_AThasSection] = ACTIONS(4835), + [anon_sym_ATsectionMissing] = ACTIONS(4837), + [anon_sym_ATerror] = ACTIONS(4839), + [anon_sym_ATcan] = ACTIONS(4841), + [anon_sym_ATcannot] = ACTIONS(4843), + [anon_sym_ATcanany] = ACTIONS(4845), + [anon_sym_ATfeature] = ACTIONS(4847), + [aux_sym__custom_token1] = ACTIONS(4849), + [aux_sym__custom_token2] = ACTIONS(4851), + [anon_sym_ATswitch] = ACTIONS(4853), + [aux_sym_loop_operator_token1] = ACTIONS(4855), + [anon_sym_ATfor] = ACTIONS(4857), + [anon_sym_ATendfor] = ACTIONS(4699), + [anon_sym_ATforeach] = ACTIONS(4861), + [anon_sym_ATforelse] = ACTIONS(4863), + [anon_sym_ATwhile] = ACTIONS(4865), + [anon_sym_ATsetup] = ACTIONS(4867), + [anon_sym_ATtask] = ACTIONS(4869), + [anon_sym_ATstory] = ACTIONS(4871), + [anon_sym_ATbefore] = ACTIONS(4873), + [anon_sym_ATafter] = ACTIONS(4875), + [anon_sym_ATsuccess] = ACTIONS(4877), + [anon_sym_ATfinished] = ACTIONS(4879), + [anon_sym_ATpersist] = ACTIONS(4881), + [anon_sym_ATteleport] = ACTIONS(4883), + [anon_sym_ATvolt] = ACTIONS(4885), + [aux_sym_alpine_js_token1] = ACTIONS(4887), + [aux_sym__text_token1] = ACTIONS(4889), + [aux_sym__text_token2] = ACTIONS(4889), + [aux_sym__text_token3] = ACTIONS(4891), }, [533] = { - [sym__definition] = STATE(552), - [sym_keyword] = STATE(552), - [sym_php_statement] = STATE(552), - [sym__escaped] = STATE(2110), - [sym__unescaped] = STATE(2110), - [sym__raw] = STATE(2110), - [sym__inline_raw] = STATE(2110), - [sym__multi_line_raw] = STATE(2110), - [sym_attribute] = STATE(552), - [sym__inline_directive] = STATE(552), - [sym__nested_directive] = STATE(552), - [sym_fragment] = STATE(552), - [sym_section] = STATE(552), - [sym_inlineSection] = STATE(552), - [sym_once] = STATE(552), - [sym_verbatim] = STATE(552), - [sym_stack] = STATE(552), - [sym__push] = STATE(2109), - [sym__pushOnce] = STATE(2109), - [sym__pushIf] = STATE(2109), - [sym__prepend] = STATE(2109), - [sym__prependOnce] = STATE(2109), - [sym_conditional] = STATE(552), - [sym__if] = STATE(2108), - [sym__unless] = STATE(2108), - [sym__isset] = STATE(2108), - [sym__empty] = STATE(2108), - [sym__auth] = STATE(2108), - [sym__guest] = STATE(2108), - [sym__production] = STATE(2108), - [sym__env] = STATE(2108), - [sym__hasSection] = STATE(2108), - [sym__sectionMissing] = STATE(2108), - [sym__error] = STATE(2108), - [sym_authorization] = STATE(2108), - [sym__can] = STATE(2107), - [sym__cannot] = STATE(2107), - [sym__canany] = STATE(2107), - [sym__feature] = STATE(2108), - [sym__custom] = STATE(2108), - [sym_switch] = STATE(552), - [sym_loop] = STATE(552), - [sym_loop_operator] = STATE(552), - [sym__for] = STATE(2106), - [sym__foreach] = STATE(2106), - [sym__forelse] = STATE(2106), - [sym__while] = STATE(2106), - [sym_envoy] = STATE(552), - [sym__setup] = STATE(2110), - [sym__task] = STATE(2105), - [sym__story] = STATE(2105), - [sym__hooks] = STATE(2110), - [sym__before] = STATE(2110), - [sym__after] = STATE(2110), - [sym__envoy_error] = STATE(2110), - [sym__success] = STATE(2110), - [sym__finished] = STATE(2110), - [sym_livewire] = STATE(552), - [sym__persist] = STATE(2104), - [sym__teleport] = STATE(2104), - [sym__volt] = STATE(2104), - [aux_sym__directive_body] = STATE(552), - [sym_text] = STATE(552), - [sym__text] = STATE(1169), - [aux_sym_php_only_repeat1] = STATE(1169), - [sym_comment] = ACTIONS(7148), - [aux_sym_keyword_token1] = ACTIONS(7150), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7152), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7154), - [anon_sym_ATphp] = ACTIONS(7156), - [aux_sym_attribute_token1] = ACTIONS(7158), - [aux_sym__inline_directive_token1] = ACTIONS(7160), - [anon_sym_ATfragment] = ACTIONS(7162), - [anon_sym_ATsection] = ACTIONS(7164), - [anon_sym_ATonce] = ACTIONS(7166), - [anon_sym_ATverbatim] = ACTIONS(7168), - [anon_sym_ATpush] = ACTIONS(7170), - [anon_sym_ATpushOnce] = ACTIONS(7172), - [anon_sym_ATpushIf] = ACTIONS(7174), - [anon_sym_ATprepend] = ACTIONS(7176), - [anon_sym_ATendprepend] = ACTIONS(4609), - [anon_sym_ATprependOnce] = ACTIONS(7178), - [anon_sym_ATif] = ACTIONS(7180), - [anon_sym_ATunless] = ACTIONS(7182), - [anon_sym_ATisset] = ACTIONS(7184), - [anon_sym_ATempty] = ACTIONS(7186), - [anon_sym_ATauth] = ACTIONS(7188), - [anon_sym_ATguest] = ACTIONS(7190), - [anon_sym_ATproduction] = ACTIONS(7192), - [anon_sym_ATenv] = ACTIONS(7194), - [anon_sym_AThasSection] = ACTIONS(7196), - [anon_sym_ATsectionMissing] = ACTIONS(7198), - [anon_sym_ATerror] = ACTIONS(7200), - [anon_sym_ATcan] = ACTIONS(7202), - [anon_sym_ATcannot] = ACTIONS(7204), - [anon_sym_ATcanany] = ACTIONS(7206), - [anon_sym_ATfeature] = ACTIONS(7208), - [aux_sym__custom_token1] = ACTIONS(7210), - [aux_sym__custom_token2] = ACTIONS(7212), - [anon_sym_ATswitch] = ACTIONS(7214), - [aux_sym_loop_operator_token1] = ACTIONS(7216), - [anon_sym_ATfor] = ACTIONS(7218), - [anon_sym_ATforeach] = ACTIONS(7220), - [anon_sym_ATforelse] = ACTIONS(7222), - [anon_sym_ATwhile] = ACTIONS(7224), - [anon_sym_ATsetup] = ACTIONS(7226), - [anon_sym_ATtask] = ACTIONS(7228), - [anon_sym_ATstory] = ACTIONS(7230), - [anon_sym_ATbefore] = ACTIONS(7232), - [anon_sym_ATafter] = ACTIONS(7234), - [anon_sym_ATsuccess] = ACTIONS(7236), - [anon_sym_ATfinished] = ACTIONS(7238), - [anon_sym_ATpersist] = ACTIONS(7240), - [anon_sym_ATteleport] = ACTIONS(7242), - [anon_sym_ATvolt] = ACTIONS(7244), - [aux_sym__text_token1] = ACTIONS(7246), - [aux_sym__text_token2] = ACTIONS(7246), - [aux_sym__text_token3] = ACTIONS(7248), + [sym__definition] = STATE(530), + [sym_keyword] = STATE(530), + [sym_php_statement] = STATE(530), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(530), + [sym__inline_directive] = STATE(530), + [sym__nested_directive] = STATE(530), + [sym_fragment] = STATE(530), + [sym_section] = STATE(530), + [sym_inlineSection] = STATE(530), + [sym_once] = STATE(530), + [sym_verbatim] = STATE(530), + [sym_stack] = STATE(530), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(530), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(530), + [sym_loop] = STATE(530), + [sym_loop_operator] = STATE(530), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(530), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(530), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(530), + [sym_text] = STATE(530), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(530), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(7259), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7261), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [534] = { + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7261), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), + }, + [535] = { [sym__definition] = STATE(531), [sym_keyword] = STATE(531), [sym_php_statement] = STATE(531), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(531), [sym__inline_directive] = STATE(531), [sym__nested_directive] = STATE(531), @@ -90247,1797 +91909,1705 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(531), [sym_verbatim] = STATE(531), [sym_stack] = STATE(531), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(531), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(531), [sym_loop] = STATE(531), [sym_loop_operator] = STATE(531), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(531), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(531), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(531), + [aux_sym__directive_body] = STATE(531), [sym_text] = STATE(531), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(531), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(7250), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7252), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), - }, - [535] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7252), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(7263), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7265), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [536] = { - [sym__definition] = STATE(572), - [sym_keyword] = STATE(572), - [sym_php_statement] = STATE(572), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(572), - [sym__inline_directive] = STATE(572), - [sym__nested_directive] = STATE(572), - [sym_fragment] = STATE(572), - [sym_section] = STATE(572), - [sym_inlineSection] = STATE(572), - [sym_once] = STATE(572), - [sym_verbatim] = STATE(572), - [sym_stack] = STATE(572), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(572), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(572), - [sym_loop] = STATE(572), - [sym_loop_operator] = STATE(572), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(572), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(572), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(572), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(572), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(7254), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7256), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7267), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [537] = { - [sym__definition] = STATE(532), - [sym_keyword] = STATE(532), - [sym_php_statement] = STATE(532), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(532), - [sym__inline_directive] = STATE(532), - [sym__nested_directive] = STATE(532), - [sym_fragment] = STATE(532), - [sym_section] = STATE(532), - [sym_inlineSection] = STATE(532), - [sym_once] = STATE(532), - [sym_verbatim] = STATE(532), - [sym_stack] = STATE(532), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(532), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(532), - [sym_loop] = STATE(532), - [sym_loop_operator] = STATE(532), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(532), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(532), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(532), - [sym_text] = STATE(532), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(7258), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7260), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(534), + [sym_keyword] = STATE(534), + [sym_php_statement] = STATE(534), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(534), + [sym__inline_directive] = STATE(534), + [sym__nested_directive] = STATE(534), + [sym_fragment] = STATE(534), + [sym_section] = STATE(534), + [sym_inlineSection] = STATE(534), + [sym_once] = STATE(534), + [sym_verbatim] = STATE(534), + [sym_stack] = STATE(534), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(534), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(534), + [sym_loop] = STATE(534), + [sym_loop_operator] = STATE(534), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(534), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(534), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(534), + [sym_text] = STATE(534), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(534), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(7269), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7271), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [538] = { - [sym__definition] = STATE(538), - [sym_keyword] = STATE(538), - [sym_php_statement] = STATE(538), - [sym__escaped] = STATE(2175), - [sym__unescaped] = STATE(2175), - [sym__raw] = STATE(2175), - [sym__inline_raw] = STATE(2175), - [sym__multi_line_raw] = STATE(2175), - [sym_attribute] = STATE(538), - [sym__inline_directive] = STATE(538), - [sym__nested_directive] = STATE(538), - [sym_fragment] = STATE(538), - [sym_section] = STATE(538), - [sym_inlineSection] = STATE(538), - [sym_once] = STATE(538), - [sym_verbatim] = STATE(538), - [sym_stack] = STATE(538), - [sym__push] = STATE(2176), - [sym__pushOnce] = STATE(2176), - [sym__pushIf] = STATE(2176), - [sym__prepend] = STATE(2176), - [sym__prependOnce] = STATE(2176), - [sym_conditional] = STATE(538), - [sym__if] = STATE(2177), - [sym__unless] = STATE(2177), - [sym__isset] = STATE(2177), - [sym__empty] = STATE(2177), - [sym__auth] = STATE(2177), - [sym__guest] = STATE(2177), - [sym__production] = STATE(2177), - [sym__env] = STATE(2177), - [sym__hasSection] = STATE(2177), - [sym__sectionMissing] = STATE(2177), - [sym__error] = STATE(2177), - [sym_authorization] = STATE(2177), - [sym__can] = STATE(2178), - [sym__cannot] = STATE(2178), - [sym__canany] = STATE(2178), - [sym__feature] = STATE(2177), - [sym__custom] = STATE(2177), - [sym_switch] = STATE(538), - [sym_loop] = STATE(538), - [sym_loop_operator] = STATE(538), - [sym__for] = STATE(2179), - [sym__foreach] = STATE(2179), - [sym__forelse] = STATE(2179), - [sym__while] = STATE(2179), - [sym_envoy] = STATE(538), - [sym__setup] = STATE(2175), - [sym__task] = STATE(2180), - [sym__story] = STATE(2180), - [sym__hooks] = STATE(2175), - [sym__before] = STATE(2175), - [sym__after] = STATE(2175), - [sym__envoy_error] = STATE(2175), - [sym__success] = STATE(2175), - [sym__finished] = STATE(2175), - [sym_livewire] = STATE(538), - [sym__persist] = STATE(2181), - [sym__teleport] = STATE(2181), - [sym__volt] = STATE(2181), - [aux_sym__directive_body] = STATE(538), - [sym_text] = STATE(538), - [sym__text] = STATE(1001), - [aux_sym_php_only_repeat1] = STATE(1001), - [sym_comment] = ACTIONS(7262), - [aux_sym_keyword_token1] = ACTIONS(7265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7268), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7271), - [anon_sym_ATphp] = ACTIONS(7274), - [aux_sym_attribute_token1] = ACTIONS(7277), - [aux_sym__inline_directive_token1] = ACTIONS(7280), - [anon_sym_ATfragment] = ACTIONS(7283), - [anon_sym_ATsection] = ACTIONS(7286), - [anon_sym_ATonce] = ACTIONS(7289), - [anon_sym_ATverbatim] = ACTIONS(7292), - [anon_sym_ATpush] = ACTIONS(7295), - [anon_sym_ATpushOnce] = ACTIONS(7298), - [anon_sym_ATpushIf] = ACTIONS(7301), - [anon_sym_ATprepend] = ACTIONS(7304), - [anon_sym_ATprependOnce] = ACTIONS(7307), - [anon_sym_ATif] = ACTIONS(7310), - [anon_sym_ATunless] = ACTIONS(7313), - [anon_sym_ATisset] = ACTIONS(7316), - [anon_sym_ATempty] = ACTIONS(7319), - [anon_sym_ATauth] = ACTIONS(7322), - [anon_sym_ATguest] = ACTIONS(7325), - [anon_sym_ATproduction] = ACTIONS(7328), - [anon_sym_ATenv] = ACTIONS(7331), - [anon_sym_AThasSection] = ACTIONS(7334), - [anon_sym_ATsectionMissing] = ACTIONS(7337), - [anon_sym_ATerror] = ACTIONS(7340), - [anon_sym_ATcan] = ACTIONS(7343), - [anon_sym_ATcannot] = ACTIONS(7346), - [anon_sym_ATcanany] = ACTIONS(7349), - [anon_sym_ATfeature] = ACTIONS(7352), - [aux_sym__custom_token1] = ACTIONS(7355), - [aux_sym__custom_token2] = ACTIONS(7358), - [anon_sym_ATswitch] = ACTIONS(7361), - [aux_sym_loop_operator_token1] = ACTIONS(7364), - [anon_sym_ATfor] = ACTIONS(7367), - [anon_sym_ATendfor] = ACTIONS(5035), - [anon_sym_ATforeach] = ACTIONS(7370), - [anon_sym_ATforelse] = ACTIONS(7373), - [anon_sym_ATwhile] = ACTIONS(7376), - [anon_sym_ATsetup] = ACTIONS(7379), - [anon_sym_ATtask] = ACTIONS(7382), - [anon_sym_ATstory] = ACTIONS(7385), - [anon_sym_ATbefore] = ACTIONS(7388), - [anon_sym_ATafter] = ACTIONS(7391), - [anon_sym_ATsuccess] = ACTIONS(7394), - [anon_sym_ATfinished] = ACTIONS(7397), - [anon_sym_ATpersist] = ACTIONS(7400), - [anon_sym_ATteleport] = ACTIONS(7403), - [anon_sym_ATvolt] = ACTIONS(7406), - [aux_sym__text_token1] = ACTIONS(7409), - [aux_sym__text_token2] = ACTIONS(7409), - [aux_sym__text_token3] = ACTIONS(7412), + [sym__definition] = STATE(536), + [sym_keyword] = STATE(536), + [sym_php_statement] = STATE(536), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(536), + [sym__inline_directive] = STATE(536), + [sym__nested_directive] = STATE(536), + [sym_fragment] = STATE(536), + [sym_section] = STATE(536), + [sym_inlineSection] = STATE(536), + [sym_once] = STATE(536), + [sym_verbatim] = STATE(536), + [sym_stack] = STATE(536), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(536), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(536), + [sym_loop] = STATE(536), + [sym_loop_operator] = STATE(536), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(536), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(536), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(536), + [aux_sym__directive_body] = STATE(536), + [sym_text] = STATE(536), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(7273), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7275), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [539] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7415), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(497), + [sym_keyword] = STATE(497), + [sym_php_statement] = STATE(497), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(497), + [sym__inline_directive] = STATE(497), + [sym__nested_directive] = STATE(497), + [sym_fragment] = STATE(497), + [sym_section] = STATE(497), + [sym_inlineSection] = STATE(497), + [sym_once] = STATE(497), + [sym_verbatim] = STATE(497), + [sym_stack] = STATE(497), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(497), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(497), + [sym_loop] = STATE(497), + [sym_loop_operator] = STATE(497), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(497), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(497), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(497), + [aux_sym__directive_body] = STATE(497), + [sym_text] = STATE(497), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(7277), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7279), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [540] = { - [sym__definition] = STATE(535), - [sym_keyword] = STATE(535), - [sym_php_statement] = STATE(535), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(535), - [sym__inline_directive] = STATE(535), - [sym__nested_directive] = STATE(535), - [sym_fragment] = STATE(535), - [sym_section] = STATE(535), - [sym_inlineSection] = STATE(535), - [sym_once] = STATE(535), - [sym_verbatim] = STATE(535), - [sym_stack] = STATE(535), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(535), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(535), - [sym_loop] = STATE(535), - [sym_loop_operator] = STATE(535), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(535), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(535), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(535), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(535), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(7417), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7419), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(559), + [sym_keyword] = STATE(559), + [sym_php_statement] = STATE(559), + [sym__escaped] = STATE(2120), + [sym__unescaped] = STATE(2120), + [sym__raw] = STATE(2120), + [sym__inline_raw] = STATE(2120), + [sym__multi_line_raw] = STATE(2120), + [sym_attribute] = STATE(559), + [sym__inline_directive] = STATE(559), + [sym__nested_directive] = STATE(559), + [sym_fragment] = STATE(559), + [sym_section] = STATE(559), + [sym_inlineSection] = STATE(559), + [sym_once] = STATE(559), + [sym_verbatim] = STATE(559), + [sym_stack] = STATE(559), + [sym__push] = STATE(2119), + [sym__pushOnce] = STATE(2119), + [sym__pushIf] = STATE(2119), + [sym__prepend] = STATE(2119), + [sym__prependOnce] = STATE(2119), + [sym_conditional] = STATE(559), + [sym__if] = STATE(2118), + [sym__unless] = STATE(2118), + [sym__isset] = STATE(2118), + [sym__empty] = STATE(2118), + [sym__auth] = STATE(2118), + [sym__guest] = STATE(2118), + [sym__production] = STATE(2118), + [sym__env] = STATE(2118), + [sym__hasSection] = STATE(2118), + [sym__sectionMissing] = STATE(2118), + [sym__error] = STATE(2118), + [sym_authorization] = STATE(2118), + [sym__can] = STATE(2117), + [sym__cannot] = STATE(2117), + [sym__canany] = STATE(2117), + [sym__feature] = STATE(2118), + [sym__custom] = STATE(2118), + [sym_switch] = STATE(559), + [sym_loop] = STATE(559), + [sym_loop_operator] = STATE(559), + [sym__for] = STATE(2116), + [sym__foreach] = STATE(2116), + [sym__forelse] = STATE(2116), + [sym__while] = STATE(2116), + [sym_envoy] = STATE(559), + [sym__setup] = STATE(2120), + [sym__task] = STATE(2115), + [sym__story] = STATE(2115), + [sym__hooks] = STATE(2120), + [sym__before] = STATE(2120), + [sym__after] = STATE(2120), + [sym__envoy_error] = STATE(2120), + [sym__success] = STATE(2120), + [sym__finished] = STATE(2120), + [sym_livewire] = STATE(559), + [sym__persist] = STATE(2114), + [sym__teleport] = STATE(2114), + [sym__volt] = STATE(2114), + [sym_alpine_js] = STATE(559), + [aux_sym__directive_body] = STATE(559), + [sym_text] = STATE(559), + [sym__text] = STATE(1183), + [aux_sym_php_only_repeat1] = STATE(1183), + [sym_comment] = ACTIONS(7281), + [aux_sym_keyword_token1] = ACTIONS(7283), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7285), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7287), + [anon_sym_ATphp] = ACTIONS(7289), + [aux_sym_attribute_token1] = ACTIONS(7291), + [aux_sym__inline_directive_token1] = ACTIONS(7293), + [anon_sym_ATfragment] = ACTIONS(7295), + [anon_sym_ATsection] = ACTIONS(7297), + [anon_sym_ATonce] = ACTIONS(7299), + [anon_sym_ATverbatim] = ACTIONS(7301), + [anon_sym_ATpush] = ACTIONS(7303), + [anon_sym_ATpushOnce] = ACTIONS(7305), + [anon_sym_ATpushIf] = ACTIONS(7307), + [anon_sym_ATprepend] = ACTIONS(7309), + [anon_sym_ATendprepend] = ACTIONS(4699), + [anon_sym_ATprependOnce] = ACTIONS(7311), + [anon_sym_ATif] = ACTIONS(7313), + [anon_sym_ATunless] = ACTIONS(7315), + [anon_sym_ATisset] = ACTIONS(7317), + [anon_sym_ATempty] = ACTIONS(7319), + [anon_sym_ATauth] = ACTIONS(7321), + [anon_sym_ATguest] = ACTIONS(7323), + [anon_sym_ATproduction] = ACTIONS(7325), + [anon_sym_ATenv] = ACTIONS(7327), + [anon_sym_AThasSection] = ACTIONS(7329), + [anon_sym_ATsectionMissing] = ACTIONS(7331), + [anon_sym_ATerror] = ACTIONS(7333), + [anon_sym_ATcan] = ACTIONS(7335), + [anon_sym_ATcannot] = ACTIONS(7337), + [anon_sym_ATcanany] = ACTIONS(7339), + [anon_sym_ATfeature] = ACTIONS(7341), + [aux_sym__custom_token1] = ACTIONS(7343), + [aux_sym__custom_token2] = ACTIONS(7345), + [anon_sym_ATswitch] = ACTIONS(7347), + [aux_sym_loop_operator_token1] = ACTIONS(7349), + [anon_sym_ATfor] = ACTIONS(7351), + [anon_sym_ATforeach] = ACTIONS(7353), + [anon_sym_ATforelse] = ACTIONS(7355), + [anon_sym_ATwhile] = ACTIONS(7357), + [anon_sym_ATsetup] = ACTIONS(7359), + [anon_sym_ATtask] = ACTIONS(7361), + [anon_sym_ATstory] = ACTIONS(7363), + [anon_sym_ATbefore] = ACTIONS(7365), + [anon_sym_ATafter] = ACTIONS(7367), + [anon_sym_ATsuccess] = ACTIONS(7369), + [anon_sym_ATfinished] = ACTIONS(7371), + [anon_sym_ATpersist] = ACTIONS(7373), + [anon_sym_ATteleport] = ACTIONS(7375), + [anon_sym_ATvolt] = ACTIONS(7377), + [aux_sym_alpine_js_token1] = ACTIONS(7379), + [aux_sym__text_token1] = ACTIONS(7381), + [aux_sym__text_token2] = ACTIONS(7381), + [aux_sym__text_token3] = ACTIONS(7383), }, [541] = { - [sym__definition] = STATE(539), - [sym_keyword] = STATE(539), - [sym_php_statement] = STATE(539), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(539), - [sym__inline_directive] = STATE(539), - [sym__nested_directive] = STATE(539), - [sym_fragment] = STATE(539), - [sym_section] = STATE(539), - [sym_inlineSection] = STATE(539), - [sym_once] = STATE(539), - [sym_verbatim] = STATE(539), - [sym_stack] = STATE(539), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(539), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(539), - [sym_loop] = STATE(539), - [sym_loop_operator] = STATE(539), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(539), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(539), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(539), - [sym_text] = STATE(539), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(7421), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7423), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(7385), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [542] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7425), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(7387), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [543] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(7427), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(585), + [sym_keyword] = STATE(585), + [sym_php_statement] = STATE(585), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(585), + [sym__inline_directive] = STATE(585), + [sym__nested_directive] = STATE(585), + [sym_fragment] = STATE(585), + [sym_section] = STATE(585), + [sym_inlineSection] = STATE(585), + [sym_once] = STATE(585), + [sym_verbatim] = STATE(585), + [sym_stack] = STATE(585), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(585), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(585), + [sym_loop] = STATE(585), + [sym_loop_operator] = STATE(585), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(585), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(585), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(585), + [sym_text] = STATE(585), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(585), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(7389), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7391), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [544] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(7429), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(541), + [sym_keyword] = STATE(541), + [sym_php_statement] = STATE(541), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(541), + [sym__inline_directive] = STATE(541), + [sym__nested_directive] = STATE(541), + [sym_fragment] = STATE(541), + [sym_section] = STATE(541), + [sym_inlineSection] = STATE(541), + [sym_once] = STATE(541), + [sym_verbatim] = STATE(541), + [sym_stack] = STATE(541), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(541), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(541), + [sym_loop] = STATE(541), + [sym_loop_operator] = STATE(541), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(541), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(541), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(541), + [aux_sym__directive_body] = STATE(541), + [sym_text] = STATE(541), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(7393), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(7395), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [545] = { - [sym__definition] = STATE(543), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(543), - [sym_section] = STATE(543), - [sym_inlineSection] = STATE(543), - [sym_once] = STATE(543), - [sym_verbatim] = STATE(543), - [sym_stack] = STATE(543), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(543), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(543), - [sym_loop] = STATE(543), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(543), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(543), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(543), - [sym_text] = STATE(543), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(7431), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(7433), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(628), + [sym_keyword] = STATE(628), + [sym_php_statement] = STATE(628), + [sym__escaped] = STATE(2367), + [sym__unescaped] = STATE(2367), + [sym__raw] = STATE(2367), + [sym__inline_raw] = STATE(2367), + [sym__multi_line_raw] = STATE(2367), + [sym_attribute] = STATE(628), + [sym__inline_directive] = STATE(628), + [sym__nested_directive] = STATE(628), + [sym_fragment] = STATE(628), + [sym_section] = STATE(628), + [sym_inlineSection] = STATE(628), + [sym_once] = STATE(628), + [sym_verbatim] = STATE(628), + [sym_stack] = STATE(628), + [sym__push] = STATE(2368), + [sym__pushOnce] = STATE(2368), + [sym__pushIf] = STATE(2368), + [sym__prepend] = STATE(2368), + [sym__prependOnce] = STATE(2368), + [sym_conditional] = STATE(628), + [sym__if] = STATE(2369), + [sym__unless] = STATE(2369), + [sym__isset] = STATE(2369), + [sym__empty] = STATE(2369), + [sym__auth] = STATE(2369), + [sym__guest] = STATE(2369), + [sym__production] = STATE(2369), + [sym__env] = STATE(2369), + [sym__hasSection] = STATE(2369), + [sym__sectionMissing] = STATE(2369), + [sym__error] = STATE(2369), + [sym_authorization] = STATE(2369), + [sym__can] = STATE(2370), + [sym__cannot] = STATE(2370), + [sym__canany] = STATE(2370), + [sym__feature] = STATE(2369), + [sym__custom] = STATE(2369), + [sym_switch] = STATE(628), + [sym_loop] = STATE(628), + [sym_loop_operator] = STATE(628), + [sym__for] = STATE(2371), + [sym__foreach] = STATE(2371), + [sym__forelse] = STATE(2371), + [sym__while] = STATE(2371), + [sym_envoy] = STATE(628), + [sym__setup] = STATE(2367), + [sym__task] = STATE(2372), + [sym__story] = STATE(2372), + [sym__hooks] = STATE(2367), + [sym__before] = STATE(2367), + [sym__after] = STATE(2367), + [sym__envoy_error] = STATE(2367), + [sym__success] = STATE(2367), + [sym__finished] = STATE(2367), + [sym_livewire] = STATE(628), + [sym__persist] = STATE(2373), + [sym__teleport] = STATE(2373), + [sym__volt] = STATE(2373), + [sym_alpine_js] = STATE(628), + [aux_sym__directive_body] = STATE(628), + [sym_text] = STATE(628), + [sym__text] = STATE(984), + [aux_sym_php_only_repeat1] = STATE(984), + [sym_comment] = ACTIONS(7397), + [aux_sym_keyword_token1] = ACTIONS(7135), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7137), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7139), + [anon_sym_ATphp] = ACTIONS(7141), + [aux_sym_attribute_token1] = ACTIONS(7143), + [aux_sym__inline_directive_token1] = ACTIONS(7145), + [anon_sym_ATfragment] = ACTIONS(7147), + [anon_sym_ATsection] = ACTIONS(7149), + [anon_sym_ATonce] = ACTIONS(7151), + [anon_sym_ATverbatim] = ACTIONS(7153), + [anon_sym_ATpush] = ACTIONS(7155), + [anon_sym_ATpushOnce] = ACTIONS(7157), + [anon_sym_ATpushIf] = ACTIONS(7159), + [anon_sym_ATprepend] = ACTIONS(7161), + [anon_sym_ATprependOnce] = ACTIONS(7163), + [anon_sym_ATif] = ACTIONS(7165), + [anon_sym_ATunless] = ACTIONS(7167), + [anon_sym_ATisset] = ACTIONS(7169), + [anon_sym_ATempty] = ACTIONS(7171), + [anon_sym_ATauth] = ACTIONS(7173), + [anon_sym_ATguest] = ACTIONS(7175), + [anon_sym_ATproduction] = ACTIONS(7177), + [anon_sym_ATenv] = ACTIONS(7179), + [anon_sym_AThasSection] = ACTIONS(7181), + [anon_sym_ATsectionMissing] = ACTIONS(7183), + [anon_sym_ATerror] = ACTIONS(7185), + [anon_sym_ATcan] = ACTIONS(7187), + [anon_sym_ATcannot] = ACTIONS(7189), + [anon_sym_ATcanany] = ACTIONS(7191), + [anon_sym_ATfeature] = ACTIONS(7193), + [aux_sym__custom_token1] = ACTIONS(7195), + [aux_sym__custom_token2] = ACTIONS(7197), + [anon_sym_ATswitch] = ACTIONS(7199), + [aux_sym_loop_operator_token1] = ACTIONS(7201), + [anon_sym_ATfor] = ACTIONS(7203), + [anon_sym_ATforeach] = ACTIONS(7205), + [anon_sym_ATforelse] = ACTIONS(7207), + [anon_sym_ATendforelse] = ACTIONS(4859), + [anon_sym_ATwhile] = ACTIONS(7209), + [anon_sym_ATsetup] = ACTIONS(7211), + [anon_sym_ATtask] = ACTIONS(7213), + [anon_sym_ATstory] = ACTIONS(7215), + [anon_sym_ATbefore] = ACTIONS(7217), + [anon_sym_ATafter] = ACTIONS(7219), + [anon_sym_ATsuccess] = ACTIONS(7221), + [anon_sym_ATfinished] = ACTIONS(7223), + [anon_sym_ATpersist] = ACTIONS(7225), + [anon_sym_ATteleport] = ACTIONS(7227), + [anon_sym_ATvolt] = ACTIONS(7229), + [aux_sym_alpine_js_token1] = ACTIONS(7231), + [aux_sym__text_token1] = ACTIONS(7233), + [aux_sym__text_token2] = ACTIONS(7233), + [aux_sym__text_token3] = ACTIONS(7235), }, [546] = { - [sym__definition] = STATE(544), - [sym_keyword] = STATE(544), - [sym_php_statement] = STATE(544), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(544), - [sym__inline_directive] = STATE(544), - [sym__nested_directive] = STATE(544), - [sym_fragment] = STATE(544), - [sym_section] = STATE(544), - [sym_inlineSection] = STATE(544), - [sym_once] = STATE(544), - [sym_verbatim] = STATE(544), - [sym_stack] = STATE(544), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(544), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(544), - [sym_loop] = STATE(544), - [sym_loop_operator] = STATE(544), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(544), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(544), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(544), - [sym_text] = STATE(544), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(7435), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(7437), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(542), + [sym_keyword] = STATE(542), + [sym_php_statement] = STATE(542), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(542), + [sym__inline_directive] = STATE(542), + [sym__nested_directive] = STATE(542), + [sym_fragment] = STATE(542), + [sym_section] = STATE(542), + [sym_inlineSection] = STATE(542), + [sym_once] = STATE(542), + [sym_verbatim] = STATE(542), + [sym_stack] = STATE(542), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(542), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(542), + [sym_loop] = STATE(542), + [sym_loop_operator] = STATE(542), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(542), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(542), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(542), + [aux_sym__directive_body] = STATE(542), + [sym_text] = STATE(542), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(7399), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(7401), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [547] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7439), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7403), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [548] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7441), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7405), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [549] = { [sym__definition] = STATE(547), [sym_keyword] = STATE(547), [sym_php_statement] = STATE(547), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(547), [sym__inline_directive] = STATE(547), [sym__nested_directive] = STATE(547), @@ -92047,237 +93617,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(547), [sym_verbatim] = STATE(547), [sym_stack] = STATE(547), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(547), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(547), [sym_loop] = STATE(547), [sym_loop_operator] = STATE(547), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(547), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(547), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(547), [sym_text] = STATE(547), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(547), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(7443), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7445), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(7407), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7409), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [550] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7445), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7409), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [551] = { [sym__definition] = STATE(548), [sym_keyword] = STATE(548), [sym_php_statement] = STATE(548), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(548), [sym__inline_directive] = STATE(548), [sym__nested_directive] = STATE(548), @@ -92287,477 +93861,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(548), [sym_verbatim] = STATE(548), [sym_stack] = STATE(548), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(548), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(548), [sym_loop] = STATE(548), [sym_loop_operator] = STATE(548), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(548), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(548), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(548), [aux_sym__directive_body] = STATE(548), [sym_text] = STATE(548), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(7447), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7449), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(7411), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7413), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [552] = { - [sym__definition] = STATE(422), - [sym_keyword] = STATE(422), - [sym_php_statement] = STATE(422), - [sym__escaped] = STATE(2110), - [sym__unescaped] = STATE(2110), - [sym__raw] = STATE(2110), - [sym__inline_raw] = STATE(2110), - [sym__multi_line_raw] = STATE(2110), - [sym_attribute] = STATE(422), - [sym__inline_directive] = STATE(422), - [sym__nested_directive] = STATE(422), - [sym_fragment] = STATE(422), - [sym_section] = STATE(422), - [sym_inlineSection] = STATE(422), - [sym_once] = STATE(422), - [sym_verbatim] = STATE(422), - [sym_stack] = STATE(422), - [sym__push] = STATE(2109), - [sym__pushOnce] = STATE(2109), - [sym__pushIf] = STATE(2109), - [sym__prepend] = STATE(2109), - [sym__prependOnce] = STATE(2109), - [sym_conditional] = STATE(422), - [sym__if] = STATE(2108), - [sym__unless] = STATE(2108), - [sym__isset] = STATE(2108), - [sym__empty] = STATE(2108), - [sym__auth] = STATE(2108), - [sym__guest] = STATE(2108), - [sym__production] = STATE(2108), - [sym__env] = STATE(2108), - [sym__hasSection] = STATE(2108), - [sym__sectionMissing] = STATE(2108), - [sym__error] = STATE(2108), - [sym_authorization] = STATE(2108), - [sym__can] = STATE(2107), - [sym__cannot] = STATE(2107), - [sym__canany] = STATE(2107), - [sym__feature] = STATE(2108), - [sym__custom] = STATE(2108), - [sym_switch] = STATE(422), - [sym_loop] = STATE(422), - [sym_loop_operator] = STATE(422), - [sym__for] = STATE(2106), - [sym__foreach] = STATE(2106), - [sym__forelse] = STATE(2106), - [sym__while] = STATE(2106), - [sym_envoy] = STATE(422), - [sym__setup] = STATE(2110), - [sym__task] = STATE(2105), - [sym__story] = STATE(2105), - [sym__hooks] = STATE(2110), - [sym__before] = STATE(2110), - [sym__after] = STATE(2110), - [sym__envoy_error] = STATE(2110), - [sym__success] = STATE(2110), - [sym__finished] = STATE(2110), - [sym_livewire] = STATE(422), - [sym__persist] = STATE(2104), - [sym__teleport] = STATE(2104), - [sym__volt] = STATE(2104), - [aux_sym__directive_body] = STATE(422), - [sym_text] = STATE(422), - [sym__text] = STATE(1169), - [aux_sym_php_only_repeat1] = STATE(1169), - [sym_comment] = ACTIONS(7451), - [aux_sym_keyword_token1] = ACTIONS(7150), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7152), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7154), - [anon_sym_ATphp] = ACTIONS(7156), - [aux_sym_attribute_token1] = ACTIONS(7158), - [aux_sym__inline_directive_token1] = ACTIONS(7160), - [anon_sym_ATfragment] = ACTIONS(7162), - [anon_sym_ATsection] = ACTIONS(7164), - [anon_sym_ATonce] = ACTIONS(7166), - [anon_sym_ATverbatim] = ACTIONS(7168), - [anon_sym_ATpush] = ACTIONS(7170), - [anon_sym_ATpushOnce] = ACTIONS(7172), - [anon_sym_ATpushIf] = ACTIONS(7174), - [anon_sym_ATprepend] = ACTIONS(7176), - [anon_sym_ATendprepend] = ACTIONS(4996), - [anon_sym_ATprependOnce] = ACTIONS(7178), - [anon_sym_ATif] = ACTIONS(7180), - [anon_sym_ATunless] = ACTIONS(7182), - [anon_sym_ATisset] = ACTIONS(7184), - [anon_sym_ATempty] = ACTIONS(7186), - [anon_sym_ATauth] = ACTIONS(7188), - [anon_sym_ATguest] = ACTIONS(7190), - [anon_sym_ATproduction] = ACTIONS(7192), - [anon_sym_ATenv] = ACTIONS(7194), - [anon_sym_AThasSection] = ACTIONS(7196), - [anon_sym_ATsectionMissing] = ACTIONS(7198), - [anon_sym_ATerror] = ACTIONS(7200), - [anon_sym_ATcan] = ACTIONS(7202), - [anon_sym_ATcannot] = ACTIONS(7204), - [anon_sym_ATcanany] = ACTIONS(7206), - [anon_sym_ATfeature] = ACTIONS(7208), - [aux_sym__custom_token1] = ACTIONS(7210), - [aux_sym__custom_token2] = ACTIONS(7212), - [anon_sym_ATswitch] = ACTIONS(7214), - [aux_sym_loop_operator_token1] = ACTIONS(7216), - [anon_sym_ATfor] = ACTIONS(7218), - [anon_sym_ATforeach] = ACTIONS(7220), - [anon_sym_ATforelse] = ACTIONS(7222), - [anon_sym_ATwhile] = ACTIONS(7224), - [anon_sym_ATsetup] = ACTIONS(7226), - [anon_sym_ATtask] = ACTIONS(7228), - [anon_sym_ATstory] = ACTIONS(7230), - [anon_sym_ATbefore] = ACTIONS(7232), - [anon_sym_ATafter] = ACTIONS(7234), - [anon_sym_ATsuccess] = ACTIONS(7236), - [anon_sym_ATfinished] = ACTIONS(7238), - [anon_sym_ATpersist] = ACTIONS(7240), - [anon_sym_ATteleport] = ACTIONS(7242), - [anon_sym_ATvolt] = ACTIONS(7244), - [aux_sym__text_token1] = ACTIONS(7246), - [aux_sym__text_token2] = ACTIONS(7246), - [aux_sym__text_token3] = ACTIONS(7248), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7415), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [553] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7453), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), - }, - [554] = { - [sym__definition] = STATE(554), - [sym_keyword] = STATE(554), - [sym_php_statement] = STATE(554), - [sym__escaped] = STATE(3470), - [sym__unescaped] = STATE(3470), - [sym__raw] = STATE(3470), - [sym__inline_raw] = STATE(3470), - [sym__multi_line_raw] = STATE(3470), - [sym_attribute] = STATE(554), - [sym__inline_directive] = STATE(554), - [sym__nested_directive] = STATE(554), - [sym_fragment] = STATE(554), - [sym_section] = STATE(554), - [sym_inlineSection] = STATE(554), - [sym_once] = STATE(554), - [sym_verbatim] = STATE(554), - [sym_stack] = STATE(554), - [sym__push] = STATE(3469), - [sym__pushOnce] = STATE(3469), - [sym__pushIf] = STATE(3469), - [sym__prepend] = STATE(3469), - [sym__prependOnce] = STATE(3469), - [sym_conditional] = STATE(554), - [sym__if] = STATE(3467), - [sym__unless] = STATE(3467), - [sym__isset] = STATE(3467), - [sym__empty] = STATE(3467), - [sym__auth] = STATE(3467), - [sym__guest] = STATE(3467), - [sym__production] = STATE(3467), - [sym__env] = STATE(3467), - [sym__hasSection] = STATE(3467), - [sym__sectionMissing] = STATE(3467), - [sym__error] = STATE(3467), - [sym_authorization] = STATE(3467), - [sym__can] = STATE(3465), - [sym__cannot] = STATE(3465), - [sym__canany] = STATE(3465), - [sym__feature] = STATE(3467), - [sym__custom] = STATE(3467), - [sym_switch] = STATE(554), - [sym_loop] = STATE(554), - [sym_loop_operator] = STATE(554), - [sym__for] = STATE(3463), - [sym__foreach] = STATE(3463), - [sym__forelse] = STATE(3463), - [sym__while] = STATE(3463), - [sym_envoy] = STATE(554), - [sym__setup] = STATE(3470), - [sym__task] = STATE(3461), - [sym__story] = STATE(3461), - [sym__hooks] = STATE(3470), - [sym__before] = STATE(3470), - [sym__after] = STATE(3470), - [sym__envoy_error] = STATE(3470), - [sym__success] = STATE(3470), - [sym__finished] = STATE(3470), - [sym_livewire] = STATE(554), - [sym__persist] = STATE(3433), - [sym__teleport] = STATE(3433), - [sym__volt] = STATE(3433), - [aux_sym__directive_body] = STATE(554), - [sym_text] = STATE(554), - [sym__text] = STATE(987), - [aux_sym_php_only_repeat1] = STATE(987), - [sym_comment] = ACTIONS(7455), - [aux_sym_keyword_token1] = ACTIONS(7458), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7461), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7464), - [anon_sym_ATphp] = ACTIONS(7467), - [aux_sym_attribute_token1] = ACTIONS(7470), - [aux_sym__inline_directive_token1] = ACTIONS(7473), - [anon_sym_ATfragment] = ACTIONS(7476), - [anon_sym_ATsection] = ACTIONS(7479), - [anon_sym_ATonce] = ACTIONS(7482), - [anon_sym_ATverbatim] = ACTIONS(7485), - [anon_sym_ATpush] = ACTIONS(7488), - [anon_sym_ATpushOnce] = ACTIONS(7491), - [anon_sym_ATendPushOnce] = ACTIONS(5035), - [anon_sym_ATpushIf] = ACTIONS(7494), - [anon_sym_ATprepend] = ACTIONS(7497), - [anon_sym_ATprependOnce] = ACTIONS(7500), - [anon_sym_ATif] = ACTIONS(7503), - [anon_sym_ATunless] = ACTIONS(7506), - [anon_sym_ATisset] = ACTIONS(7509), - [anon_sym_ATempty] = ACTIONS(7512), - [anon_sym_ATauth] = ACTIONS(7515), - [anon_sym_ATguest] = ACTIONS(7518), - [anon_sym_ATproduction] = ACTIONS(7521), - [anon_sym_ATenv] = ACTIONS(7524), - [anon_sym_AThasSection] = ACTIONS(7527), - [anon_sym_ATsectionMissing] = ACTIONS(7530), - [anon_sym_ATerror] = ACTIONS(7533), - [anon_sym_ATcan] = ACTIONS(7536), - [anon_sym_ATcannot] = ACTIONS(7539), - [anon_sym_ATcanany] = ACTIONS(7542), - [anon_sym_ATfeature] = ACTIONS(7545), - [aux_sym__custom_token1] = ACTIONS(7548), - [aux_sym__custom_token2] = ACTIONS(7551), - [anon_sym_ATswitch] = ACTIONS(7554), - [aux_sym_loop_operator_token1] = ACTIONS(7557), - [anon_sym_ATfor] = ACTIONS(7560), - [anon_sym_ATforeach] = ACTIONS(7563), - [anon_sym_ATforelse] = ACTIONS(7566), - [anon_sym_ATwhile] = ACTIONS(7569), - [anon_sym_ATsetup] = ACTIONS(7572), - [anon_sym_ATtask] = ACTIONS(7575), - [anon_sym_ATstory] = ACTIONS(7578), - [anon_sym_ATbefore] = ACTIONS(7581), - [anon_sym_ATafter] = ACTIONS(7584), - [anon_sym_ATsuccess] = ACTIONS(7587), - [anon_sym_ATfinished] = ACTIONS(7590), - [anon_sym_ATpersist] = ACTIONS(7593), - [anon_sym_ATteleport] = ACTIONS(7596), - [anon_sym_ATvolt] = ACTIONS(7599), - [aux_sym__text_token1] = ACTIONS(7602), - [aux_sym__text_token2] = ACTIONS(7602), - [aux_sym__text_token3] = ACTIONS(7605), - }, - [555] = { [sym__definition] = STATE(550), [sym_keyword] = STATE(550), [sym_php_statement] = STATE(550), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(550), [sym__inline_directive] = STATE(550), [sym__nested_directive] = STATE(550), @@ -92767,1197 +94105,1583 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(550), [sym_verbatim] = STATE(550), [sym_stack] = STATE(550), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(550), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(550), [sym_loop] = STATE(550), [sym_loop_operator] = STATE(550), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(550), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(550), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(550), [sym_text] = STATE(550), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(550), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(7608), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7610), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(7417), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7419), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), + }, + [554] = { + [sym__definition] = STATE(552), + [sym_keyword] = STATE(552), + [sym_php_statement] = STATE(552), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(552), + [sym__inline_directive] = STATE(552), + [sym__nested_directive] = STATE(552), + [sym_fragment] = STATE(552), + [sym_section] = STATE(552), + [sym_inlineSection] = STATE(552), + [sym_once] = STATE(552), + [sym_verbatim] = STATE(552), + [sym_stack] = STATE(552), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(552), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(552), + [sym_loop] = STATE(552), + [sym_loop_operator] = STATE(552), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(552), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(552), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(552), + [aux_sym__directive_body] = STATE(552), + [sym_text] = STATE(552), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(7421), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7423), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), + }, + [555] = { + [sym__definition] = STATE(207), + [sym_keyword] = STATE(207), + [sym_php_statement] = STATE(207), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(207), + [sym__inline_directive] = STATE(207), + [sym__nested_directive] = STATE(207), + [sym_fragment] = STATE(207), + [sym_section] = STATE(207), + [sym_inlineSection] = STATE(207), + [sym_once] = STATE(207), + [sym_verbatim] = STATE(207), + [sym_stack] = STATE(207), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(207), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(207), + [sym_loop] = STATE(207), + [sym_loop_operator] = STATE(207), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(207), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(207), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(207), + [aux_sym__directive_body] = STATE(207), + [sym_text] = STATE(207), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(7425), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7427), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [556] = { - [sym__definition] = STATE(553), - [sym_keyword] = STATE(553), - [sym_php_statement] = STATE(553), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(553), - [sym__inline_directive] = STATE(553), - [sym__nested_directive] = STATE(553), - [sym_fragment] = STATE(553), - [sym_section] = STATE(553), - [sym_inlineSection] = STATE(553), - [sym_once] = STATE(553), - [sym_verbatim] = STATE(553), - [sym_stack] = STATE(553), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(553), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(553), - [sym_loop] = STATE(553), - [sym_loop_operator] = STATE(553), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(553), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(553), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(553), - [sym_text] = STATE(553), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(7612), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7614), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(7429), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [557] = { - [sym__definition] = STATE(598), - [sym_keyword] = STATE(598), - [sym_php_statement] = STATE(598), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(598), - [sym__inline_directive] = STATE(598), - [sym__nested_directive] = STATE(598), - [sym_fragment] = STATE(598), - [sym_section] = STATE(598), - [sym_inlineSection] = STATE(598), - [sym_once] = STATE(598), - [sym_verbatim] = STATE(598), - [sym_stack] = STATE(598), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(598), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(598), - [sym_loop] = STATE(598), - [sym_loop_operator] = STATE(598), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(598), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(598), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(598), - [sym_text] = STATE(598), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(7616), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7618), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(7431), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [558] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(7620), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(556), + [sym_keyword] = STATE(556), + [sym_php_statement] = STATE(556), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(556), + [sym__inline_directive] = STATE(556), + [sym__nested_directive] = STATE(556), + [sym_fragment] = STATE(556), + [sym_section] = STATE(556), + [sym_inlineSection] = STATE(556), + [sym_once] = STATE(556), + [sym_verbatim] = STATE(556), + [sym_stack] = STATE(556), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(556), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(556), + [sym_loop] = STATE(556), + [sym_loop_operator] = STATE(556), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(556), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(556), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(556), + [aux_sym__directive_body] = STATE(556), + [sym_text] = STATE(556), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(7433), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(7435), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [559] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(7622), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(374), + [sym_keyword] = STATE(374), + [sym_php_statement] = STATE(374), + [sym__escaped] = STATE(2120), + [sym__unescaped] = STATE(2120), + [sym__raw] = STATE(2120), + [sym__inline_raw] = STATE(2120), + [sym__multi_line_raw] = STATE(2120), + [sym_attribute] = STATE(374), + [sym__inline_directive] = STATE(374), + [sym__nested_directive] = STATE(374), + [sym_fragment] = STATE(374), + [sym_section] = STATE(374), + [sym_inlineSection] = STATE(374), + [sym_once] = STATE(374), + [sym_verbatim] = STATE(374), + [sym_stack] = STATE(374), + [sym__push] = STATE(2119), + [sym__pushOnce] = STATE(2119), + [sym__pushIf] = STATE(2119), + [sym__prepend] = STATE(2119), + [sym__prependOnce] = STATE(2119), + [sym_conditional] = STATE(374), + [sym__if] = STATE(2118), + [sym__unless] = STATE(2118), + [sym__isset] = STATE(2118), + [sym__empty] = STATE(2118), + [sym__auth] = STATE(2118), + [sym__guest] = STATE(2118), + [sym__production] = STATE(2118), + [sym__env] = STATE(2118), + [sym__hasSection] = STATE(2118), + [sym__sectionMissing] = STATE(2118), + [sym__error] = STATE(2118), + [sym_authorization] = STATE(2118), + [sym__can] = STATE(2117), + [sym__cannot] = STATE(2117), + [sym__canany] = STATE(2117), + [sym__feature] = STATE(2118), + [sym__custom] = STATE(2118), + [sym_switch] = STATE(374), + [sym_loop] = STATE(374), + [sym_loop_operator] = STATE(374), + [sym__for] = STATE(2116), + [sym__foreach] = STATE(2116), + [sym__forelse] = STATE(2116), + [sym__while] = STATE(2116), + [sym_envoy] = STATE(374), + [sym__setup] = STATE(2120), + [sym__task] = STATE(2115), + [sym__story] = STATE(2115), + [sym__hooks] = STATE(2120), + [sym__before] = STATE(2120), + [sym__after] = STATE(2120), + [sym__envoy_error] = STATE(2120), + [sym__success] = STATE(2120), + [sym__finished] = STATE(2120), + [sym_livewire] = STATE(374), + [sym__persist] = STATE(2114), + [sym__teleport] = STATE(2114), + [sym__volt] = STATE(2114), + [sym_alpine_js] = STATE(374), + [aux_sym__directive_body] = STATE(374), + [sym_text] = STATE(374), + [sym__text] = STATE(1183), + [aux_sym_php_only_repeat1] = STATE(1183), + [sym_comment] = ACTIONS(7437), + [aux_sym_keyword_token1] = ACTIONS(7283), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7285), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7287), + [anon_sym_ATphp] = ACTIONS(7289), + [aux_sym_attribute_token1] = ACTIONS(7291), + [aux_sym__inline_directive_token1] = ACTIONS(7293), + [anon_sym_ATfragment] = ACTIONS(7295), + [anon_sym_ATsection] = ACTIONS(7297), + [anon_sym_ATonce] = ACTIONS(7299), + [anon_sym_ATverbatim] = ACTIONS(7301), + [anon_sym_ATpush] = ACTIONS(7303), + [anon_sym_ATpushOnce] = ACTIONS(7305), + [anon_sym_ATpushIf] = ACTIONS(7307), + [anon_sym_ATprepend] = ACTIONS(7309), + [anon_sym_ATendprepend] = ACTIONS(4859), + [anon_sym_ATprependOnce] = ACTIONS(7311), + [anon_sym_ATif] = ACTIONS(7313), + [anon_sym_ATunless] = ACTIONS(7315), + [anon_sym_ATisset] = ACTIONS(7317), + [anon_sym_ATempty] = ACTIONS(7319), + [anon_sym_ATauth] = ACTIONS(7321), + [anon_sym_ATguest] = ACTIONS(7323), + [anon_sym_ATproduction] = ACTIONS(7325), + [anon_sym_ATenv] = ACTIONS(7327), + [anon_sym_AThasSection] = ACTIONS(7329), + [anon_sym_ATsectionMissing] = ACTIONS(7331), + [anon_sym_ATerror] = ACTIONS(7333), + [anon_sym_ATcan] = ACTIONS(7335), + [anon_sym_ATcannot] = ACTIONS(7337), + [anon_sym_ATcanany] = ACTIONS(7339), + [anon_sym_ATfeature] = ACTIONS(7341), + [aux_sym__custom_token1] = ACTIONS(7343), + [aux_sym__custom_token2] = ACTIONS(7345), + [anon_sym_ATswitch] = ACTIONS(7347), + [aux_sym_loop_operator_token1] = ACTIONS(7349), + [anon_sym_ATfor] = ACTIONS(7351), + [anon_sym_ATforeach] = ACTIONS(7353), + [anon_sym_ATforelse] = ACTIONS(7355), + [anon_sym_ATwhile] = ACTIONS(7357), + [anon_sym_ATsetup] = ACTIONS(7359), + [anon_sym_ATtask] = ACTIONS(7361), + [anon_sym_ATstory] = ACTIONS(7363), + [anon_sym_ATbefore] = ACTIONS(7365), + [anon_sym_ATafter] = ACTIONS(7367), + [anon_sym_ATsuccess] = ACTIONS(7369), + [anon_sym_ATfinished] = ACTIONS(7371), + [anon_sym_ATpersist] = ACTIONS(7373), + [anon_sym_ATteleport] = ACTIONS(7375), + [anon_sym_ATvolt] = ACTIONS(7377), + [aux_sym_alpine_js_token1] = ACTIONS(7379), + [aux_sym__text_token1] = ACTIONS(7381), + [aux_sym__text_token2] = ACTIONS(7381), + [aux_sym__text_token3] = ACTIONS(7383), }, [560] = { - [sym__definition] = STATE(558), - [sym_keyword] = STATE(558), - [sym_php_statement] = STATE(558), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(558), - [sym__inline_directive] = STATE(558), - [sym__nested_directive] = STATE(558), - [sym_fragment] = STATE(558), - [sym_section] = STATE(558), - [sym_inlineSection] = STATE(558), - [sym_once] = STATE(558), - [sym_verbatim] = STATE(558), - [sym_stack] = STATE(558), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(558), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(558), - [sym_loop] = STATE(558), - [sym_loop_operator] = STATE(558), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(558), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(558), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(558), - [sym_text] = STATE(558), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(7624), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(7626), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(557), + [sym_keyword] = STATE(557), + [sym_php_statement] = STATE(557), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(557), + [sym__inline_directive] = STATE(557), + [sym__nested_directive] = STATE(557), + [sym_fragment] = STATE(557), + [sym_section] = STATE(557), + [sym_inlineSection] = STATE(557), + [sym_once] = STATE(557), + [sym_verbatim] = STATE(557), + [sym_stack] = STATE(557), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(557), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(557), + [sym_loop] = STATE(557), + [sym_loop_operator] = STATE(557), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(557), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(557), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(557), + [aux_sym__directive_body] = STATE(557), + [sym_text] = STATE(557), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(7439), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(7441), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [561] = { - [sym__definition] = STATE(559), - [sym_keyword] = STATE(559), - [sym_php_statement] = STATE(559), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(559), - [sym__inline_directive] = STATE(559), - [sym__nested_directive] = STATE(559), - [sym_fragment] = STATE(559), - [sym_section] = STATE(559), - [sym_inlineSection] = STATE(559), - [sym_once] = STATE(559), - [sym_verbatim] = STATE(559), - [sym_stack] = STATE(559), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(559), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(559), - [sym_loop] = STATE(559), - [sym_loop_operator] = STATE(559), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(559), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(559), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(559), - [sym_text] = STATE(559), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(7628), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(7630), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(561), + [sym_keyword] = STATE(561), + [sym_php_statement] = STATE(561), + [sym__escaped] = STATE(3431), + [sym__unescaped] = STATE(3431), + [sym__raw] = STATE(3431), + [sym__inline_raw] = STATE(3431), + [sym__multi_line_raw] = STATE(3431), + [sym_attribute] = STATE(561), + [sym__inline_directive] = STATE(561), + [sym__nested_directive] = STATE(561), + [sym_fragment] = STATE(561), + [sym_section] = STATE(561), + [sym_inlineSection] = STATE(561), + [sym_once] = STATE(561), + [sym_verbatim] = STATE(561), + [sym_stack] = STATE(561), + [sym__push] = STATE(3403), + [sym__pushOnce] = STATE(3403), + [sym__pushIf] = STATE(3403), + [sym__prepend] = STATE(3403), + [sym__prependOnce] = STATE(3403), + [sym_conditional] = STATE(561), + [sym__if] = STATE(3391), + [sym__unless] = STATE(3391), + [sym__isset] = STATE(3391), + [sym__empty] = STATE(3391), + [sym__auth] = STATE(3391), + [sym__guest] = STATE(3391), + [sym__production] = STATE(3391), + [sym__env] = STATE(3391), + [sym__hasSection] = STATE(3391), + [sym__sectionMissing] = STATE(3391), + [sym__error] = STATE(3391), + [sym_authorization] = STATE(3391), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3391), + [sym__custom] = STATE(3391), + [sym_switch] = STATE(561), + [sym_loop] = STATE(561), + [sym_loop_operator] = STATE(561), + [sym__for] = STATE(3378), + [sym__foreach] = STATE(3378), + [sym__forelse] = STATE(3378), + [sym__while] = STATE(3378), + [sym_envoy] = STATE(561), + [sym__setup] = STATE(3431), + [sym__task] = STATE(3377), + [sym__story] = STATE(3377), + [sym__hooks] = STATE(3431), + [sym__before] = STATE(3431), + [sym__after] = STATE(3431), + [sym__envoy_error] = STATE(3431), + [sym__success] = STATE(3431), + [sym__finished] = STATE(3431), + [sym_livewire] = STATE(561), + [sym__persist] = STATE(3371), + [sym__teleport] = STATE(3371), + [sym__volt] = STATE(3371), + [sym_alpine_js] = STATE(561), + [aux_sym__directive_body] = STATE(561), + [sym_text] = STATE(561), + [sym__text] = STATE(999), + [aux_sym_php_only_repeat1] = STATE(999), + [sym_comment] = ACTIONS(7443), + [aux_sym_keyword_token1] = ACTIONS(7446), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7449), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7452), + [anon_sym_ATphp] = ACTIONS(7455), + [aux_sym_attribute_token1] = ACTIONS(7458), + [aux_sym__inline_directive_token1] = ACTIONS(7461), + [anon_sym_ATfragment] = ACTIONS(7464), + [anon_sym_ATsection] = ACTIONS(7467), + [anon_sym_ATonce] = ACTIONS(7470), + [anon_sym_ATverbatim] = ACTIONS(7473), + [anon_sym_ATpush] = ACTIONS(7476), + [anon_sym_ATpushOnce] = ACTIONS(7479), + [anon_sym_ATendPushOnce] = ACTIONS(5134), + [anon_sym_ATpushIf] = ACTIONS(7482), + [anon_sym_ATprepend] = ACTIONS(7485), + [anon_sym_ATprependOnce] = ACTIONS(7488), + [anon_sym_ATif] = ACTIONS(7491), + [anon_sym_ATunless] = ACTIONS(7494), + [anon_sym_ATisset] = ACTIONS(7497), + [anon_sym_ATempty] = ACTIONS(7500), + [anon_sym_ATauth] = ACTIONS(7503), + [anon_sym_ATguest] = ACTIONS(7506), + [anon_sym_ATproduction] = ACTIONS(7509), + [anon_sym_ATenv] = ACTIONS(7512), + [anon_sym_AThasSection] = ACTIONS(7515), + [anon_sym_ATsectionMissing] = ACTIONS(7518), + [anon_sym_ATerror] = ACTIONS(7521), + [anon_sym_ATcan] = ACTIONS(7524), + [anon_sym_ATcannot] = ACTIONS(7527), + [anon_sym_ATcanany] = ACTIONS(7530), + [anon_sym_ATfeature] = ACTIONS(7533), + [aux_sym__custom_token1] = ACTIONS(7536), + [aux_sym__custom_token2] = ACTIONS(7539), + [anon_sym_ATswitch] = ACTIONS(7542), + [aux_sym_loop_operator_token1] = ACTIONS(7545), + [anon_sym_ATfor] = ACTIONS(7548), + [anon_sym_ATforeach] = ACTIONS(7551), + [anon_sym_ATforelse] = ACTIONS(7554), + [anon_sym_ATwhile] = ACTIONS(7557), + [anon_sym_ATsetup] = ACTIONS(7560), + [anon_sym_ATtask] = ACTIONS(7563), + [anon_sym_ATstory] = ACTIONS(7566), + [anon_sym_ATbefore] = ACTIONS(7569), + [anon_sym_ATafter] = ACTIONS(7572), + [anon_sym_ATsuccess] = ACTIONS(7575), + [anon_sym_ATfinished] = ACTIONS(7578), + [anon_sym_ATpersist] = ACTIONS(7581), + [anon_sym_ATteleport] = ACTIONS(7584), + [anon_sym_ATvolt] = ACTIONS(7587), + [aux_sym_alpine_js_token1] = ACTIONS(7590), + [aux_sym__text_token1] = ACTIONS(7593), + [aux_sym__text_token2] = ACTIONS(7593), + [aux_sym__text_token3] = ACTIONS(7596), }, [562] = { - [sym__definition] = STATE(655), - [sym_keyword] = STATE(655), - [sym_php_statement] = STATE(655), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(655), - [sym__inline_directive] = STATE(655), - [sym__nested_directive] = STATE(655), - [sym_fragment] = STATE(655), - [sym_section] = STATE(655), - [sym_inlineSection] = STATE(655), - [sym_once] = STATE(655), - [sym_verbatim] = STATE(655), - [sym_stack] = STATE(655), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(655), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(655), - [sym_loop] = STATE(655), - [sym_loop_operator] = STATE(655), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(655), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(655), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(655), - [sym_text] = STATE(655), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(7632), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(7634), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7599), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [563] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7636), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7601), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [564] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7638), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(562), + [sym_keyword] = STATE(562), + [sym_php_statement] = STATE(562), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(562), + [sym__inline_directive] = STATE(562), + [sym__nested_directive] = STATE(562), + [sym_fragment] = STATE(562), + [sym_section] = STATE(562), + [sym_inlineSection] = STATE(562), + [sym_once] = STATE(562), + [sym_verbatim] = STATE(562), + [sym_stack] = STATE(562), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(562), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(562), + [sym_loop] = STATE(562), + [sym_loop_operator] = STATE(562), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(562), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(562), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(562), + [sym_text] = STATE(562), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(562), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(7603), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7605), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [565] = { + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7605), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), + }, + [566] = { [sym__definition] = STATE(563), [sym_keyword] = STATE(563), [sym_php_statement] = STATE(563), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(563), [sym__inline_directive] = STATE(563), [sym__nested_directive] = STATE(563), @@ -93967,357 +95691,851 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(563), [sym_verbatim] = STATE(563), [sym_stack] = STATE(563), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(563), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(563), [sym_loop] = STATE(563), [sym_loop_operator] = STATE(563), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(563), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(563), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(563), + [aux_sym__directive_body] = STATE(563), [sym_text] = STATE(563), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(563), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(7640), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7642), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), - }, - [566] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7642), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(7607), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7609), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [567] = { - [sym__definition] = STATE(564), - [sym_keyword] = STATE(564), - [sym_php_statement] = STATE(564), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(564), - [sym__inline_directive] = STATE(564), - [sym__nested_directive] = STATE(564), - [sym_fragment] = STATE(564), - [sym_section] = STATE(564), - [sym_inlineSection] = STATE(564), - [sym_once] = STATE(564), - [sym_verbatim] = STATE(564), - [sym_stack] = STATE(564), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(564), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(564), - [sym_loop] = STATE(564), - [sym_loop_operator] = STATE(564), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(564), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(564), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(564), - [sym_text] = STATE(564), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(7644), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7646), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7611), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [568] = { + [sym__definition] = STATE(565), + [sym_keyword] = STATE(565), + [sym_php_statement] = STATE(565), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(565), + [sym__inline_directive] = STATE(565), + [sym__nested_directive] = STATE(565), + [sym_fragment] = STATE(565), + [sym_section] = STATE(565), + [sym_inlineSection] = STATE(565), + [sym_once] = STATE(565), + [sym_verbatim] = STATE(565), + [sym_stack] = STATE(565), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(565), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(565), + [sym_loop] = STATE(565), + [sym_loop_operator] = STATE(565), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(565), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(565), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(565), + [sym_text] = STATE(565), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(565), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(7613), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7615), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), + }, + [569] = { + [sym__definition] = STATE(371), + [sym_keyword] = STATE(371), + [sym_php_statement] = STATE(371), + [sym__escaped] = STATE(2102), + [sym__unescaped] = STATE(2102), + [sym__raw] = STATE(2102), + [sym__inline_raw] = STATE(2102), + [sym__multi_line_raw] = STATE(2102), + [sym_attribute] = STATE(371), + [sym__inline_directive] = STATE(371), + [sym__nested_directive] = STATE(371), + [sym_fragment] = STATE(371), + [sym_section] = STATE(371), + [sym_inlineSection] = STATE(371), + [sym_once] = STATE(371), + [sym_verbatim] = STATE(371), + [sym_stack] = STATE(371), + [sym__push] = STATE(2104), + [sym__pushOnce] = STATE(2104), + [sym__pushIf] = STATE(2104), + [sym__prepend] = STATE(2104), + [sym__prependOnce] = STATE(2104), + [sym_conditional] = STATE(371), + [sym__if] = STATE(2107), + [sym__unless] = STATE(2107), + [sym__isset] = STATE(2107), + [sym__empty] = STATE(2107), + [sym__auth] = STATE(2107), + [sym__guest] = STATE(2107), + [sym__production] = STATE(2107), + [sym__env] = STATE(2107), + [sym__hasSection] = STATE(2107), + [sym__sectionMissing] = STATE(2107), + [sym__error] = STATE(2107), + [sym_authorization] = STATE(2107), + [sym__can] = STATE(2121), + [sym__cannot] = STATE(2121), + [sym__canany] = STATE(2121), + [sym__feature] = STATE(2107), + [sym__custom] = STATE(2107), + [sym_switch] = STATE(371), + [sym_loop] = STATE(371), + [sym_loop_operator] = STATE(371), + [sym__for] = STATE(2162), + [sym__foreach] = STATE(2162), + [sym__forelse] = STATE(2162), + [sym__while] = STATE(2162), + [sym_envoy] = STATE(371), + [sym__setup] = STATE(2102), + [sym__task] = STATE(3202), + [sym__story] = STATE(3202), + [sym__hooks] = STATE(2102), + [sym__before] = STATE(2102), + [sym__after] = STATE(2102), + [sym__envoy_error] = STATE(2102), + [sym__success] = STATE(2102), + [sym__finished] = STATE(2102), + [sym_livewire] = STATE(371), + [sym__persist] = STATE(2174), + [sym__teleport] = STATE(2174), + [sym__volt] = STATE(2174), + [sym_alpine_js] = STATE(371), + [aux_sym__directive_body] = STATE(371), + [sym_text] = STATE(371), + [sym__text] = STATE(1025), + [aux_sym_php_only_repeat1] = STATE(1025), + [sym_comment] = ACTIONS(7617), + [aux_sym_keyword_token1] = ACTIONS(6539), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6541), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6543), + [anon_sym_ATphp] = ACTIONS(6545), + [aux_sym_attribute_token1] = ACTIONS(6547), + [aux_sym__inline_directive_token1] = ACTIONS(6549), + [anon_sym_ATfragment] = ACTIONS(6551), + [anon_sym_ATendfragment] = ACTIONS(4859), + [anon_sym_ATsection] = ACTIONS(6553), + [anon_sym_ATonce] = ACTIONS(6555), + [anon_sym_ATverbatim] = ACTIONS(6557), + [anon_sym_ATpush] = ACTIONS(6559), + [anon_sym_ATpushOnce] = ACTIONS(6561), + [anon_sym_ATpushIf] = ACTIONS(6563), + [anon_sym_ATprepend] = ACTIONS(6565), + [anon_sym_ATprependOnce] = ACTIONS(6567), + [anon_sym_ATif] = ACTIONS(6569), + [anon_sym_ATunless] = ACTIONS(6571), + [anon_sym_ATisset] = ACTIONS(6573), + [anon_sym_ATempty] = ACTIONS(6575), + [anon_sym_ATauth] = ACTIONS(6577), + [anon_sym_ATguest] = ACTIONS(6579), + [anon_sym_ATproduction] = ACTIONS(6581), + [anon_sym_ATenv] = ACTIONS(6583), + [anon_sym_AThasSection] = ACTIONS(6585), + [anon_sym_ATsectionMissing] = ACTIONS(6587), + [anon_sym_ATerror] = ACTIONS(6589), + [anon_sym_ATcan] = ACTIONS(6591), + [anon_sym_ATcannot] = ACTIONS(6593), + [anon_sym_ATcanany] = ACTIONS(6595), + [anon_sym_ATfeature] = ACTIONS(6597), + [aux_sym__custom_token1] = ACTIONS(6599), + [aux_sym__custom_token2] = ACTIONS(6601), + [anon_sym_ATswitch] = ACTIONS(6603), + [aux_sym_loop_operator_token1] = ACTIONS(6605), + [anon_sym_ATfor] = ACTIONS(6607), + [anon_sym_ATforeach] = ACTIONS(6609), + [anon_sym_ATforelse] = ACTIONS(6611), + [anon_sym_ATwhile] = ACTIONS(6613), + [anon_sym_ATsetup] = ACTIONS(6615), + [anon_sym_ATtask] = ACTIONS(6617), + [anon_sym_ATstory] = ACTIONS(6619), + [anon_sym_ATbefore] = ACTIONS(6621), + [anon_sym_ATafter] = ACTIONS(6623), + [anon_sym_ATsuccess] = ACTIONS(6625), + [anon_sym_ATfinished] = ACTIONS(6627), + [anon_sym_ATpersist] = ACTIONS(6629), + [anon_sym_ATteleport] = ACTIONS(6631), + [anon_sym_ATvolt] = ACTIONS(6633), + [aux_sym_alpine_js_token1] = ACTIONS(6635), + [aux_sym__text_token1] = ACTIONS(6637), + [aux_sym__text_token2] = ACTIONS(6637), + [aux_sym__text_token3] = ACTIONS(6639), + }, + [570] = { + [sym__definition] = STATE(567), + [sym_keyword] = STATE(567), + [sym_php_statement] = STATE(567), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(567), + [sym__inline_directive] = STATE(567), + [sym__nested_directive] = STATE(567), + [sym_fragment] = STATE(567), + [sym_section] = STATE(567), + [sym_inlineSection] = STATE(567), + [sym_once] = STATE(567), + [sym_verbatim] = STATE(567), + [sym_stack] = STATE(567), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(567), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(567), + [sym_loop] = STATE(567), + [sym_loop_operator] = STATE(567), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(567), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(567), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(567), + [aux_sym__directive_body] = STATE(567), + [sym_text] = STATE(567), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(7619), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7621), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), + }, + [571] = { + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7623), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), + }, + [572] = { + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(7625), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), + }, + [573] = { [sym__definition] = STATE(366), [sym_keyword] = STATE(366), [sym_php_statement] = STATE(366), - [sym__escaped] = STATE(1993), - [sym__unescaped] = STATE(1993), - [sym__raw] = STATE(1993), - [sym__inline_raw] = STATE(1993), - [sym__multi_line_raw] = STATE(1993), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), [sym_attribute] = STATE(366), [sym__inline_directive] = STATE(366), [sym__nested_directive] = STATE(366), @@ -94327,1317 +96545,729 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(366), [sym_verbatim] = STATE(366), [sym_stack] = STATE(366), - [sym__push] = STATE(2111), - [sym__pushOnce] = STATE(2111), - [sym__pushIf] = STATE(2111), - [sym__prepend] = STATE(2111), - [sym__prependOnce] = STATE(2111), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), [sym_conditional] = STATE(366), - [sym__if] = STATE(2008), - [sym__unless] = STATE(2008), - [sym__isset] = STATE(2008), - [sym__empty] = STATE(2008), - [sym__auth] = STATE(2008), - [sym__guest] = STATE(2008), - [sym__production] = STATE(2008), - [sym__env] = STATE(2008), - [sym__hasSection] = STATE(2008), - [sym__sectionMissing] = STATE(2008), - [sym__error] = STATE(2008), - [sym_authorization] = STATE(2008), - [sym__can] = STATE(2011), - [sym__cannot] = STATE(2011), - [sym__canany] = STATE(2011), - [sym__feature] = STATE(2008), - [sym__custom] = STATE(2008), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), [sym_switch] = STATE(366), [sym_loop] = STATE(366), [sym_loop_operator] = STATE(366), - [sym__for] = STATE(2025), - [sym__foreach] = STATE(2025), - [sym__forelse] = STATE(2025), - [sym__while] = STATE(2025), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), [sym_envoy] = STATE(366), - [sym__setup] = STATE(1993), - [sym__task] = STATE(2065), - [sym__story] = STATE(2065), - [sym__hooks] = STATE(1993), - [sym__before] = STATE(1993), - [sym__after] = STATE(1993), - [sym__envoy_error] = STATE(1993), - [sym__success] = STATE(1993), - [sym__finished] = STATE(1993), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), [sym_livewire] = STATE(366), - [sym__persist] = STATE(2070), - [sym__teleport] = STATE(2070), - [sym__volt] = STATE(2070), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), [aux_sym__directive_body] = STATE(366), [sym_text] = STATE(366), - [sym__text] = STATE(1106), - [aux_sym_php_only_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(7648), - [aux_sym_keyword_token1] = ACTIONS(6402), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6404), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6406), - [anon_sym_ATphp] = ACTIONS(6408), - [aux_sym_attribute_token1] = ACTIONS(6410), - [aux_sym__inline_directive_token1] = ACTIONS(6412), - [anon_sym_ATfragment] = ACTIONS(6414), - [anon_sym_ATendfragment] = ACTIONS(4996), - [anon_sym_ATsection] = ACTIONS(6416), - [anon_sym_ATonce] = ACTIONS(6418), - [anon_sym_ATverbatim] = ACTIONS(6420), - [anon_sym_ATpush] = ACTIONS(6422), - [anon_sym_ATpushOnce] = ACTIONS(6424), - [anon_sym_ATpushIf] = ACTIONS(6426), - [anon_sym_ATprepend] = ACTIONS(6428), - [anon_sym_ATprependOnce] = ACTIONS(6430), - [anon_sym_ATif] = ACTIONS(6432), - [anon_sym_ATunless] = ACTIONS(6434), - [anon_sym_ATisset] = ACTIONS(6436), - [anon_sym_ATempty] = ACTIONS(6438), - [anon_sym_ATauth] = ACTIONS(6440), - [anon_sym_ATguest] = ACTIONS(6442), - [anon_sym_ATproduction] = ACTIONS(6444), - [anon_sym_ATenv] = ACTIONS(6446), - [anon_sym_AThasSection] = ACTIONS(6448), - [anon_sym_ATsectionMissing] = ACTIONS(6450), - [anon_sym_ATerror] = ACTIONS(6452), - [anon_sym_ATcan] = ACTIONS(6454), - [anon_sym_ATcannot] = ACTIONS(6456), - [anon_sym_ATcanany] = ACTIONS(6458), - [anon_sym_ATfeature] = ACTIONS(6460), - [aux_sym__custom_token1] = ACTIONS(6462), - [aux_sym__custom_token2] = ACTIONS(6464), - [anon_sym_ATswitch] = ACTIONS(6466), - [aux_sym_loop_operator_token1] = ACTIONS(6468), - [anon_sym_ATfor] = ACTIONS(6470), - [anon_sym_ATforeach] = ACTIONS(6472), - [anon_sym_ATforelse] = ACTIONS(6474), - [anon_sym_ATwhile] = ACTIONS(6476), - [anon_sym_ATsetup] = ACTIONS(6478), - [anon_sym_ATtask] = ACTIONS(6480), - [anon_sym_ATstory] = ACTIONS(6482), - [anon_sym_ATbefore] = ACTIONS(6484), - [anon_sym_ATafter] = ACTIONS(6486), - [anon_sym_ATsuccess] = ACTIONS(6488), - [anon_sym_ATfinished] = ACTIONS(6490), - [anon_sym_ATpersist] = ACTIONS(6492), - [anon_sym_ATteleport] = ACTIONS(6494), - [anon_sym_ATvolt] = ACTIONS(6496), - [aux_sym__text_token1] = ACTIONS(6498), - [aux_sym__text_token2] = ACTIONS(6498), - [aux_sym__text_token3] = ACTIONS(6500), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(7627), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, - [569] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7650), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [574] = { + [sym__definition] = STATE(572), + [sym_keyword] = STATE(572), + [sym_php_statement] = STATE(572), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(572), + [sym__inline_directive] = STATE(572), + [sym__nested_directive] = STATE(572), + [sym_fragment] = STATE(572), + [sym_section] = STATE(572), + [sym_inlineSection] = STATE(572), + [sym_once] = STATE(572), + [sym_verbatim] = STATE(572), + [sym_stack] = STATE(572), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(572), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(572), + [sym_loop] = STATE(572), + [sym_loop_operator] = STATE(572), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(572), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(572), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(572), + [aux_sym__directive_body] = STATE(572), + [sym_text] = STATE(572), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(7629), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(7631), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, - [570] = { - [sym__definition] = STATE(566), - [sym_keyword] = STATE(566), - [sym_php_statement] = STATE(566), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(566), - [sym__inline_directive] = STATE(566), - [sym__nested_directive] = STATE(566), - [sym_fragment] = STATE(566), - [sym_section] = STATE(566), - [sym_inlineSection] = STATE(566), - [sym_once] = STATE(566), - [sym_verbatim] = STATE(566), - [sym_stack] = STATE(566), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(566), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(566), - [sym_loop] = STATE(566), - [sym_loop_operator] = STATE(566), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(566), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(566), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(566), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(566), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(7652), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7654), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [575] = { + [sym__definition] = STATE(611), + [sym_keyword] = STATE(611), + [sym_php_statement] = STATE(611), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(611), + [sym__inline_directive] = STATE(611), + [sym__nested_directive] = STATE(611), + [sym_fragment] = STATE(611), + [sym_section] = STATE(611), + [sym_inlineSection] = STATE(611), + [sym_once] = STATE(611), + [sym_verbatim] = STATE(611), + [sym_stack] = STATE(611), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(611), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(611), + [sym_loop] = STATE(611), + [sym_loop_operator] = STATE(611), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(611), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(611), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(611), + [aux_sym__directive_body] = STATE(611), + [sym_text] = STATE(611), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(7633), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7635), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, - [571] = { - [sym__definition] = STATE(569), - [sym_keyword] = STATE(569), - [sym_php_statement] = STATE(569), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(569), - [sym__inline_directive] = STATE(569), - [sym__nested_directive] = STATE(569), - [sym_fragment] = STATE(569), - [sym_section] = STATE(569), - [sym_inlineSection] = STATE(569), - [sym_once] = STATE(569), - [sym_verbatim] = STATE(569), - [sym_stack] = STATE(569), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(569), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(569), - [sym_loop] = STATE(569), - [sym_loop_operator] = STATE(569), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(569), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(569), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(569), - [sym_text] = STATE(569), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(7656), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7658), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [576] = { + [sym__definition] = STATE(573), + [sym_keyword] = STATE(573), + [sym_php_statement] = STATE(573), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(573), + [sym__inline_directive] = STATE(573), + [sym__nested_directive] = STATE(573), + [sym_fragment] = STATE(573), + [sym_section] = STATE(573), + [sym_inlineSection] = STATE(573), + [sym_once] = STATE(573), + [sym_verbatim] = STATE(573), + [sym_stack] = STATE(573), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(573), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(573), + [sym_loop] = STATE(573), + [sym_loop_operator] = STATE(573), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(573), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(573), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(573), + [aux_sym__directive_body] = STATE(573), + [sym_text] = STATE(573), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(7637), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(7639), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, - [572] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7660), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), - }, - [573] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(7662), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), - }, - [574] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(7664), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), - }, - [575] = { - [sym__definition] = STATE(573), - [sym_keyword] = STATE(573), - [sym_php_statement] = STATE(573), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(573), - [sym__inline_directive] = STATE(573), - [sym__nested_directive] = STATE(573), - [sym_fragment] = STATE(573), - [sym_section] = STATE(573), - [sym_inlineSection] = STATE(573), - [sym_once] = STATE(573), - [sym_verbatim] = STATE(573), - [sym_stack] = STATE(573), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(573), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(573), - [sym_loop] = STATE(573), - [sym_loop_operator] = STATE(573), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(573), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(573), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(573), - [sym_text] = STATE(573), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(7666), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(7668), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), - }, - [576] = { - [sym__definition] = STATE(574), - [sym_keyword] = STATE(574), - [sym_php_statement] = STATE(574), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(574), - [sym__inline_directive] = STATE(574), - [sym__nested_directive] = STATE(574), - [sym_fragment] = STATE(574), - [sym_section] = STATE(574), - [sym_inlineSection] = STATE(574), - [sym_once] = STATE(574), - [sym_verbatim] = STATE(574), - [sym_stack] = STATE(574), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(574), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(574), - [sym_loop] = STATE(574), - [sym_loop_operator] = STATE(574), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(574), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(574), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(574), - [sym_text] = STATE(574), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(7670), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(7672), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), - }, - [577] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7674), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [577] = { + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7641), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [578] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7676), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7643), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [579] = { [sym__definition] = STATE(577), [sym_keyword] = STATE(577), [sym_php_statement] = STATE(577), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(577), [sym__inline_directive] = STATE(577), [sym__nested_directive] = STATE(577), @@ -95647,237 +97277,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(577), [sym_verbatim] = STATE(577), [sym_stack] = STATE(577), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(577), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(577), [sym_loop] = STATE(577), [sym_loop_operator] = STATE(577), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(577), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(577), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(577), [sym_text] = STATE(577), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(577), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(7678), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7680), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(7645), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7647), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [580] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7680), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7647), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [581] = { [sym__definition] = STATE(578), [sym_keyword] = STATE(578), [sym_php_statement] = STATE(578), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(578), [sym__inline_directive] = STATE(578), [sym__nested_directive] = STATE(578), @@ -95887,237 +97521,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(578), [sym_verbatim] = STATE(578), [sym_stack] = STATE(578), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(578), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(578), [sym_loop] = STATE(578), [sym_loop_operator] = STATE(578), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(578), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(578), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(578), [aux_sym__directive_body] = STATE(578), [sym_text] = STATE(578), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(7682), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7684), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(7649), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7651), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [582] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7686), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7653), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [583] = { [sym__definition] = STATE(580), [sym_keyword] = STATE(580), [sym_php_statement] = STATE(580), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(580), [sym__inline_directive] = STATE(580), [sym__nested_directive] = STATE(580), @@ -96127,117 +97765,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(580), [sym_verbatim] = STATE(580), [sym_stack] = STATE(580), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(580), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(580), [sym_loop] = STATE(580), [sym_loop_operator] = STATE(580), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(580), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(580), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(580), [sym_text] = STATE(580), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(580), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(7688), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7690), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(7655), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7657), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [584] = { [sym__definition] = STATE(582), [sym_keyword] = STATE(582), [sym_php_statement] = STATE(582), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(582), [sym__inline_directive] = STATE(582), [sym__nested_directive] = STATE(582), @@ -96247,477 +97887,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(582), [sym_verbatim] = STATE(582), [sym_stack] = STATE(582), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(582), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(582), [sym_loop] = STATE(582), [sym_loop_operator] = STATE(582), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(582), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(582), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(582), [aux_sym__directive_body] = STATE(582), [sym_text] = STATE(582), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(7692), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7694), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(7659), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7661), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [585] = { - [sym__definition] = STATE(613), - [sym_keyword] = STATE(613), - [sym_php_statement] = STATE(613), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(613), - [sym__inline_directive] = STATE(613), - [sym__nested_directive] = STATE(613), - [sym_fragment] = STATE(613), - [sym_section] = STATE(613), - [sym_inlineSection] = STATE(613), - [sym_once] = STATE(613), - [sym_verbatim] = STATE(613), - [sym_stack] = STATE(613), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(613), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(613), - [sym_loop] = STATE(613), - [sym_loop_operator] = STATE(613), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(613), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(613), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(613), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(613), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(7696), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7660), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7663), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [586] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(7698), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(7665), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [587] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(7700), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(7667), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [588] = { [sym__definition] = STATE(586), [sym_keyword] = STATE(586), [sym_php_statement] = STATE(586), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), [sym_attribute] = STATE(586), [sym__inline_directive] = STATE(586), [sym__nested_directive] = STATE(586), @@ -96727,117 +98375,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(586), [sym_verbatim] = STATE(586), [sym_stack] = STATE(586), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), [sym_conditional] = STATE(586), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), [sym_switch] = STATE(586), [sym_loop] = STATE(586), [sym_loop_operator] = STATE(586), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), [sym_envoy] = STATE(586), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), [sym_livewire] = STATE(586), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(586), [aux_sym__directive_body] = STATE(586), [sym_text] = STATE(586), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(7702), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(7704), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(7669), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(7671), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [589] = { [sym__definition] = STATE(587), [sym_keyword] = STATE(587), [sym_php_statement] = STATE(587), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), [sym_attribute] = STATE(587), [sym__inline_directive] = STATE(587), [sym__nested_directive] = STATE(587), @@ -96847,357 +98497,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(587), [sym_verbatim] = STATE(587), [sym_stack] = STATE(587), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), [sym_conditional] = STATE(587), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), [sym_switch] = STATE(587), [sym_loop] = STATE(587), [sym_loop_operator] = STATE(587), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), [sym_envoy] = STATE(587), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), [sym_livewire] = STATE(587), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(587), [aux_sym__directive_body] = STATE(587), [sym_text] = STATE(587), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(7706), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(7708), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(7673), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(7675), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [590] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7710), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7677), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [591] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7712), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7679), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [592] = { [sym__definition] = STATE(590), [sym_keyword] = STATE(590), [sym_php_statement] = STATE(590), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(590), [sym__inline_directive] = STATE(590), [sym__nested_directive] = STATE(590), @@ -97207,237 +98863,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(590), [sym_verbatim] = STATE(590), [sym_stack] = STATE(590), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(590), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(590), [sym_loop] = STATE(590), [sym_loop_operator] = STATE(590), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(590), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(590), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(590), [sym_text] = STATE(590), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(590), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(7714), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7716), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(7681), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7683), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [593] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7716), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7683), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [594] = { [sym__definition] = STATE(591), [sym_keyword] = STATE(591), [sym_php_statement] = STATE(591), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(591), [sym__inline_directive] = STATE(591), [sym__nested_directive] = STATE(591), @@ -97447,237 +99107,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(591), [sym_verbatim] = STATE(591), [sym_stack] = STATE(591), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(591), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(591), [sym_loop] = STATE(591), [sym_loop_operator] = STATE(591), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(591), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(591), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(591), [aux_sym__directive_body] = STATE(591), [sym_text] = STATE(591), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(7718), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7720), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(7685), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7687), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [595] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7722), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7689), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [596] = { [sym__definition] = STATE(593), [sym_keyword] = STATE(593), [sym_php_statement] = STATE(593), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(593), [sym__inline_directive] = STATE(593), [sym__nested_directive] = STATE(593), @@ -97687,117 +99351,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(593), [sym_verbatim] = STATE(593), [sym_stack] = STATE(593), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(593), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(593), [sym_loop] = STATE(593), [sym_loop_operator] = STATE(593), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(593), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(593), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(593), [sym_text] = STATE(593), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(593), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(7724), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7726), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(7691), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7693), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [597] = { [sym__definition] = STATE(595), [sym_keyword] = STATE(595), [sym_php_statement] = STATE(595), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(595), [sym__inline_directive] = STATE(595), [sym__nested_directive] = STATE(595), @@ -97807,477 +99473,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(595), [sym_verbatim] = STATE(595), [sym_stack] = STATE(595), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(595), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(595), [sym_loop] = STATE(595), [sym_loop_operator] = STATE(595), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(595), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(595), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(595), [aux_sym__directive_body] = STATE(595), [sym_text] = STATE(595), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(7728), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7730), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(7695), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7697), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [598] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7732), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(571), + [sym_keyword] = STATE(571), + [sym_php_statement] = STATE(571), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(571), + [sym__inline_directive] = STATE(571), + [sym__nested_directive] = STATE(571), + [sym_fragment] = STATE(571), + [sym_section] = STATE(571), + [sym_inlineSection] = STATE(571), + [sym_once] = STATE(571), + [sym_verbatim] = STATE(571), + [sym_stack] = STATE(571), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(571), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(571), + [sym_loop] = STATE(571), + [sym_loop_operator] = STATE(571), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(571), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(571), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(571), + [sym_text] = STATE(571), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(571), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(7699), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7663), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [599] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(7734), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(7701), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [600] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(7736), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(7703), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [601] = { [sym__definition] = STATE(599), [sym_keyword] = STATE(599), [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), [sym_attribute] = STATE(599), [sym__inline_directive] = STATE(599), [sym__nested_directive] = STATE(599), @@ -98287,117 +99961,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(599), [sym_verbatim] = STATE(599), [sym_stack] = STATE(599), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), [sym_conditional] = STATE(599), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), [sym_switch] = STATE(599), [sym_loop] = STATE(599), [sym_loop_operator] = STATE(599), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), [sym_envoy] = STATE(599), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), [sym_livewire] = STATE(599), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(599), [aux_sym__directive_body] = STATE(599), [sym_text] = STATE(599), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(7738), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(7740), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(7705), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(7707), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [602] = { [sym__definition] = STATE(600), [sym_keyword] = STATE(600), [sym_php_statement] = STATE(600), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), [sym_attribute] = STATE(600), [sym__inline_directive] = STATE(600), [sym__nested_directive] = STATE(600), @@ -98407,357 +100083,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(600), [sym_verbatim] = STATE(600), [sym_stack] = STATE(600), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), [sym_conditional] = STATE(600), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), [sym_switch] = STATE(600), [sym_loop] = STATE(600), [sym_loop_operator] = STATE(600), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), [sym_envoy] = STATE(600), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), [sym_livewire] = STATE(600), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(600), [aux_sym__directive_body] = STATE(600), [sym_text] = STATE(600), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(7742), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(7744), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(7709), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(7711), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [603] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7746), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7713), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [604] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7748), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7715), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [605] = { [sym__definition] = STATE(603), [sym_keyword] = STATE(603), [sym_php_statement] = STATE(603), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(603), [sym__inline_directive] = STATE(603), [sym__nested_directive] = STATE(603), @@ -98767,237 +100449,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(603), [sym_verbatim] = STATE(603), [sym_stack] = STATE(603), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(603), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(603), [sym_loop] = STATE(603), [sym_loop_operator] = STATE(603), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(603), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(603), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(603), [sym_text] = STATE(603), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(603), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(7750), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7752), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(7717), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7719), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [606] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7752), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7719), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [607] = { [sym__definition] = STATE(604), [sym_keyword] = STATE(604), [sym_php_statement] = STATE(604), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(604), [sym__inline_directive] = STATE(604), [sym__nested_directive] = STATE(604), @@ -99007,237 +100693,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(604), [sym_verbatim] = STATE(604), [sym_stack] = STATE(604), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(604), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(604), [sym_loop] = STATE(604), [sym_loop_operator] = STATE(604), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(604), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(604), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(604), [aux_sym__directive_body] = STATE(604), [sym_text] = STATE(604), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(7754), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7756), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(7721), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7723), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [608] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7758), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7725), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [609] = { [sym__definition] = STATE(606), [sym_keyword] = STATE(606), [sym_php_statement] = STATE(606), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), [sym_attribute] = STATE(606), [sym__inline_directive] = STATE(606), [sym__nested_directive] = STATE(606), @@ -99247,357 +100937,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(606), [sym_verbatim] = STATE(606), [sym_stack] = STATE(606), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), [sym_conditional] = STATE(606), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), [sym_switch] = STATE(606), [sym_loop] = STATE(606), [sym_loop_operator] = STATE(606), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), [sym_envoy] = STATE(606), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), [sym_livewire] = STATE(606), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(606), [sym_text] = STATE(606), - [sym__text] = STATE(949), + [sym__text] = STATE(943), [aux_sym_blade_repeat1] = STATE(606), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(7760), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7762), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(7727), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7729), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [610] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(7764), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), - }, - [611] = { - [sym__definition] = STATE(620), - [sym_keyword] = STATE(620), - [sym_php_statement] = STATE(620), - [sym__escaped] = STATE(2421), - [sym__unescaped] = STATE(2421), - [sym__raw] = STATE(2421), - [sym__inline_raw] = STATE(2421), - [sym__multi_line_raw] = STATE(2421), - [sym_attribute] = STATE(620), - [sym__inline_directive] = STATE(620), - [sym__nested_directive] = STATE(620), - [sym_fragment] = STATE(620), - [sym_section] = STATE(620), - [sym_inlineSection] = STATE(620), - [sym_once] = STATE(620), - [sym_verbatim] = STATE(620), - [sym_stack] = STATE(620), - [sym__push] = STATE(2422), - [sym__pushOnce] = STATE(2422), - [sym__pushIf] = STATE(2422), - [sym__prepend] = STATE(2422), - [sym__prependOnce] = STATE(2422), - [sym_conditional] = STATE(620), - [sym__if] = STATE(2423), - [sym__unless] = STATE(2423), - [sym__isset] = STATE(2423), - [sym__empty] = STATE(2423), - [sym__auth] = STATE(2423), - [sym__guest] = STATE(2423), - [sym__production] = STATE(2423), - [sym__env] = STATE(2423), - [sym__hasSection] = STATE(2423), - [sym__sectionMissing] = STATE(2423), - [sym__error] = STATE(2423), - [sym_authorization] = STATE(2423), - [sym__can] = STATE(2424), - [sym__cannot] = STATE(2424), - [sym__canany] = STATE(2424), - [sym__feature] = STATE(2423), - [sym__custom] = STATE(2423), - [sym_switch] = STATE(620), - [sym_loop] = STATE(620), - [sym_loop_operator] = STATE(620), - [sym__for] = STATE(2425), - [sym__foreach] = STATE(2425), - [sym__forelse] = STATE(2425), - [sym__while] = STATE(2425), - [sym_envoy] = STATE(620), - [sym__setup] = STATE(2421), - [sym__task] = STATE(2426), - [sym__story] = STATE(2426), - [sym__hooks] = STATE(2421), - [sym__before] = STATE(2421), - [sym__after] = STATE(2421), - [sym__envoy_error] = STATE(2421), - [sym__success] = STATE(2421), - [sym__finished] = STATE(2421), - [sym_livewire] = STATE(620), - [sym__persist] = STATE(2427), - [sym__teleport] = STATE(2427), - [sym__volt] = STATE(2427), - [aux_sym__directive_body] = STATE(620), - [sym_text] = STATE(620), - [sym__text] = STATE(986), - [aux_sym_php_only_repeat1] = STATE(986), - [sym_comment] = ACTIONS(7766), - [aux_sym_keyword_token1] = ACTIONS(7768), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7770), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7772), - [anon_sym_ATphp] = ACTIONS(7774), - [aux_sym_attribute_token1] = ACTIONS(7776), - [aux_sym__inline_directive_token1] = ACTIONS(7778), - [anon_sym_ATfragment] = ACTIONS(7780), - [anon_sym_ATsection] = ACTIONS(7782), - [anon_sym_ATonce] = ACTIONS(7784), - [anon_sym_ATverbatim] = ACTIONS(7786), - [anon_sym_ATpush] = ACTIONS(7788), - [anon_sym_ATpushOnce] = ACTIONS(7790), - [anon_sym_ATpushIf] = ACTIONS(7792), - [anon_sym_ATprepend] = ACTIONS(7794), - [anon_sym_ATprependOnce] = ACTIONS(7796), - [anon_sym_ATif] = ACTIONS(7798), - [anon_sym_ATunless] = ACTIONS(7800), - [anon_sym_ATisset] = ACTIONS(7802), - [anon_sym_ATempty] = ACTIONS(7804), - [anon_sym_ATauth] = ACTIONS(7806), - [anon_sym_ATguest] = ACTIONS(7808), - [anon_sym_ATproduction] = ACTIONS(7810), - [anon_sym_ATenv] = ACTIONS(7812), - [anon_sym_AThasSection] = ACTIONS(7814), - [anon_sym_ATsectionMissing] = ACTIONS(7816), - [anon_sym_ATerror] = ACTIONS(7818), - [anon_sym_ATcan] = ACTIONS(7820), - [anon_sym_ATcannot] = ACTIONS(7822), - [anon_sym_ATcanany] = ACTIONS(7824), - [anon_sym_ATfeature] = ACTIONS(7826), - [aux_sym__custom_token1] = ACTIONS(7828), - [aux_sym__custom_token2] = ACTIONS(7830), - [anon_sym_ATswitch] = ACTIONS(7832), - [aux_sym_loop_operator_token1] = ACTIONS(7834), - [anon_sym_ATfor] = ACTIONS(7836), - [anon_sym_ATforeach] = ACTIONS(7838), - [anon_sym_ATforelse] = ACTIONS(7840), - [anon_sym_ATwhile] = ACTIONS(7842), - [anon_sym_ATendwhile] = ACTIONS(4609), - [anon_sym_ATsetup] = ACTIONS(7844), - [anon_sym_ATtask] = ACTIONS(7846), - [anon_sym_ATstory] = ACTIONS(7848), - [anon_sym_ATbefore] = ACTIONS(7850), - [anon_sym_ATafter] = ACTIONS(7852), - [anon_sym_ATsuccess] = ACTIONS(7854), - [anon_sym_ATfinished] = ACTIONS(7856), - [anon_sym_ATpersist] = ACTIONS(7858), - [anon_sym_ATteleport] = ACTIONS(7860), - [anon_sym_ATvolt] = ACTIONS(7862), - [aux_sym__text_token1] = ACTIONS(7864), - [aux_sym__text_token2] = ACTIONS(7864), - [aux_sym__text_token3] = ACTIONS(7866), - }, - [612] = { [sym__definition] = STATE(608), [sym_keyword] = STATE(608), [sym_php_statement] = STATE(608), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(608), [sym__inline_directive] = STATE(608), [sym__nested_directive] = STATE(608), @@ -99607,1197 +101059,1461 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(608), [sym_verbatim] = STATE(608), [sym_stack] = STATE(608), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(608), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(608), [sym_loop] = STATE(608), [sym_loop_operator] = STATE(608), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(608), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(608), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(608), [aux_sym__directive_body] = STATE(608), [sym_text] = STATE(608), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(7868), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7870), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(7731), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7733), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), + }, + [611] = { + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7735), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), + }, + [612] = { + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(7737), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [613] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7872), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(7739), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [614] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(7874), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(612), + [sym_keyword] = STATE(612), + [sym_php_statement] = STATE(612), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(612), + [sym__inline_directive] = STATE(612), + [sym__nested_directive] = STATE(612), + [sym_fragment] = STATE(612), + [sym_section] = STATE(612), + [sym_inlineSection] = STATE(612), + [sym_once] = STATE(612), + [sym_verbatim] = STATE(612), + [sym_stack] = STATE(612), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(612), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(612), + [sym_loop] = STATE(612), + [sym_loop_operator] = STATE(612), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(612), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(612), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(612), + [aux_sym__directive_body] = STATE(612), + [sym_text] = STATE(612), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(7741), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(7743), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [615] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(7876), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(613), + [sym_keyword] = STATE(613), + [sym_php_statement] = STATE(613), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(613), + [sym__inline_directive] = STATE(613), + [sym__nested_directive] = STATE(613), + [sym_fragment] = STATE(613), + [sym_section] = STATE(613), + [sym_inlineSection] = STATE(613), + [sym_once] = STATE(613), + [sym_verbatim] = STATE(613), + [sym_stack] = STATE(613), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(613), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(613), + [sym_loop] = STATE(613), + [sym_loop_operator] = STATE(613), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(613), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(613), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(613), + [aux_sym__directive_body] = STATE(613), + [sym_text] = STATE(613), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(7745), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(7747), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [616] = { - [sym__definition] = STATE(614), - [sym_keyword] = STATE(614), - [sym_php_statement] = STATE(614), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(614), - [sym__inline_directive] = STATE(614), - [sym__nested_directive] = STATE(614), - [sym_fragment] = STATE(614), - [sym_section] = STATE(614), - [sym_inlineSection] = STATE(614), - [sym_once] = STATE(614), - [sym_verbatim] = STATE(614), - [sym_stack] = STATE(614), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(614), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(614), - [sym_loop] = STATE(614), - [sym_loop_operator] = STATE(614), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(614), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(614), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(614), - [sym_text] = STATE(614), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(7878), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(7880), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__definition] = STATE(616), + [sym_keyword] = STATE(616), + [sym_php_statement] = STATE(616), + [sym__escaped] = STATE(2201), + [sym__unescaped] = STATE(2201), + [sym__raw] = STATE(2201), + [sym__inline_raw] = STATE(2201), + [sym__multi_line_raw] = STATE(2201), + [sym_attribute] = STATE(616), + [sym__inline_directive] = STATE(616), + [sym__nested_directive] = STATE(616), + [sym_fragment] = STATE(616), + [sym_section] = STATE(616), + [sym_inlineSection] = STATE(616), + [sym_once] = STATE(616), + [sym_verbatim] = STATE(616), + [sym_stack] = STATE(616), + [sym__push] = STATE(2202), + [sym__pushOnce] = STATE(2202), + [sym__pushIf] = STATE(2202), + [sym__prepend] = STATE(2202), + [sym__prependOnce] = STATE(2202), + [sym_conditional] = STATE(616), + [sym__if] = STATE(2203), + [sym__unless] = STATE(2203), + [sym__isset] = STATE(2203), + [sym__empty] = STATE(2203), + [sym__auth] = STATE(2203), + [sym__guest] = STATE(2203), + [sym__production] = STATE(2203), + [sym__env] = STATE(2203), + [sym__hasSection] = STATE(2203), + [sym__sectionMissing] = STATE(2203), + [sym__error] = STATE(2203), + [sym_authorization] = STATE(2203), + [sym__can] = STATE(2204), + [sym__cannot] = STATE(2204), + [sym__canany] = STATE(2204), + [sym__feature] = STATE(2203), + [sym__custom] = STATE(2203), + [sym_switch] = STATE(616), + [sym_loop] = STATE(616), + [sym_loop_operator] = STATE(616), + [sym__for] = STATE(2205), + [sym__foreach] = STATE(2205), + [sym__forelse] = STATE(2205), + [sym__while] = STATE(2205), + [sym_envoy] = STATE(616), + [sym__setup] = STATE(2201), + [sym__task] = STATE(2206), + [sym__story] = STATE(2206), + [sym__hooks] = STATE(2201), + [sym__before] = STATE(2201), + [sym__after] = STATE(2201), + [sym__envoy_error] = STATE(2201), + [sym__success] = STATE(2201), + [sym__finished] = STATE(2201), + [sym_livewire] = STATE(616), + [sym__persist] = STATE(2207), + [sym__teleport] = STATE(2207), + [sym__volt] = STATE(2207), + [sym_alpine_js] = STATE(616), + [aux_sym__directive_body] = STATE(616), + [sym_text] = STATE(616), + [sym__text] = STATE(993), + [aux_sym_php_only_repeat1] = STATE(993), + [sym_comment] = ACTIONS(7749), + [aux_sym_keyword_token1] = ACTIONS(7752), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7755), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7758), + [anon_sym_ATphp] = ACTIONS(7761), + [aux_sym_attribute_token1] = ACTIONS(7764), + [aux_sym__inline_directive_token1] = ACTIONS(7767), + [anon_sym_ATfragment] = ACTIONS(7770), + [anon_sym_ATsection] = ACTIONS(7773), + [anon_sym_ATonce] = ACTIONS(7776), + [anon_sym_ATverbatim] = ACTIONS(7779), + [anon_sym_ATpush] = ACTIONS(7782), + [anon_sym_ATpushOnce] = ACTIONS(7785), + [anon_sym_ATpushIf] = ACTIONS(7788), + [anon_sym_ATprepend] = ACTIONS(7791), + [anon_sym_ATprependOnce] = ACTIONS(7794), + [anon_sym_ATif] = ACTIONS(7797), + [anon_sym_ATunless] = ACTIONS(7800), + [anon_sym_ATisset] = ACTIONS(7803), + [anon_sym_ATempty] = ACTIONS(7806), + [anon_sym_ATauth] = ACTIONS(7809), + [anon_sym_ATguest] = ACTIONS(7812), + [anon_sym_ATproduction] = ACTIONS(7815), + [anon_sym_ATenv] = ACTIONS(7818), + [anon_sym_AThasSection] = ACTIONS(7821), + [anon_sym_ATsectionMissing] = ACTIONS(7824), + [anon_sym_ATerror] = ACTIONS(7827), + [anon_sym_ATcan] = ACTIONS(7830), + [anon_sym_ATcannot] = ACTIONS(7833), + [anon_sym_ATcanany] = ACTIONS(7836), + [anon_sym_ATfeature] = ACTIONS(7839), + [aux_sym__custom_token1] = ACTIONS(7842), + [aux_sym__custom_token2] = ACTIONS(7845), + [anon_sym_ATswitch] = ACTIONS(7848), + [aux_sym_loop_operator_token1] = ACTIONS(7851), + [anon_sym_ATfor] = ACTIONS(7854), + [anon_sym_ATendfor] = ACTIONS(5134), + [anon_sym_ATforeach] = ACTIONS(7857), + [anon_sym_ATforelse] = ACTIONS(7860), + [anon_sym_ATwhile] = ACTIONS(7863), + [anon_sym_ATsetup] = ACTIONS(7866), + [anon_sym_ATtask] = ACTIONS(7869), + [anon_sym_ATstory] = ACTIONS(7872), + [anon_sym_ATbefore] = ACTIONS(7875), + [anon_sym_ATafter] = ACTIONS(7878), + [anon_sym_ATsuccess] = ACTIONS(7881), + [anon_sym_ATfinished] = ACTIONS(7884), + [anon_sym_ATpersist] = ACTIONS(7887), + [anon_sym_ATteleport] = ACTIONS(7890), + [anon_sym_ATvolt] = ACTIONS(7893), + [aux_sym_alpine_js_token1] = ACTIONS(7896), + [aux_sym__text_token1] = ACTIONS(7899), + [aux_sym__text_token2] = ACTIONS(7899), + [aux_sym__text_token3] = ACTIONS(7902), }, [617] = { - [sym__definition] = STATE(615), - [sym_keyword] = STATE(615), - [sym_php_statement] = STATE(615), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(615), - [sym__inline_directive] = STATE(615), - [sym__nested_directive] = STATE(615), - [sym_fragment] = STATE(615), - [sym_section] = STATE(615), - [sym_inlineSection] = STATE(615), - [sym_once] = STATE(615), - [sym_verbatim] = STATE(615), - [sym_stack] = STATE(615), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(615), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(615), - [sym_loop] = STATE(615), - [sym_loop_operator] = STATE(615), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(615), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(615), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(615), - [sym_text] = STATE(615), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(7882), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(7884), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(7905), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [618] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(7886), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(7907), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [619] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(7888), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(621), + [sym_keyword] = STATE(621), + [sym_php_statement] = STATE(621), + [sym__escaped] = STATE(2450), + [sym__unescaped] = STATE(2450), + [sym__raw] = STATE(2450), + [sym__inline_raw] = STATE(2450), + [sym__multi_line_raw] = STATE(2450), + [sym_attribute] = STATE(621), + [sym__inline_directive] = STATE(621), + [sym__nested_directive] = STATE(621), + [sym_fragment] = STATE(621), + [sym_section] = STATE(621), + [sym_inlineSection] = STATE(621), + [sym_once] = STATE(621), + [sym_verbatim] = STATE(621), + [sym_stack] = STATE(621), + [sym__push] = STATE(2451), + [sym__pushOnce] = STATE(2451), + [sym__pushIf] = STATE(2451), + [sym__prepend] = STATE(2451), + [sym__prependOnce] = STATE(2451), + [sym_conditional] = STATE(621), + [sym__if] = STATE(2452), + [sym__unless] = STATE(2452), + [sym__isset] = STATE(2452), + [sym__empty] = STATE(2452), + [sym__auth] = STATE(2452), + [sym__guest] = STATE(2452), + [sym__production] = STATE(2452), + [sym__env] = STATE(2452), + [sym__hasSection] = STATE(2452), + [sym__sectionMissing] = STATE(2452), + [sym__error] = STATE(2452), + [sym_authorization] = STATE(2452), + [sym__can] = STATE(2453), + [sym__cannot] = STATE(2453), + [sym__canany] = STATE(2453), + [sym__feature] = STATE(2452), + [sym__custom] = STATE(2452), + [sym_switch] = STATE(621), + [sym_loop] = STATE(621), + [sym_loop_operator] = STATE(621), + [sym__for] = STATE(2454), + [sym__foreach] = STATE(2454), + [sym__forelse] = STATE(2454), + [sym__while] = STATE(2454), + [sym_envoy] = STATE(621), + [sym__setup] = STATE(2450), + [sym__task] = STATE(2455), + [sym__story] = STATE(2455), + [sym__hooks] = STATE(2450), + [sym__before] = STATE(2450), + [sym__after] = STATE(2450), + [sym__envoy_error] = STATE(2450), + [sym__success] = STATE(2450), + [sym__finished] = STATE(2450), + [sym_livewire] = STATE(621), + [sym__persist] = STATE(2456), + [sym__teleport] = STATE(2456), + [sym__volt] = STATE(2456), + [sym_alpine_js] = STATE(621), + [aux_sym__directive_body] = STATE(621), + [sym_text] = STATE(621), + [sym__text] = STATE(980), + [aux_sym_php_only_repeat1] = STATE(980), + [sym_comment] = ACTIONS(7909), + [aux_sym_keyword_token1] = ACTIONS(7911), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7913), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7915), + [anon_sym_ATphp] = ACTIONS(7917), + [aux_sym_attribute_token1] = ACTIONS(7919), + [aux_sym__inline_directive_token1] = ACTIONS(7921), + [anon_sym_ATfragment] = ACTIONS(7923), + [anon_sym_ATsection] = ACTIONS(7925), + [anon_sym_ATonce] = ACTIONS(7927), + [anon_sym_ATverbatim] = ACTIONS(7929), + [anon_sym_ATpush] = ACTIONS(7931), + [anon_sym_ATpushOnce] = ACTIONS(7933), + [anon_sym_ATpushIf] = ACTIONS(7935), + [anon_sym_ATprepend] = ACTIONS(7937), + [anon_sym_ATprependOnce] = ACTIONS(7939), + [anon_sym_ATif] = ACTIONS(7941), + [anon_sym_ATunless] = ACTIONS(7943), + [anon_sym_ATisset] = ACTIONS(7945), + [anon_sym_ATempty] = ACTIONS(7947), + [anon_sym_ATauth] = ACTIONS(7949), + [anon_sym_ATguest] = ACTIONS(7951), + [anon_sym_ATproduction] = ACTIONS(7953), + [anon_sym_ATenv] = ACTIONS(7955), + [anon_sym_AThasSection] = ACTIONS(7957), + [anon_sym_ATsectionMissing] = ACTIONS(7959), + [anon_sym_ATerror] = ACTIONS(7961), + [anon_sym_ATcan] = ACTIONS(7963), + [anon_sym_ATcannot] = ACTIONS(7965), + [anon_sym_ATcanany] = ACTIONS(7967), + [anon_sym_ATfeature] = ACTIONS(7969), + [aux_sym__custom_token1] = ACTIONS(7971), + [aux_sym__custom_token2] = ACTIONS(7973), + [anon_sym_ATswitch] = ACTIONS(7975), + [aux_sym_loop_operator_token1] = ACTIONS(7977), + [anon_sym_ATfor] = ACTIONS(7979), + [anon_sym_ATforeach] = ACTIONS(7981), + [anon_sym_ATforelse] = ACTIONS(7983), + [anon_sym_ATwhile] = ACTIONS(7985), + [anon_sym_ATendwhile] = ACTIONS(4699), + [anon_sym_ATsetup] = ACTIONS(7987), + [anon_sym_ATtask] = ACTIONS(7989), + [anon_sym_ATstory] = ACTIONS(7991), + [anon_sym_ATbefore] = ACTIONS(7993), + [anon_sym_ATafter] = ACTIONS(7995), + [anon_sym_ATsuccess] = ACTIONS(7997), + [anon_sym_ATfinished] = ACTIONS(7999), + [anon_sym_ATpersist] = ACTIONS(8001), + [anon_sym_ATteleport] = ACTIONS(8003), + [anon_sym_ATvolt] = ACTIONS(8005), + [aux_sym_alpine_js_token1] = ACTIONS(8007), + [aux_sym__text_token1] = ACTIONS(8009), + [aux_sym__text_token2] = ACTIONS(8009), + [aux_sym__text_token3] = ACTIONS(8011), }, [620] = { - [sym__definition] = STATE(635), - [sym_keyword] = STATE(635), - [sym_php_statement] = STATE(635), - [sym__escaped] = STATE(2421), - [sym__unescaped] = STATE(2421), - [sym__raw] = STATE(2421), - [sym__inline_raw] = STATE(2421), - [sym__multi_line_raw] = STATE(2421), - [sym_attribute] = STATE(635), - [sym__inline_directive] = STATE(635), - [sym__nested_directive] = STATE(635), - [sym_fragment] = STATE(635), - [sym_section] = STATE(635), - [sym_inlineSection] = STATE(635), - [sym_once] = STATE(635), - [sym_verbatim] = STATE(635), - [sym_stack] = STATE(635), - [sym__push] = STATE(2422), - [sym__pushOnce] = STATE(2422), - [sym__pushIf] = STATE(2422), - [sym__prepend] = STATE(2422), - [sym__prependOnce] = STATE(2422), - [sym_conditional] = STATE(635), - [sym__if] = STATE(2423), - [sym__unless] = STATE(2423), - [sym__isset] = STATE(2423), - [sym__empty] = STATE(2423), - [sym__auth] = STATE(2423), - [sym__guest] = STATE(2423), - [sym__production] = STATE(2423), - [sym__env] = STATE(2423), - [sym__hasSection] = STATE(2423), - [sym__sectionMissing] = STATE(2423), - [sym__error] = STATE(2423), - [sym_authorization] = STATE(2423), - [sym__can] = STATE(2424), - [sym__cannot] = STATE(2424), - [sym__canany] = STATE(2424), - [sym__feature] = STATE(2423), - [sym__custom] = STATE(2423), - [sym_switch] = STATE(635), - [sym_loop] = STATE(635), - [sym_loop_operator] = STATE(635), - [sym__for] = STATE(2425), - [sym__foreach] = STATE(2425), - [sym__forelse] = STATE(2425), - [sym__while] = STATE(2425), - [sym_envoy] = STATE(635), - [sym__setup] = STATE(2421), - [sym__task] = STATE(2426), - [sym__story] = STATE(2426), - [sym__hooks] = STATE(2421), - [sym__before] = STATE(2421), - [sym__after] = STATE(2421), - [sym__envoy_error] = STATE(2421), - [sym__success] = STATE(2421), - [sym__finished] = STATE(2421), - [sym_livewire] = STATE(635), - [sym__persist] = STATE(2427), - [sym__teleport] = STATE(2427), - [sym__volt] = STATE(2427), - [aux_sym__directive_body] = STATE(635), - [sym_text] = STATE(635), - [sym__text] = STATE(986), - [aux_sym_php_only_repeat1] = STATE(986), - [sym_comment] = ACTIONS(7890), - [aux_sym_keyword_token1] = ACTIONS(7768), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7770), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7772), - [anon_sym_ATphp] = ACTIONS(7774), - [aux_sym_attribute_token1] = ACTIONS(7776), - [aux_sym__inline_directive_token1] = ACTIONS(7778), - [anon_sym_ATfragment] = ACTIONS(7780), - [anon_sym_ATsection] = ACTIONS(7782), - [anon_sym_ATonce] = ACTIONS(7784), - [anon_sym_ATverbatim] = ACTIONS(7786), - [anon_sym_ATpush] = ACTIONS(7788), - [anon_sym_ATpushOnce] = ACTIONS(7790), - [anon_sym_ATpushIf] = ACTIONS(7792), - [anon_sym_ATprepend] = ACTIONS(7794), - [anon_sym_ATprependOnce] = ACTIONS(7796), - [anon_sym_ATif] = ACTIONS(7798), - [anon_sym_ATunless] = ACTIONS(7800), - [anon_sym_ATisset] = ACTIONS(7802), - [anon_sym_ATempty] = ACTIONS(7804), - [anon_sym_ATauth] = ACTIONS(7806), - [anon_sym_ATguest] = ACTIONS(7808), - [anon_sym_ATproduction] = ACTIONS(7810), - [anon_sym_ATenv] = ACTIONS(7812), - [anon_sym_AThasSection] = ACTIONS(7814), - [anon_sym_ATsectionMissing] = ACTIONS(7816), - [anon_sym_ATerror] = ACTIONS(7818), - [anon_sym_ATcan] = ACTIONS(7820), - [anon_sym_ATcannot] = ACTIONS(7822), - [anon_sym_ATcanany] = ACTIONS(7824), - [anon_sym_ATfeature] = ACTIONS(7826), - [aux_sym__custom_token1] = ACTIONS(7828), - [aux_sym__custom_token2] = ACTIONS(7830), - [anon_sym_ATswitch] = ACTIONS(7832), - [aux_sym_loop_operator_token1] = ACTIONS(7834), - [anon_sym_ATfor] = ACTIONS(7836), - [anon_sym_ATforeach] = ACTIONS(7838), - [anon_sym_ATforelse] = ACTIONS(7840), - [anon_sym_ATwhile] = ACTIONS(7842), - [anon_sym_ATendwhile] = ACTIONS(4996), - [anon_sym_ATsetup] = ACTIONS(7844), - [anon_sym_ATtask] = ACTIONS(7846), - [anon_sym_ATstory] = ACTIONS(7848), - [anon_sym_ATbefore] = ACTIONS(7850), - [anon_sym_ATafter] = ACTIONS(7852), - [anon_sym_ATsuccess] = ACTIONS(7854), - [anon_sym_ATfinished] = ACTIONS(7856), - [anon_sym_ATpersist] = ACTIONS(7858), - [anon_sym_ATteleport] = ACTIONS(7860), - [anon_sym_ATvolt] = ACTIONS(7862), - [aux_sym__text_token1] = ACTIONS(7864), - [aux_sym__text_token2] = ACTIONS(7864), - [aux_sym__text_token3] = ACTIONS(7866), + [sym__definition] = STATE(617), + [sym_keyword] = STATE(617), + [sym_php_statement] = STATE(617), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(617), + [sym__inline_directive] = STATE(617), + [sym__nested_directive] = STATE(617), + [sym_fragment] = STATE(617), + [sym_section] = STATE(617), + [sym_inlineSection] = STATE(617), + [sym_once] = STATE(617), + [sym_verbatim] = STATE(617), + [sym_stack] = STATE(617), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(617), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(617), + [sym_loop] = STATE(617), + [sym_loop_operator] = STATE(617), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(617), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(617), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(617), + [sym_text] = STATE(617), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(617), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(8013), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(8015), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [621] = { - [sym__definition] = STATE(431), - [sym_keyword] = STATE(431), - [sym_php_statement] = STATE(431), - [sym__escaped] = STATE(2175), - [sym__unescaped] = STATE(2175), - [sym__raw] = STATE(2175), - [sym__inline_raw] = STATE(2175), - [sym__multi_line_raw] = STATE(2175), - [sym_attribute] = STATE(431), - [sym__inline_directive] = STATE(431), - [sym__nested_directive] = STATE(431), - [sym_fragment] = STATE(431), - [sym_section] = STATE(431), - [sym_inlineSection] = STATE(431), - [sym_once] = STATE(431), - [sym_verbatim] = STATE(431), - [sym_stack] = STATE(431), - [sym__push] = STATE(2176), - [sym__pushOnce] = STATE(2176), - [sym__pushIf] = STATE(2176), - [sym__prepend] = STATE(2176), - [sym__prependOnce] = STATE(2176), - [sym_conditional] = STATE(431), - [sym__if] = STATE(2177), - [sym__unless] = STATE(2177), - [sym__isset] = STATE(2177), - [sym__empty] = STATE(2177), - [sym__auth] = STATE(2177), - [sym__guest] = STATE(2177), - [sym__production] = STATE(2177), - [sym__env] = STATE(2177), - [sym__hasSection] = STATE(2177), - [sym__sectionMissing] = STATE(2177), - [sym__error] = STATE(2177), - [sym_authorization] = STATE(2177), - [sym__can] = STATE(2178), - [sym__cannot] = STATE(2178), - [sym__canany] = STATE(2178), - [sym__feature] = STATE(2177), - [sym__custom] = STATE(2177), - [sym_switch] = STATE(431), - [sym_loop] = STATE(431), - [sym_loop_operator] = STATE(431), - [sym__for] = STATE(2179), - [sym__foreach] = STATE(2179), - [sym__forelse] = STATE(2179), - [sym__while] = STATE(2179), - [sym_envoy] = STATE(431), - [sym__setup] = STATE(2175), - [sym__task] = STATE(2180), - [sym__story] = STATE(2180), - [sym__hooks] = STATE(2175), - [sym__before] = STATE(2175), - [sym__after] = STATE(2175), - [sym__envoy_error] = STATE(2175), - [sym__success] = STATE(2175), - [sym__finished] = STATE(2175), - [sym_livewire] = STATE(431), - [sym__persist] = STATE(2181), - [sym__teleport] = STATE(2181), - [sym__volt] = STATE(2181), - [aux_sym__directive_body] = STATE(431), - [sym_text] = STATE(431), - [sym__text] = STATE(1001), - [aux_sym_php_only_repeat1] = STATE(1001), - [sym_comment] = ACTIONS(7892), - [aux_sym_keyword_token1] = ACTIONS(6168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6170), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6172), - [anon_sym_ATphp] = ACTIONS(6174), - [aux_sym_attribute_token1] = ACTIONS(6176), - [aux_sym__inline_directive_token1] = ACTIONS(6178), - [anon_sym_ATfragment] = ACTIONS(6180), - [anon_sym_ATsection] = ACTIONS(6182), - [anon_sym_ATonce] = ACTIONS(6184), - [anon_sym_ATverbatim] = ACTIONS(6186), - [anon_sym_ATpush] = ACTIONS(6188), - [anon_sym_ATpushOnce] = ACTIONS(6190), - [anon_sym_ATpushIf] = ACTIONS(6192), - [anon_sym_ATprepend] = ACTIONS(6194), - [anon_sym_ATprependOnce] = ACTIONS(6196), - [anon_sym_ATif] = ACTIONS(6198), - [anon_sym_ATunless] = ACTIONS(6200), - [anon_sym_ATisset] = ACTIONS(6202), - [anon_sym_ATempty] = ACTIONS(6204), - [anon_sym_ATauth] = ACTIONS(6206), - [anon_sym_ATguest] = ACTIONS(6208), - [anon_sym_ATproduction] = ACTIONS(6210), - [anon_sym_ATenv] = ACTIONS(6212), - [anon_sym_AThasSection] = ACTIONS(6214), - [anon_sym_ATsectionMissing] = ACTIONS(6216), - [anon_sym_ATerror] = ACTIONS(6218), - [anon_sym_ATcan] = ACTIONS(6220), - [anon_sym_ATcannot] = ACTIONS(6222), - [anon_sym_ATcanany] = ACTIONS(6224), - [anon_sym_ATfeature] = ACTIONS(6226), - [aux_sym__custom_token1] = ACTIONS(6228), - [aux_sym__custom_token2] = ACTIONS(6230), - [anon_sym_ATswitch] = ACTIONS(6232), - [aux_sym_loop_operator_token1] = ACTIONS(6234), - [anon_sym_ATfor] = ACTIONS(6236), - [anon_sym_ATendfor] = ACTIONS(4609), - [anon_sym_ATforeach] = ACTIONS(6238), - [anon_sym_ATforelse] = ACTIONS(6240), - [anon_sym_ATwhile] = ACTIONS(6242), - [anon_sym_ATsetup] = ACTIONS(6244), - [anon_sym_ATtask] = ACTIONS(6246), - [anon_sym_ATstory] = ACTIONS(6248), - [anon_sym_ATbefore] = ACTIONS(6250), - [anon_sym_ATafter] = ACTIONS(6252), - [anon_sym_ATsuccess] = ACTIONS(6254), - [anon_sym_ATfinished] = ACTIONS(6256), - [anon_sym_ATpersist] = ACTIONS(6258), - [anon_sym_ATteleport] = ACTIONS(6260), - [anon_sym_ATvolt] = ACTIONS(6262), - [aux_sym__text_token1] = ACTIONS(6264), - [aux_sym__text_token2] = ACTIONS(6264), - [aux_sym__text_token3] = ACTIONS(6266), + [sym__definition] = STATE(633), + [sym_keyword] = STATE(633), + [sym_php_statement] = STATE(633), + [sym__escaped] = STATE(2450), + [sym__unescaped] = STATE(2450), + [sym__raw] = STATE(2450), + [sym__inline_raw] = STATE(2450), + [sym__multi_line_raw] = STATE(2450), + [sym_attribute] = STATE(633), + [sym__inline_directive] = STATE(633), + [sym__nested_directive] = STATE(633), + [sym_fragment] = STATE(633), + [sym_section] = STATE(633), + [sym_inlineSection] = STATE(633), + [sym_once] = STATE(633), + [sym_verbatim] = STATE(633), + [sym_stack] = STATE(633), + [sym__push] = STATE(2451), + [sym__pushOnce] = STATE(2451), + [sym__pushIf] = STATE(2451), + [sym__prepend] = STATE(2451), + [sym__prependOnce] = STATE(2451), + [sym_conditional] = STATE(633), + [sym__if] = STATE(2452), + [sym__unless] = STATE(2452), + [sym__isset] = STATE(2452), + [sym__empty] = STATE(2452), + [sym__auth] = STATE(2452), + [sym__guest] = STATE(2452), + [sym__production] = STATE(2452), + [sym__env] = STATE(2452), + [sym__hasSection] = STATE(2452), + [sym__sectionMissing] = STATE(2452), + [sym__error] = STATE(2452), + [sym_authorization] = STATE(2452), + [sym__can] = STATE(2453), + [sym__cannot] = STATE(2453), + [sym__canany] = STATE(2453), + [sym__feature] = STATE(2452), + [sym__custom] = STATE(2452), + [sym_switch] = STATE(633), + [sym_loop] = STATE(633), + [sym_loop_operator] = STATE(633), + [sym__for] = STATE(2454), + [sym__foreach] = STATE(2454), + [sym__forelse] = STATE(2454), + [sym__while] = STATE(2454), + [sym_envoy] = STATE(633), + [sym__setup] = STATE(2450), + [sym__task] = STATE(2455), + [sym__story] = STATE(2455), + [sym__hooks] = STATE(2450), + [sym__before] = STATE(2450), + [sym__after] = STATE(2450), + [sym__envoy_error] = STATE(2450), + [sym__success] = STATE(2450), + [sym__finished] = STATE(2450), + [sym_livewire] = STATE(633), + [sym__persist] = STATE(2456), + [sym__teleport] = STATE(2456), + [sym__volt] = STATE(2456), + [sym_alpine_js] = STATE(633), + [aux_sym__directive_body] = STATE(633), + [sym_text] = STATE(633), + [sym__text] = STATE(980), + [aux_sym_php_only_repeat1] = STATE(980), + [sym_comment] = ACTIONS(8017), + [aux_sym_keyword_token1] = ACTIONS(7911), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7913), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7915), + [anon_sym_ATphp] = ACTIONS(7917), + [aux_sym_attribute_token1] = ACTIONS(7919), + [aux_sym__inline_directive_token1] = ACTIONS(7921), + [anon_sym_ATfragment] = ACTIONS(7923), + [anon_sym_ATsection] = ACTIONS(7925), + [anon_sym_ATonce] = ACTIONS(7927), + [anon_sym_ATverbatim] = ACTIONS(7929), + [anon_sym_ATpush] = ACTIONS(7931), + [anon_sym_ATpushOnce] = ACTIONS(7933), + [anon_sym_ATpushIf] = ACTIONS(7935), + [anon_sym_ATprepend] = ACTIONS(7937), + [anon_sym_ATprependOnce] = ACTIONS(7939), + [anon_sym_ATif] = ACTIONS(7941), + [anon_sym_ATunless] = ACTIONS(7943), + [anon_sym_ATisset] = ACTIONS(7945), + [anon_sym_ATempty] = ACTIONS(7947), + [anon_sym_ATauth] = ACTIONS(7949), + [anon_sym_ATguest] = ACTIONS(7951), + [anon_sym_ATproduction] = ACTIONS(7953), + [anon_sym_ATenv] = ACTIONS(7955), + [anon_sym_AThasSection] = ACTIONS(7957), + [anon_sym_ATsectionMissing] = ACTIONS(7959), + [anon_sym_ATerror] = ACTIONS(7961), + [anon_sym_ATcan] = ACTIONS(7963), + [anon_sym_ATcannot] = ACTIONS(7965), + [anon_sym_ATcanany] = ACTIONS(7967), + [anon_sym_ATfeature] = ACTIONS(7969), + [aux_sym__custom_token1] = ACTIONS(7971), + [aux_sym__custom_token2] = ACTIONS(7973), + [anon_sym_ATswitch] = ACTIONS(7975), + [aux_sym_loop_operator_token1] = ACTIONS(7977), + [anon_sym_ATfor] = ACTIONS(7979), + [anon_sym_ATforeach] = ACTIONS(7981), + [anon_sym_ATforelse] = ACTIONS(7983), + [anon_sym_ATwhile] = ACTIONS(7985), + [anon_sym_ATendwhile] = ACTIONS(4859), + [anon_sym_ATsetup] = ACTIONS(7987), + [anon_sym_ATtask] = ACTIONS(7989), + [anon_sym_ATstory] = ACTIONS(7991), + [anon_sym_ATbefore] = ACTIONS(7993), + [anon_sym_ATafter] = ACTIONS(7995), + [anon_sym_ATsuccess] = ACTIONS(7997), + [anon_sym_ATfinished] = ACTIONS(7999), + [anon_sym_ATpersist] = ACTIONS(8001), + [anon_sym_ATteleport] = ACTIONS(8003), + [anon_sym_ATvolt] = ACTIONS(8005), + [aux_sym_alpine_js_token1] = ACTIONS(8007), + [aux_sym__text_token1] = ACTIONS(8009), + [aux_sym__text_token2] = ACTIONS(8009), + [aux_sym__text_token3] = ACTIONS(8011), }, [622] = { [sym__definition] = STATE(622), [sym_keyword] = STATE(622), [sym_php_statement] = STATE(622), - [sym__escaped] = STATE(2257), - [sym__unescaped] = STATE(2257), - [sym__raw] = STATE(2257), - [sym__inline_raw] = STATE(2257), - [sym__multi_line_raw] = STATE(2257), + [sym__escaped] = STATE(2284), + [sym__unescaped] = STATE(2284), + [sym__raw] = STATE(2284), + [sym__inline_raw] = STATE(2284), + [sym__multi_line_raw] = STATE(2284), [sym_attribute] = STATE(622), [sym__inline_directive] = STATE(622), [sym__nested_directive] = STATE(622), @@ -100807,117 +102523,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(622), [sym_verbatim] = STATE(622), [sym_stack] = STATE(622), - [sym__push] = STATE(2258), - [sym__pushOnce] = STATE(2258), - [sym__pushIf] = STATE(2258), - [sym__prepend] = STATE(2258), - [sym__prependOnce] = STATE(2258), + [sym__push] = STATE(2285), + [sym__pushOnce] = STATE(2285), + [sym__pushIf] = STATE(2285), + [sym__prepend] = STATE(2285), + [sym__prependOnce] = STATE(2285), [sym_conditional] = STATE(622), - [sym__if] = STATE(2259), - [sym__unless] = STATE(2259), - [sym__isset] = STATE(2259), - [sym__empty] = STATE(2259), - [sym__auth] = STATE(2259), - [sym__guest] = STATE(2259), - [sym__production] = STATE(2259), - [sym__env] = STATE(2259), - [sym__hasSection] = STATE(2259), - [sym__sectionMissing] = STATE(2259), - [sym__error] = STATE(2259), - [sym_authorization] = STATE(2259), - [sym__can] = STATE(2260), - [sym__cannot] = STATE(2260), - [sym__canany] = STATE(2260), - [sym__feature] = STATE(2259), - [sym__custom] = STATE(2259), + [sym__if] = STATE(2286), + [sym__unless] = STATE(2286), + [sym__isset] = STATE(2286), + [sym__empty] = STATE(2286), + [sym__auth] = STATE(2286), + [sym__guest] = STATE(2286), + [sym__production] = STATE(2286), + [sym__env] = STATE(2286), + [sym__hasSection] = STATE(2286), + [sym__sectionMissing] = STATE(2286), + [sym__error] = STATE(2286), + [sym_authorization] = STATE(2286), + [sym__can] = STATE(2287), + [sym__cannot] = STATE(2287), + [sym__canany] = STATE(2287), + [sym__feature] = STATE(2286), + [sym__custom] = STATE(2286), [sym_switch] = STATE(622), [sym_loop] = STATE(622), [sym_loop_operator] = STATE(622), - [sym__for] = STATE(2261), - [sym__foreach] = STATE(2261), - [sym__forelse] = STATE(2261), - [sym__while] = STATE(2261), + [sym__for] = STATE(2288), + [sym__foreach] = STATE(2288), + [sym__forelse] = STATE(2288), + [sym__while] = STATE(2288), [sym_envoy] = STATE(622), - [sym__setup] = STATE(2257), - [sym__task] = STATE(2262), - [sym__story] = STATE(2262), - [sym__hooks] = STATE(2257), - [sym__before] = STATE(2257), - [sym__after] = STATE(2257), - [sym__envoy_error] = STATE(2257), - [sym__success] = STATE(2257), - [sym__finished] = STATE(2257), + [sym__setup] = STATE(2284), + [sym__task] = STATE(2289), + [sym__story] = STATE(2289), + [sym__hooks] = STATE(2284), + [sym__before] = STATE(2284), + [sym__after] = STATE(2284), + [sym__envoy_error] = STATE(2284), + [sym__success] = STATE(2284), + [sym__finished] = STATE(2284), [sym_livewire] = STATE(622), - [sym__persist] = STATE(2263), - [sym__teleport] = STATE(2263), - [sym__volt] = STATE(2263), + [sym__persist] = STATE(2290), + [sym__teleport] = STATE(2290), + [sym__volt] = STATE(2290), + [sym_alpine_js] = STATE(622), [aux_sym__directive_body] = STATE(622), [sym_text] = STATE(622), - [sym__text] = STATE(995), - [aux_sym_php_only_repeat1] = STATE(995), - [sym_comment] = ACTIONS(7894), - [aux_sym_keyword_token1] = ACTIONS(7897), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7900), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7903), - [anon_sym_ATphp] = ACTIONS(7906), - [aux_sym_attribute_token1] = ACTIONS(7909), - [aux_sym__inline_directive_token1] = ACTIONS(7912), - [anon_sym_ATfragment] = ACTIONS(7915), - [anon_sym_ATsection] = ACTIONS(7918), - [anon_sym_ATonce] = ACTIONS(7921), - [anon_sym_ATverbatim] = ACTIONS(7924), - [anon_sym_ATpush] = ACTIONS(7927), - [anon_sym_ATpushOnce] = ACTIONS(7930), - [anon_sym_ATpushIf] = ACTIONS(7933), - [anon_sym_ATprepend] = ACTIONS(7936), - [anon_sym_ATprependOnce] = ACTIONS(7939), - [anon_sym_ATif] = ACTIONS(7942), - [anon_sym_ATunless] = ACTIONS(7945), - [anon_sym_ATisset] = ACTIONS(7948), - [anon_sym_ATempty] = ACTIONS(7951), - [anon_sym_ATauth] = ACTIONS(7954), - [anon_sym_ATguest] = ACTIONS(7957), - [anon_sym_ATproduction] = ACTIONS(7960), - [anon_sym_ATenv] = ACTIONS(7963), - [anon_sym_AThasSection] = ACTIONS(7966), - [anon_sym_ATsectionMissing] = ACTIONS(7969), - [anon_sym_ATerror] = ACTIONS(7972), - [anon_sym_ATcan] = ACTIONS(7975), - [anon_sym_ATcannot] = ACTIONS(7978), - [anon_sym_ATcanany] = ACTIONS(7981), - [anon_sym_ATfeature] = ACTIONS(7984), - [aux_sym__custom_token1] = ACTIONS(7987), - [aux_sym__custom_token2] = ACTIONS(7990), - [anon_sym_ATswitch] = ACTIONS(7993), - [aux_sym_loop_operator_token1] = ACTIONS(7996), - [anon_sym_ATfor] = ACTIONS(7999), - [anon_sym_ATforeach] = ACTIONS(8002), - [anon_sym_ATendforeach] = ACTIONS(5035), - [anon_sym_ATforelse] = ACTIONS(8005), - [anon_sym_ATwhile] = ACTIONS(8008), - [anon_sym_ATsetup] = ACTIONS(8011), - [anon_sym_ATtask] = ACTIONS(8014), - [anon_sym_ATstory] = ACTIONS(8017), - [anon_sym_ATbefore] = ACTIONS(8020), - [anon_sym_ATafter] = ACTIONS(8023), - [anon_sym_ATsuccess] = ACTIONS(8026), - [anon_sym_ATfinished] = ACTIONS(8029), - [anon_sym_ATpersist] = ACTIONS(8032), - [anon_sym_ATteleport] = ACTIONS(8035), - [anon_sym_ATvolt] = ACTIONS(8038), - [aux_sym__text_token1] = ACTIONS(8041), - [aux_sym__text_token2] = ACTIONS(8041), - [aux_sym__text_token3] = ACTIONS(8044), + [sym__text] = STATE(988), + [aux_sym_php_only_repeat1] = STATE(988), + [sym_comment] = ACTIONS(8019), + [aux_sym_keyword_token1] = ACTIONS(8022), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8025), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8028), + [anon_sym_ATphp] = ACTIONS(8031), + [aux_sym_attribute_token1] = ACTIONS(8034), + [aux_sym__inline_directive_token1] = ACTIONS(8037), + [anon_sym_ATfragment] = ACTIONS(8040), + [anon_sym_ATsection] = ACTIONS(8043), + [anon_sym_ATonce] = ACTIONS(8046), + [anon_sym_ATverbatim] = ACTIONS(8049), + [anon_sym_ATpush] = ACTIONS(8052), + [anon_sym_ATpushOnce] = ACTIONS(8055), + [anon_sym_ATpushIf] = ACTIONS(8058), + [anon_sym_ATprepend] = ACTIONS(8061), + [anon_sym_ATprependOnce] = ACTIONS(8064), + [anon_sym_ATif] = ACTIONS(8067), + [anon_sym_ATunless] = ACTIONS(8070), + [anon_sym_ATisset] = ACTIONS(8073), + [anon_sym_ATempty] = ACTIONS(8076), + [anon_sym_ATauth] = ACTIONS(8079), + [anon_sym_ATguest] = ACTIONS(8082), + [anon_sym_ATproduction] = ACTIONS(8085), + [anon_sym_ATenv] = ACTIONS(8088), + [anon_sym_AThasSection] = ACTIONS(8091), + [anon_sym_ATsectionMissing] = ACTIONS(8094), + [anon_sym_ATerror] = ACTIONS(8097), + [anon_sym_ATcan] = ACTIONS(8100), + [anon_sym_ATcannot] = ACTIONS(8103), + [anon_sym_ATcanany] = ACTIONS(8106), + [anon_sym_ATfeature] = ACTIONS(8109), + [aux_sym__custom_token1] = ACTIONS(8112), + [aux_sym__custom_token2] = ACTIONS(8115), + [anon_sym_ATswitch] = ACTIONS(8118), + [aux_sym_loop_operator_token1] = ACTIONS(8121), + [anon_sym_ATfor] = ACTIONS(8124), + [anon_sym_ATforeach] = ACTIONS(8127), + [anon_sym_ATendforeach] = ACTIONS(5134), + [anon_sym_ATforelse] = ACTIONS(8130), + [anon_sym_ATwhile] = ACTIONS(8133), + [anon_sym_ATsetup] = ACTIONS(8136), + [anon_sym_ATtask] = ACTIONS(8139), + [anon_sym_ATstory] = ACTIONS(8142), + [anon_sym_ATbefore] = ACTIONS(8145), + [anon_sym_ATafter] = ACTIONS(8148), + [anon_sym_ATsuccess] = ACTIONS(8151), + [anon_sym_ATfinished] = ACTIONS(8154), + [anon_sym_ATpersist] = ACTIONS(8157), + [anon_sym_ATteleport] = ACTIONS(8160), + [anon_sym_ATvolt] = ACTIONS(8163), + [aux_sym_alpine_js_token1] = ACTIONS(8166), + [aux_sym__text_token1] = ACTIONS(8169), + [aux_sym__text_token2] = ACTIONS(8169), + [aux_sym__text_token3] = ACTIONS(8172), }, [623] = { + [sym__definition] = STATE(261), + [sym_keyword] = STATE(261), + [sym_php_statement] = STATE(261), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(261), + [sym__inline_directive] = STATE(261), + [sym__nested_directive] = STATE(261), + [sym_fragment] = STATE(261), + [sym_section] = STATE(261), + [sym_inlineSection] = STATE(261), + [sym_once] = STATE(261), + [sym_verbatim] = STATE(261), + [sym_stack] = STATE(261), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(261), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(261), + [sym_loop] = STATE(261), + [sym_loop_operator] = STATE(261), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(261), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(261), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(261), + [sym_text] = STATE(261), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(261), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(8015), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), + }, + [624] = { [sym__definition] = STATE(618), [sym_keyword] = STATE(618), [sym_php_statement] = STATE(618), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(618), [sym__inline_directive] = STATE(618), [sym__nested_directive] = STATE(618), @@ -100927,597 +102767,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(618), [sym_verbatim] = STATE(618), [sym_stack] = STATE(618), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(618), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(618), [sym_loop] = STATE(618), [sym_loop_operator] = STATE(618), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(618), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(618), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(618), + [aux_sym__directive_body] = STATE(618), [sym_text] = STATE(618), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(618), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(8047), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(8049), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), - }, - [624] = { - [sym__definition] = STATE(257), - [sym_keyword] = STATE(257), - [sym_php_statement] = STATE(257), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(257), - [sym__inline_directive] = STATE(257), - [sym__nested_directive] = STATE(257), - [sym_fragment] = STATE(257), - [sym_section] = STATE(257), - [sym_inlineSection] = STATE(257), - [sym_once] = STATE(257), - [sym_verbatim] = STATE(257), - [sym_stack] = STATE(257), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(257), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(257), - [sym_loop] = STATE(257), - [sym_loop_operator] = STATE(257), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(257), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(257), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(257), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(257), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(4001), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(8049), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(8175), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(8177), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [625] = { - [sym__definition] = STATE(628), - [sym_keyword] = STATE(628), - [sym_php_statement] = STATE(628), - [sym__escaped] = STATE(2503), - [sym__unescaped] = STATE(2503), - [sym__raw] = STATE(2503), - [sym__inline_raw] = STATE(2503), - [sym__multi_line_raw] = STATE(2503), - [sym_attribute] = STATE(628), - [sym__inline_directive] = STATE(628), - [sym__nested_directive] = STATE(628), - [sym_fragment] = STATE(628), - [sym_section] = STATE(628), - [sym_inlineSection] = STATE(628), - [sym_once] = STATE(628), - [sym_verbatim] = STATE(628), - [sym_stack] = STATE(628), - [sym__push] = STATE(2504), - [sym__pushOnce] = STATE(2504), - [sym__pushIf] = STATE(2504), - [sym__prepend] = STATE(2504), - [sym__prependOnce] = STATE(2504), - [sym_conditional] = STATE(628), - [sym__if] = STATE(2505), - [sym__unless] = STATE(2505), - [sym__isset] = STATE(2505), - [sym__empty] = STATE(2505), - [sym__auth] = STATE(2505), - [sym__guest] = STATE(2505), - [sym__production] = STATE(2505), - [sym__env] = STATE(2505), - [sym__hasSection] = STATE(2505), - [sym__sectionMissing] = STATE(2505), - [sym__error] = STATE(2505), - [sym_authorization] = STATE(2505), - [sym__can] = STATE(2506), - [sym__cannot] = STATE(2506), - [sym__canany] = STATE(2506), - [sym__feature] = STATE(2505), - [sym__custom] = STATE(2505), - [sym_switch] = STATE(628), - [sym_loop] = STATE(628), - [sym_loop_operator] = STATE(628), - [sym__for] = STATE(2507), - [sym__foreach] = STATE(2507), - [sym__forelse] = STATE(2507), - [sym__while] = STATE(2507), - [sym_envoy] = STATE(628), - [sym__setup] = STATE(2503), - [sym__task] = STATE(2508), - [sym__story] = STATE(2508), - [sym__hooks] = STATE(2503), - [sym__before] = STATE(2503), - [sym__after] = STATE(2503), - [sym__envoy_error] = STATE(2503), - [sym__success] = STATE(2503), - [sym__finished] = STATE(2503), - [sym_livewire] = STATE(628), - [sym__persist] = STATE(2509), - [sym__teleport] = STATE(2509), - [sym__volt] = STATE(2509), - [aux_sym__directive_body] = STATE(628), - [sym_text] = STATE(628), - [sym__text] = STATE(982), - [aux_sym_php_only_repeat1] = STATE(982), - [sym_comment] = ACTIONS(8051), - [aux_sym_keyword_token1] = ACTIONS(8053), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8055), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8057), - [anon_sym_ATphp] = ACTIONS(8059), - [aux_sym_attribute_token1] = ACTIONS(8061), - [aux_sym__inline_directive_token1] = ACTIONS(8063), - [anon_sym_ATfragment] = ACTIONS(8065), - [anon_sym_ATsection] = ACTIONS(8067), - [anon_sym_ATonce] = ACTIONS(8069), - [anon_sym_ATverbatim] = ACTIONS(8071), - [anon_sym_ATpush] = ACTIONS(8073), - [anon_sym_ATpushOnce] = ACTIONS(8075), - [anon_sym_ATpushIf] = ACTIONS(8077), - [anon_sym_ATprepend] = ACTIONS(8079), - [anon_sym_ATprependOnce] = ACTIONS(8081), - [anon_sym_ATif] = ACTIONS(8083), - [anon_sym_ATunless] = ACTIONS(8085), - [anon_sym_ATisset] = ACTIONS(8087), - [anon_sym_ATempty] = ACTIONS(8089), - [anon_sym_ATauth] = ACTIONS(8091), - [anon_sym_ATguest] = ACTIONS(8093), - [anon_sym_ATproduction] = ACTIONS(8095), - [anon_sym_ATenv] = ACTIONS(8097), - [anon_sym_AThasSection] = ACTIONS(8099), - [anon_sym_ATsectionMissing] = ACTIONS(8101), - [anon_sym_ATerror] = ACTIONS(8103), - [anon_sym_ATcan] = ACTIONS(8105), - [anon_sym_ATcannot] = ACTIONS(8107), - [anon_sym_ATcanany] = ACTIONS(8109), - [anon_sym_ATfeature] = ACTIONS(8111), - [aux_sym__custom_token1] = ACTIONS(8113), - [aux_sym__custom_token2] = ACTIONS(8115), - [anon_sym_ATswitch] = ACTIONS(8117), - [aux_sym_loop_operator_token1] = ACTIONS(8119), - [anon_sym_ATfor] = ACTIONS(8121), - [anon_sym_ATforeach] = ACTIONS(8123), - [anon_sym_ATforelse] = ACTIONS(8125), - [anon_sym_ATwhile] = ACTIONS(8127), - [anon_sym_ATsetup] = ACTIONS(8129), - [anon_sym_ATtask] = ACTIONS(8131), - [anon_sym_ATendtask] = ACTIONS(4609), - [anon_sym_ATstory] = ACTIONS(8133), - [anon_sym_ATbefore] = ACTIONS(8135), - [anon_sym_ATafter] = ACTIONS(8137), - [anon_sym_ATsuccess] = ACTIONS(8139), - [anon_sym_ATfinished] = ACTIONS(8141), - [anon_sym_ATpersist] = ACTIONS(8143), - [anon_sym_ATteleport] = ACTIONS(8145), - [anon_sym_ATvolt] = ACTIONS(8147), - [aux_sym__text_token1] = ACTIONS(8149), - [aux_sym__text_token2] = ACTIONS(8149), - [aux_sym__text_token3] = ACTIONS(8151), + [sym__definition] = STATE(627), + [sym_keyword] = STATE(627), + [sym_php_statement] = STATE(627), + [sym__escaped] = STATE(2533), + [sym__unescaped] = STATE(2533), + [sym__raw] = STATE(2533), + [sym__inline_raw] = STATE(2533), + [sym__multi_line_raw] = STATE(2533), + [sym_attribute] = STATE(627), + [sym__inline_directive] = STATE(627), + [sym__nested_directive] = STATE(627), + [sym_fragment] = STATE(627), + [sym_section] = STATE(627), + [sym_inlineSection] = STATE(627), + [sym_once] = STATE(627), + [sym_verbatim] = STATE(627), + [sym_stack] = STATE(627), + [sym__push] = STATE(2534), + [sym__pushOnce] = STATE(2534), + [sym__pushIf] = STATE(2534), + [sym__prepend] = STATE(2534), + [sym__prependOnce] = STATE(2534), + [sym_conditional] = STATE(627), + [sym__if] = STATE(2535), + [sym__unless] = STATE(2535), + [sym__isset] = STATE(2535), + [sym__empty] = STATE(2535), + [sym__auth] = STATE(2535), + [sym__guest] = STATE(2535), + [sym__production] = STATE(2535), + [sym__env] = STATE(2535), + [sym__hasSection] = STATE(2535), + [sym__sectionMissing] = STATE(2535), + [sym__error] = STATE(2535), + [sym_authorization] = STATE(2535), + [sym__can] = STATE(2536), + [sym__cannot] = STATE(2536), + [sym__canany] = STATE(2536), + [sym__feature] = STATE(2535), + [sym__custom] = STATE(2535), + [sym_switch] = STATE(627), + [sym_loop] = STATE(627), + [sym_loop_operator] = STATE(627), + [sym__for] = STATE(2537), + [sym__foreach] = STATE(2537), + [sym__forelse] = STATE(2537), + [sym__while] = STATE(2537), + [sym_envoy] = STATE(627), + [sym__setup] = STATE(2533), + [sym__task] = STATE(2538), + [sym__story] = STATE(2538), + [sym__hooks] = STATE(2533), + [sym__before] = STATE(2533), + [sym__after] = STATE(2533), + [sym__envoy_error] = STATE(2533), + [sym__success] = STATE(2533), + [sym__finished] = STATE(2533), + [sym_livewire] = STATE(627), + [sym__persist] = STATE(2539), + [sym__teleport] = STATE(2539), + [sym__volt] = STATE(2539), + [sym_alpine_js] = STATE(627), + [aux_sym__directive_body] = STATE(627), + [sym_text] = STATE(627), + [sym__text] = STATE(976), + [aux_sym_php_only_repeat1] = STATE(976), + [sym_comment] = ACTIONS(8179), + [aux_sym_keyword_token1] = ACTIONS(8181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8185), + [anon_sym_ATphp] = ACTIONS(8187), + [aux_sym_attribute_token1] = ACTIONS(8189), + [aux_sym__inline_directive_token1] = ACTIONS(8191), + [anon_sym_ATfragment] = ACTIONS(8193), + [anon_sym_ATsection] = ACTIONS(8195), + [anon_sym_ATonce] = ACTIONS(8197), + [anon_sym_ATverbatim] = ACTIONS(8199), + [anon_sym_ATpush] = ACTIONS(8201), + [anon_sym_ATpushOnce] = ACTIONS(8203), + [anon_sym_ATpushIf] = ACTIONS(8205), + [anon_sym_ATprepend] = ACTIONS(8207), + [anon_sym_ATprependOnce] = ACTIONS(8209), + [anon_sym_ATif] = ACTIONS(8211), + [anon_sym_ATunless] = ACTIONS(8213), + [anon_sym_ATisset] = ACTIONS(8215), + [anon_sym_ATempty] = ACTIONS(8217), + [anon_sym_ATauth] = ACTIONS(8219), + [anon_sym_ATguest] = ACTIONS(8221), + [anon_sym_ATproduction] = ACTIONS(8223), + [anon_sym_ATenv] = ACTIONS(8225), + [anon_sym_AThasSection] = ACTIONS(8227), + [anon_sym_ATsectionMissing] = ACTIONS(8229), + [anon_sym_ATerror] = ACTIONS(8231), + [anon_sym_ATcan] = ACTIONS(8233), + [anon_sym_ATcannot] = ACTIONS(8235), + [anon_sym_ATcanany] = ACTIONS(8237), + [anon_sym_ATfeature] = ACTIONS(8239), + [aux_sym__custom_token1] = ACTIONS(8241), + [aux_sym__custom_token2] = ACTIONS(8243), + [anon_sym_ATswitch] = ACTIONS(8245), + [aux_sym_loop_operator_token1] = ACTIONS(8247), + [anon_sym_ATfor] = ACTIONS(8249), + [anon_sym_ATforeach] = ACTIONS(8251), + [anon_sym_ATforelse] = ACTIONS(8253), + [anon_sym_ATwhile] = ACTIONS(8255), + [anon_sym_ATsetup] = ACTIONS(8257), + [anon_sym_ATtask] = ACTIONS(8259), + [anon_sym_ATendtask] = ACTIONS(4699), + [anon_sym_ATstory] = ACTIONS(8261), + [anon_sym_ATbefore] = ACTIONS(8263), + [anon_sym_ATafter] = ACTIONS(8265), + [anon_sym_ATsuccess] = ACTIONS(8267), + [anon_sym_ATfinished] = ACTIONS(8269), + [anon_sym_ATpersist] = ACTIONS(8271), + [anon_sym_ATteleport] = ACTIONS(8273), + [anon_sym_ATvolt] = ACTIONS(8275), + [aux_sym_alpine_js_token1] = ACTIONS(8277), + [aux_sym__text_token1] = ACTIONS(8279), + [aux_sym__text_token2] = ACTIONS(8279), + [aux_sym__text_token3] = ACTIONS(8281), }, [626] = { - [sym__definition] = STATE(619), - [sym_keyword] = STATE(619), - [sym_php_statement] = STATE(619), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(619), - [sym__inline_directive] = STATE(619), - [sym__nested_directive] = STATE(619), - [sym_fragment] = STATE(619), - [sym_section] = STATE(619), - [sym_inlineSection] = STATE(619), - [sym_once] = STATE(619), - [sym_verbatim] = STATE(619), - [sym_stack] = STATE(619), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(619), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(619), - [sym_loop] = STATE(619), - [sym_loop_operator] = STATE(619), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(619), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(619), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(619), - [sym_text] = STATE(619), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(8153), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(8155), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(653), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(4073), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(8283), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [627] = { - [sym__definition] = STATE(646), - [sym_keyword] = STATE(646), - [sym_php_statement] = STATE(646), - [sym__escaped] = STATE(2024), - [sym__unescaped] = STATE(2024), - [sym__raw] = STATE(2024), - [sym__inline_raw] = STATE(2024), - [sym__multi_line_raw] = STATE(2024), - [sym_attribute] = STATE(646), - [sym__inline_directive] = STATE(646), - [sym__nested_directive] = STATE(646), - [sym_fragment] = STATE(646), - [sym_section] = STATE(646), - [sym_inlineSection] = STATE(646), - [sym_once] = STATE(646), - [sym_verbatim] = STATE(646), - [sym_stack] = STATE(646), - [sym__push] = STATE(2023), - [sym__pushOnce] = STATE(2023), - [sym__pushIf] = STATE(2023), - [sym__prepend] = STATE(2023), - [sym__prependOnce] = STATE(2023), - [sym_conditional] = STATE(646), - [sym__if] = STATE(2022), - [sym__unless] = STATE(2022), - [sym__isset] = STATE(2022), - [sym__empty] = STATE(2022), - [sym__auth] = STATE(2022), - [sym__guest] = STATE(2022), - [sym__production] = STATE(2022), - [sym__env] = STATE(2022), - [sym__hasSection] = STATE(2022), - [sym__sectionMissing] = STATE(2022), - [sym__error] = STATE(2022), - [sym_authorization] = STATE(2022), - [sym__can] = STATE(2021), - [sym__cannot] = STATE(2021), - [sym__canany] = STATE(2021), - [sym__feature] = STATE(2022), - [sym__custom] = STATE(2022), - [sym_switch] = STATE(646), - [sym_loop] = STATE(646), - [sym_loop_operator] = STATE(646), - [sym__for] = STATE(2020), - [sym__foreach] = STATE(2020), - [sym__forelse] = STATE(2020), - [sym__while] = STATE(2020), - [sym_envoy] = STATE(646), - [sym__setup] = STATE(2024), - [sym__task] = STATE(2019), - [sym__story] = STATE(2019), - [sym__hooks] = STATE(2024), - [sym__before] = STATE(2024), - [sym__after] = STATE(2024), - [sym__envoy_error] = STATE(2024), - [sym__success] = STATE(2024), - [sym__finished] = STATE(2024), - [sym_livewire] = STATE(646), - [sym__persist] = STATE(2018), - [sym__teleport] = STATE(2018), - [sym__volt] = STATE(2018), - [aux_sym__directive_body] = STATE(646), - [sym_text] = STATE(646), - [sym__text] = STATE(1256), - [aux_sym_php_only_repeat1] = STATE(1256), - [sym_comment] = ACTIONS(8157), - [aux_sym_keyword_token1] = ACTIONS(8159), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8161), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8163), - [anon_sym_ATphp] = ACTIONS(8165), - [aux_sym_attribute_token1] = ACTIONS(8167), - [aux_sym__inline_directive_token1] = ACTIONS(8169), - [anon_sym_ATfragment] = ACTIONS(8171), - [anon_sym_ATsection] = ACTIONS(8173), - [anon_sym_ATonce] = ACTIONS(8175), - [anon_sym_ATverbatim] = ACTIONS(8177), - [anon_sym_ATpush] = ACTIONS(8179), - [anon_sym_ATpushOnce] = ACTIONS(8181), - [anon_sym_ATpushIf] = ACTIONS(8183), - [anon_sym_ATprepend] = ACTIONS(8185), - [anon_sym_ATprependOnce] = ACTIONS(8187), - [anon_sym_ATendPrependOnce] = ACTIONS(4609), - [anon_sym_ATif] = ACTIONS(8189), - [anon_sym_ATunless] = ACTIONS(8191), - [anon_sym_ATisset] = ACTIONS(8193), - [anon_sym_ATempty] = ACTIONS(8195), - [anon_sym_ATauth] = ACTIONS(8197), - [anon_sym_ATguest] = ACTIONS(8199), - [anon_sym_ATproduction] = ACTIONS(8201), - [anon_sym_ATenv] = ACTIONS(8203), - [anon_sym_AThasSection] = ACTIONS(8205), - [anon_sym_ATsectionMissing] = ACTIONS(8207), - [anon_sym_ATerror] = ACTIONS(8209), - [anon_sym_ATcan] = ACTIONS(8211), - [anon_sym_ATcannot] = ACTIONS(8213), - [anon_sym_ATcanany] = ACTIONS(8215), - [anon_sym_ATfeature] = ACTIONS(8217), - [aux_sym__custom_token1] = ACTIONS(8219), - [aux_sym__custom_token2] = ACTIONS(8221), - [anon_sym_ATswitch] = ACTIONS(8223), - [aux_sym_loop_operator_token1] = ACTIONS(8225), - [anon_sym_ATfor] = ACTIONS(8227), - [anon_sym_ATforeach] = ACTIONS(8229), - [anon_sym_ATforelse] = ACTIONS(8231), - [anon_sym_ATwhile] = ACTIONS(8233), - [anon_sym_ATsetup] = ACTIONS(8235), - [anon_sym_ATtask] = ACTIONS(8237), - [anon_sym_ATstory] = ACTIONS(8239), - [anon_sym_ATbefore] = ACTIONS(8241), - [anon_sym_ATafter] = ACTIONS(8243), - [anon_sym_ATsuccess] = ACTIONS(8245), - [anon_sym_ATfinished] = ACTIONS(8247), - [anon_sym_ATpersist] = ACTIONS(8249), - [anon_sym_ATteleport] = ACTIONS(8251), - [anon_sym_ATvolt] = ACTIONS(8253), - [aux_sym__text_token1] = ACTIONS(8255), - [aux_sym__text_token2] = ACTIONS(8255), - [aux_sym__text_token3] = ACTIONS(8257), - }, - [628] = { [sym__definition] = STATE(639), [sym_keyword] = STATE(639), [sym_php_statement] = STATE(639), - [sym__escaped] = STATE(2503), - [sym__unescaped] = STATE(2503), - [sym__raw] = STATE(2503), - [sym__inline_raw] = STATE(2503), - [sym__multi_line_raw] = STATE(2503), + [sym__escaped] = STATE(2533), + [sym__unescaped] = STATE(2533), + [sym__raw] = STATE(2533), + [sym__inline_raw] = STATE(2533), + [sym__multi_line_raw] = STATE(2533), [sym_attribute] = STATE(639), [sym__inline_directive] = STATE(639), [sym__nested_directive] = STATE(639), @@ -101527,717 +103133,607 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(639), [sym_verbatim] = STATE(639), [sym_stack] = STATE(639), - [sym__push] = STATE(2504), - [sym__pushOnce] = STATE(2504), - [sym__pushIf] = STATE(2504), - [sym__prepend] = STATE(2504), - [sym__prependOnce] = STATE(2504), + [sym__push] = STATE(2534), + [sym__pushOnce] = STATE(2534), + [sym__pushIf] = STATE(2534), + [sym__prepend] = STATE(2534), + [sym__prependOnce] = STATE(2534), [sym_conditional] = STATE(639), - [sym__if] = STATE(2505), - [sym__unless] = STATE(2505), - [sym__isset] = STATE(2505), - [sym__empty] = STATE(2505), - [sym__auth] = STATE(2505), - [sym__guest] = STATE(2505), - [sym__production] = STATE(2505), - [sym__env] = STATE(2505), - [sym__hasSection] = STATE(2505), - [sym__sectionMissing] = STATE(2505), - [sym__error] = STATE(2505), - [sym_authorization] = STATE(2505), - [sym__can] = STATE(2506), - [sym__cannot] = STATE(2506), - [sym__canany] = STATE(2506), - [sym__feature] = STATE(2505), - [sym__custom] = STATE(2505), + [sym__if] = STATE(2535), + [sym__unless] = STATE(2535), + [sym__isset] = STATE(2535), + [sym__empty] = STATE(2535), + [sym__auth] = STATE(2535), + [sym__guest] = STATE(2535), + [sym__production] = STATE(2535), + [sym__env] = STATE(2535), + [sym__hasSection] = STATE(2535), + [sym__sectionMissing] = STATE(2535), + [sym__error] = STATE(2535), + [sym_authorization] = STATE(2535), + [sym__can] = STATE(2536), + [sym__cannot] = STATE(2536), + [sym__canany] = STATE(2536), + [sym__feature] = STATE(2535), + [sym__custom] = STATE(2535), [sym_switch] = STATE(639), [sym_loop] = STATE(639), [sym_loop_operator] = STATE(639), - [sym__for] = STATE(2507), - [sym__foreach] = STATE(2507), - [sym__forelse] = STATE(2507), - [sym__while] = STATE(2507), + [sym__for] = STATE(2537), + [sym__foreach] = STATE(2537), + [sym__forelse] = STATE(2537), + [sym__while] = STATE(2537), [sym_envoy] = STATE(639), - [sym__setup] = STATE(2503), - [sym__task] = STATE(2508), - [sym__story] = STATE(2508), - [sym__hooks] = STATE(2503), - [sym__before] = STATE(2503), - [sym__after] = STATE(2503), - [sym__envoy_error] = STATE(2503), - [sym__success] = STATE(2503), - [sym__finished] = STATE(2503), + [sym__setup] = STATE(2533), + [sym__task] = STATE(2538), + [sym__story] = STATE(2538), + [sym__hooks] = STATE(2533), + [sym__before] = STATE(2533), + [sym__after] = STATE(2533), + [sym__envoy_error] = STATE(2533), + [sym__success] = STATE(2533), + [sym__finished] = STATE(2533), [sym_livewire] = STATE(639), - [sym__persist] = STATE(2509), - [sym__teleport] = STATE(2509), - [sym__volt] = STATE(2509), + [sym__persist] = STATE(2539), + [sym__teleport] = STATE(2539), + [sym__volt] = STATE(2539), + [sym_alpine_js] = STATE(639), [aux_sym__directive_body] = STATE(639), [sym_text] = STATE(639), - [sym__text] = STATE(982), - [aux_sym_php_only_repeat1] = STATE(982), - [sym_comment] = ACTIONS(8259), - [aux_sym_keyword_token1] = ACTIONS(8053), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8055), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8057), - [anon_sym_ATphp] = ACTIONS(8059), - [aux_sym_attribute_token1] = ACTIONS(8061), - [aux_sym__inline_directive_token1] = ACTIONS(8063), - [anon_sym_ATfragment] = ACTIONS(8065), - [anon_sym_ATsection] = ACTIONS(8067), - [anon_sym_ATonce] = ACTIONS(8069), - [anon_sym_ATverbatim] = ACTIONS(8071), - [anon_sym_ATpush] = ACTIONS(8073), - [anon_sym_ATpushOnce] = ACTIONS(8075), - [anon_sym_ATpushIf] = ACTIONS(8077), - [anon_sym_ATprepend] = ACTIONS(8079), - [anon_sym_ATprependOnce] = ACTIONS(8081), - [anon_sym_ATif] = ACTIONS(8083), - [anon_sym_ATunless] = ACTIONS(8085), - [anon_sym_ATisset] = ACTIONS(8087), - [anon_sym_ATempty] = ACTIONS(8089), - [anon_sym_ATauth] = ACTIONS(8091), - [anon_sym_ATguest] = ACTIONS(8093), - [anon_sym_ATproduction] = ACTIONS(8095), - [anon_sym_ATenv] = ACTIONS(8097), - [anon_sym_AThasSection] = ACTIONS(8099), - [anon_sym_ATsectionMissing] = ACTIONS(8101), - [anon_sym_ATerror] = ACTIONS(8103), - [anon_sym_ATcan] = ACTIONS(8105), - [anon_sym_ATcannot] = ACTIONS(8107), - [anon_sym_ATcanany] = ACTIONS(8109), - [anon_sym_ATfeature] = ACTIONS(8111), - [aux_sym__custom_token1] = ACTIONS(8113), - [aux_sym__custom_token2] = ACTIONS(8115), - [anon_sym_ATswitch] = ACTIONS(8117), - [aux_sym_loop_operator_token1] = ACTIONS(8119), - [anon_sym_ATfor] = ACTIONS(8121), - [anon_sym_ATforeach] = ACTIONS(8123), - [anon_sym_ATforelse] = ACTIONS(8125), - [anon_sym_ATwhile] = ACTIONS(8127), - [anon_sym_ATsetup] = ACTIONS(8129), - [anon_sym_ATtask] = ACTIONS(8131), - [anon_sym_ATendtask] = ACTIONS(4996), - [anon_sym_ATstory] = ACTIONS(8133), - [anon_sym_ATbefore] = ACTIONS(8135), - [anon_sym_ATafter] = ACTIONS(8137), - [anon_sym_ATsuccess] = ACTIONS(8139), - [anon_sym_ATfinished] = ACTIONS(8141), - [anon_sym_ATpersist] = ACTIONS(8143), - [anon_sym_ATteleport] = ACTIONS(8145), - [anon_sym_ATvolt] = ACTIONS(8147), - [aux_sym__text_token1] = ACTIONS(8149), - [aux_sym__text_token2] = ACTIONS(8149), - [aux_sym__text_token3] = ACTIONS(8151), + [sym__text] = STATE(976), + [aux_sym_php_only_repeat1] = STATE(976), + [sym_comment] = ACTIONS(8285), + [aux_sym_keyword_token1] = ACTIONS(8181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8185), + [anon_sym_ATphp] = ACTIONS(8187), + [aux_sym_attribute_token1] = ACTIONS(8189), + [aux_sym__inline_directive_token1] = ACTIONS(8191), + [anon_sym_ATfragment] = ACTIONS(8193), + [anon_sym_ATsection] = ACTIONS(8195), + [anon_sym_ATonce] = ACTIONS(8197), + [anon_sym_ATverbatim] = ACTIONS(8199), + [anon_sym_ATpush] = ACTIONS(8201), + [anon_sym_ATpushOnce] = ACTIONS(8203), + [anon_sym_ATpushIf] = ACTIONS(8205), + [anon_sym_ATprepend] = ACTIONS(8207), + [anon_sym_ATprependOnce] = ACTIONS(8209), + [anon_sym_ATif] = ACTIONS(8211), + [anon_sym_ATunless] = ACTIONS(8213), + [anon_sym_ATisset] = ACTIONS(8215), + [anon_sym_ATempty] = ACTIONS(8217), + [anon_sym_ATauth] = ACTIONS(8219), + [anon_sym_ATguest] = ACTIONS(8221), + [anon_sym_ATproduction] = ACTIONS(8223), + [anon_sym_ATenv] = ACTIONS(8225), + [anon_sym_AThasSection] = ACTIONS(8227), + [anon_sym_ATsectionMissing] = ACTIONS(8229), + [anon_sym_ATerror] = ACTIONS(8231), + [anon_sym_ATcan] = ACTIONS(8233), + [anon_sym_ATcannot] = ACTIONS(8235), + [anon_sym_ATcanany] = ACTIONS(8237), + [anon_sym_ATfeature] = ACTIONS(8239), + [aux_sym__custom_token1] = ACTIONS(8241), + [aux_sym__custom_token2] = ACTIONS(8243), + [anon_sym_ATswitch] = ACTIONS(8245), + [aux_sym_loop_operator_token1] = ACTIONS(8247), + [anon_sym_ATfor] = ACTIONS(8249), + [anon_sym_ATforeach] = ACTIONS(8251), + [anon_sym_ATforelse] = ACTIONS(8253), + [anon_sym_ATwhile] = ACTIONS(8255), + [anon_sym_ATsetup] = ACTIONS(8257), + [anon_sym_ATtask] = ACTIONS(8259), + [anon_sym_ATendtask] = ACTIONS(4859), + [anon_sym_ATstory] = ACTIONS(8261), + [anon_sym_ATbefore] = ACTIONS(8263), + [anon_sym_ATafter] = ACTIONS(8265), + [anon_sym_ATsuccess] = ACTIONS(8267), + [anon_sym_ATfinished] = ACTIONS(8269), + [anon_sym_ATpersist] = ACTIONS(8271), + [anon_sym_ATteleport] = ACTIONS(8273), + [anon_sym_ATvolt] = ACTIONS(8275), + [aux_sym_alpine_js_token1] = ACTIONS(8277), + [aux_sym__text_token1] = ACTIONS(8279), + [aux_sym__text_token2] = ACTIONS(8279), + [aux_sym__text_token3] = ACTIONS(8281), + }, + [628] = { + [sym__definition] = STATE(628), + [sym_keyword] = STATE(628), + [sym_php_statement] = STATE(628), + [sym__escaped] = STATE(2367), + [sym__unescaped] = STATE(2367), + [sym__raw] = STATE(2367), + [sym__inline_raw] = STATE(2367), + [sym__multi_line_raw] = STATE(2367), + [sym_attribute] = STATE(628), + [sym__inline_directive] = STATE(628), + [sym__nested_directive] = STATE(628), + [sym_fragment] = STATE(628), + [sym_section] = STATE(628), + [sym_inlineSection] = STATE(628), + [sym_once] = STATE(628), + [sym_verbatim] = STATE(628), + [sym_stack] = STATE(628), + [sym__push] = STATE(2368), + [sym__pushOnce] = STATE(2368), + [sym__pushIf] = STATE(2368), + [sym__prepend] = STATE(2368), + [sym__prependOnce] = STATE(2368), + [sym_conditional] = STATE(628), + [sym__if] = STATE(2369), + [sym__unless] = STATE(2369), + [sym__isset] = STATE(2369), + [sym__empty] = STATE(2369), + [sym__auth] = STATE(2369), + [sym__guest] = STATE(2369), + [sym__production] = STATE(2369), + [sym__env] = STATE(2369), + [sym__hasSection] = STATE(2369), + [sym__sectionMissing] = STATE(2369), + [sym__error] = STATE(2369), + [sym_authorization] = STATE(2369), + [sym__can] = STATE(2370), + [sym__cannot] = STATE(2370), + [sym__canany] = STATE(2370), + [sym__feature] = STATE(2369), + [sym__custom] = STATE(2369), + [sym_switch] = STATE(628), + [sym_loop] = STATE(628), + [sym_loop_operator] = STATE(628), + [sym__for] = STATE(2371), + [sym__foreach] = STATE(2371), + [sym__forelse] = STATE(2371), + [sym__while] = STATE(2371), + [sym_envoy] = STATE(628), + [sym__setup] = STATE(2367), + [sym__task] = STATE(2372), + [sym__story] = STATE(2372), + [sym__hooks] = STATE(2367), + [sym__before] = STATE(2367), + [sym__after] = STATE(2367), + [sym__envoy_error] = STATE(2367), + [sym__success] = STATE(2367), + [sym__finished] = STATE(2367), + [sym_livewire] = STATE(628), + [sym__persist] = STATE(2373), + [sym__teleport] = STATE(2373), + [sym__volt] = STATE(2373), + [sym_alpine_js] = STATE(628), + [aux_sym__directive_body] = STATE(628), + [sym_text] = STATE(628), + [sym__text] = STATE(984), + [aux_sym_php_only_repeat1] = STATE(984), + [sym_comment] = ACTIONS(8287), + [aux_sym_keyword_token1] = ACTIONS(8290), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8293), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8296), + [anon_sym_ATphp] = ACTIONS(8299), + [aux_sym_attribute_token1] = ACTIONS(8302), + [aux_sym__inline_directive_token1] = ACTIONS(8305), + [anon_sym_ATfragment] = ACTIONS(8308), + [anon_sym_ATsection] = ACTIONS(8311), + [anon_sym_ATonce] = ACTIONS(8314), + [anon_sym_ATverbatim] = ACTIONS(8317), + [anon_sym_ATpush] = ACTIONS(8320), + [anon_sym_ATpushOnce] = ACTIONS(8323), + [anon_sym_ATpushIf] = ACTIONS(8326), + [anon_sym_ATprepend] = ACTIONS(8329), + [anon_sym_ATprependOnce] = ACTIONS(8332), + [anon_sym_ATif] = ACTIONS(8335), + [anon_sym_ATunless] = ACTIONS(8338), + [anon_sym_ATisset] = ACTIONS(8341), + [anon_sym_ATempty] = ACTIONS(8344), + [anon_sym_ATauth] = ACTIONS(8347), + [anon_sym_ATguest] = ACTIONS(8350), + [anon_sym_ATproduction] = ACTIONS(8353), + [anon_sym_ATenv] = ACTIONS(8356), + [anon_sym_AThasSection] = ACTIONS(8359), + [anon_sym_ATsectionMissing] = ACTIONS(8362), + [anon_sym_ATerror] = ACTIONS(8365), + [anon_sym_ATcan] = ACTIONS(8368), + [anon_sym_ATcannot] = ACTIONS(8371), + [anon_sym_ATcanany] = ACTIONS(8374), + [anon_sym_ATfeature] = ACTIONS(8377), + [aux_sym__custom_token1] = ACTIONS(8380), + [aux_sym__custom_token2] = ACTIONS(8383), + [anon_sym_ATswitch] = ACTIONS(8386), + [aux_sym_loop_operator_token1] = ACTIONS(8389), + [anon_sym_ATfor] = ACTIONS(8392), + [anon_sym_ATforeach] = ACTIONS(8395), + [anon_sym_ATforelse] = ACTIONS(8398), + [anon_sym_ATendforelse] = ACTIONS(5134), + [anon_sym_ATwhile] = ACTIONS(8401), + [anon_sym_ATsetup] = ACTIONS(8404), + [anon_sym_ATtask] = ACTIONS(8407), + [anon_sym_ATstory] = ACTIONS(8410), + [anon_sym_ATbefore] = ACTIONS(8413), + [anon_sym_ATafter] = ACTIONS(8416), + [anon_sym_ATsuccess] = ACTIONS(8419), + [anon_sym_ATfinished] = ACTIONS(8422), + [anon_sym_ATpersist] = ACTIONS(8425), + [anon_sym_ATteleport] = ACTIONS(8428), + [anon_sym_ATvolt] = ACTIONS(8431), + [aux_sym_alpine_js_token1] = ACTIONS(8434), + [aux_sym__text_token1] = ACTIONS(8437), + [aux_sym__text_token2] = ACTIONS(8437), + [aux_sym__text_token3] = ACTIONS(8440), }, [629] = { - [sym__definition] = STATE(629), - [sym_keyword] = STATE(629), - [sym_php_statement] = STATE(629), - [sym__escaped] = STATE(2339), - [sym__unescaped] = STATE(2339), - [sym__raw] = STATE(2339), - [sym__inline_raw] = STATE(2339), - [sym__multi_line_raw] = STATE(2339), - [sym_attribute] = STATE(629), - [sym__inline_directive] = STATE(629), - [sym__nested_directive] = STATE(629), - [sym_fragment] = STATE(629), - [sym_section] = STATE(629), - [sym_inlineSection] = STATE(629), - [sym_once] = STATE(629), - [sym_verbatim] = STATE(629), - [sym_stack] = STATE(629), - [sym__push] = STATE(2340), - [sym__pushOnce] = STATE(2340), - [sym__pushIf] = STATE(2340), - [sym__prepend] = STATE(2340), - [sym__prependOnce] = STATE(2340), - [sym_conditional] = STATE(629), - [sym__if] = STATE(2341), - [sym__unless] = STATE(2341), - [sym__isset] = STATE(2341), - [sym__empty] = STATE(2341), - [sym__auth] = STATE(2341), - [sym__guest] = STATE(2341), - [sym__production] = STATE(2341), - [sym__env] = STATE(2341), - [sym__hasSection] = STATE(2341), - [sym__sectionMissing] = STATE(2341), - [sym__error] = STATE(2341), - [sym_authorization] = STATE(2341), - [sym__can] = STATE(2342), - [sym__cannot] = STATE(2342), - [sym__canany] = STATE(2342), - [sym__feature] = STATE(2341), - [sym__custom] = STATE(2341), - [sym_switch] = STATE(629), - [sym_loop] = STATE(629), - [sym_loop_operator] = STATE(629), - [sym__for] = STATE(2343), - [sym__foreach] = STATE(2343), - [sym__forelse] = STATE(2343), - [sym__while] = STATE(2343), - [sym_envoy] = STATE(629), - [sym__setup] = STATE(2339), - [sym__task] = STATE(2344), - [sym__story] = STATE(2344), - [sym__hooks] = STATE(2339), - [sym__before] = STATE(2339), - [sym__after] = STATE(2339), - [sym__envoy_error] = STATE(2339), - [sym__success] = STATE(2339), - [sym__finished] = STATE(2339), - [sym_livewire] = STATE(629), - [sym__persist] = STATE(2345), - [sym__teleport] = STATE(2345), - [sym__volt] = STATE(2345), - [aux_sym__directive_body] = STATE(629), - [sym_text] = STATE(629), - [sym__text] = STATE(991), - [aux_sym_php_only_repeat1] = STATE(991), - [sym_comment] = ACTIONS(8261), - [aux_sym_keyword_token1] = ACTIONS(8264), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8267), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8270), - [anon_sym_ATphp] = ACTIONS(8273), - [aux_sym_attribute_token1] = ACTIONS(8276), - [aux_sym__inline_directive_token1] = ACTIONS(8279), - [anon_sym_ATfragment] = ACTIONS(8282), - [anon_sym_ATsection] = ACTIONS(8285), - [anon_sym_ATonce] = ACTIONS(8288), - [anon_sym_ATverbatim] = ACTIONS(8291), - [anon_sym_ATpush] = ACTIONS(8294), - [anon_sym_ATpushOnce] = ACTIONS(8297), - [anon_sym_ATpushIf] = ACTIONS(8300), - [anon_sym_ATprepend] = ACTIONS(8303), - [anon_sym_ATprependOnce] = ACTIONS(8306), - [anon_sym_ATif] = ACTIONS(8309), - [anon_sym_ATunless] = ACTIONS(8312), - [anon_sym_ATisset] = ACTIONS(8315), - [anon_sym_ATempty] = ACTIONS(8318), - [anon_sym_ATauth] = ACTIONS(8321), - [anon_sym_ATguest] = ACTIONS(8324), - [anon_sym_ATproduction] = ACTIONS(8327), - [anon_sym_ATenv] = ACTIONS(8330), - [anon_sym_AThasSection] = ACTIONS(8333), - [anon_sym_ATsectionMissing] = ACTIONS(8336), - [anon_sym_ATerror] = ACTIONS(8339), - [anon_sym_ATcan] = ACTIONS(8342), - [anon_sym_ATcannot] = ACTIONS(8345), - [anon_sym_ATcanany] = ACTIONS(8348), - [anon_sym_ATfeature] = ACTIONS(8351), - [aux_sym__custom_token1] = ACTIONS(8354), - [aux_sym__custom_token2] = ACTIONS(8357), - [anon_sym_ATswitch] = ACTIONS(8360), - [aux_sym_loop_operator_token1] = ACTIONS(8363), - [anon_sym_ATfor] = ACTIONS(8366), - [anon_sym_ATforeach] = ACTIONS(8369), - [anon_sym_ATforelse] = ACTIONS(8372), - [anon_sym_ATendforelse] = ACTIONS(5035), - [anon_sym_ATwhile] = ACTIONS(8375), - [anon_sym_ATsetup] = ACTIONS(8378), - [anon_sym_ATtask] = ACTIONS(8381), - [anon_sym_ATstory] = ACTIONS(8384), - [anon_sym_ATbefore] = ACTIONS(8387), - [anon_sym_ATafter] = ACTIONS(8390), - [anon_sym_ATsuccess] = ACTIONS(8393), - [anon_sym_ATfinished] = ACTIONS(8396), - [anon_sym_ATpersist] = ACTIONS(8399), - [anon_sym_ATteleport] = ACTIONS(8402), - [anon_sym_ATvolt] = ACTIONS(8405), - [aux_sym__text_token1] = ACTIONS(8408), - [aux_sym__text_token2] = ACTIONS(8408), - [aux_sym__text_token3] = ACTIONS(8411), + [sym__definition] = STATE(623), + [sym_keyword] = STATE(623), + [sym_php_statement] = STATE(623), + [sym__escaped] = STATE(3031), + [sym__unescaped] = STATE(3031), + [sym__raw] = STATE(3031), + [sym__inline_raw] = STATE(3031), + [sym__multi_line_raw] = STATE(3031), + [sym_attribute] = STATE(623), + [sym__inline_directive] = STATE(623), + [sym__nested_directive] = STATE(623), + [sym_fragment] = STATE(623), + [sym_section] = STATE(623), + [sym_inlineSection] = STATE(623), + [sym_once] = STATE(623), + [sym_verbatim] = STATE(623), + [sym_stack] = STATE(623), + [sym__push] = STATE(3032), + [sym__pushOnce] = STATE(3032), + [sym__pushIf] = STATE(3032), + [sym__prepend] = STATE(3032), + [sym__prependOnce] = STATE(3032), + [sym_conditional] = STATE(623), + [sym__if] = STATE(3033), + [sym__unless] = STATE(3033), + [sym__isset] = STATE(3033), + [sym__empty] = STATE(3033), + [sym__auth] = STATE(3033), + [sym__guest] = STATE(3033), + [sym__production] = STATE(3033), + [sym__env] = STATE(3033), + [sym__hasSection] = STATE(3033), + [sym__sectionMissing] = STATE(3033), + [sym__error] = STATE(3033), + [sym_authorization] = STATE(3033), + [sym__can] = STATE(3034), + [sym__cannot] = STATE(3034), + [sym__canany] = STATE(3034), + [sym__feature] = STATE(3033), + [sym__custom] = STATE(3033), + [sym_switch] = STATE(623), + [sym_loop] = STATE(623), + [sym_loop_operator] = STATE(623), + [sym__for] = STATE(3035), + [sym__foreach] = STATE(3035), + [sym__forelse] = STATE(3035), + [sym__while] = STATE(3035), + [sym_envoy] = STATE(623), + [sym__setup] = STATE(3031), + [sym__task] = STATE(3036), + [sym__story] = STATE(3036), + [sym__hooks] = STATE(3031), + [sym__before] = STATE(3031), + [sym__after] = STATE(3031), + [sym__envoy_error] = STATE(3031), + [sym__success] = STATE(3031), + [sym__finished] = STATE(3031), + [sym_livewire] = STATE(623), + [sym__persist] = STATE(3037), + [sym__teleport] = STATE(3037), + [sym__volt] = STATE(3037), + [sym_alpine_js] = STATE(623), + [sym_text] = STATE(623), + [sym__text] = STATE(943), + [aux_sym_blade_repeat1] = STATE(623), + [aux_sym_php_only_repeat1] = STATE(943), + [sym_comment] = ACTIONS(8443), + [aux_sym_keyword_token1] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4185), + [anon_sym_ATphp] = ACTIONS(4187), + [aux_sym_attribute_token1] = ACTIONS(4189), + [aux_sym__inline_directive_token1] = ACTIONS(4191), + [anon_sym_ATfragment] = ACTIONS(4193), + [anon_sym_ATsection] = ACTIONS(4195), + [anon_sym_ATonce] = ACTIONS(4197), + [anon_sym_ATverbatim] = ACTIONS(4199), + [anon_sym_ATpush] = ACTIONS(4201), + [anon_sym_ATpushOnce] = ACTIONS(4203), + [anon_sym_ATpushIf] = ACTIONS(4205), + [anon_sym_ATprepend] = ACTIONS(4207), + [anon_sym_ATprependOnce] = ACTIONS(4209), + [anon_sym_ATif] = ACTIONS(4211), + [anon_sym_ATunless] = ACTIONS(4213), + [anon_sym_ATisset] = ACTIONS(4215), + [anon_sym_ATempty] = ACTIONS(4217), + [anon_sym_ATauth] = ACTIONS(4219), + [anon_sym_ATguest] = ACTIONS(4221), + [anon_sym_ATproduction] = ACTIONS(4223), + [anon_sym_ATenv] = ACTIONS(4225), + [anon_sym_AThasSection] = ACTIONS(4227), + [anon_sym_ATsectionMissing] = ACTIONS(4229), + [anon_sym_ATerror] = ACTIONS(4231), + [anon_sym_ATcan] = ACTIONS(4233), + [anon_sym_ATcannot] = ACTIONS(4235), + [anon_sym_ATcanany] = ACTIONS(4237), + [anon_sym_ATfeature] = ACTIONS(4239), + [aux_sym__custom_token1] = ACTIONS(4241), + [aux_sym__custom_token2] = ACTIONS(4243), + [anon_sym_ATswitch] = ACTIONS(4245), + [anon_sym_ATendswitch] = ACTIONS(8445), + [aux_sym_loop_operator_token1] = ACTIONS(4249), + [anon_sym_ATfor] = ACTIONS(4251), + [anon_sym_ATforeach] = ACTIONS(4253), + [anon_sym_ATforelse] = ACTIONS(4255), + [anon_sym_ATwhile] = ACTIONS(4257), + [anon_sym_ATsetup] = ACTIONS(4259), + [anon_sym_ATtask] = ACTIONS(4261), + [anon_sym_ATstory] = ACTIONS(4263), + [anon_sym_ATbefore] = ACTIONS(4265), + [anon_sym_ATafter] = ACTIONS(4267), + [anon_sym_ATsuccess] = ACTIONS(4269), + [anon_sym_ATfinished] = ACTIONS(4271), + [anon_sym_ATpersist] = ACTIONS(4273), + [anon_sym_ATteleport] = ACTIONS(4275), + [anon_sym_ATvolt] = ACTIONS(4277), + [aux_sym_alpine_js_token1] = ACTIONS(4279), + [aux_sym__text_token1] = ACTIONS(4281), + [aux_sym__text_token2] = ACTIONS(4281), + [aux_sym__text_token3] = ACTIONS(4283), }, [630] = { - [sym__definition] = STATE(517), - [sym_keyword] = STATE(517), - [sym_php_statement] = STATE(517), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(517), - [sym__inline_directive] = STATE(517), - [sym__nested_directive] = STATE(517), - [sym_fragment] = STATE(517), - [sym_section] = STATE(517), - [sym_inlineSection] = STATE(517), - [sym_once] = STATE(517), - [sym_verbatim] = STATE(517), - [sym_stack] = STATE(517), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(517), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(517), - [sym_loop] = STATE(517), - [sym_loop_operator] = STATE(517), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(517), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(517), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(517), - [sym_text] = STATE(517), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(8414), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(8416), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), + [sym__definition] = STATE(626), + [sym_keyword] = STATE(626), + [sym_php_statement] = STATE(626), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), + [sym_attribute] = STATE(626), + [sym__inline_directive] = STATE(626), + [sym__nested_directive] = STATE(626), + [sym_fragment] = STATE(626), + [sym_section] = STATE(626), + [sym_inlineSection] = STATE(626), + [sym_once] = STATE(626), + [sym_verbatim] = STATE(626), + [sym_stack] = STATE(626), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), + [sym_conditional] = STATE(626), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), + [sym_switch] = STATE(626), + [sym_loop] = STATE(626), + [sym_loop_operator] = STATE(626), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), + [sym_envoy] = STATE(626), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), + [sym_livewire] = STATE(626), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(626), + [aux_sym__directive_body] = STATE(626), + [sym_text] = STATE(626), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(8447), + [aux_sym_keyword_token1] = ACTIONS(4075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4079), + [anon_sym_ATphp] = ACTIONS(4081), + [aux_sym_attribute_token1] = ACTIONS(4083), + [aux_sym__inline_directive_token1] = ACTIONS(4085), + [anon_sym_ATfragment] = ACTIONS(4087), + [anon_sym_ATsection] = ACTIONS(4089), + [aux_sym_section_token1] = ACTIONS(8449), + [anon_sym_ATonce] = ACTIONS(4093), + [anon_sym_ATverbatim] = ACTIONS(4095), + [anon_sym_ATpush] = ACTIONS(4097), + [anon_sym_ATpushOnce] = ACTIONS(4099), + [anon_sym_ATpushIf] = ACTIONS(4101), + [anon_sym_ATprepend] = ACTIONS(4103), + [anon_sym_ATprependOnce] = ACTIONS(4105), + [anon_sym_ATif] = ACTIONS(4107), + [anon_sym_ATunless] = ACTIONS(4109), + [anon_sym_ATisset] = ACTIONS(4111), + [anon_sym_ATempty] = ACTIONS(4113), + [anon_sym_ATauth] = ACTIONS(4115), + [anon_sym_ATguest] = ACTIONS(4117), + [anon_sym_ATproduction] = ACTIONS(4119), + [anon_sym_ATenv] = ACTIONS(4121), + [anon_sym_AThasSection] = ACTIONS(4123), + [anon_sym_ATsectionMissing] = ACTIONS(4125), + [anon_sym_ATerror] = ACTIONS(4127), + [anon_sym_ATcan] = ACTIONS(4129), + [anon_sym_ATcannot] = ACTIONS(4131), + [anon_sym_ATcanany] = ACTIONS(4133), + [anon_sym_ATfeature] = ACTIONS(4135), + [aux_sym__custom_token1] = ACTIONS(4137), + [aux_sym__custom_token2] = ACTIONS(4139), + [anon_sym_ATswitch] = ACTIONS(4141), + [aux_sym_loop_operator_token1] = ACTIONS(4143), + [anon_sym_ATfor] = ACTIONS(4145), + [anon_sym_ATforeach] = ACTIONS(4147), + [anon_sym_ATforelse] = ACTIONS(4149), + [anon_sym_ATwhile] = ACTIONS(4151), + [anon_sym_ATsetup] = ACTIONS(4153), + [anon_sym_ATtask] = ACTIONS(4155), + [anon_sym_ATstory] = ACTIONS(4157), + [anon_sym_ATbefore] = ACTIONS(4159), + [anon_sym_ATafter] = ACTIONS(4161), + [anon_sym_ATsuccess] = ACTIONS(4163), + [anon_sym_ATfinished] = ACTIONS(4165), + [anon_sym_ATpersist] = ACTIONS(4167), + [anon_sym_ATteleport] = ACTIONS(4169), + [anon_sym_ATvolt] = ACTIONS(4171), + [aux_sym_alpine_js_token1] = ACTIONS(4173), + [aux_sym__text_token1] = ACTIONS(4175), + [aux_sym__text_token2] = ACTIONS(4175), + [aux_sym__text_token3] = ACTIONS(4177), }, [631] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(4319), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(8418), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(632), + [sym_keyword] = STATE(632), + [sym_php_statement] = STATE(632), + [sym__escaped] = STATE(2616), + [sym__unescaped] = STATE(2616), + [sym__raw] = STATE(2616), + [sym__inline_raw] = STATE(2616), + [sym__multi_line_raw] = STATE(2616), + [sym_attribute] = STATE(632), + [sym__inline_directive] = STATE(632), + [sym__nested_directive] = STATE(632), + [sym_fragment] = STATE(632), + [sym_section] = STATE(632), + [sym_inlineSection] = STATE(632), + [sym_once] = STATE(632), + [sym_verbatim] = STATE(632), + [sym_stack] = STATE(632), + [sym__push] = STATE(2617), + [sym__pushOnce] = STATE(2617), + [sym__pushIf] = STATE(2617), + [sym__prepend] = STATE(2617), + [sym__prependOnce] = STATE(2617), + [sym_conditional] = STATE(632), + [sym__if] = STATE(2618), + [sym__unless] = STATE(2618), + [sym__isset] = STATE(2618), + [sym__empty] = STATE(2618), + [sym__auth] = STATE(2618), + [sym__guest] = STATE(2618), + [sym__production] = STATE(2618), + [sym__env] = STATE(2618), + [sym__hasSection] = STATE(2618), + [sym__sectionMissing] = STATE(2618), + [sym__error] = STATE(2618), + [sym_authorization] = STATE(2618), + [sym__can] = STATE(2619), + [sym__cannot] = STATE(2619), + [sym__canany] = STATE(2619), + [sym__feature] = STATE(2618), + [sym__custom] = STATE(2618), + [sym_switch] = STATE(632), + [sym_loop] = STATE(632), + [sym_loop_operator] = STATE(632), + [sym__for] = STATE(2620), + [sym__foreach] = STATE(2620), + [sym__forelse] = STATE(2620), + [sym__while] = STATE(2620), + [sym_envoy] = STATE(632), + [sym__setup] = STATE(2616), + [sym__task] = STATE(2621), + [sym__story] = STATE(2621), + [sym__hooks] = STATE(2616), + [sym__before] = STATE(2616), + [sym__after] = STATE(2616), + [sym__envoy_error] = STATE(2616), + [sym__success] = STATE(2616), + [sym__finished] = STATE(2616), + [sym_livewire] = STATE(632), + [sym__persist] = STATE(2622), + [sym__teleport] = STATE(2622), + [sym__volt] = STATE(2622), + [sym_alpine_js] = STATE(632), + [aux_sym__directive_body] = STATE(632), + [sym_text] = STATE(632), + [sym__text] = STATE(972), + [aux_sym_php_only_repeat1] = STATE(972), + [sym_comment] = ACTIONS(8451), + [aux_sym_keyword_token1] = ACTIONS(8453), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8455), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8457), + [anon_sym_ATphp] = ACTIONS(8459), + [aux_sym_attribute_token1] = ACTIONS(8461), + [aux_sym__inline_directive_token1] = ACTIONS(8463), + [anon_sym_ATfragment] = ACTIONS(8465), + [anon_sym_ATsection] = ACTIONS(8467), + [anon_sym_ATonce] = ACTIONS(8469), + [anon_sym_ATverbatim] = ACTIONS(8471), + [anon_sym_ATpush] = ACTIONS(8473), + [anon_sym_ATpushOnce] = ACTIONS(8475), + [anon_sym_ATpushIf] = ACTIONS(8477), + [anon_sym_ATprepend] = ACTIONS(8479), + [anon_sym_ATprependOnce] = ACTIONS(8481), + [anon_sym_ATif] = ACTIONS(8483), + [anon_sym_ATunless] = ACTIONS(8485), + [anon_sym_ATisset] = ACTIONS(8487), + [anon_sym_ATempty] = ACTIONS(8489), + [anon_sym_ATauth] = ACTIONS(8491), + [anon_sym_ATguest] = ACTIONS(8493), + [anon_sym_ATproduction] = ACTIONS(8495), + [anon_sym_ATenv] = ACTIONS(8497), + [anon_sym_AThasSection] = ACTIONS(8499), + [anon_sym_ATsectionMissing] = ACTIONS(8501), + [anon_sym_ATerror] = ACTIONS(8503), + [anon_sym_ATcan] = ACTIONS(8505), + [anon_sym_ATcannot] = ACTIONS(8507), + [anon_sym_ATcanany] = ACTIONS(8509), + [anon_sym_ATfeature] = ACTIONS(8511), + [aux_sym__custom_token1] = ACTIONS(8513), + [aux_sym__custom_token2] = ACTIONS(8515), + [anon_sym_ATswitch] = ACTIONS(8517), + [aux_sym_loop_operator_token1] = ACTIONS(8519), + [anon_sym_ATfor] = ACTIONS(8521), + [anon_sym_ATforeach] = ACTIONS(8523), + [anon_sym_ATforelse] = ACTIONS(8525), + [anon_sym_ATwhile] = ACTIONS(8527), + [anon_sym_ATsetup] = ACTIONS(8529), + [anon_sym_ATtask] = ACTIONS(8531), + [anon_sym_ATstory] = ACTIONS(8533), + [anon_sym_ATendstory] = ACTIONS(4699), + [anon_sym_ATbefore] = ACTIONS(8535), + [anon_sym_ATafter] = ACTIONS(8537), + [anon_sym_ATsuccess] = ACTIONS(8539), + [anon_sym_ATfinished] = ACTIONS(8541), + [anon_sym_ATpersist] = ACTIONS(8543), + [anon_sym_ATteleport] = ACTIONS(8545), + [anon_sym_ATvolt] = ACTIONS(8547), + [aux_sym_alpine_js_token1] = ACTIONS(8549), + [aux_sym__text_token1] = ACTIONS(8551), + [aux_sym__text_token2] = ACTIONS(8551), + [aux_sym__text_token3] = ACTIONS(8553), }, [632] = { - [sym__definition] = STATE(624), - [sym_keyword] = STATE(624), - [sym_php_statement] = STATE(624), - [sym__escaped] = STATE(2995), - [sym__unescaped] = STATE(2995), - [sym__raw] = STATE(2995), - [sym__inline_raw] = STATE(2995), - [sym__multi_line_raw] = STATE(2995), - [sym_attribute] = STATE(624), - [sym__inline_directive] = STATE(624), - [sym__nested_directive] = STATE(624), - [sym_fragment] = STATE(624), - [sym_section] = STATE(624), - [sym_inlineSection] = STATE(624), - [sym_once] = STATE(624), - [sym_verbatim] = STATE(624), - [sym_stack] = STATE(624), - [sym__push] = STATE(2996), - [sym__pushOnce] = STATE(2996), - [sym__pushIf] = STATE(2996), - [sym__prepend] = STATE(2996), - [sym__prependOnce] = STATE(2996), - [sym_conditional] = STATE(624), - [sym__if] = STATE(2997), - [sym__unless] = STATE(2997), - [sym__isset] = STATE(2997), - [sym__empty] = STATE(2997), - [sym__auth] = STATE(2997), - [sym__guest] = STATE(2997), - [sym__production] = STATE(2997), - [sym__env] = STATE(2997), - [sym__hasSection] = STATE(2997), - [sym__sectionMissing] = STATE(2997), - [sym__error] = STATE(2997), - [sym_authorization] = STATE(2997), - [sym__can] = STATE(2998), - [sym__cannot] = STATE(2998), - [sym__canany] = STATE(2998), - [sym__feature] = STATE(2997), - [sym__custom] = STATE(2997), - [sym_switch] = STATE(624), - [sym_loop] = STATE(624), - [sym_loop_operator] = STATE(624), - [sym__for] = STATE(2999), - [sym__foreach] = STATE(2999), - [sym__forelse] = STATE(2999), - [sym__while] = STATE(2999), - [sym_envoy] = STATE(624), - [sym__setup] = STATE(2995), - [sym__task] = STATE(3000), - [sym__story] = STATE(3000), - [sym__hooks] = STATE(2995), - [sym__before] = STATE(2995), - [sym__after] = STATE(2995), - [sym__envoy_error] = STATE(2995), - [sym__success] = STATE(2995), - [sym__finished] = STATE(2995), - [sym_livewire] = STATE(624), - [sym__persist] = STATE(3001), - [sym__teleport] = STATE(3001), - [sym__volt] = STATE(3001), - [sym_text] = STATE(624), - [sym__text] = STATE(949), - [aux_sym_blade_repeat1] = STATE(624), - [aux_sym_php_only_repeat1] = STATE(949), - [sym_comment] = ACTIONS(8420), - [aux_sym_keyword_token1] = ACTIONS(4003), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), - [anon_sym_ATphp] = ACTIONS(4009), - [aux_sym_attribute_token1] = ACTIONS(4011), - [aux_sym__inline_directive_token1] = ACTIONS(4013), - [anon_sym_ATfragment] = ACTIONS(4015), - [anon_sym_ATsection] = ACTIONS(4017), - [anon_sym_ATonce] = ACTIONS(4019), - [anon_sym_ATverbatim] = ACTIONS(4021), - [anon_sym_ATpush] = ACTIONS(4023), - [anon_sym_ATpushOnce] = ACTIONS(4025), - [anon_sym_ATpushIf] = ACTIONS(4027), - [anon_sym_ATprepend] = ACTIONS(4029), - [anon_sym_ATprependOnce] = ACTIONS(4031), - [anon_sym_ATif] = ACTIONS(4033), - [anon_sym_ATunless] = ACTIONS(4035), - [anon_sym_ATisset] = ACTIONS(4037), - [anon_sym_ATempty] = ACTIONS(4039), - [anon_sym_ATauth] = ACTIONS(4041), - [anon_sym_ATguest] = ACTIONS(4043), - [anon_sym_ATproduction] = ACTIONS(4045), - [anon_sym_ATenv] = ACTIONS(4047), - [anon_sym_AThasSection] = ACTIONS(4049), - [anon_sym_ATsectionMissing] = ACTIONS(4051), - [anon_sym_ATerror] = ACTIONS(4053), - [anon_sym_ATcan] = ACTIONS(4055), - [anon_sym_ATcannot] = ACTIONS(4057), - [anon_sym_ATcanany] = ACTIONS(4059), - [anon_sym_ATfeature] = ACTIONS(4061), - [aux_sym__custom_token1] = ACTIONS(4063), - [aux_sym__custom_token2] = ACTIONS(4065), - [anon_sym_ATswitch] = ACTIONS(4067), - [anon_sym_ATendswitch] = ACTIONS(8422), - [aux_sym_loop_operator_token1] = ACTIONS(4071), - [anon_sym_ATfor] = ACTIONS(4073), - [anon_sym_ATforeach] = ACTIONS(4075), - [anon_sym_ATforelse] = ACTIONS(4077), - [anon_sym_ATwhile] = ACTIONS(4079), - [anon_sym_ATsetup] = ACTIONS(4081), - [anon_sym_ATtask] = ACTIONS(4083), - [anon_sym_ATstory] = ACTIONS(4085), - [anon_sym_ATbefore] = ACTIONS(4087), - [anon_sym_ATafter] = ACTIONS(4089), - [anon_sym_ATsuccess] = ACTIONS(4091), - [anon_sym_ATfinished] = ACTIONS(4093), - [anon_sym_ATpersist] = ACTIONS(4095), - [anon_sym_ATteleport] = ACTIONS(4097), - [anon_sym_ATvolt] = ACTIONS(4099), - [aux_sym__text_token1] = ACTIONS(4101), - [aux_sym__text_token2] = ACTIONS(4101), - [aux_sym__text_token3] = ACTIONS(4103), - }, - [633] = { - [sym__definition] = STATE(634), - [sym_keyword] = STATE(634), - [sym_php_statement] = STATE(634), - [sym__escaped] = STATE(2585), - [sym__unescaped] = STATE(2585), - [sym__raw] = STATE(2585), - [sym__inline_raw] = STATE(2585), - [sym__multi_line_raw] = STATE(2585), - [sym_attribute] = STATE(634), - [sym__inline_directive] = STATE(634), - [sym__nested_directive] = STATE(634), - [sym_fragment] = STATE(634), - [sym_section] = STATE(634), - [sym_inlineSection] = STATE(634), - [sym_once] = STATE(634), - [sym_verbatim] = STATE(634), - [sym_stack] = STATE(634), - [sym__push] = STATE(2586), - [sym__pushOnce] = STATE(2586), - [sym__pushIf] = STATE(2586), - [sym__prepend] = STATE(2586), - [sym__prependOnce] = STATE(2586), - [sym_conditional] = STATE(634), - [sym__if] = STATE(2587), - [sym__unless] = STATE(2587), - [sym__isset] = STATE(2587), - [sym__empty] = STATE(2587), - [sym__auth] = STATE(2587), - [sym__guest] = STATE(2587), - [sym__production] = STATE(2587), - [sym__env] = STATE(2587), - [sym__hasSection] = STATE(2587), - [sym__sectionMissing] = STATE(2587), - [sym__error] = STATE(2587), - [sym_authorization] = STATE(2587), - [sym__can] = STATE(2588), - [sym__cannot] = STATE(2588), - [sym__canany] = STATE(2588), - [sym__feature] = STATE(2587), - [sym__custom] = STATE(2587), - [sym_switch] = STATE(634), - [sym_loop] = STATE(634), - [sym_loop_operator] = STATE(634), - [sym__for] = STATE(2589), - [sym__foreach] = STATE(2589), - [sym__forelse] = STATE(2589), - [sym__while] = STATE(2589), - [sym_envoy] = STATE(634), - [sym__setup] = STATE(2585), - [sym__task] = STATE(2590), - [sym__story] = STATE(2590), - [sym__hooks] = STATE(2585), - [sym__before] = STATE(2585), - [sym__after] = STATE(2585), - [sym__envoy_error] = STATE(2585), - [sym__success] = STATE(2585), - [sym__finished] = STATE(2585), - [sym_livewire] = STATE(634), - [sym__persist] = STATE(2591), - [sym__teleport] = STATE(2591), - [sym__volt] = STATE(2591), - [aux_sym__directive_body] = STATE(634), - [sym_text] = STATE(634), - [sym__text] = STATE(977), - [aux_sym_php_only_repeat1] = STATE(977), - [sym_comment] = ACTIONS(8424), - [aux_sym_keyword_token1] = ACTIONS(8426), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8428), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8430), - [anon_sym_ATphp] = ACTIONS(8432), - [aux_sym_attribute_token1] = ACTIONS(8434), - [aux_sym__inline_directive_token1] = ACTIONS(8436), - [anon_sym_ATfragment] = ACTIONS(8438), - [anon_sym_ATsection] = ACTIONS(8440), - [anon_sym_ATonce] = ACTIONS(8442), - [anon_sym_ATverbatim] = ACTIONS(8444), - [anon_sym_ATpush] = ACTIONS(8446), - [anon_sym_ATpushOnce] = ACTIONS(8448), - [anon_sym_ATpushIf] = ACTIONS(8450), - [anon_sym_ATprepend] = ACTIONS(8452), - [anon_sym_ATprependOnce] = ACTIONS(8454), - [anon_sym_ATif] = ACTIONS(8456), - [anon_sym_ATunless] = ACTIONS(8458), - [anon_sym_ATisset] = ACTIONS(8460), - [anon_sym_ATempty] = ACTIONS(8462), - [anon_sym_ATauth] = ACTIONS(8464), - [anon_sym_ATguest] = ACTIONS(8466), - [anon_sym_ATproduction] = ACTIONS(8468), - [anon_sym_ATenv] = ACTIONS(8470), - [anon_sym_AThasSection] = ACTIONS(8472), - [anon_sym_ATsectionMissing] = ACTIONS(8474), - [anon_sym_ATerror] = ACTIONS(8476), - [anon_sym_ATcan] = ACTIONS(8478), - [anon_sym_ATcannot] = ACTIONS(8480), - [anon_sym_ATcanany] = ACTIONS(8482), - [anon_sym_ATfeature] = ACTIONS(8484), - [aux_sym__custom_token1] = ACTIONS(8486), - [aux_sym__custom_token2] = ACTIONS(8488), - [anon_sym_ATswitch] = ACTIONS(8490), - [aux_sym_loop_operator_token1] = ACTIONS(8492), - [anon_sym_ATfor] = ACTIONS(8494), - [anon_sym_ATforeach] = ACTIONS(8496), - [anon_sym_ATforelse] = ACTIONS(8498), - [anon_sym_ATwhile] = ACTIONS(8500), - [anon_sym_ATsetup] = ACTIONS(8502), - [anon_sym_ATtask] = ACTIONS(8504), - [anon_sym_ATstory] = ACTIONS(8506), - [anon_sym_ATendstory] = ACTIONS(4609), - [anon_sym_ATbefore] = ACTIONS(8508), - [anon_sym_ATafter] = ACTIONS(8510), - [anon_sym_ATsuccess] = ACTIONS(8512), - [anon_sym_ATfinished] = ACTIONS(8514), - [anon_sym_ATpersist] = ACTIONS(8516), - [anon_sym_ATteleport] = ACTIONS(8518), - [anon_sym_ATvolt] = ACTIONS(8520), - [aux_sym__text_token1] = ACTIONS(8522), - [aux_sym__text_token2] = ACTIONS(8522), - [aux_sym__text_token3] = ACTIONS(8524), - }, - [634] = { [sym__definition] = STATE(643), [sym_keyword] = STATE(643), [sym_php_statement] = STATE(643), - [sym__escaped] = STATE(2585), - [sym__unescaped] = STATE(2585), - [sym__raw] = STATE(2585), - [sym__inline_raw] = STATE(2585), - [sym__multi_line_raw] = STATE(2585), + [sym__escaped] = STATE(2616), + [sym__unescaped] = STATE(2616), + [sym__raw] = STATE(2616), + [sym__inline_raw] = STATE(2616), + [sym__multi_line_raw] = STATE(2616), [sym_attribute] = STATE(643), [sym__inline_directive] = STATE(643), [sym__nested_directive] = STATE(643), @@ -102247,597 +103743,851 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(643), [sym_verbatim] = STATE(643), [sym_stack] = STATE(643), - [sym__push] = STATE(2586), - [sym__pushOnce] = STATE(2586), - [sym__pushIf] = STATE(2586), - [sym__prepend] = STATE(2586), - [sym__prependOnce] = STATE(2586), + [sym__push] = STATE(2617), + [sym__pushOnce] = STATE(2617), + [sym__pushIf] = STATE(2617), + [sym__prepend] = STATE(2617), + [sym__prependOnce] = STATE(2617), [sym_conditional] = STATE(643), - [sym__if] = STATE(2587), - [sym__unless] = STATE(2587), - [sym__isset] = STATE(2587), - [sym__empty] = STATE(2587), - [sym__auth] = STATE(2587), - [sym__guest] = STATE(2587), - [sym__production] = STATE(2587), - [sym__env] = STATE(2587), - [sym__hasSection] = STATE(2587), - [sym__sectionMissing] = STATE(2587), - [sym__error] = STATE(2587), - [sym_authorization] = STATE(2587), - [sym__can] = STATE(2588), - [sym__cannot] = STATE(2588), - [sym__canany] = STATE(2588), - [sym__feature] = STATE(2587), - [sym__custom] = STATE(2587), + [sym__if] = STATE(2618), + [sym__unless] = STATE(2618), + [sym__isset] = STATE(2618), + [sym__empty] = STATE(2618), + [sym__auth] = STATE(2618), + [sym__guest] = STATE(2618), + [sym__production] = STATE(2618), + [sym__env] = STATE(2618), + [sym__hasSection] = STATE(2618), + [sym__sectionMissing] = STATE(2618), + [sym__error] = STATE(2618), + [sym_authorization] = STATE(2618), + [sym__can] = STATE(2619), + [sym__cannot] = STATE(2619), + [sym__canany] = STATE(2619), + [sym__feature] = STATE(2618), + [sym__custom] = STATE(2618), [sym_switch] = STATE(643), [sym_loop] = STATE(643), [sym_loop_operator] = STATE(643), - [sym__for] = STATE(2589), - [sym__foreach] = STATE(2589), - [sym__forelse] = STATE(2589), - [sym__while] = STATE(2589), + [sym__for] = STATE(2620), + [sym__foreach] = STATE(2620), + [sym__forelse] = STATE(2620), + [sym__while] = STATE(2620), [sym_envoy] = STATE(643), - [sym__setup] = STATE(2585), - [sym__task] = STATE(2590), - [sym__story] = STATE(2590), - [sym__hooks] = STATE(2585), - [sym__before] = STATE(2585), - [sym__after] = STATE(2585), - [sym__envoy_error] = STATE(2585), - [sym__success] = STATE(2585), - [sym__finished] = STATE(2585), + [sym__setup] = STATE(2616), + [sym__task] = STATE(2621), + [sym__story] = STATE(2621), + [sym__hooks] = STATE(2616), + [sym__before] = STATE(2616), + [sym__after] = STATE(2616), + [sym__envoy_error] = STATE(2616), + [sym__success] = STATE(2616), + [sym__finished] = STATE(2616), [sym_livewire] = STATE(643), - [sym__persist] = STATE(2591), - [sym__teleport] = STATE(2591), - [sym__volt] = STATE(2591), + [sym__persist] = STATE(2622), + [sym__teleport] = STATE(2622), + [sym__volt] = STATE(2622), + [sym_alpine_js] = STATE(643), [aux_sym__directive_body] = STATE(643), [sym_text] = STATE(643), - [sym__text] = STATE(977), - [aux_sym_php_only_repeat1] = STATE(977), - [sym_comment] = ACTIONS(8526), - [aux_sym_keyword_token1] = ACTIONS(8426), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8428), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8430), - [anon_sym_ATphp] = ACTIONS(8432), - [aux_sym_attribute_token1] = ACTIONS(8434), - [aux_sym__inline_directive_token1] = ACTIONS(8436), - [anon_sym_ATfragment] = ACTIONS(8438), - [anon_sym_ATsection] = ACTIONS(8440), - [anon_sym_ATonce] = ACTIONS(8442), - [anon_sym_ATverbatim] = ACTIONS(8444), - [anon_sym_ATpush] = ACTIONS(8446), - [anon_sym_ATpushOnce] = ACTIONS(8448), - [anon_sym_ATpushIf] = ACTIONS(8450), - [anon_sym_ATprepend] = ACTIONS(8452), - [anon_sym_ATprependOnce] = ACTIONS(8454), - [anon_sym_ATif] = ACTIONS(8456), - [anon_sym_ATunless] = ACTIONS(8458), - [anon_sym_ATisset] = ACTIONS(8460), - [anon_sym_ATempty] = ACTIONS(8462), - [anon_sym_ATauth] = ACTIONS(8464), - [anon_sym_ATguest] = ACTIONS(8466), - [anon_sym_ATproduction] = ACTIONS(8468), - [anon_sym_ATenv] = ACTIONS(8470), - [anon_sym_AThasSection] = ACTIONS(8472), - [anon_sym_ATsectionMissing] = ACTIONS(8474), - [anon_sym_ATerror] = ACTIONS(8476), - [anon_sym_ATcan] = ACTIONS(8478), - [anon_sym_ATcannot] = ACTIONS(8480), - [anon_sym_ATcanany] = ACTIONS(8482), - [anon_sym_ATfeature] = ACTIONS(8484), - [aux_sym__custom_token1] = ACTIONS(8486), - [aux_sym__custom_token2] = ACTIONS(8488), - [anon_sym_ATswitch] = ACTIONS(8490), - [aux_sym_loop_operator_token1] = ACTIONS(8492), - [anon_sym_ATfor] = ACTIONS(8494), - [anon_sym_ATforeach] = ACTIONS(8496), - [anon_sym_ATforelse] = ACTIONS(8498), - [anon_sym_ATwhile] = ACTIONS(8500), - [anon_sym_ATsetup] = ACTIONS(8502), - [anon_sym_ATtask] = ACTIONS(8504), - [anon_sym_ATstory] = ACTIONS(8506), - [anon_sym_ATendstory] = ACTIONS(4996), - [anon_sym_ATbefore] = ACTIONS(8508), - [anon_sym_ATafter] = ACTIONS(8510), - [anon_sym_ATsuccess] = ACTIONS(8512), - [anon_sym_ATfinished] = ACTIONS(8514), - [anon_sym_ATpersist] = ACTIONS(8516), - [anon_sym_ATteleport] = ACTIONS(8518), - [anon_sym_ATvolt] = ACTIONS(8520), - [aux_sym__text_token1] = ACTIONS(8522), - [aux_sym__text_token2] = ACTIONS(8522), - [aux_sym__text_token3] = ACTIONS(8524), + [sym__text] = STATE(972), + [aux_sym_php_only_repeat1] = STATE(972), + [sym_comment] = ACTIONS(8555), + [aux_sym_keyword_token1] = ACTIONS(8453), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8455), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8457), + [anon_sym_ATphp] = ACTIONS(8459), + [aux_sym_attribute_token1] = ACTIONS(8461), + [aux_sym__inline_directive_token1] = ACTIONS(8463), + [anon_sym_ATfragment] = ACTIONS(8465), + [anon_sym_ATsection] = ACTIONS(8467), + [anon_sym_ATonce] = ACTIONS(8469), + [anon_sym_ATverbatim] = ACTIONS(8471), + [anon_sym_ATpush] = ACTIONS(8473), + [anon_sym_ATpushOnce] = ACTIONS(8475), + [anon_sym_ATpushIf] = ACTIONS(8477), + [anon_sym_ATprepend] = ACTIONS(8479), + [anon_sym_ATprependOnce] = ACTIONS(8481), + [anon_sym_ATif] = ACTIONS(8483), + [anon_sym_ATunless] = ACTIONS(8485), + [anon_sym_ATisset] = ACTIONS(8487), + [anon_sym_ATempty] = ACTIONS(8489), + [anon_sym_ATauth] = ACTIONS(8491), + [anon_sym_ATguest] = ACTIONS(8493), + [anon_sym_ATproduction] = ACTIONS(8495), + [anon_sym_ATenv] = ACTIONS(8497), + [anon_sym_AThasSection] = ACTIONS(8499), + [anon_sym_ATsectionMissing] = ACTIONS(8501), + [anon_sym_ATerror] = ACTIONS(8503), + [anon_sym_ATcan] = ACTIONS(8505), + [anon_sym_ATcannot] = ACTIONS(8507), + [anon_sym_ATcanany] = ACTIONS(8509), + [anon_sym_ATfeature] = ACTIONS(8511), + [aux_sym__custom_token1] = ACTIONS(8513), + [aux_sym__custom_token2] = ACTIONS(8515), + [anon_sym_ATswitch] = ACTIONS(8517), + [aux_sym_loop_operator_token1] = ACTIONS(8519), + [anon_sym_ATfor] = ACTIONS(8521), + [anon_sym_ATforeach] = ACTIONS(8523), + [anon_sym_ATforelse] = ACTIONS(8525), + [anon_sym_ATwhile] = ACTIONS(8527), + [anon_sym_ATsetup] = ACTIONS(8529), + [anon_sym_ATtask] = ACTIONS(8531), + [anon_sym_ATstory] = ACTIONS(8533), + [anon_sym_ATendstory] = ACTIONS(4859), + [anon_sym_ATbefore] = ACTIONS(8535), + [anon_sym_ATafter] = ACTIONS(8537), + [anon_sym_ATsuccess] = ACTIONS(8539), + [anon_sym_ATfinished] = ACTIONS(8541), + [anon_sym_ATpersist] = ACTIONS(8543), + [anon_sym_ATteleport] = ACTIONS(8545), + [anon_sym_ATvolt] = ACTIONS(8547), + [aux_sym_alpine_js_token1] = ACTIONS(8549), + [aux_sym__text_token1] = ACTIONS(8551), + [aux_sym__text_token2] = ACTIONS(8551), + [aux_sym__text_token3] = ACTIONS(8553), + }, + [633] = { + [sym__definition] = STATE(633), + [sym_keyword] = STATE(633), + [sym_php_statement] = STATE(633), + [sym__escaped] = STATE(2450), + [sym__unescaped] = STATE(2450), + [sym__raw] = STATE(2450), + [sym__inline_raw] = STATE(2450), + [sym__multi_line_raw] = STATE(2450), + [sym_attribute] = STATE(633), + [sym__inline_directive] = STATE(633), + [sym__nested_directive] = STATE(633), + [sym_fragment] = STATE(633), + [sym_section] = STATE(633), + [sym_inlineSection] = STATE(633), + [sym_once] = STATE(633), + [sym_verbatim] = STATE(633), + [sym_stack] = STATE(633), + [sym__push] = STATE(2451), + [sym__pushOnce] = STATE(2451), + [sym__pushIf] = STATE(2451), + [sym__prepend] = STATE(2451), + [sym__prependOnce] = STATE(2451), + [sym_conditional] = STATE(633), + [sym__if] = STATE(2452), + [sym__unless] = STATE(2452), + [sym__isset] = STATE(2452), + [sym__empty] = STATE(2452), + [sym__auth] = STATE(2452), + [sym__guest] = STATE(2452), + [sym__production] = STATE(2452), + [sym__env] = STATE(2452), + [sym__hasSection] = STATE(2452), + [sym__sectionMissing] = STATE(2452), + [sym__error] = STATE(2452), + [sym_authorization] = STATE(2452), + [sym__can] = STATE(2453), + [sym__cannot] = STATE(2453), + [sym__canany] = STATE(2453), + [sym__feature] = STATE(2452), + [sym__custom] = STATE(2452), + [sym_switch] = STATE(633), + [sym_loop] = STATE(633), + [sym_loop_operator] = STATE(633), + [sym__for] = STATE(2454), + [sym__foreach] = STATE(2454), + [sym__forelse] = STATE(2454), + [sym__while] = STATE(2454), + [sym_envoy] = STATE(633), + [sym__setup] = STATE(2450), + [sym__task] = STATE(2455), + [sym__story] = STATE(2455), + [sym__hooks] = STATE(2450), + [sym__before] = STATE(2450), + [sym__after] = STATE(2450), + [sym__envoy_error] = STATE(2450), + [sym__success] = STATE(2450), + [sym__finished] = STATE(2450), + [sym_livewire] = STATE(633), + [sym__persist] = STATE(2456), + [sym__teleport] = STATE(2456), + [sym__volt] = STATE(2456), + [sym_alpine_js] = STATE(633), + [aux_sym__directive_body] = STATE(633), + [sym_text] = STATE(633), + [sym__text] = STATE(980), + [aux_sym_php_only_repeat1] = STATE(980), + [sym_comment] = ACTIONS(8557), + [aux_sym_keyword_token1] = ACTIONS(8560), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8563), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8566), + [anon_sym_ATphp] = ACTIONS(8569), + [aux_sym_attribute_token1] = ACTIONS(8572), + [aux_sym__inline_directive_token1] = ACTIONS(8575), + [anon_sym_ATfragment] = ACTIONS(8578), + [anon_sym_ATsection] = ACTIONS(8581), + [anon_sym_ATonce] = ACTIONS(8584), + [anon_sym_ATverbatim] = ACTIONS(8587), + [anon_sym_ATpush] = ACTIONS(8590), + [anon_sym_ATpushOnce] = ACTIONS(8593), + [anon_sym_ATpushIf] = ACTIONS(8596), + [anon_sym_ATprepend] = ACTIONS(8599), + [anon_sym_ATprependOnce] = ACTIONS(8602), + [anon_sym_ATif] = ACTIONS(8605), + [anon_sym_ATunless] = ACTIONS(8608), + [anon_sym_ATisset] = ACTIONS(8611), + [anon_sym_ATempty] = ACTIONS(8614), + [anon_sym_ATauth] = ACTIONS(8617), + [anon_sym_ATguest] = ACTIONS(8620), + [anon_sym_ATproduction] = ACTIONS(8623), + [anon_sym_ATenv] = ACTIONS(8626), + [anon_sym_AThasSection] = ACTIONS(8629), + [anon_sym_ATsectionMissing] = ACTIONS(8632), + [anon_sym_ATerror] = ACTIONS(8635), + [anon_sym_ATcan] = ACTIONS(8638), + [anon_sym_ATcannot] = ACTIONS(8641), + [anon_sym_ATcanany] = ACTIONS(8644), + [anon_sym_ATfeature] = ACTIONS(8647), + [aux_sym__custom_token1] = ACTIONS(8650), + [aux_sym__custom_token2] = ACTIONS(8653), + [anon_sym_ATswitch] = ACTIONS(8656), + [aux_sym_loop_operator_token1] = ACTIONS(8659), + [anon_sym_ATfor] = ACTIONS(8662), + [anon_sym_ATforeach] = ACTIONS(8665), + [anon_sym_ATforelse] = ACTIONS(8668), + [anon_sym_ATwhile] = ACTIONS(8671), + [anon_sym_ATendwhile] = ACTIONS(5134), + [anon_sym_ATsetup] = ACTIONS(8674), + [anon_sym_ATtask] = ACTIONS(8677), + [anon_sym_ATstory] = ACTIONS(8680), + [anon_sym_ATbefore] = ACTIONS(8683), + [anon_sym_ATafter] = ACTIONS(8686), + [anon_sym_ATsuccess] = ACTIONS(8689), + [anon_sym_ATfinished] = ACTIONS(8692), + [anon_sym_ATpersist] = ACTIONS(8695), + [anon_sym_ATteleport] = ACTIONS(8698), + [anon_sym_ATvolt] = ACTIONS(8701), + [aux_sym_alpine_js_token1] = ACTIONS(8704), + [aux_sym__text_token1] = ACTIONS(8707), + [aux_sym__text_token2] = ACTIONS(8707), + [aux_sym__text_token3] = ACTIONS(8710), + }, + [634] = { + [sym__definition] = STATE(272), + [sym_keyword] = STATE(272), + [sym_php_statement] = STATE(272), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(272), + [sym__inline_directive] = STATE(272), + [sym__nested_directive] = STATE(272), + [sym_fragment] = STATE(272), + [sym_section] = STATE(272), + [sym_inlineSection] = STATE(272), + [sym_once] = STATE(272), + [sym_verbatim] = STATE(272), + [sym_stack] = STATE(272), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(272), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(272), + [sym_loop] = STATE(272), + [sym_loop_operator] = STATE(272), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(272), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(272), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(272), + [aux_sym__directive_body] = STATE(272), + [sym_text] = STATE(272), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(8713), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [635] = { - [sym__definition] = STATE(635), - [sym_keyword] = STATE(635), - [sym_php_statement] = STATE(635), - [sym__escaped] = STATE(2421), - [sym__unescaped] = STATE(2421), - [sym__raw] = STATE(2421), - [sym__inline_raw] = STATE(2421), - [sym__multi_line_raw] = STATE(2421), - [sym_attribute] = STATE(635), - [sym__inline_directive] = STATE(635), - [sym__nested_directive] = STATE(635), - [sym_fragment] = STATE(635), - [sym_section] = STATE(635), - [sym_inlineSection] = STATE(635), - [sym_once] = STATE(635), - [sym_verbatim] = STATE(635), - [sym_stack] = STATE(635), - [sym__push] = STATE(2422), - [sym__pushOnce] = STATE(2422), - [sym__pushIf] = STATE(2422), - [sym__prepend] = STATE(2422), - [sym__prependOnce] = STATE(2422), - [sym_conditional] = STATE(635), - [sym__if] = STATE(2423), - [sym__unless] = STATE(2423), - [sym__isset] = STATE(2423), - [sym__empty] = STATE(2423), - [sym__auth] = STATE(2423), - [sym__guest] = STATE(2423), - [sym__production] = STATE(2423), - [sym__env] = STATE(2423), - [sym__hasSection] = STATE(2423), - [sym__sectionMissing] = STATE(2423), - [sym__error] = STATE(2423), - [sym_authorization] = STATE(2423), - [sym__can] = STATE(2424), - [sym__cannot] = STATE(2424), - [sym__canany] = STATE(2424), - [sym__feature] = STATE(2423), - [sym__custom] = STATE(2423), - [sym_switch] = STATE(635), - [sym_loop] = STATE(635), - [sym_loop_operator] = STATE(635), - [sym__for] = STATE(2425), - [sym__foreach] = STATE(2425), - [sym__forelse] = STATE(2425), - [sym__while] = STATE(2425), - [sym_envoy] = STATE(635), - [sym__setup] = STATE(2421), - [sym__task] = STATE(2426), - [sym__story] = STATE(2426), - [sym__hooks] = STATE(2421), - [sym__before] = STATE(2421), - [sym__after] = STATE(2421), - [sym__envoy_error] = STATE(2421), - [sym__success] = STATE(2421), - [sym__finished] = STATE(2421), - [sym_livewire] = STATE(635), - [sym__persist] = STATE(2427), - [sym__teleport] = STATE(2427), - [sym__volt] = STATE(2427), - [aux_sym__directive_body] = STATE(635), - [sym_text] = STATE(635), - [sym__text] = STATE(986), - [aux_sym_php_only_repeat1] = STATE(986), - [sym_comment] = ACTIONS(8528), - [aux_sym_keyword_token1] = ACTIONS(8531), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8534), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8537), - [anon_sym_ATphp] = ACTIONS(8540), - [aux_sym_attribute_token1] = ACTIONS(8543), - [aux_sym__inline_directive_token1] = ACTIONS(8546), - [anon_sym_ATfragment] = ACTIONS(8549), - [anon_sym_ATsection] = ACTIONS(8552), - [anon_sym_ATonce] = ACTIONS(8555), - [anon_sym_ATverbatim] = ACTIONS(8558), - [anon_sym_ATpush] = ACTIONS(8561), - [anon_sym_ATpushOnce] = ACTIONS(8564), - [anon_sym_ATpushIf] = ACTIONS(8567), - [anon_sym_ATprepend] = ACTIONS(8570), - [anon_sym_ATprependOnce] = ACTIONS(8573), - [anon_sym_ATif] = ACTIONS(8576), - [anon_sym_ATunless] = ACTIONS(8579), - [anon_sym_ATisset] = ACTIONS(8582), - [anon_sym_ATempty] = ACTIONS(8585), - [anon_sym_ATauth] = ACTIONS(8588), - [anon_sym_ATguest] = ACTIONS(8591), - [anon_sym_ATproduction] = ACTIONS(8594), - [anon_sym_ATenv] = ACTIONS(8597), - [anon_sym_AThasSection] = ACTIONS(8600), - [anon_sym_ATsectionMissing] = ACTIONS(8603), - [anon_sym_ATerror] = ACTIONS(8606), - [anon_sym_ATcan] = ACTIONS(8609), - [anon_sym_ATcannot] = ACTIONS(8612), - [anon_sym_ATcanany] = ACTIONS(8615), - [anon_sym_ATfeature] = ACTIONS(8618), - [aux_sym__custom_token1] = ACTIONS(8621), - [aux_sym__custom_token2] = ACTIONS(8624), - [anon_sym_ATswitch] = ACTIONS(8627), - [aux_sym_loop_operator_token1] = ACTIONS(8630), - [anon_sym_ATfor] = ACTIONS(8633), - [anon_sym_ATforeach] = ACTIONS(8636), - [anon_sym_ATforelse] = ACTIONS(8639), - [anon_sym_ATwhile] = ACTIONS(8642), - [anon_sym_ATendwhile] = ACTIONS(5035), - [anon_sym_ATsetup] = ACTIONS(8645), - [anon_sym_ATtask] = ACTIONS(8648), - [anon_sym_ATstory] = ACTIONS(8651), - [anon_sym_ATbefore] = ACTIONS(8654), - [anon_sym_ATafter] = ACTIONS(8657), - [anon_sym_ATsuccess] = ACTIONS(8660), - [anon_sym_ATfinished] = ACTIONS(8663), - [anon_sym_ATpersist] = ACTIONS(8666), - [anon_sym_ATteleport] = ACTIONS(8669), - [anon_sym_ATvolt] = ACTIONS(8672), - [aux_sym__text_token1] = ACTIONS(8675), - [aux_sym__text_token2] = ACTIONS(8675), - [aux_sym__text_token3] = ACTIONS(8678), + [sym__definition] = STATE(654), + [sym_keyword] = STATE(654), + [sym_php_statement] = STATE(654), + [sym__escaped] = STATE(2036), + [sym__unescaped] = STATE(2036), + [sym__raw] = STATE(2036), + [sym__inline_raw] = STATE(2036), + [sym__multi_line_raw] = STATE(2036), + [sym_attribute] = STATE(654), + [sym__inline_directive] = STATE(654), + [sym__nested_directive] = STATE(654), + [sym_fragment] = STATE(654), + [sym_section] = STATE(654), + [sym_inlineSection] = STATE(654), + [sym_once] = STATE(654), + [sym_verbatim] = STATE(654), + [sym_stack] = STATE(654), + [sym__push] = STATE(2035), + [sym__pushOnce] = STATE(2035), + [sym__pushIf] = STATE(2035), + [sym__prepend] = STATE(2035), + [sym__prependOnce] = STATE(2035), + [sym_conditional] = STATE(654), + [sym__if] = STATE(2033), + [sym__unless] = STATE(2033), + [sym__isset] = STATE(2033), + [sym__empty] = STATE(2033), + [sym__auth] = STATE(2033), + [sym__guest] = STATE(2033), + [sym__production] = STATE(2033), + [sym__env] = STATE(2033), + [sym__hasSection] = STATE(2033), + [sym__sectionMissing] = STATE(2033), + [sym__error] = STATE(2033), + [sym_authorization] = STATE(2033), + [sym__can] = STATE(2032), + [sym__cannot] = STATE(2032), + [sym__canany] = STATE(2032), + [sym__feature] = STATE(2033), + [sym__custom] = STATE(2033), + [sym_switch] = STATE(654), + [sym_loop] = STATE(654), + [sym_loop_operator] = STATE(654), + [sym__for] = STATE(2031), + [sym__foreach] = STATE(2031), + [sym__forelse] = STATE(2031), + [sym__while] = STATE(2031), + [sym_envoy] = STATE(654), + [sym__setup] = STATE(2036), + [sym__task] = STATE(2030), + [sym__story] = STATE(2030), + [sym__hooks] = STATE(2036), + [sym__before] = STATE(2036), + [sym__after] = STATE(2036), + [sym__envoy_error] = STATE(2036), + [sym__success] = STATE(2036), + [sym__finished] = STATE(2036), + [sym_livewire] = STATE(654), + [sym__persist] = STATE(2029), + [sym__teleport] = STATE(2029), + [sym__volt] = STATE(2029), + [sym_alpine_js] = STATE(654), + [aux_sym__directive_body] = STATE(654), + [sym_text] = STATE(654), + [sym__text] = STATE(1271), + [aux_sym_php_only_repeat1] = STATE(1271), + [sym_comment] = ACTIONS(8715), + [aux_sym_keyword_token1] = ACTIONS(8717), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8719), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8721), + [anon_sym_ATphp] = ACTIONS(8723), + [aux_sym_attribute_token1] = ACTIONS(8725), + [aux_sym__inline_directive_token1] = ACTIONS(8727), + [anon_sym_ATfragment] = ACTIONS(8729), + [anon_sym_ATsection] = ACTIONS(8731), + [anon_sym_ATonce] = ACTIONS(8733), + [anon_sym_ATverbatim] = ACTIONS(8735), + [anon_sym_ATpush] = ACTIONS(8737), + [anon_sym_ATpushOnce] = ACTIONS(8739), + [anon_sym_ATpushIf] = ACTIONS(8741), + [anon_sym_ATprepend] = ACTIONS(8743), + [anon_sym_ATprependOnce] = ACTIONS(8745), + [anon_sym_ATendPrependOnce] = ACTIONS(4699), + [anon_sym_ATif] = ACTIONS(8747), + [anon_sym_ATunless] = ACTIONS(8749), + [anon_sym_ATisset] = ACTIONS(8751), + [anon_sym_ATempty] = ACTIONS(8753), + [anon_sym_ATauth] = ACTIONS(8755), + [anon_sym_ATguest] = ACTIONS(8757), + [anon_sym_ATproduction] = ACTIONS(8759), + [anon_sym_ATenv] = ACTIONS(8761), + [anon_sym_AThasSection] = ACTIONS(8763), + [anon_sym_ATsectionMissing] = ACTIONS(8765), + [anon_sym_ATerror] = ACTIONS(8767), + [anon_sym_ATcan] = ACTIONS(8769), + [anon_sym_ATcannot] = ACTIONS(8771), + [anon_sym_ATcanany] = ACTIONS(8773), + [anon_sym_ATfeature] = ACTIONS(8775), + [aux_sym__custom_token1] = ACTIONS(8777), + [aux_sym__custom_token2] = ACTIONS(8779), + [anon_sym_ATswitch] = ACTIONS(8781), + [aux_sym_loop_operator_token1] = ACTIONS(8783), + [anon_sym_ATfor] = ACTIONS(8785), + [anon_sym_ATforeach] = ACTIONS(8787), + [anon_sym_ATforelse] = ACTIONS(8789), + [anon_sym_ATwhile] = ACTIONS(8791), + [anon_sym_ATsetup] = ACTIONS(8793), + [anon_sym_ATtask] = ACTIONS(8795), + [anon_sym_ATstory] = ACTIONS(8797), + [anon_sym_ATbefore] = ACTIONS(8799), + [anon_sym_ATafter] = ACTIONS(8801), + [anon_sym_ATsuccess] = ACTIONS(8803), + [anon_sym_ATfinished] = ACTIONS(8805), + [anon_sym_ATpersist] = ACTIONS(8807), + [anon_sym_ATteleport] = ACTIONS(8809), + [anon_sym_ATvolt] = ACTIONS(8811), + [aux_sym_alpine_js_token1] = ACTIONS(8813), + [aux_sym__text_token1] = ACTIONS(8815), + [aux_sym__text_token2] = ACTIONS(8815), + [aux_sym__text_token3] = ACTIONS(8817), }, [636] = { - [sym__definition] = STATE(631), - [sym_keyword] = STATE(631), - [sym_php_statement] = STATE(631), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(631), - [sym__inline_directive] = STATE(631), - [sym__nested_directive] = STATE(631), - [sym_fragment] = STATE(631), - [sym_section] = STATE(631), - [sym_inlineSection] = STATE(631), - [sym_once] = STATE(631), - [sym_verbatim] = STATE(631), - [sym_stack] = STATE(631), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(631), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(631), - [sym_loop] = STATE(631), - [sym_loop_operator] = STATE(631), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(631), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(631), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(631), - [sym_text] = STATE(631), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(8681), - [aux_sym_keyword_token1] = ACTIONS(4321), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), - [anon_sym_ATphp] = ACTIONS(4327), - [aux_sym_attribute_token1] = ACTIONS(4329), - [aux_sym__inline_directive_token1] = ACTIONS(4331), - [anon_sym_ATfragment] = ACTIONS(4333), - [anon_sym_ATsection] = ACTIONS(4335), - [aux_sym_section_token1] = ACTIONS(8683), - [anon_sym_ATonce] = ACTIONS(4339), - [anon_sym_ATverbatim] = ACTIONS(4341), - [anon_sym_ATpush] = ACTIONS(4343), - [anon_sym_ATpushOnce] = ACTIONS(4345), - [anon_sym_ATpushIf] = ACTIONS(4347), - [anon_sym_ATprepend] = ACTIONS(4349), - [anon_sym_ATprependOnce] = ACTIONS(4351), - [anon_sym_ATif] = ACTIONS(4353), - [anon_sym_ATunless] = ACTIONS(4355), - [anon_sym_ATisset] = ACTIONS(4357), - [anon_sym_ATempty] = ACTIONS(4359), - [anon_sym_ATauth] = ACTIONS(4361), - [anon_sym_ATguest] = ACTIONS(4363), - [anon_sym_ATproduction] = ACTIONS(4365), - [anon_sym_ATenv] = ACTIONS(4367), - [anon_sym_AThasSection] = ACTIONS(4369), - [anon_sym_ATsectionMissing] = ACTIONS(4371), - [anon_sym_ATerror] = ACTIONS(4373), - [anon_sym_ATcan] = ACTIONS(4375), - [anon_sym_ATcannot] = ACTIONS(4377), - [anon_sym_ATcanany] = ACTIONS(4379), - [anon_sym_ATfeature] = ACTIONS(4381), - [aux_sym__custom_token1] = ACTIONS(4383), - [aux_sym__custom_token2] = ACTIONS(4385), - [anon_sym_ATswitch] = ACTIONS(4387), - [aux_sym_loop_operator_token1] = ACTIONS(4389), - [anon_sym_ATfor] = ACTIONS(4391), - [anon_sym_ATforeach] = ACTIONS(4393), - [anon_sym_ATforelse] = ACTIONS(4395), - [anon_sym_ATwhile] = ACTIONS(4397), - [anon_sym_ATsetup] = ACTIONS(4399), - [anon_sym_ATtask] = ACTIONS(4401), - [anon_sym_ATstory] = ACTIONS(4403), - [anon_sym_ATbefore] = ACTIONS(4405), - [anon_sym_ATafter] = ACTIONS(4407), - [anon_sym_ATsuccess] = ACTIONS(4409), - [anon_sym_ATfinished] = ACTIONS(4411), - [anon_sym_ATpersist] = ACTIONS(4413), - [anon_sym_ATteleport] = ACTIONS(4415), - [anon_sym_ATvolt] = ACTIONS(4417), - [aux_sym__text_token1] = ACTIONS(4419), - [aux_sym__text_token2] = ACTIONS(4419), - [aux_sym__text_token3] = ACTIONS(4421), + [sym__definition] = STATE(637), + [sym_keyword] = STATE(637), + [sym_php_statement] = STATE(637), + [sym__escaped] = STATE(2699), + [sym__unescaped] = STATE(2699), + [sym__raw] = STATE(2699), + [sym__inline_raw] = STATE(2699), + [sym__multi_line_raw] = STATE(2699), + [sym_attribute] = STATE(637), + [sym__inline_directive] = STATE(637), + [sym__nested_directive] = STATE(637), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_inlineSection] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(2700), + [sym__pushOnce] = STATE(2700), + [sym__pushIf] = STATE(2700), + [sym__prepend] = STATE(2700), + [sym__prependOnce] = STATE(2700), + [sym_conditional] = STATE(637), + [sym__if] = STATE(2701), + [sym__unless] = STATE(2701), + [sym__isset] = STATE(2701), + [sym__empty] = STATE(2701), + [sym__auth] = STATE(2701), + [sym__guest] = STATE(2701), + [sym__production] = STATE(2701), + [sym__env] = STATE(2701), + [sym__hasSection] = STATE(2701), + [sym__sectionMissing] = STATE(2701), + [sym__error] = STATE(2701), + [sym_authorization] = STATE(2701), + [sym__can] = STATE(2702), + [sym__cannot] = STATE(2702), + [sym__canany] = STATE(2702), + [sym__feature] = STATE(2701), + [sym__custom] = STATE(2701), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(637), + [sym__for] = STATE(2703), + [sym__foreach] = STATE(2703), + [sym__forelse] = STATE(2703), + [sym__while] = STATE(2703), + [sym_envoy] = STATE(637), + [sym__setup] = STATE(2699), + [sym__task] = STATE(2704), + [sym__story] = STATE(2704), + [sym__hooks] = STATE(2699), + [sym__before] = STATE(2699), + [sym__after] = STATE(2699), + [sym__envoy_error] = STATE(2699), + [sym__success] = STATE(2699), + [sym__finished] = STATE(2699), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(2705), + [sym__teleport] = STATE(2705), + [sym__volt] = STATE(2705), + [sym_alpine_js] = STATE(637), + [aux_sym__directive_body] = STATE(637), + [sym_text] = STATE(637), + [sym__text] = STATE(968), + [aux_sym_php_only_repeat1] = STATE(968), + [sym_comment] = ACTIONS(8819), + [aux_sym_keyword_token1] = ACTIONS(8821), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8823), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8825), + [anon_sym_ATphp] = ACTIONS(8827), + [aux_sym_attribute_token1] = ACTIONS(8829), + [aux_sym__inline_directive_token1] = ACTIONS(8831), + [anon_sym_ATfragment] = ACTIONS(8833), + [anon_sym_ATsection] = ACTIONS(8835), + [anon_sym_ATonce] = ACTIONS(8837), + [anon_sym_ATverbatim] = ACTIONS(8839), + [anon_sym_ATpush] = ACTIONS(8841), + [anon_sym_ATpushOnce] = ACTIONS(8843), + [anon_sym_ATpushIf] = ACTIONS(8845), + [anon_sym_ATprepend] = ACTIONS(8847), + [anon_sym_ATprependOnce] = ACTIONS(8849), + [anon_sym_ATif] = ACTIONS(8851), + [anon_sym_ATunless] = ACTIONS(8853), + [anon_sym_ATisset] = ACTIONS(8855), + [anon_sym_ATempty] = ACTIONS(8857), + [anon_sym_ATauth] = ACTIONS(8859), + [anon_sym_ATguest] = ACTIONS(8861), + [anon_sym_ATproduction] = ACTIONS(8863), + [anon_sym_ATenv] = ACTIONS(8865), + [anon_sym_AThasSection] = ACTIONS(8867), + [anon_sym_ATsectionMissing] = ACTIONS(8869), + [anon_sym_ATerror] = ACTIONS(8871), + [anon_sym_ATcan] = ACTIONS(8873), + [anon_sym_ATcannot] = ACTIONS(8875), + [anon_sym_ATcanany] = ACTIONS(8877), + [anon_sym_ATfeature] = ACTIONS(8879), + [aux_sym__custom_token1] = ACTIONS(8881), + [aux_sym__custom_token2] = ACTIONS(8883), + [anon_sym_ATswitch] = ACTIONS(8885), + [aux_sym_loop_operator_token1] = ACTIONS(8887), + [anon_sym_ATfor] = ACTIONS(8889), + [anon_sym_ATforeach] = ACTIONS(8891), + [anon_sym_ATforelse] = ACTIONS(8893), + [anon_sym_ATwhile] = ACTIONS(8895), + [anon_sym_ATsetup] = ACTIONS(8897), + [anon_sym_ATtask] = ACTIONS(8899), + [anon_sym_ATstory] = ACTIONS(8901), + [anon_sym_ATbefore] = ACTIONS(8903), + [anon_sym_ATafter] = ACTIONS(8905), + [anon_sym_ATsuccess] = ACTIONS(8907), + [anon_sym_ATfinished] = ACTIONS(8909), + [anon_sym_ATpersist] = ACTIONS(8911), + [anon_sym_ATendpersist] = ACTIONS(4699), + [anon_sym_ATteleport] = ACTIONS(8913), + [anon_sym_ATvolt] = ACTIONS(8915), + [aux_sym_alpine_js_token1] = ACTIONS(8917), + [aux_sym__text_token1] = ACTIONS(8919), + [aux_sym__text_token2] = ACTIONS(8919), + [aux_sym__text_token3] = ACTIONS(8921), }, [637] = { - [sym__definition] = STATE(638), - [sym_keyword] = STATE(638), - [sym_php_statement] = STATE(638), - [sym__escaped] = STATE(2667), - [sym__unescaped] = STATE(2667), - [sym__raw] = STATE(2667), - [sym__inline_raw] = STATE(2667), - [sym__multi_line_raw] = STATE(2667), - [sym_attribute] = STATE(638), - [sym__inline_directive] = STATE(638), - [sym__nested_directive] = STATE(638), - [sym_fragment] = STATE(638), - [sym_section] = STATE(638), - [sym_inlineSection] = STATE(638), - [sym_once] = STATE(638), - [sym_verbatim] = STATE(638), - [sym_stack] = STATE(638), - [sym__push] = STATE(2668), - [sym__pushOnce] = STATE(2668), - [sym__pushIf] = STATE(2668), - [sym__prepend] = STATE(2668), - [sym__prependOnce] = STATE(2668), - [sym_conditional] = STATE(638), - [sym__if] = STATE(2669), - [sym__unless] = STATE(2669), - [sym__isset] = STATE(2669), - [sym__empty] = STATE(2669), - [sym__auth] = STATE(2669), - [sym__guest] = STATE(2669), - [sym__production] = STATE(2669), - [sym__env] = STATE(2669), - [sym__hasSection] = STATE(2669), - [sym__sectionMissing] = STATE(2669), - [sym__error] = STATE(2669), - [sym_authorization] = STATE(2669), - [sym__can] = STATE(2670), - [sym__cannot] = STATE(2670), - [sym__canany] = STATE(2670), - [sym__feature] = STATE(2669), - [sym__custom] = STATE(2669), - [sym_switch] = STATE(638), - [sym_loop] = STATE(638), - [sym_loop_operator] = STATE(638), - [sym__for] = STATE(2671), - [sym__foreach] = STATE(2671), - [sym__forelse] = STATE(2671), - [sym__while] = STATE(2671), - [sym_envoy] = STATE(638), - [sym__setup] = STATE(2667), - [sym__task] = STATE(2672), - [sym__story] = STATE(2672), - [sym__hooks] = STATE(2667), - [sym__before] = STATE(2667), - [sym__after] = STATE(2667), - [sym__envoy_error] = STATE(2667), - [sym__success] = STATE(2667), - [sym__finished] = STATE(2667), - [sym_livewire] = STATE(638), - [sym__persist] = STATE(2673), - [sym__teleport] = STATE(2673), - [sym__volt] = STATE(2673), - [aux_sym__directive_body] = STATE(638), - [sym_text] = STATE(638), - [sym__text] = STATE(972), - [aux_sym_php_only_repeat1] = STATE(972), - [sym_comment] = ACTIONS(8685), - [aux_sym_keyword_token1] = ACTIONS(8687), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8689), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8691), - [anon_sym_ATphp] = ACTIONS(8693), - [aux_sym_attribute_token1] = ACTIONS(8695), - [aux_sym__inline_directive_token1] = ACTIONS(8697), - [anon_sym_ATfragment] = ACTIONS(8699), - [anon_sym_ATsection] = ACTIONS(8701), - [anon_sym_ATonce] = ACTIONS(8703), - [anon_sym_ATverbatim] = ACTIONS(8705), - [anon_sym_ATpush] = ACTIONS(8707), - [anon_sym_ATpushOnce] = ACTIONS(8709), - [anon_sym_ATpushIf] = ACTIONS(8711), - [anon_sym_ATprepend] = ACTIONS(8713), - [anon_sym_ATprependOnce] = ACTIONS(8715), - [anon_sym_ATif] = ACTIONS(8717), - [anon_sym_ATunless] = ACTIONS(8719), - [anon_sym_ATisset] = ACTIONS(8721), - [anon_sym_ATempty] = ACTIONS(8723), - [anon_sym_ATauth] = ACTIONS(8725), - [anon_sym_ATguest] = ACTIONS(8727), - [anon_sym_ATproduction] = ACTIONS(8729), - [anon_sym_ATenv] = ACTIONS(8731), - [anon_sym_AThasSection] = ACTIONS(8733), - [anon_sym_ATsectionMissing] = ACTIONS(8735), - [anon_sym_ATerror] = ACTIONS(8737), - [anon_sym_ATcan] = ACTIONS(8739), - [anon_sym_ATcannot] = ACTIONS(8741), - [anon_sym_ATcanany] = ACTIONS(8743), - [anon_sym_ATfeature] = ACTIONS(8745), - [aux_sym__custom_token1] = ACTIONS(8747), - [aux_sym__custom_token2] = ACTIONS(8749), - [anon_sym_ATswitch] = ACTIONS(8751), - [aux_sym_loop_operator_token1] = ACTIONS(8753), - [anon_sym_ATfor] = ACTIONS(8755), - [anon_sym_ATforeach] = ACTIONS(8757), - [anon_sym_ATforelse] = ACTIONS(8759), - [anon_sym_ATwhile] = ACTIONS(8761), - [anon_sym_ATsetup] = ACTIONS(8763), - [anon_sym_ATtask] = ACTIONS(8765), - [anon_sym_ATstory] = ACTIONS(8767), - [anon_sym_ATbefore] = ACTIONS(8769), - [anon_sym_ATafter] = ACTIONS(8771), - [anon_sym_ATsuccess] = ACTIONS(8773), - [anon_sym_ATfinished] = ACTIONS(8775), - [anon_sym_ATpersist] = ACTIONS(8777), - [anon_sym_ATendpersist] = ACTIONS(4609), - [anon_sym_ATteleport] = ACTIONS(8779), - [anon_sym_ATvolt] = ACTIONS(8781), - [aux_sym__text_token1] = ACTIONS(8783), - [aux_sym__text_token2] = ACTIONS(8783), - [aux_sym__text_token3] = ACTIONS(8785), + [sym__definition] = STATE(646), + [sym_keyword] = STATE(646), + [sym_php_statement] = STATE(646), + [sym__escaped] = STATE(2699), + [sym__unescaped] = STATE(2699), + [sym__raw] = STATE(2699), + [sym__inline_raw] = STATE(2699), + [sym__multi_line_raw] = STATE(2699), + [sym_attribute] = STATE(646), + [sym__inline_directive] = STATE(646), + [sym__nested_directive] = STATE(646), + [sym_fragment] = STATE(646), + [sym_section] = STATE(646), + [sym_inlineSection] = STATE(646), + [sym_once] = STATE(646), + [sym_verbatim] = STATE(646), + [sym_stack] = STATE(646), + [sym__push] = STATE(2700), + [sym__pushOnce] = STATE(2700), + [sym__pushIf] = STATE(2700), + [sym__prepend] = STATE(2700), + [sym__prependOnce] = STATE(2700), + [sym_conditional] = STATE(646), + [sym__if] = STATE(2701), + [sym__unless] = STATE(2701), + [sym__isset] = STATE(2701), + [sym__empty] = STATE(2701), + [sym__auth] = STATE(2701), + [sym__guest] = STATE(2701), + [sym__production] = STATE(2701), + [sym__env] = STATE(2701), + [sym__hasSection] = STATE(2701), + [sym__sectionMissing] = STATE(2701), + [sym__error] = STATE(2701), + [sym_authorization] = STATE(2701), + [sym__can] = STATE(2702), + [sym__cannot] = STATE(2702), + [sym__canany] = STATE(2702), + [sym__feature] = STATE(2701), + [sym__custom] = STATE(2701), + [sym_switch] = STATE(646), + [sym_loop] = STATE(646), + [sym_loop_operator] = STATE(646), + [sym__for] = STATE(2703), + [sym__foreach] = STATE(2703), + [sym__forelse] = STATE(2703), + [sym__while] = STATE(2703), + [sym_envoy] = STATE(646), + [sym__setup] = STATE(2699), + [sym__task] = STATE(2704), + [sym__story] = STATE(2704), + [sym__hooks] = STATE(2699), + [sym__before] = STATE(2699), + [sym__after] = STATE(2699), + [sym__envoy_error] = STATE(2699), + [sym__success] = STATE(2699), + [sym__finished] = STATE(2699), + [sym_livewire] = STATE(646), + [sym__persist] = STATE(2705), + [sym__teleport] = STATE(2705), + [sym__volt] = STATE(2705), + [sym_alpine_js] = STATE(646), + [aux_sym__directive_body] = STATE(646), + [sym_text] = STATE(646), + [sym__text] = STATE(968), + [aux_sym_php_only_repeat1] = STATE(968), + [sym_comment] = ACTIONS(8923), + [aux_sym_keyword_token1] = ACTIONS(8821), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8823), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8825), + [anon_sym_ATphp] = ACTIONS(8827), + [aux_sym_attribute_token1] = ACTIONS(8829), + [aux_sym__inline_directive_token1] = ACTIONS(8831), + [anon_sym_ATfragment] = ACTIONS(8833), + [anon_sym_ATsection] = ACTIONS(8835), + [anon_sym_ATonce] = ACTIONS(8837), + [anon_sym_ATverbatim] = ACTIONS(8839), + [anon_sym_ATpush] = ACTIONS(8841), + [anon_sym_ATpushOnce] = ACTIONS(8843), + [anon_sym_ATpushIf] = ACTIONS(8845), + [anon_sym_ATprepend] = ACTIONS(8847), + [anon_sym_ATprependOnce] = ACTIONS(8849), + [anon_sym_ATif] = ACTIONS(8851), + [anon_sym_ATunless] = ACTIONS(8853), + [anon_sym_ATisset] = ACTIONS(8855), + [anon_sym_ATempty] = ACTIONS(8857), + [anon_sym_ATauth] = ACTIONS(8859), + [anon_sym_ATguest] = ACTIONS(8861), + [anon_sym_ATproduction] = ACTIONS(8863), + [anon_sym_ATenv] = ACTIONS(8865), + [anon_sym_AThasSection] = ACTIONS(8867), + [anon_sym_ATsectionMissing] = ACTIONS(8869), + [anon_sym_ATerror] = ACTIONS(8871), + [anon_sym_ATcan] = ACTIONS(8873), + [anon_sym_ATcannot] = ACTIONS(8875), + [anon_sym_ATcanany] = ACTIONS(8877), + [anon_sym_ATfeature] = ACTIONS(8879), + [aux_sym__custom_token1] = ACTIONS(8881), + [aux_sym__custom_token2] = ACTIONS(8883), + [anon_sym_ATswitch] = ACTIONS(8885), + [aux_sym_loop_operator_token1] = ACTIONS(8887), + [anon_sym_ATfor] = ACTIONS(8889), + [anon_sym_ATforeach] = ACTIONS(8891), + [anon_sym_ATforelse] = ACTIONS(8893), + [anon_sym_ATwhile] = ACTIONS(8895), + [anon_sym_ATsetup] = ACTIONS(8897), + [anon_sym_ATtask] = ACTIONS(8899), + [anon_sym_ATstory] = ACTIONS(8901), + [anon_sym_ATbefore] = ACTIONS(8903), + [anon_sym_ATafter] = ACTIONS(8905), + [anon_sym_ATsuccess] = ACTIONS(8907), + [anon_sym_ATfinished] = ACTIONS(8909), + [anon_sym_ATpersist] = ACTIONS(8911), + [anon_sym_ATendpersist] = ACTIONS(4859), + [anon_sym_ATteleport] = ACTIONS(8913), + [anon_sym_ATvolt] = ACTIONS(8915), + [aux_sym_alpine_js_token1] = ACTIONS(8917), + [aux_sym__text_token1] = ACTIONS(8919), + [aux_sym__text_token2] = ACTIONS(8919), + [aux_sym__text_token3] = ACTIONS(8921), }, [638] = { - [sym__definition] = STATE(647), - [sym_keyword] = STATE(647), - [sym_php_statement] = STATE(647), - [sym__escaped] = STATE(2667), - [sym__unescaped] = STATE(2667), - [sym__raw] = STATE(2667), - [sym__inline_raw] = STATE(2667), - [sym__multi_line_raw] = STATE(2667), - [sym_attribute] = STATE(647), - [sym__inline_directive] = STATE(647), - [sym__nested_directive] = STATE(647), - [sym_fragment] = STATE(647), - [sym_section] = STATE(647), - [sym_inlineSection] = STATE(647), - [sym_once] = STATE(647), - [sym_verbatim] = STATE(647), - [sym_stack] = STATE(647), - [sym__push] = STATE(2668), - [sym__pushOnce] = STATE(2668), - [sym__pushIf] = STATE(2668), - [sym__prepend] = STATE(2668), - [sym__prependOnce] = STATE(2668), - [sym_conditional] = STATE(647), - [sym__if] = STATE(2669), - [sym__unless] = STATE(2669), - [sym__isset] = STATE(2669), - [sym__empty] = STATE(2669), - [sym__auth] = STATE(2669), - [sym__guest] = STATE(2669), - [sym__production] = STATE(2669), - [sym__env] = STATE(2669), - [sym__hasSection] = STATE(2669), - [sym__sectionMissing] = STATE(2669), - [sym__error] = STATE(2669), - [sym_authorization] = STATE(2669), - [sym__can] = STATE(2670), - [sym__cannot] = STATE(2670), - [sym__canany] = STATE(2670), - [sym__feature] = STATE(2669), - [sym__custom] = STATE(2669), - [sym_switch] = STATE(647), - [sym_loop] = STATE(647), - [sym_loop_operator] = STATE(647), - [sym__for] = STATE(2671), - [sym__foreach] = STATE(2671), - [sym__forelse] = STATE(2671), - [sym__while] = STATE(2671), - [sym_envoy] = STATE(647), - [sym__setup] = STATE(2667), - [sym__task] = STATE(2672), - [sym__story] = STATE(2672), - [sym__hooks] = STATE(2667), - [sym__before] = STATE(2667), - [sym__after] = STATE(2667), - [sym__envoy_error] = STATE(2667), - [sym__success] = STATE(2667), - [sym__finished] = STATE(2667), - [sym_livewire] = STATE(647), - [sym__persist] = STATE(2673), - [sym__teleport] = STATE(2673), - [sym__volt] = STATE(2673), - [aux_sym__directive_body] = STATE(647), - [sym_text] = STATE(647), - [sym__text] = STATE(972), - [aux_sym_php_only_repeat1] = STATE(972), - [sym_comment] = ACTIONS(8787), - [aux_sym_keyword_token1] = ACTIONS(8687), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8689), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8691), - [anon_sym_ATphp] = ACTIONS(8693), - [aux_sym_attribute_token1] = ACTIONS(8695), - [aux_sym__inline_directive_token1] = ACTIONS(8697), - [anon_sym_ATfragment] = ACTIONS(8699), - [anon_sym_ATsection] = ACTIONS(8701), - [anon_sym_ATonce] = ACTIONS(8703), - [anon_sym_ATverbatim] = ACTIONS(8705), - [anon_sym_ATpush] = ACTIONS(8707), - [anon_sym_ATpushOnce] = ACTIONS(8709), - [anon_sym_ATpushIf] = ACTIONS(8711), - [anon_sym_ATprepend] = ACTIONS(8713), - [anon_sym_ATprependOnce] = ACTIONS(8715), - [anon_sym_ATif] = ACTIONS(8717), - [anon_sym_ATunless] = ACTIONS(8719), - [anon_sym_ATisset] = ACTIONS(8721), - [anon_sym_ATempty] = ACTIONS(8723), - [anon_sym_ATauth] = ACTIONS(8725), - [anon_sym_ATguest] = ACTIONS(8727), - [anon_sym_ATproduction] = ACTIONS(8729), - [anon_sym_ATenv] = ACTIONS(8731), - [anon_sym_AThasSection] = ACTIONS(8733), - [anon_sym_ATsectionMissing] = ACTIONS(8735), - [anon_sym_ATerror] = ACTIONS(8737), - [anon_sym_ATcan] = ACTIONS(8739), - [anon_sym_ATcannot] = ACTIONS(8741), - [anon_sym_ATcanany] = ACTIONS(8743), - [anon_sym_ATfeature] = ACTIONS(8745), - [aux_sym__custom_token1] = ACTIONS(8747), - [aux_sym__custom_token2] = ACTIONS(8749), - [anon_sym_ATswitch] = ACTIONS(8751), - [aux_sym_loop_operator_token1] = ACTIONS(8753), - [anon_sym_ATfor] = ACTIONS(8755), - [anon_sym_ATforeach] = ACTIONS(8757), - [anon_sym_ATforelse] = ACTIONS(8759), - [anon_sym_ATwhile] = ACTIONS(8761), - [anon_sym_ATsetup] = ACTIONS(8763), - [anon_sym_ATtask] = ACTIONS(8765), - [anon_sym_ATstory] = ACTIONS(8767), - [anon_sym_ATbefore] = ACTIONS(8769), - [anon_sym_ATafter] = ACTIONS(8771), - [anon_sym_ATsuccess] = ACTIONS(8773), - [anon_sym_ATfinished] = ACTIONS(8775), - [anon_sym_ATpersist] = ACTIONS(8777), - [anon_sym_ATendpersist] = ACTIONS(4996), - [anon_sym_ATteleport] = ACTIONS(8779), - [anon_sym_ATvolt] = ACTIONS(8781), - [aux_sym__text_token1] = ACTIONS(8783), - [aux_sym__text_token2] = ACTIONS(8783), - [aux_sym__text_token3] = ACTIONS(8785), + [sym__definition] = STATE(450), + [sym_keyword] = STATE(450), + [sym_php_statement] = STATE(450), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(450), + [sym__inline_directive] = STATE(450), + [sym__nested_directive] = STATE(450), + [sym_fragment] = STATE(450), + [sym_section] = STATE(450), + [sym_inlineSection] = STATE(450), + [sym_once] = STATE(450), + [sym_verbatim] = STATE(450), + [sym_stack] = STATE(450), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(450), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(450), + [sym_loop] = STATE(450), + [sym_loop_operator] = STATE(450), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(450), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(450), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(450), + [aux_sym__directive_body] = STATE(450), + [sym_text] = STATE(450), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(8925), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(8927), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [639] = { [sym__definition] = STATE(639), [sym_keyword] = STATE(639), [sym_php_statement] = STATE(639), - [sym__escaped] = STATE(2503), - [sym__unescaped] = STATE(2503), - [sym__raw] = STATE(2503), - [sym__inline_raw] = STATE(2503), - [sym__multi_line_raw] = STATE(2503), + [sym__escaped] = STATE(2533), + [sym__unescaped] = STATE(2533), + [sym__raw] = STATE(2533), + [sym__inline_raw] = STATE(2533), + [sym__multi_line_raw] = STATE(2533), [sym_attribute] = STATE(639), [sym__inline_directive] = STATE(639), [sym__nested_directive] = STATE(639), @@ -102847,117 +104597,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(639), [sym_verbatim] = STATE(639), [sym_stack] = STATE(639), - [sym__push] = STATE(2504), - [sym__pushOnce] = STATE(2504), - [sym__pushIf] = STATE(2504), - [sym__prepend] = STATE(2504), - [sym__prependOnce] = STATE(2504), + [sym__push] = STATE(2534), + [sym__pushOnce] = STATE(2534), + [sym__pushIf] = STATE(2534), + [sym__prepend] = STATE(2534), + [sym__prependOnce] = STATE(2534), [sym_conditional] = STATE(639), - [sym__if] = STATE(2505), - [sym__unless] = STATE(2505), - [sym__isset] = STATE(2505), - [sym__empty] = STATE(2505), - [sym__auth] = STATE(2505), - [sym__guest] = STATE(2505), - [sym__production] = STATE(2505), - [sym__env] = STATE(2505), - [sym__hasSection] = STATE(2505), - [sym__sectionMissing] = STATE(2505), - [sym__error] = STATE(2505), - [sym_authorization] = STATE(2505), - [sym__can] = STATE(2506), - [sym__cannot] = STATE(2506), - [sym__canany] = STATE(2506), - [sym__feature] = STATE(2505), - [sym__custom] = STATE(2505), + [sym__if] = STATE(2535), + [sym__unless] = STATE(2535), + [sym__isset] = STATE(2535), + [sym__empty] = STATE(2535), + [sym__auth] = STATE(2535), + [sym__guest] = STATE(2535), + [sym__production] = STATE(2535), + [sym__env] = STATE(2535), + [sym__hasSection] = STATE(2535), + [sym__sectionMissing] = STATE(2535), + [sym__error] = STATE(2535), + [sym_authorization] = STATE(2535), + [sym__can] = STATE(2536), + [sym__cannot] = STATE(2536), + [sym__canany] = STATE(2536), + [sym__feature] = STATE(2535), + [sym__custom] = STATE(2535), [sym_switch] = STATE(639), [sym_loop] = STATE(639), [sym_loop_operator] = STATE(639), - [sym__for] = STATE(2507), - [sym__foreach] = STATE(2507), - [sym__forelse] = STATE(2507), - [sym__while] = STATE(2507), + [sym__for] = STATE(2537), + [sym__foreach] = STATE(2537), + [sym__forelse] = STATE(2537), + [sym__while] = STATE(2537), [sym_envoy] = STATE(639), - [sym__setup] = STATE(2503), - [sym__task] = STATE(2508), - [sym__story] = STATE(2508), - [sym__hooks] = STATE(2503), - [sym__before] = STATE(2503), - [sym__after] = STATE(2503), - [sym__envoy_error] = STATE(2503), - [sym__success] = STATE(2503), - [sym__finished] = STATE(2503), + [sym__setup] = STATE(2533), + [sym__task] = STATE(2538), + [sym__story] = STATE(2538), + [sym__hooks] = STATE(2533), + [sym__before] = STATE(2533), + [sym__after] = STATE(2533), + [sym__envoy_error] = STATE(2533), + [sym__success] = STATE(2533), + [sym__finished] = STATE(2533), [sym_livewire] = STATE(639), - [sym__persist] = STATE(2509), - [sym__teleport] = STATE(2509), - [sym__volt] = STATE(2509), + [sym__persist] = STATE(2539), + [sym__teleport] = STATE(2539), + [sym__volt] = STATE(2539), + [sym_alpine_js] = STATE(639), [aux_sym__directive_body] = STATE(639), [sym_text] = STATE(639), - [sym__text] = STATE(982), - [aux_sym_php_only_repeat1] = STATE(982), - [sym_comment] = ACTIONS(8789), - [aux_sym_keyword_token1] = ACTIONS(8792), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8795), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8798), - [anon_sym_ATphp] = ACTIONS(8801), - [aux_sym_attribute_token1] = ACTIONS(8804), - [aux_sym__inline_directive_token1] = ACTIONS(8807), - [anon_sym_ATfragment] = ACTIONS(8810), - [anon_sym_ATsection] = ACTIONS(8813), - [anon_sym_ATonce] = ACTIONS(8816), - [anon_sym_ATverbatim] = ACTIONS(8819), - [anon_sym_ATpush] = ACTIONS(8822), - [anon_sym_ATpushOnce] = ACTIONS(8825), - [anon_sym_ATpushIf] = ACTIONS(8828), - [anon_sym_ATprepend] = ACTIONS(8831), - [anon_sym_ATprependOnce] = ACTIONS(8834), - [anon_sym_ATif] = ACTIONS(8837), - [anon_sym_ATunless] = ACTIONS(8840), - [anon_sym_ATisset] = ACTIONS(8843), - [anon_sym_ATempty] = ACTIONS(8846), - [anon_sym_ATauth] = ACTIONS(8849), - [anon_sym_ATguest] = ACTIONS(8852), - [anon_sym_ATproduction] = ACTIONS(8855), - [anon_sym_ATenv] = ACTIONS(8858), - [anon_sym_AThasSection] = ACTIONS(8861), - [anon_sym_ATsectionMissing] = ACTIONS(8864), - [anon_sym_ATerror] = ACTIONS(8867), - [anon_sym_ATcan] = ACTIONS(8870), - [anon_sym_ATcannot] = ACTIONS(8873), - [anon_sym_ATcanany] = ACTIONS(8876), - [anon_sym_ATfeature] = ACTIONS(8879), - [aux_sym__custom_token1] = ACTIONS(8882), - [aux_sym__custom_token2] = ACTIONS(8885), - [anon_sym_ATswitch] = ACTIONS(8888), - [aux_sym_loop_operator_token1] = ACTIONS(8891), - [anon_sym_ATfor] = ACTIONS(8894), - [anon_sym_ATforeach] = ACTIONS(8897), - [anon_sym_ATforelse] = ACTIONS(8900), - [anon_sym_ATwhile] = ACTIONS(8903), - [anon_sym_ATsetup] = ACTIONS(8906), - [anon_sym_ATtask] = ACTIONS(8909), - [anon_sym_ATendtask] = ACTIONS(5035), - [anon_sym_ATstory] = ACTIONS(8912), - [anon_sym_ATbefore] = ACTIONS(8915), - [anon_sym_ATafter] = ACTIONS(8918), - [anon_sym_ATsuccess] = ACTIONS(8921), - [anon_sym_ATfinished] = ACTIONS(8924), - [anon_sym_ATpersist] = ACTIONS(8927), - [anon_sym_ATteleport] = ACTIONS(8930), - [anon_sym_ATvolt] = ACTIONS(8933), - [aux_sym__text_token1] = ACTIONS(8936), - [aux_sym__text_token2] = ACTIONS(8936), - [aux_sym__text_token3] = ACTIONS(8939), + [sym__text] = STATE(976), + [aux_sym_php_only_repeat1] = STATE(976), + [sym_comment] = ACTIONS(8929), + [aux_sym_keyword_token1] = ACTIONS(8932), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8935), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8938), + [anon_sym_ATphp] = ACTIONS(8941), + [aux_sym_attribute_token1] = ACTIONS(8944), + [aux_sym__inline_directive_token1] = ACTIONS(8947), + [anon_sym_ATfragment] = ACTIONS(8950), + [anon_sym_ATsection] = ACTIONS(8953), + [anon_sym_ATonce] = ACTIONS(8956), + [anon_sym_ATverbatim] = ACTIONS(8959), + [anon_sym_ATpush] = ACTIONS(8962), + [anon_sym_ATpushOnce] = ACTIONS(8965), + [anon_sym_ATpushIf] = ACTIONS(8968), + [anon_sym_ATprepend] = ACTIONS(8971), + [anon_sym_ATprependOnce] = ACTIONS(8974), + [anon_sym_ATif] = ACTIONS(8977), + [anon_sym_ATunless] = ACTIONS(8980), + [anon_sym_ATisset] = ACTIONS(8983), + [anon_sym_ATempty] = ACTIONS(8986), + [anon_sym_ATauth] = ACTIONS(8989), + [anon_sym_ATguest] = ACTIONS(8992), + [anon_sym_ATproduction] = ACTIONS(8995), + [anon_sym_ATenv] = ACTIONS(8998), + [anon_sym_AThasSection] = ACTIONS(9001), + [anon_sym_ATsectionMissing] = ACTIONS(9004), + [anon_sym_ATerror] = ACTIONS(9007), + [anon_sym_ATcan] = ACTIONS(9010), + [anon_sym_ATcannot] = ACTIONS(9013), + [anon_sym_ATcanany] = ACTIONS(9016), + [anon_sym_ATfeature] = ACTIONS(9019), + [aux_sym__custom_token1] = ACTIONS(9022), + [aux_sym__custom_token2] = ACTIONS(9025), + [anon_sym_ATswitch] = ACTIONS(9028), + [aux_sym_loop_operator_token1] = ACTIONS(9031), + [anon_sym_ATfor] = ACTIONS(9034), + [anon_sym_ATforeach] = ACTIONS(9037), + [anon_sym_ATforelse] = ACTIONS(9040), + [anon_sym_ATwhile] = ACTIONS(9043), + [anon_sym_ATsetup] = ACTIONS(9046), + [anon_sym_ATtask] = ACTIONS(9049), + [anon_sym_ATendtask] = ACTIONS(5134), + [anon_sym_ATstory] = ACTIONS(9052), + [anon_sym_ATbefore] = ACTIONS(9055), + [anon_sym_ATafter] = ACTIONS(9058), + [anon_sym_ATsuccess] = ACTIONS(9061), + [anon_sym_ATfinished] = ACTIONS(9064), + [anon_sym_ATpersist] = ACTIONS(9067), + [anon_sym_ATteleport] = ACTIONS(9070), + [anon_sym_ATvolt] = ACTIONS(9073), + [aux_sym_alpine_js_token1] = ACTIONS(9076), + [aux_sym__text_token1] = ACTIONS(9079), + [aux_sym__text_token2] = ACTIONS(9079), + [aux_sym__text_token3] = ACTIONS(9082), }, [640] = { [sym__definition] = STATE(640), [sym_keyword] = STATE(640), [sym_php_statement] = STATE(640), - [sym__escaped] = STATE(1938), - [sym__unescaped] = STATE(1938), - [sym__raw] = STATE(1938), - [sym__inline_raw] = STATE(1938), - [sym__multi_line_raw] = STATE(1938), + [sym__escaped] = STATE(3487), + [sym__unescaped] = STATE(3487), + [sym__raw] = STATE(3487), + [sym__inline_raw] = STATE(3487), + [sym__multi_line_raw] = STATE(3487), [sym_attribute] = STATE(640), [sym__inline_directive] = STATE(640), [sym__nested_directive] = STATE(640), @@ -102967,117 +104719,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(640), [sym_verbatim] = STATE(640), [sym_stack] = STATE(640), - [sym__push] = STATE(1939), - [sym__pushOnce] = STATE(1939), - [sym__pushIf] = STATE(1939), - [sym__prepend] = STATE(1939), - [sym__prependOnce] = STATE(1939), + [sym__push] = STATE(3483), + [sym__pushOnce] = STATE(3483), + [sym__pushIf] = STATE(3483), + [sym__prepend] = STATE(3483), + [sym__prependOnce] = STATE(3483), [sym_conditional] = STATE(640), - [sym__if] = STATE(1940), - [sym__unless] = STATE(1940), - [sym__isset] = STATE(1940), - [sym__empty] = STATE(1940), - [sym__auth] = STATE(1940), - [sym__guest] = STATE(1940), - [sym__production] = STATE(1940), - [sym__env] = STATE(1940), - [sym__hasSection] = STATE(1940), - [sym__sectionMissing] = STATE(1940), - [sym__error] = STATE(1940), - [sym_authorization] = STATE(1940), - [sym__can] = STATE(2000), - [sym__cannot] = STATE(2000), - [sym__canany] = STATE(2000), - [sym__feature] = STATE(1940), - [sym__custom] = STATE(1940), + [sym__if] = STATE(3482), + [sym__unless] = STATE(3482), + [sym__isset] = STATE(3482), + [sym__empty] = STATE(3482), + [sym__auth] = STATE(3482), + [sym__guest] = STATE(3482), + [sym__production] = STATE(3482), + [sym__env] = STATE(3482), + [sym__hasSection] = STATE(3482), + [sym__sectionMissing] = STATE(3482), + [sym__error] = STATE(3482), + [sym_authorization] = STATE(3482), + [sym__can] = STATE(3478), + [sym__cannot] = STATE(3478), + [sym__canany] = STATE(3478), + [sym__feature] = STATE(3482), + [sym__custom] = STATE(3482), [sym_switch] = STATE(640), [sym_loop] = STATE(640), [sym_loop_operator] = STATE(640), - [sym__for] = STATE(2077), - [sym__foreach] = STATE(2077), - [sym__forelse] = STATE(2077), - [sym__while] = STATE(2077), + [sym__for] = STATE(3477), + [sym__foreach] = STATE(3477), + [sym__forelse] = STATE(3477), + [sym__while] = STATE(3477), [sym_envoy] = STATE(640), - [sym__setup] = STATE(1938), - [sym__task] = STATE(2085), - [sym__story] = STATE(2085), - [sym__hooks] = STATE(1938), - [sym__before] = STATE(1938), - [sym__after] = STATE(1938), - [sym__envoy_error] = STATE(1938), - [sym__success] = STATE(1938), - [sym__finished] = STATE(1938), + [sym__setup] = STATE(3487), + [sym__task] = STATE(3408), + [sym__story] = STATE(3408), + [sym__hooks] = STATE(3487), + [sym__before] = STATE(3487), + [sym__after] = STATE(3487), + [sym__envoy_error] = STATE(3487), + [sym__success] = STATE(3487), + [sym__finished] = STATE(3487), [sym_livewire] = STATE(640), - [sym__persist] = STATE(3158), - [sym__teleport] = STATE(3158), - [sym__volt] = STATE(3158), + [sym__persist] = STATE(3459), + [sym__teleport] = STATE(3459), + [sym__volt] = STATE(3459), + [sym_alpine_js] = STATE(640), [sym_text] = STATE(640), [sym__text] = STATE(752), [aux_sym_blade_repeat1] = STATE(640), [aux_sym_php_only_repeat1] = STATE(752), - [ts_builtin_sym_end] = ACTIONS(4919), - [sym_comment] = ACTIONS(8942), - [aux_sym_keyword_token1] = ACTIONS(8945), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8948), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8951), - [anon_sym_ATphp] = ACTIONS(8954), - [aux_sym_attribute_token1] = ACTIONS(8957), - [aux_sym__inline_directive_token1] = ACTIONS(8960), - [anon_sym_ATfragment] = ACTIONS(8963), - [anon_sym_ATsection] = ACTIONS(8966), - [anon_sym_ATonce] = ACTIONS(8969), - [anon_sym_ATverbatim] = ACTIONS(8972), - [anon_sym_ATpush] = ACTIONS(8975), - [anon_sym_ATpushOnce] = ACTIONS(8978), - [anon_sym_ATpushIf] = ACTIONS(8981), - [anon_sym_ATprepend] = ACTIONS(8984), - [anon_sym_ATprependOnce] = ACTIONS(8987), - [anon_sym_ATif] = ACTIONS(8990), - [anon_sym_ATunless] = ACTIONS(8993), - [anon_sym_ATisset] = ACTIONS(8996), - [anon_sym_ATempty] = ACTIONS(8999), - [anon_sym_ATauth] = ACTIONS(9002), - [anon_sym_ATguest] = ACTIONS(9005), - [anon_sym_ATproduction] = ACTIONS(9008), - [anon_sym_ATenv] = ACTIONS(9011), - [anon_sym_AThasSection] = ACTIONS(9014), - [anon_sym_ATsectionMissing] = ACTIONS(9017), - [anon_sym_ATerror] = ACTIONS(9020), - [anon_sym_ATcan] = ACTIONS(9023), - [anon_sym_ATcannot] = ACTIONS(9026), - [anon_sym_ATcanany] = ACTIONS(9029), - [anon_sym_ATfeature] = ACTIONS(9032), - [aux_sym__custom_token1] = ACTIONS(9035), - [aux_sym__custom_token2] = ACTIONS(9038), - [anon_sym_ATswitch] = ACTIONS(9041), - [aux_sym_loop_operator_token1] = ACTIONS(9044), - [anon_sym_ATfor] = ACTIONS(9047), - [anon_sym_ATforeach] = ACTIONS(9050), - [anon_sym_ATforelse] = ACTIONS(9053), - [anon_sym_ATwhile] = ACTIONS(9056), - [anon_sym_ATsetup] = ACTIONS(9059), - [anon_sym_ATtask] = ACTIONS(9062), - [anon_sym_ATstory] = ACTIONS(9065), - [anon_sym_ATbefore] = ACTIONS(9068), - [anon_sym_ATafter] = ACTIONS(9071), - [anon_sym_ATsuccess] = ACTIONS(9074), - [anon_sym_ATfinished] = ACTIONS(9077), - [anon_sym_ATpersist] = ACTIONS(9080), - [anon_sym_ATteleport] = ACTIONS(9083), - [anon_sym_ATvolt] = ACTIONS(9086), - [aux_sym__text_token1] = ACTIONS(9089), - [aux_sym__text_token2] = ACTIONS(9089), - [aux_sym__text_token3] = ACTIONS(9092), + [ts_builtin_sym_end] = ACTIONS(5013), + [sym_comment] = ACTIONS(9085), + [aux_sym_keyword_token1] = ACTIONS(9088), + [anon_sym_LBRACE_LBRACE] = ACTIONS(9091), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9094), + [anon_sym_ATphp] = ACTIONS(9097), + [aux_sym_attribute_token1] = ACTIONS(9100), + [aux_sym__inline_directive_token1] = ACTIONS(9103), + [anon_sym_ATfragment] = ACTIONS(9106), + [anon_sym_ATsection] = ACTIONS(9109), + [anon_sym_ATonce] = ACTIONS(9112), + [anon_sym_ATverbatim] = ACTIONS(9115), + [anon_sym_ATpush] = ACTIONS(9118), + [anon_sym_ATpushOnce] = ACTIONS(9121), + [anon_sym_ATpushIf] = ACTIONS(9124), + [anon_sym_ATprepend] = ACTIONS(9127), + [anon_sym_ATprependOnce] = ACTIONS(9130), + [anon_sym_ATif] = ACTIONS(9133), + [anon_sym_ATunless] = ACTIONS(9136), + [anon_sym_ATisset] = ACTIONS(9139), + [anon_sym_ATempty] = ACTIONS(9142), + [anon_sym_ATauth] = ACTIONS(9145), + [anon_sym_ATguest] = ACTIONS(9148), + [anon_sym_ATproduction] = ACTIONS(9151), + [anon_sym_ATenv] = ACTIONS(9154), + [anon_sym_AThasSection] = ACTIONS(9157), + [anon_sym_ATsectionMissing] = ACTIONS(9160), + [anon_sym_ATerror] = ACTIONS(9163), + [anon_sym_ATcan] = ACTIONS(9166), + [anon_sym_ATcannot] = ACTIONS(9169), + [anon_sym_ATcanany] = ACTIONS(9172), + [anon_sym_ATfeature] = ACTIONS(9175), + [aux_sym__custom_token1] = ACTIONS(9178), + [aux_sym__custom_token2] = ACTIONS(9181), + [anon_sym_ATswitch] = ACTIONS(9184), + [aux_sym_loop_operator_token1] = ACTIONS(9187), + [anon_sym_ATfor] = ACTIONS(9190), + [anon_sym_ATforeach] = ACTIONS(9193), + [anon_sym_ATforelse] = ACTIONS(9196), + [anon_sym_ATwhile] = ACTIONS(9199), + [anon_sym_ATsetup] = ACTIONS(9202), + [anon_sym_ATtask] = ACTIONS(9205), + [anon_sym_ATstory] = ACTIONS(9208), + [anon_sym_ATbefore] = ACTIONS(9211), + [anon_sym_ATafter] = ACTIONS(9214), + [anon_sym_ATsuccess] = ACTIONS(9217), + [anon_sym_ATfinished] = ACTIONS(9220), + [anon_sym_ATpersist] = ACTIONS(9223), + [anon_sym_ATteleport] = ACTIONS(9226), + [anon_sym_ATvolt] = ACTIONS(9229), + [aux_sym_alpine_js_token1] = ACTIONS(9232), + [aux_sym__text_token1] = ACTIONS(9235), + [aux_sym__text_token2] = ACTIONS(9235), + [aux_sym__text_token3] = ACTIONS(9238), }, [641] = { [sym__definition] = STATE(642), [sym_keyword] = STATE(642), [sym_php_statement] = STATE(642), - [sym__escaped] = STATE(2749), - [sym__unescaped] = STATE(2749), - [sym__raw] = STATE(2749), - [sym__inline_raw] = STATE(2749), - [sym__multi_line_raw] = STATE(2749), + [sym__escaped] = STATE(2782), + [sym__unescaped] = STATE(2782), + [sym__raw] = STATE(2782), + [sym__inline_raw] = STATE(2782), + [sym__multi_line_raw] = STATE(2782), [sym_attribute] = STATE(642), [sym__inline_directive] = STATE(642), [sym__nested_directive] = STATE(642), @@ -103087,237 +104841,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(642), [sym_verbatim] = STATE(642), [sym_stack] = STATE(642), - [sym__push] = STATE(2750), - [sym__pushOnce] = STATE(2750), - [sym__pushIf] = STATE(2750), - [sym__prepend] = STATE(2750), - [sym__prependOnce] = STATE(2750), + [sym__push] = STATE(2783), + [sym__pushOnce] = STATE(2783), + [sym__pushIf] = STATE(2783), + [sym__prepend] = STATE(2783), + [sym__prependOnce] = STATE(2783), [sym_conditional] = STATE(642), - [sym__if] = STATE(2751), - [sym__unless] = STATE(2751), - [sym__isset] = STATE(2751), - [sym__empty] = STATE(2751), - [sym__auth] = STATE(2751), - [sym__guest] = STATE(2751), - [sym__production] = STATE(2751), - [sym__env] = STATE(2751), - [sym__hasSection] = STATE(2751), - [sym__sectionMissing] = STATE(2751), - [sym__error] = STATE(2751), - [sym_authorization] = STATE(2751), - [sym__can] = STATE(2752), - [sym__cannot] = STATE(2752), - [sym__canany] = STATE(2752), - [sym__feature] = STATE(2751), - [sym__custom] = STATE(2751), + [sym__if] = STATE(2784), + [sym__unless] = STATE(2784), + [sym__isset] = STATE(2784), + [sym__empty] = STATE(2784), + [sym__auth] = STATE(2784), + [sym__guest] = STATE(2784), + [sym__production] = STATE(2784), + [sym__env] = STATE(2784), + [sym__hasSection] = STATE(2784), + [sym__sectionMissing] = STATE(2784), + [sym__error] = STATE(2784), + [sym_authorization] = STATE(2784), + [sym__can] = STATE(2785), + [sym__cannot] = STATE(2785), + [sym__canany] = STATE(2785), + [sym__feature] = STATE(2784), + [sym__custom] = STATE(2784), [sym_switch] = STATE(642), [sym_loop] = STATE(642), [sym_loop_operator] = STATE(642), - [sym__for] = STATE(2753), - [sym__foreach] = STATE(2753), - [sym__forelse] = STATE(2753), - [sym__while] = STATE(2753), + [sym__for] = STATE(2786), + [sym__foreach] = STATE(2786), + [sym__forelse] = STATE(2786), + [sym__while] = STATE(2786), [sym_envoy] = STATE(642), - [sym__setup] = STATE(2749), - [sym__task] = STATE(2754), - [sym__story] = STATE(2754), - [sym__hooks] = STATE(2749), - [sym__before] = STATE(2749), - [sym__after] = STATE(2749), - [sym__envoy_error] = STATE(2749), - [sym__success] = STATE(2749), - [sym__finished] = STATE(2749), + [sym__setup] = STATE(2782), + [sym__task] = STATE(2787), + [sym__story] = STATE(2787), + [sym__hooks] = STATE(2782), + [sym__before] = STATE(2782), + [sym__after] = STATE(2782), + [sym__envoy_error] = STATE(2782), + [sym__success] = STATE(2782), + [sym__finished] = STATE(2782), [sym_livewire] = STATE(642), - [sym__persist] = STATE(2755), - [sym__teleport] = STATE(2755), - [sym__volt] = STATE(2755), + [sym__persist] = STATE(2788), + [sym__teleport] = STATE(2788), + [sym__volt] = STATE(2788), + [sym_alpine_js] = STATE(642), [aux_sym__directive_body] = STATE(642), [sym_text] = STATE(642), - [sym__text] = STATE(968), - [aux_sym_php_only_repeat1] = STATE(968), - [sym_comment] = ACTIONS(9095), - [aux_sym_keyword_token1] = ACTIONS(9097), - [anon_sym_LBRACE_LBRACE] = ACTIONS(9099), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9101), - [anon_sym_ATphp] = ACTIONS(9103), - [aux_sym_attribute_token1] = ACTIONS(9105), - [aux_sym__inline_directive_token1] = ACTIONS(9107), - [anon_sym_ATfragment] = ACTIONS(9109), - [anon_sym_ATsection] = ACTIONS(9111), - [anon_sym_ATonce] = ACTIONS(9113), - [anon_sym_ATverbatim] = ACTIONS(9115), - [anon_sym_ATpush] = ACTIONS(9117), - [anon_sym_ATpushOnce] = ACTIONS(9119), - [anon_sym_ATpushIf] = ACTIONS(9121), - [anon_sym_ATprepend] = ACTIONS(9123), - [anon_sym_ATprependOnce] = ACTIONS(9125), - [anon_sym_ATif] = ACTIONS(9127), - [anon_sym_ATunless] = ACTIONS(9129), - [anon_sym_ATisset] = ACTIONS(9131), - [anon_sym_ATempty] = ACTIONS(9133), - [anon_sym_ATauth] = ACTIONS(9135), - [anon_sym_ATguest] = ACTIONS(9137), - [anon_sym_ATproduction] = ACTIONS(9139), - [anon_sym_ATenv] = ACTIONS(9141), - [anon_sym_AThasSection] = ACTIONS(9143), - [anon_sym_ATsectionMissing] = ACTIONS(9145), - [anon_sym_ATerror] = ACTIONS(9147), - [anon_sym_ATcan] = ACTIONS(9149), - [anon_sym_ATcannot] = ACTIONS(9151), - [anon_sym_ATcanany] = ACTIONS(9153), - [anon_sym_ATfeature] = ACTIONS(9155), - [aux_sym__custom_token1] = ACTIONS(9157), - [aux_sym__custom_token2] = ACTIONS(9159), - [anon_sym_ATswitch] = ACTIONS(9161), - [aux_sym_loop_operator_token1] = ACTIONS(9163), - [anon_sym_ATfor] = ACTIONS(9165), - [anon_sym_ATforeach] = ACTIONS(9167), - [anon_sym_ATforelse] = ACTIONS(9169), - [anon_sym_ATwhile] = ACTIONS(9171), - [anon_sym_ATsetup] = ACTIONS(9173), - [anon_sym_ATtask] = ACTIONS(9175), - [anon_sym_ATstory] = ACTIONS(9177), - [anon_sym_ATbefore] = ACTIONS(9179), - [anon_sym_ATafter] = ACTIONS(9181), - [anon_sym_ATsuccess] = ACTIONS(9183), - [anon_sym_ATfinished] = ACTIONS(9185), - [anon_sym_ATpersist] = ACTIONS(9187), - [anon_sym_ATteleport] = ACTIONS(9189), - [anon_sym_ATendteleport] = ACTIONS(4609), - [anon_sym_ATvolt] = ACTIONS(9191), - [aux_sym__text_token1] = ACTIONS(9193), - [aux_sym__text_token2] = ACTIONS(9193), - [aux_sym__text_token3] = ACTIONS(9195), + [sym__text] = STATE(964), + [aux_sym_php_only_repeat1] = STATE(964), + [sym_comment] = ACTIONS(9241), + [aux_sym_keyword_token1] = ACTIONS(9243), + [anon_sym_LBRACE_LBRACE] = ACTIONS(9245), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9247), + [anon_sym_ATphp] = ACTIONS(9249), + [aux_sym_attribute_token1] = ACTIONS(9251), + [aux_sym__inline_directive_token1] = ACTIONS(9253), + [anon_sym_ATfragment] = ACTIONS(9255), + [anon_sym_ATsection] = ACTIONS(9257), + [anon_sym_ATonce] = ACTIONS(9259), + [anon_sym_ATverbatim] = ACTIONS(9261), + [anon_sym_ATpush] = ACTIONS(9263), + [anon_sym_ATpushOnce] = ACTIONS(9265), + [anon_sym_ATpushIf] = ACTIONS(9267), + [anon_sym_ATprepend] = ACTIONS(9269), + [anon_sym_ATprependOnce] = ACTIONS(9271), + [anon_sym_ATif] = ACTIONS(9273), + [anon_sym_ATunless] = ACTIONS(9275), + [anon_sym_ATisset] = ACTIONS(9277), + [anon_sym_ATempty] = ACTIONS(9279), + [anon_sym_ATauth] = ACTIONS(9281), + [anon_sym_ATguest] = ACTIONS(9283), + [anon_sym_ATproduction] = ACTIONS(9285), + [anon_sym_ATenv] = ACTIONS(9287), + [anon_sym_AThasSection] = ACTIONS(9289), + [anon_sym_ATsectionMissing] = ACTIONS(9291), + [anon_sym_ATerror] = ACTIONS(9293), + [anon_sym_ATcan] = ACTIONS(9295), + [anon_sym_ATcannot] = ACTIONS(9297), + [anon_sym_ATcanany] = ACTIONS(9299), + [anon_sym_ATfeature] = ACTIONS(9301), + [aux_sym__custom_token1] = ACTIONS(9303), + [aux_sym__custom_token2] = ACTIONS(9305), + [anon_sym_ATswitch] = ACTIONS(9307), + [aux_sym_loop_operator_token1] = ACTIONS(9309), + [anon_sym_ATfor] = ACTIONS(9311), + [anon_sym_ATforeach] = ACTIONS(9313), + [anon_sym_ATforelse] = ACTIONS(9315), + [anon_sym_ATwhile] = ACTIONS(9317), + [anon_sym_ATsetup] = ACTIONS(9319), + [anon_sym_ATtask] = ACTIONS(9321), + [anon_sym_ATstory] = ACTIONS(9323), + [anon_sym_ATbefore] = ACTIONS(9325), + [anon_sym_ATafter] = ACTIONS(9327), + [anon_sym_ATsuccess] = ACTIONS(9329), + [anon_sym_ATfinished] = ACTIONS(9331), + [anon_sym_ATpersist] = ACTIONS(9333), + [anon_sym_ATteleport] = ACTIONS(9335), + [anon_sym_ATendteleport] = ACTIONS(4699), + [anon_sym_ATvolt] = ACTIONS(9337), + [aux_sym_alpine_js_token1] = ACTIONS(9339), + [aux_sym__text_token1] = ACTIONS(9341), + [aux_sym__text_token2] = ACTIONS(9341), + [aux_sym__text_token3] = ACTIONS(9343), }, [642] = { - [sym__definition] = STATE(651), - [sym_keyword] = STATE(651), - [sym_php_statement] = STATE(651), - [sym__escaped] = STATE(2749), - [sym__unescaped] = STATE(2749), - [sym__raw] = STATE(2749), - [sym__inline_raw] = STATE(2749), - [sym__multi_line_raw] = STATE(2749), - [sym_attribute] = STATE(651), - [sym__inline_directive] = STATE(651), - [sym__nested_directive] = STATE(651), - [sym_fragment] = STATE(651), - [sym_section] = STATE(651), - [sym_inlineSection] = STATE(651), - [sym_once] = STATE(651), - [sym_verbatim] = STATE(651), - [sym_stack] = STATE(651), - [sym__push] = STATE(2750), - [sym__pushOnce] = STATE(2750), - [sym__pushIf] = STATE(2750), - [sym__prepend] = STATE(2750), - [sym__prependOnce] = STATE(2750), - [sym_conditional] = STATE(651), - [sym__if] = STATE(2751), - [sym__unless] = STATE(2751), - [sym__isset] = STATE(2751), - [sym__empty] = STATE(2751), - [sym__auth] = STATE(2751), - [sym__guest] = STATE(2751), - [sym__production] = STATE(2751), - [sym__env] = STATE(2751), - [sym__hasSection] = STATE(2751), - [sym__sectionMissing] = STATE(2751), - [sym__error] = STATE(2751), - [sym_authorization] = STATE(2751), - [sym__can] = STATE(2752), - [sym__cannot] = STATE(2752), - [sym__canany] = STATE(2752), - [sym__feature] = STATE(2751), - [sym__custom] = STATE(2751), - [sym_switch] = STATE(651), - [sym_loop] = STATE(651), - [sym_loop_operator] = STATE(651), - [sym__for] = STATE(2753), - [sym__foreach] = STATE(2753), - [sym__forelse] = STATE(2753), - [sym__while] = STATE(2753), - [sym_envoy] = STATE(651), - [sym__setup] = STATE(2749), - [sym__task] = STATE(2754), - [sym__story] = STATE(2754), - [sym__hooks] = STATE(2749), - [sym__before] = STATE(2749), - [sym__after] = STATE(2749), - [sym__envoy_error] = STATE(2749), - [sym__success] = STATE(2749), - [sym__finished] = STATE(2749), - [sym_livewire] = STATE(651), - [sym__persist] = STATE(2755), - [sym__teleport] = STATE(2755), - [sym__volt] = STATE(2755), - [aux_sym__directive_body] = STATE(651), - [sym_text] = STATE(651), - [sym__text] = STATE(968), - [aux_sym_php_only_repeat1] = STATE(968), - [sym_comment] = ACTIONS(9197), - [aux_sym_keyword_token1] = ACTIONS(9097), - [anon_sym_LBRACE_LBRACE] = ACTIONS(9099), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9101), - [anon_sym_ATphp] = ACTIONS(9103), - [aux_sym_attribute_token1] = ACTIONS(9105), - [aux_sym__inline_directive_token1] = ACTIONS(9107), - [anon_sym_ATfragment] = ACTIONS(9109), - [anon_sym_ATsection] = ACTIONS(9111), - [anon_sym_ATonce] = ACTIONS(9113), - [anon_sym_ATverbatim] = ACTIONS(9115), - [anon_sym_ATpush] = ACTIONS(9117), - [anon_sym_ATpushOnce] = ACTIONS(9119), - [anon_sym_ATpushIf] = ACTIONS(9121), - [anon_sym_ATprepend] = ACTIONS(9123), - [anon_sym_ATprependOnce] = ACTIONS(9125), - [anon_sym_ATif] = ACTIONS(9127), - [anon_sym_ATunless] = ACTIONS(9129), - [anon_sym_ATisset] = ACTIONS(9131), - [anon_sym_ATempty] = ACTIONS(9133), - [anon_sym_ATauth] = ACTIONS(9135), - [anon_sym_ATguest] = ACTIONS(9137), - [anon_sym_ATproduction] = ACTIONS(9139), - [anon_sym_ATenv] = ACTIONS(9141), - [anon_sym_AThasSection] = ACTIONS(9143), - [anon_sym_ATsectionMissing] = ACTIONS(9145), - [anon_sym_ATerror] = ACTIONS(9147), - [anon_sym_ATcan] = ACTIONS(9149), - [anon_sym_ATcannot] = ACTIONS(9151), - [anon_sym_ATcanany] = ACTIONS(9153), - [anon_sym_ATfeature] = ACTIONS(9155), - [aux_sym__custom_token1] = ACTIONS(9157), - [aux_sym__custom_token2] = ACTIONS(9159), - [anon_sym_ATswitch] = ACTIONS(9161), - [aux_sym_loop_operator_token1] = ACTIONS(9163), - [anon_sym_ATfor] = ACTIONS(9165), - [anon_sym_ATforeach] = ACTIONS(9167), - [anon_sym_ATforelse] = ACTIONS(9169), - [anon_sym_ATwhile] = ACTIONS(9171), - [anon_sym_ATsetup] = ACTIONS(9173), - [anon_sym_ATtask] = ACTIONS(9175), - [anon_sym_ATstory] = ACTIONS(9177), - [anon_sym_ATbefore] = ACTIONS(9179), - [anon_sym_ATafter] = ACTIONS(9181), - [anon_sym_ATsuccess] = ACTIONS(9183), - [anon_sym_ATfinished] = ACTIONS(9185), - [anon_sym_ATpersist] = ACTIONS(9187), - [anon_sym_ATteleport] = ACTIONS(9189), - [anon_sym_ATendteleport] = ACTIONS(4996), - [anon_sym_ATvolt] = ACTIONS(9191), - [aux_sym__text_token1] = ACTIONS(9193), - [aux_sym__text_token2] = ACTIONS(9193), - [aux_sym__text_token3] = ACTIONS(9195), + [sym__definition] = STATE(649), + [sym_keyword] = STATE(649), + [sym_php_statement] = STATE(649), + [sym__escaped] = STATE(2782), + [sym__unescaped] = STATE(2782), + [sym__raw] = STATE(2782), + [sym__inline_raw] = STATE(2782), + [sym__multi_line_raw] = STATE(2782), + [sym_attribute] = STATE(649), + [sym__inline_directive] = STATE(649), + [sym__nested_directive] = STATE(649), + [sym_fragment] = STATE(649), + [sym_section] = STATE(649), + [sym_inlineSection] = STATE(649), + [sym_once] = STATE(649), + [sym_verbatim] = STATE(649), + [sym_stack] = STATE(649), + [sym__push] = STATE(2783), + [sym__pushOnce] = STATE(2783), + [sym__pushIf] = STATE(2783), + [sym__prepend] = STATE(2783), + [sym__prependOnce] = STATE(2783), + [sym_conditional] = STATE(649), + [sym__if] = STATE(2784), + [sym__unless] = STATE(2784), + [sym__isset] = STATE(2784), + [sym__empty] = STATE(2784), + [sym__auth] = STATE(2784), + [sym__guest] = STATE(2784), + [sym__production] = STATE(2784), + [sym__env] = STATE(2784), + [sym__hasSection] = STATE(2784), + [sym__sectionMissing] = STATE(2784), + [sym__error] = STATE(2784), + [sym_authorization] = STATE(2784), + [sym__can] = STATE(2785), + [sym__cannot] = STATE(2785), + [sym__canany] = STATE(2785), + [sym__feature] = STATE(2784), + [sym__custom] = STATE(2784), + [sym_switch] = STATE(649), + [sym_loop] = STATE(649), + [sym_loop_operator] = STATE(649), + [sym__for] = STATE(2786), + [sym__foreach] = STATE(2786), + [sym__forelse] = STATE(2786), + [sym__while] = STATE(2786), + [sym_envoy] = STATE(649), + [sym__setup] = STATE(2782), + [sym__task] = STATE(2787), + [sym__story] = STATE(2787), + [sym__hooks] = STATE(2782), + [sym__before] = STATE(2782), + [sym__after] = STATE(2782), + [sym__envoy_error] = STATE(2782), + [sym__success] = STATE(2782), + [sym__finished] = STATE(2782), + [sym_livewire] = STATE(649), + [sym__persist] = STATE(2788), + [sym__teleport] = STATE(2788), + [sym__volt] = STATE(2788), + [sym_alpine_js] = STATE(649), + [aux_sym__directive_body] = STATE(649), + [sym_text] = STATE(649), + [sym__text] = STATE(964), + [aux_sym_php_only_repeat1] = STATE(964), + [sym_comment] = ACTIONS(9345), + [aux_sym_keyword_token1] = ACTIONS(9243), + [anon_sym_LBRACE_LBRACE] = ACTIONS(9245), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9247), + [anon_sym_ATphp] = ACTIONS(9249), + [aux_sym_attribute_token1] = ACTIONS(9251), + [aux_sym__inline_directive_token1] = ACTIONS(9253), + [anon_sym_ATfragment] = ACTIONS(9255), + [anon_sym_ATsection] = ACTIONS(9257), + [anon_sym_ATonce] = ACTIONS(9259), + [anon_sym_ATverbatim] = ACTIONS(9261), + [anon_sym_ATpush] = ACTIONS(9263), + [anon_sym_ATpushOnce] = ACTIONS(9265), + [anon_sym_ATpushIf] = ACTIONS(9267), + [anon_sym_ATprepend] = ACTIONS(9269), + [anon_sym_ATprependOnce] = ACTIONS(9271), + [anon_sym_ATif] = ACTIONS(9273), + [anon_sym_ATunless] = ACTIONS(9275), + [anon_sym_ATisset] = ACTIONS(9277), + [anon_sym_ATempty] = ACTIONS(9279), + [anon_sym_ATauth] = ACTIONS(9281), + [anon_sym_ATguest] = ACTIONS(9283), + [anon_sym_ATproduction] = ACTIONS(9285), + [anon_sym_ATenv] = ACTIONS(9287), + [anon_sym_AThasSection] = ACTIONS(9289), + [anon_sym_ATsectionMissing] = ACTIONS(9291), + [anon_sym_ATerror] = ACTIONS(9293), + [anon_sym_ATcan] = ACTIONS(9295), + [anon_sym_ATcannot] = ACTIONS(9297), + [anon_sym_ATcanany] = ACTIONS(9299), + [anon_sym_ATfeature] = ACTIONS(9301), + [aux_sym__custom_token1] = ACTIONS(9303), + [aux_sym__custom_token2] = ACTIONS(9305), + [anon_sym_ATswitch] = ACTIONS(9307), + [aux_sym_loop_operator_token1] = ACTIONS(9309), + [anon_sym_ATfor] = ACTIONS(9311), + [anon_sym_ATforeach] = ACTIONS(9313), + [anon_sym_ATforelse] = ACTIONS(9315), + [anon_sym_ATwhile] = ACTIONS(9317), + [anon_sym_ATsetup] = ACTIONS(9319), + [anon_sym_ATtask] = ACTIONS(9321), + [anon_sym_ATstory] = ACTIONS(9323), + [anon_sym_ATbefore] = ACTIONS(9325), + [anon_sym_ATafter] = ACTIONS(9327), + [anon_sym_ATsuccess] = ACTIONS(9329), + [anon_sym_ATfinished] = ACTIONS(9331), + [anon_sym_ATpersist] = ACTIONS(9333), + [anon_sym_ATteleport] = ACTIONS(9335), + [anon_sym_ATendteleport] = ACTIONS(4859), + [anon_sym_ATvolt] = ACTIONS(9337), + [aux_sym_alpine_js_token1] = ACTIONS(9339), + [aux_sym__text_token1] = ACTIONS(9341), + [aux_sym__text_token2] = ACTIONS(9341), + [aux_sym__text_token3] = ACTIONS(9343), }, [643] = { [sym__definition] = STATE(643), [sym_keyword] = STATE(643), [sym_php_statement] = STATE(643), - [sym__escaped] = STATE(2585), - [sym__unescaped] = STATE(2585), - [sym__raw] = STATE(2585), - [sym__inline_raw] = STATE(2585), - [sym__multi_line_raw] = STATE(2585), + [sym__escaped] = STATE(2616), + [sym__unescaped] = STATE(2616), + [sym__raw] = STATE(2616), + [sym__inline_raw] = STATE(2616), + [sym__multi_line_raw] = STATE(2616), [sym_attribute] = STATE(643), [sym__inline_directive] = STATE(643), [sym__nested_directive] = STATE(643), @@ -103327,117 +105085,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(643), [sym_verbatim] = STATE(643), [sym_stack] = STATE(643), - [sym__push] = STATE(2586), - [sym__pushOnce] = STATE(2586), - [sym__pushIf] = STATE(2586), - [sym__prepend] = STATE(2586), - [sym__prependOnce] = STATE(2586), + [sym__push] = STATE(2617), + [sym__pushOnce] = STATE(2617), + [sym__pushIf] = STATE(2617), + [sym__prepend] = STATE(2617), + [sym__prependOnce] = STATE(2617), [sym_conditional] = STATE(643), - [sym__if] = STATE(2587), - [sym__unless] = STATE(2587), - [sym__isset] = STATE(2587), - [sym__empty] = STATE(2587), - [sym__auth] = STATE(2587), - [sym__guest] = STATE(2587), - [sym__production] = STATE(2587), - [sym__env] = STATE(2587), - [sym__hasSection] = STATE(2587), - [sym__sectionMissing] = STATE(2587), - [sym__error] = STATE(2587), - [sym_authorization] = STATE(2587), - [sym__can] = STATE(2588), - [sym__cannot] = STATE(2588), - [sym__canany] = STATE(2588), - [sym__feature] = STATE(2587), - [sym__custom] = STATE(2587), + [sym__if] = STATE(2618), + [sym__unless] = STATE(2618), + [sym__isset] = STATE(2618), + [sym__empty] = STATE(2618), + [sym__auth] = STATE(2618), + [sym__guest] = STATE(2618), + [sym__production] = STATE(2618), + [sym__env] = STATE(2618), + [sym__hasSection] = STATE(2618), + [sym__sectionMissing] = STATE(2618), + [sym__error] = STATE(2618), + [sym_authorization] = STATE(2618), + [sym__can] = STATE(2619), + [sym__cannot] = STATE(2619), + [sym__canany] = STATE(2619), + [sym__feature] = STATE(2618), + [sym__custom] = STATE(2618), [sym_switch] = STATE(643), [sym_loop] = STATE(643), [sym_loop_operator] = STATE(643), - [sym__for] = STATE(2589), - [sym__foreach] = STATE(2589), - [sym__forelse] = STATE(2589), - [sym__while] = STATE(2589), + [sym__for] = STATE(2620), + [sym__foreach] = STATE(2620), + [sym__forelse] = STATE(2620), + [sym__while] = STATE(2620), [sym_envoy] = STATE(643), - [sym__setup] = STATE(2585), - [sym__task] = STATE(2590), - [sym__story] = STATE(2590), - [sym__hooks] = STATE(2585), - [sym__before] = STATE(2585), - [sym__after] = STATE(2585), - [sym__envoy_error] = STATE(2585), - [sym__success] = STATE(2585), - [sym__finished] = STATE(2585), + [sym__setup] = STATE(2616), + [sym__task] = STATE(2621), + [sym__story] = STATE(2621), + [sym__hooks] = STATE(2616), + [sym__before] = STATE(2616), + [sym__after] = STATE(2616), + [sym__envoy_error] = STATE(2616), + [sym__success] = STATE(2616), + [sym__finished] = STATE(2616), [sym_livewire] = STATE(643), - [sym__persist] = STATE(2591), - [sym__teleport] = STATE(2591), - [sym__volt] = STATE(2591), + [sym__persist] = STATE(2622), + [sym__teleport] = STATE(2622), + [sym__volt] = STATE(2622), + [sym_alpine_js] = STATE(643), [aux_sym__directive_body] = STATE(643), [sym_text] = STATE(643), - [sym__text] = STATE(977), - [aux_sym_php_only_repeat1] = STATE(977), - [sym_comment] = ACTIONS(9199), - [aux_sym_keyword_token1] = ACTIONS(9202), - [anon_sym_LBRACE_LBRACE] = ACTIONS(9205), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9208), - [anon_sym_ATphp] = ACTIONS(9211), - [aux_sym_attribute_token1] = ACTIONS(9214), - [aux_sym__inline_directive_token1] = ACTIONS(9217), - [anon_sym_ATfragment] = ACTIONS(9220), - [anon_sym_ATsection] = ACTIONS(9223), - [anon_sym_ATonce] = ACTIONS(9226), - [anon_sym_ATverbatim] = ACTIONS(9229), - [anon_sym_ATpush] = ACTIONS(9232), - [anon_sym_ATpushOnce] = ACTIONS(9235), - [anon_sym_ATpushIf] = ACTIONS(9238), - [anon_sym_ATprepend] = ACTIONS(9241), - [anon_sym_ATprependOnce] = ACTIONS(9244), - [anon_sym_ATif] = ACTIONS(9247), - [anon_sym_ATunless] = ACTIONS(9250), - [anon_sym_ATisset] = ACTIONS(9253), - [anon_sym_ATempty] = ACTIONS(9256), - [anon_sym_ATauth] = ACTIONS(9259), - [anon_sym_ATguest] = ACTIONS(9262), - [anon_sym_ATproduction] = ACTIONS(9265), - [anon_sym_ATenv] = ACTIONS(9268), - [anon_sym_AThasSection] = ACTIONS(9271), - [anon_sym_ATsectionMissing] = ACTIONS(9274), - [anon_sym_ATerror] = ACTIONS(9277), - [anon_sym_ATcan] = ACTIONS(9280), - [anon_sym_ATcannot] = ACTIONS(9283), - [anon_sym_ATcanany] = ACTIONS(9286), - [anon_sym_ATfeature] = ACTIONS(9289), - [aux_sym__custom_token1] = ACTIONS(9292), - [aux_sym__custom_token2] = ACTIONS(9295), - [anon_sym_ATswitch] = ACTIONS(9298), - [aux_sym_loop_operator_token1] = ACTIONS(9301), - [anon_sym_ATfor] = ACTIONS(9304), - [anon_sym_ATforeach] = ACTIONS(9307), - [anon_sym_ATforelse] = ACTIONS(9310), - [anon_sym_ATwhile] = ACTIONS(9313), - [anon_sym_ATsetup] = ACTIONS(9316), - [anon_sym_ATtask] = ACTIONS(9319), - [anon_sym_ATstory] = ACTIONS(9322), - [anon_sym_ATendstory] = ACTIONS(5035), - [anon_sym_ATbefore] = ACTIONS(9325), - [anon_sym_ATafter] = ACTIONS(9328), - [anon_sym_ATsuccess] = ACTIONS(9331), - [anon_sym_ATfinished] = ACTIONS(9334), - [anon_sym_ATpersist] = ACTIONS(9337), - [anon_sym_ATteleport] = ACTIONS(9340), - [anon_sym_ATvolt] = ACTIONS(9343), - [aux_sym__text_token1] = ACTIONS(9346), - [aux_sym__text_token2] = ACTIONS(9346), - [aux_sym__text_token3] = ACTIONS(9349), + [sym__text] = STATE(972), + [aux_sym_php_only_repeat1] = STATE(972), + [sym_comment] = ACTIONS(9347), + [aux_sym_keyword_token1] = ACTIONS(9350), + [anon_sym_LBRACE_LBRACE] = ACTIONS(9353), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9356), + [anon_sym_ATphp] = ACTIONS(9359), + [aux_sym_attribute_token1] = ACTIONS(9362), + [aux_sym__inline_directive_token1] = ACTIONS(9365), + [anon_sym_ATfragment] = ACTIONS(9368), + [anon_sym_ATsection] = ACTIONS(9371), + [anon_sym_ATonce] = ACTIONS(9374), + [anon_sym_ATverbatim] = ACTIONS(9377), + [anon_sym_ATpush] = ACTIONS(9380), + [anon_sym_ATpushOnce] = ACTIONS(9383), + [anon_sym_ATpushIf] = ACTIONS(9386), + [anon_sym_ATprepend] = ACTIONS(9389), + [anon_sym_ATprependOnce] = ACTIONS(9392), + [anon_sym_ATif] = ACTIONS(9395), + [anon_sym_ATunless] = ACTIONS(9398), + [anon_sym_ATisset] = ACTIONS(9401), + [anon_sym_ATempty] = ACTIONS(9404), + [anon_sym_ATauth] = ACTIONS(9407), + [anon_sym_ATguest] = ACTIONS(9410), + [anon_sym_ATproduction] = ACTIONS(9413), + [anon_sym_ATenv] = ACTIONS(9416), + [anon_sym_AThasSection] = ACTIONS(9419), + [anon_sym_ATsectionMissing] = ACTIONS(9422), + [anon_sym_ATerror] = ACTIONS(9425), + [anon_sym_ATcan] = ACTIONS(9428), + [anon_sym_ATcannot] = ACTIONS(9431), + [anon_sym_ATcanany] = ACTIONS(9434), + [anon_sym_ATfeature] = ACTIONS(9437), + [aux_sym__custom_token1] = ACTIONS(9440), + [aux_sym__custom_token2] = ACTIONS(9443), + [anon_sym_ATswitch] = ACTIONS(9446), + [aux_sym_loop_operator_token1] = ACTIONS(9449), + [anon_sym_ATfor] = ACTIONS(9452), + [anon_sym_ATforeach] = ACTIONS(9455), + [anon_sym_ATforelse] = ACTIONS(9458), + [anon_sym_ATwhile] = ACTIONS(9461), + [anon_sym_ATsetup] = ACTIONS(9464), + [anon_sym_ATtask] = ACTIONS(9467), + [anon_sym_ATstory] = ACTIONS(9470), + [anon_sym_ATendstory] = ACTIONS(5134), + [anon_sym_ATbefore] = ACTIONS(9473), + [anon_sym_ATafter] = ACTIONS(9476), + [anon_sym_ATsuccess] = ACTIONS(9479), + [anon_sym_ATfinished] = ACTIONS(9482), + [anon_sym_ATpersist] = ACTIONS(9485), + [anon_sym_ATteleport] = ACTIONS(9488), + [anon_sym_ATvolt] = ACTIONS(9491), + [aux_sym_alpine_js_token1] = ACTIONS(9494), + [aux_sym__text_token1] = ACTIONS(9497), + [aux_sym__text_token2] = ACTIONS(9497), + [aux_sym__text_token3] = ACTIONS(9500), }, [644] = { [sym__definition] = STATE(645), [sym_keyword] = STATE(645), [sym_php_statement] = STATE(645), - [sym__escaped] = STATE(2831), - [sym__unescaped] = STATE(2831), - [sym__raw] = STATE(2831), - [sym__inline_raw] = STATE(2831), - [sym__multi_line_raw] = STATE(2831), + [sym__escaped] = STATE(2865), + [sym__unescaped] = STATE(2865), + [sym__raw] = STATE(2865), + [sym__inline_raw] = STATE(2865), + [sym__multi_line_raw] = STATE(2865), [sym_attribute] = STATE(645), [sym__inline_directive] = STATE(645), [sym__nested_directive] = STATE(645), @@ -103447,477 +105207,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(645), [sym_verbatim] = STATE(645), [sym_stack] = STATE(645), - [sym__push] = STATE(2832), - [sym__pushOnce] = STATE(2832), - [sym__pushIf] = STATE(2832), - [sym__prepend] = STATE(2832), - [sym__prependOnce] = STATE(2832), + [sym__push] = STATE(2866), + [sym__pushOnce] = STATE(2866), + [sym__pushIf] = STATE(2866), + [sym__prepend] = STATE(2866), + [sym__prependOnce] = STATE(2866), [sym_conditional] = STATE(645), - [sym__if] = STATE(2833), - [sym__unless] = STATE(2833), - [sym__isset] = STATE(2833), - [sym__empty] = STATE(2833), - [sym__auth] = STATE(2833), - [sym__guest] = STATE(2833), - [sym__production] = STATE(2833), - [sym__env] = STATE(2833), - [sym__hasSection] = STATE(2833), - [sym__sectionMissing] = STATE(2833), - [sym__error] = STATE(2833), - [sym_authorization] = STATE(2833), - [sym__can] = STATE(2834), - [sym__cannot] = STATE(2834), - [sym__canany] = STATE(2834), - [sym__feature] = STATE(2833), - [sym__custom] = STATE(2833), + [sym__if] = STATE(2867), + [sym__unless] = STATE(2867), + [sym__isset] = STATE(2867), + [sym__empty] = STATE(2867), + [sym__auth] = STATE(2867), + [sym__guest] = STATE(2867), + [sym__production] = STATE(2867), + [sym__env] = STATE(2867), + [sym__hasSection] = STATE(2867), + [sym__sectionMissing] = STATE(2867), + [sym__error] = STATE(2867), + [sym_authorization] = STATE(2867), + [sym__can] = STATE(2868), + [sym__cannot] = STATE(2868), + [sym__canany] = STATE(2868), + [sym__feature] = STATE(2867), + [sym__custom] = STATE(2867), [sym_switch] = STATE(645), [sym_loop] = STATE(645), [sym_loop_operator] = STATE(645), - [sym__for] = STATE(2835), - [sym__foreach] = STATE(2835), - [sym__forelse] = STATE(2835), - [sym__while] = STATE(2835), + [sym__for] = STATE(2869), + [sym__foreach] = STATE(2869), + [sym__forelse] = STATE(2869), + [sym__while] = STATE(2869), [sym_envoy] = STATE(645), - [sym__setup] = STATE(2831), - [sym__task] = STATE(2836), - [sym__story] = STATE(2836), - [sym__hooks] = STATE(2831), - [sym__before] = STATE(2831), - [sym__after] = STATE(2831), - [sym__envoy_error] = STATE(2831), - [sym__success] = STATE(2831), - [sym__finished] = STATE(2831), + [sym__setup] = STATE(2865), + [sym__task] = STATE(2870), + [sym__story] = STATE(2870), + [sym__hooks] = STATE(2865), + [sym__before] = STATE(2865), + [sym__after] = STATE(2865), + [sym__envoy_error] = STATE(2865), + [sym__success] = STATE(2865), + [sym__finished] = STATE(2865), [sym_livewire] = STATE(645), - [sym__persist] = STATE(2837), - [sym__teleport] = STATE(2837), - [sym__volt] = STATE(2837), + [sym__persist] = STATE(2871), + [sym__teleport] = STATE(2871), + [sym__volt] = STATE(2871), + [sym_alpine_js] = STATE(645), [aux_sym__directive_body] = STATE(645), [sym_text] = STATE(645), - [sym__text] = STATE(962), - [aux_sym_php_only_repeat1] = STATE(962), - [sym_comment] = ACTIONS(9352), - [aux_sym_keyword_token1] = ACTIONS(9354), - [anon_sym_LBRACE_LBRACE] = ACTIONS(9356), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9358), - [anon_sym_ATphp] = ACTIONS(9360), - [aux_sym_attribute_token1] = ACTIONS(9362), - [aux_sym__inline_directive_token1] = ACTIONS(9364), - [anon_sym_ATfragment] = ACTIONS(9366), - [anon_sym_ATsection] = ACTIONS(9368), - [anon_sym_ATonce] = ACTIONS(9370), - [anon_sym_ATverbatim] = ACTIONS(9372), - [anon_sym_ATpush] = ACTIONS(9374), - [anon_sym_ATpushOnce] = ACTIONS(9376), - [anon_sym_ATpushIf] = ACTIONS(9378), - [anon_sym_ATprepend] = ACTIONS(9380), - [anon_sym_ATprependOnce] = ACTIONS(9382), - [anon_sym_ATif] = ACTIONS(9384), - [anon_sym_ATunless] = ACTIONS(9386), - [anon_sym_ATisset] = ACTIONS(9388), - [anon_sym_ATempty] = ACTIONS(9390), - [anon_sym_ATauth] = ACTIONS(9392), - [anon_sym_ATguest] = ACTIONS(9394), - [anon_sym_ATproduction] = ACTIONS(9396), - [anon_sym_ATenv] = ACTIONS(9398), - [anon_sym_AThasSection] = ACTIONS(9400), - [anon_sym_ATsectionMissing] = ACTIONS(9402), - [anon_sym_ATerror] = ACTIONS(9404), - [anon_sym_ATcan] = ACTIONS(9406), - [anon_sym_ATcannot] = ACTIONS(9408), - [anon_sym_ATcanany] = ACTIONS(9410), - [anon_sym_ATfeature] = ACTIONS(9412), - [aux_sym__custom_token1] = ACTIONS(9414), - [aux_sym__custom_token2] = ACTIONS(9416), - [anon_sym_ATswitch] = ACTIONS(9418), - [aux_sym_loop_operator_token1] = ACTIONS(9420), - [anon_sym_ATfor] = ACTIONS(9422), - [anon_sym_ATforeach] = ACTIONS(9424), - [anon_sym_ATforelse] = ACTIONS(9426), - [anon_sym_ATwhile] = ACTIONS(9428), - [anon_sym_ATsetup] = ACTIONS(9430), - [anon_sym_ATtask] = ACTIONS(9432), - [anon_sym_ATstory] = ACTIONS(9434), - [anon_sym_ATbefore] = ACTIONS(9436), - [anon_sym_ATafter] = ACTIONS(9438), - [anon_sym_ATsuccess] = ACTIONS(9440), - [anon_sym_ATfinished] = ACTIONS(9442), - [anon_sym_ATpersist] = ACTIONS(9444), - [anon_sym_ATteleport] = ACTIONS(9446), - [anon_sym_ATvolt] = ACTIONS(9448), - [anon_sym_ATendvolt] = ACTIONS(4609), - [aux_sym__text_token1] = ACTIONS(9450), - [aux_sym__text_token2] = ACTIONS(9450), - [aux_sym__text_token3] = ACTIONS(9452), + [sym__text] = STATE(958), + [aux_sym_php_only_repeat1] = STATE(958), + [sym_comment] = ACTIONS(9503), + [aux_sym_keyword_token1] = ACTIONS(9505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(9507), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9509), + [anon_sym_ATphp] = ACTIONS(9511), + [aux_sym_attribute_token1] = ACTIONS(9513), + [aux_sym__inline_directive_token1] = ACTIONS(9515), + [anon_sym_ATfragment] = ACTIONS(9517), + [anon_sym_ATsection] = ACTIONS(9519), + [anon_sym_ATonce] = ACTIONS(9521), + [anon_sym_ATverbatim] = ACTIONS(9523), + [anon_sym_ATpush] = ACTIONS(9525), + [anon_sym_ATpushOnce] = ACTIONS(9527), + [anon_sym_ATpushIf] = ACTIONS(9529), + [anon_sym_ATprepend] = ACTIONS(9531), + [anon_sym_ATprependOnce] = ACTIONS(9533), + [anon_sym_ATif] = ACTIONS(9535), + [anon_sym_ATunless] = ACTIONS(9537), + [anon_sym_ATisset] = ACTIONS(9539), + [anon_sym_ATempty] = ACTIONS(9541), + [anon_sym_ATauth] = ACTIONS(9543), + [anon_sym_ATguest] = ACTIONS(9545), + [anon_sym_ATproduction] = ACTIONS(9547), + [anon_sym_ATenv] = ACTIONS(9549), + [anon_sym_AThasSection] = ACTIONS(9551), + [anon_sym_ATsectionMissing] = ACTIONS(9553), + [anon_sym_ATerror] = ACTIONS(9555), + [anon_sym_ATcan] = ACTIONS(9557), + [anon_sym_ATcannot] = ACTIONS(9559), + [anon_sym_ATcanany] = ACTIONS(9561), + [anon_sym_ATfeature] = ACTIONS(9563), + [aux_sym__custom_token1] = ACTIONS(9565), + [aux_sym__custom_token2] = ACTIONS(9567), + [anon_sym_ATswitch] = ACTIONS(9569), + [aux_sym_loop_operator_token1] = ACTIONS(9571), + [anon_sym_ATfor] = ACTIONS(9573), + [anon_sym_ATforeach] = ACTIONS(9575), + [anon_sym_ATforelse] = ACTIONS(9577), + [anon_sym_ATwhile] = ACTIONS(9579), + [anon_sym_ATsetup] = ACTIONS(9581), + [anon_sym_ATtask] = ACTIONS(9583), + [anon_sym_ATstory] = ACTIONS(9585), + [anon_sym_ATbefore] = ACTIONS(9587), + [anon_sym_ATafter] = ACTIONS(9589), + [anon_sym_ATsuccess] = ACTIONS(9591), + [anon_sym_ATfinished] = ACTIONS(9593), + [anon_sym_ATpersist] = ACTIONS(9595), + [anon_sym_ATteleport] = ACTIONS(9597), + [anon_sym_ATvolt] = ACTIONS(9599), + [anon_sym_ATendvolt] = ACTIONS(4699), + [aux_sym_alpine_js_token1] = ACTIONS(9601), + [aux_sym__text_token1] = ACTIONS(9603), + [aux_sym__text_token2] = ACTIONS(9603), + [aux_sym__text_token3] = ACTIONS(9605), }, [645] = { - [sym__definition] = STATE(652), - [sym_keyword] = STATE(652), - [sym_php_statement] = STATE(652), - [sym__escaped] = STATE(2831), - [sym__unescaped] = STATE(2831), - [sym__raw] = STATE(2831), - [sym__inline_raw] = STATE(2831), - [sym__multi_line_raw] = STATE(2831), - [sym_attribute] = STATE(652), - [sym__inline_directive] = STATE(652), - [sym__nested_directive] = STATE(652), - [sym_fragment] = STATE(652), - [sym_section] = STATE(652), - [sym_inlineSection] = STATE(652), - [sym_once] = STATE(652), - [sym_verbatim] = STATE(652), - [sym_stack] = STATE(652), - [sym__push] = STATE(2832), - [sym__pushOnce] = STATE(2832), - [sym__pushIf] = STATE(2832), - [sym__prepend] = STATE(2832), - [sym__prependOnce] = STATE(2832), - [sym_conditional] = STATE(652), - [sym__if] = STATE(2833), - [sym__unless] = STATE(2833), - [sym__isset] = STATE(2833), - [sym__empty] = STATE(2833), - [sym__auth] = STATE(2833), - [sym__guest] = STATE(2833), - [sym__production] = STATE(2833), - [sym__env] = STATE(2833), - [sym__hasSection] = STATE(2833), - [sym__sectionMissing] = STATE(2833), - [sym__error] = STATE(2833), - [sym_authorization] = STATE(2833), - [sym__can] = STATE(2834), - [sym__cannot] = STATE(2834), - [sym__canany] = STATE(2834), - [sym__feature] = STATE(2833), - [sym__custom] = STATE(2833), - [sym_switch] = STATE(652), - [sym_loop] = STATE(652), - [sym_loop_operator] = STATE(652), - [sym__for] = STATE(2835), - [sym__foreach] = STATE(2835), - [sym__forelse] = STATE(2835), - [sym__while] = STATE(2835), - [sym_envoy] = STATE(652), - [sym__setup] = STATE(2831), - [sym__task] = STATE(2836), - [sym__story] = STATE(2836), - [sym__hooks] = STATE(2831), - [sym__before] = STATE(2831), - [sym__after] = STATE(2831), - [sym__envoy_error] = STATE(2831), - [sym__success] = STATE(2831), - [sym__finished] = STATE(2831), - [sym_livewire] = STATE(652), - [sym__persist] = STATE(2837), - [sym__teleport] = STATE(2837), - [sym__volt] = STATE(2837), - [aux_sym__directive_body] = STATE(652), - [sym_text] = STATE(652), - [sym__text] = STATE(962), - [aux_sym_php_only_repeat1] = STATE(962), - [sym_comment] = ACTIONS(9454), - [aux_sym_keyword_token1] = ACTIONS(9354), - [anon_sym_LBRACE_LBRACE] = ACTIONS(9356), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9358), - [anon_sym_ATphp] = ACTIONS(9360), - [aux_sym_attribute_token1] = ACTIONS(9362), - [aux_sym__inline_directive_token1] = ACTIONS(9364), - [anon_sym_ATfragment] = ACTIONS(9366), - [anon_sym_ATsection] = ACTIONS(9368), - [anon_sym_ATonce] = ACTIONS(9370), - [anon_sym_ATverbatim] = ACTIONS(9372), - [anon_sym_ATpush] = ACTIONS(9374), - [anon_sym_ATpushOnce] = ACTIONS(9376), - [anon_sym_ATpushIf] = ACTIONS(9378), - [anon_sym_ATprepend] = ACTIONS(9380), - [anon_sym_ATprependOnce] = ACTIONS(9382), - [anon_sym_ATif] = ACTIONS(9384), - [anon_sym_ATunless] = ACTIONS(9386), - [anon_sym_ATisset] = ACTIONS(9388), - [anon_sym_ATempty] = ACTIONS(9390), - [anon_sym_ATauth] = ACTIONS(9392), - [anon_sym_ATguest] = ACTIONS(9394), - [anon_sym_ATproduction] = ACTIONS(9396), - [anon_sym_ATenv] = ACTIONS(9398), - [anon_sym_AThasSection] = ACTIONS(9400), - [anon_sym_ATsectionMissing] = ACTIONS(9402), - [anon_sym_ATerror] = ACTIONS(9404), - [anon_sym_ATcan] = ACTIONS(9406), - [anon_sym_ATcannot] = ACTIONS(9408), - [anon_sym_ATcanany] = ACTIONS(9410), - [anon_sym_ATfeature] = ACTIONS(9412), - [aux_sym__custom_token1] = ACTIONS(9414), - [aux_sym__custom_token2] = ACTIONS(9416), - [anon_sym_ATswitch] = ACTIONS(9418), - [aux_sym_loop_operator_token1] = ACTIONS(9420), - [anon_sym_ATfor] = ACTIONS(9422), - [anon_sym_ATforeach] = ACTIONS(9424), - [anon_sym_ATforelse] = ACTIONS(9426), - [anon_sym_ATwhile] = ACTIONS(9428), - [anon_sym_ATsetup] = ACTIONS(9430), - [anon_sym_ATtask] = ACTIONS(9432), - [anon_sym_ATstory] = ACTIONS(9434), - [anon_sym_ATbefore] = ACTIONS(9436), - [anon_sym_ATafter] = ACTIONS(9438), - [anon_sym_ATsuccess] = ACTIONS(9440), - [anon_sym_ATfinished] = ACTIONS(9442), - [anon_sym_ATpersist] = ACTIONS(9444), - [anon_sym_ATteleport] = ACTIONS(9446), - [anon_sym_ATvolt] = ACTIONS(9448), - [anon_sym_ATendvolt] = ACTIONS(4996), - [aux_sym__text_token1] = ACTIONS(9450), - [aux_sym__text_token2] = ACTIONS(9450), - [aux_sym__text_token3] = ACTIONS(9452), + [sym__definition] = STATE(650), + [sym_keyword] = STATE(650), + [sym_php_statement] = STATE(650), + [sym__escaped] = STATE(2865), + [sym__unescaped] = STATE(2865), + [sym__raw] = STATE(2865), + [sym__inline_raw] = STATE(2865), + [sym__multi_line_raw] = STATE(2865), + [sym_attribute] = STATE(650), + [sym__inline_directive] = STATE(650), + [sym__nested_directive] = STATE(650), + [sym_fragment] = STATE(650), + [sym_section] = STATE(650), + [sym_inlineSection] = STATE(650), + [sym_once] = STATE(650), + [sym_verbatim] = STATE(650), + [sym_stack] = STATE(650), + [sym__push] = STATE(2866), + [sym__pushOnce] = STATE(2866), + [sym__pushIf] = STATE(2866), + [sym__prepend] = STATE(2866), + [sym__prependOnce] = STATE(2866), + [sym_conditional] = STATE(650), + [sym__if] = STATE(2867), + [sym__unless] = STATE(2867), + [sym__isset] = STATE(2867), + [sym__empty] = STATE(2867), + [sym__auth] = STATE(2867), + [sym__guest] = STATE(2867), + [sym__production] = STATE(2867), + [sym__env] = STATE(2867), + [sym__hasSection] = STATE(2867), + [sym__sectionMissing] = STATE(2867), + [sym__error] = STATE(2867), + [sym_authorization] = STATE(2867), + [sym__can] = STATE(2868), + [sym__cannot] = STATE(2868), + [sym__canany] = STATE(2868), + [sym__feature] = STATE(2867), + [sym__custom] = STATE(2867), + [sym_switch] = STATE(650), + [sym_loop] = STATE(650), + [sym_loop_operator] = STATE(650), + [sym__for] = STATE(2869), + [sym__foreach] = STATE(2869), + [sym__forelse] = STATE(2869), + [sym__while] = STATE(2869), + [sym_envoy] = STATE(650), + [sym__setup] = STATE(2865), + [sym__task] = STATE(2870), + [sym__story] = STATE(2870), + [sym__hooks] = STATE(2865), + [sym__before] = STATE(2865), + [sym__after] = STATE(2865), + [sym__envoy_error] = STATE(2865), + [sym__success] = STATE(2865), + [sym__finished] = STATE(2865), + [sym_livewire] = STATE(650), + [sym__persist] = STATE(2871), + [sym__teleport] = STATE(2871), + [sym__volt] = STATE(2871), + [sym_alpine_js] = STATE(650), + [aux_sym__directive_body] = STATE(650), + [sym_text] = STATE(650), + [sym__text] = STATE(958), + [aux_sym_php_only_repeat1] = STATE(958), + [sym_comment] = ACTIONS(9607), + [aux_sym_keyword_token1] = ACTIONS(9505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(9507), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9509), + [anon_sym_ATphp] = ACTIONS(9511), + [aux_sym_attribute_token1] = ACTIONS(9513), + [aux_sym__inline_directive_token1] = ACTIONS(9515), + [anon_sym_ATfragment] = ACTIONS(9517), + [anon_sym_ATsection] = ACTIONS(9519), + [anon_sym_ATonce] = ACTIONS(9521), + [anon_sym_ATverbatim] = ACTIONS(9523), + [anon_sym_ATpush] = ACTIONS(9525), + [anon_sym_ATpushOnce] = ACTIONS(9527), + [anon_sym_ATpushIf] = ACTIONS(9529), + [anon_sym_ATprepend] = ACTIONS(9531), + [anon_sym_ATprependOnce] = ACTIONS(9533), + [anon_sym_ATif] = ACTIONS(9535), + [anon_sym_ATunless] = ACTIONS(9537), + [anon_sym_ATisset] = ACTIONS(9539), + [anon_sym_ATempty] = ACTIONS(9541), + [anon_sym_ATauth] = ACTIONS(9543), + [anon_sym_ATguest] = ACTIONS(9545), + [anon_sym_ATproduction] = ACTIONS(9547), + [anon_sym_ATenv] = ACTIONS(9549), + [anon_sym_AThasSection] = ACTIONS(9551), + [anon_sym_ATsectionMissing] = ACTIONS(9553), + [anon_sym_ATerror] = ACTIONS(9555), + [anon_sym_ATcan] = ACTIONS(9557), + [anon_sym_ATcannot] = ACTIONS(9559), + [anon_sym_ATcanany] = ACTIONS(9561), + [anon_sym_ATfeature] = ACTIONS(9563), + [aux_sym__custom_token1] = ACTIONS(9565), + [aux_sym__custom_token2] = ACTIONS(9567), + [anon_sym_ATswitch] = ACTIONS(9569), + [aux_sym_loop_operator_token1] = ACTIONS(9571), + [anon_sym_ATfor] = ACTIONS(9573), + [anon_sym_ATforeach] = ACTIONS(9575), + [anon_sym_ATforelse] = ACTIONS(9577), + [anon_sym_ATwhile] = ACTIONS(9579), + [anon_sym_ATsetup] = ACTIONS(9581), + [anon_sym_ATtask] = ACTIONS(9583), + [anon_sym_ATstory] = ACTIONS(9585), + [anon_sym_ATbefore] = ACTIONS(9587), + [anon_sym_ATafter] = ACTIONS(9589), + [anon_sym_ATsuccess] = ACTIONS(9591), + [anon_sym_ATfinished] = ACTIONS(9593), + [anon_sym_ATpersist] = ACTIONS(9595), + [anon_sym_ATteleport] = ACTIONS(9597), + [anon_sym_ATvolt] = ACTIONS(9599), + [anon_sym_ATendvolt] = ACTIONS(4859), + [aux_sym_alpine_js_token1] = ACTIONS(9601), + [aux_sym__text_token1] = ACTIONS(9603), + [aux_sym__text_token2] = ACTIONS(9603), + [aux_sym__text_token3] = ACTIONS(9605), }, [646] = { - [sym__definition] = STATE(350), - [sym_keyword] = STATE(350), - [sym_php_statement] = STATE(350), - [sym__escaped] = STATE(2024), - [sym__unescaped] = STATE(2024), - [sym__raw] = STATE(2024), - [sym__inline_raw] = STATE(2024), - [sym__multi_line_raw] = STATE(2024), - [sym_attribute] = STATE(350), - [sym__inline_directive] = STATE(350), - [sym__nested_directive] = STATE(350), - [sym_fragment] = STATE(350), - [sym_section] = STATE(350), - [sym_inlineSection] = STATE(350), - [sym_once] = STATE(350), - [sym_verbatim] = STATE(350), - [sym_stack] = STATE(350), - [sym__push] = STATE(2023), - [sym__pushOnce] = STATE(2023), - [sym__pushIf] = STATE(2023), - [sym__prepend] = STATE(2023), - [sym__prependOnce] = STATE(2023), - [sym_conditional] = STATE(350), - [sym__if] = STATE(2022), - [sym__unless] = STATE(2022), - [sym__isset] = STATE(2022), - [sym__empty] = STATE(2022), - [sym__auth] = STATE(2022), - [sym__guest] = STATE(2022), - [sym__production] = STATE(2022), - [sym__env] = STATE(2022), - [sym__hasSection] = STATE(2022), - [sym__sectionMissing] = STATE(2022), - [sym__error] = STATE(2022), - [sym_authorization] = STATE(2022), - [sym__can] = STATE(2021), - [sym__cannot] = STATE(2021), - [sym__canany] = STATE(2021), - [sym__feature] = STATE(2022), - [sym__custom] = STATE(2022), - [sym_switch] = STATE(350), - [sym_loop] = STATE(350), - [sym_loop_operator] = STATE(350), - [sym__for] = STATE(2020), - [sym__foreach] = STATE(2020), - [sym__forelse] = STATE(2020), - [sym__while] = STATE(2020), - [sym_envoy] = STATE(350), - [sym__setup] = STATE(2024), - [sym__task] = STATE(2019), - [sym__story] = STATE(2019), - [sym__hooks] = STATE(2024), - [sym__before] = STATE(2024), - [sym__after] = STATE(2024), - [sym__envoy_error] = STATE(2024), - [sym__success] = STATE(2024), - [sym__finished] = STATE(2024), - [sym_livewire] = STATE(350), - [sym__persist] = STATE(2018), - [sym__teleport] = STATE(2018), - [sym__volt] = STATE(2018), - [aux_sym__directive_body] = STATE(350), - [sym_text] = STATE(350), - [sym__text] = STATE(1256), - [aux_sym_php_only_repeat1] = STATE(1256), - [sym_comment] = ACTIONS(9456), - [aux_sym_keyword_token1] = ACTIONS(8159), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8161), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8163), - [anon_sym_ATphp] = ACTIONS(8165), - [aux_sym_attribute_token1] = ACTIONS(8167), - [aux_sym__inline_directive_token1] = ACTIONS(8169), - [anon_sym_ATfragment] = ACTIONS(8171), - [anon_sym_ATsection] = ACTIONS(8173), - [anon_sym_ATonce] = ACTIONS(8175), - [anon_sym_ATverbatim] = ACTIONS(8177), - [anon_sym_ATpush] = ACTIONS(8179), - [anon_sym_ATpushOnce] = ACTIONS(8181), - [anon_sym_ATpushIf] = ACTIONS(8183), - [anon_sym_ATprepend] = ACTIONS(8185), - [anon_sym_ATprependOnce] = ACTIONS(8187), - [anon_sym_ATendPrependOnce] = ACTIONS(4996), - [anon_sym_ATif] = ACTIONS(8189), - [anon_sym_ATunless] = ACTIONS(8191), - [anon_sym_ATisset] = ACTIONS(8193), - [anon_sym_ATempty] = ACTIONS(8195), - [anon_sym_ATauth] = ACTIONS(8197), - [anon_sym_ATguest] = ACTIONS(8199), - [anon_sym_ATproduction] = ACTIONS(8201), - [anon_sym_ATenv] = ACTIONS(8203), - [anon_sym_AThasSection] = ACTIONS(8205), - [anon_sym_ATsectionMissing] = ACTIONS(8207), - [anon_sym_ATerror] = ACTIONS(8209), - [anon_sym_ATcan] = ACTIONS(8211), - [anon_sym_ATcannot] = ACTIONS(8213), - [anon_sym_ATcanany] = ACTIONS(8215), - [anon_sym_ATfeature] = ACTIONS(8217), - [aux_sym__custom_token1] = ACTIONS(8219), - [aux_sym__custom_token2] = ACTIONS(8221), - [anon_sym_ATswitch] = ACTIONS(8223), - [aux_sym_loop_operator_token1] = ACTIONS(8225), - [anon_sym_ATfor] = ACTIONS(8227), - [anon_sym_ATforeach] = ACTIONS(8229), - [anon_sym_ATforelse] = ACTIONS(8231), - [anon_sym_ATwhile] = ACTIONS(8233), - [anon_sym_ATsetup] = ACTIONS(8235), - [anon_sym_ATtask] = ACTIONS(8237), - [anon_sym_ATstory] = ACTIONS(8239), - [anon_sym_ATbefore] = ACTIONS(8241), - [anon_sym_ATafter] = ACTIONS(8243), - [anon_sym_ATsuccess] = ACTIONS(8245), - [anon_sym_ATfinished] = ACTIONS(8247), - [anon_sym_ATpersist] = ACTIONS(8249), - [anon_sym_ATteleport] = ACTIONS(8251), - [anon_sym_ATvolt] = ACTIONS(8253), - [aux_sym__text_token1] = ACTIONS(8255), - [aux_sym__text_token2] = ACTIONS(8255), - [aux_sym__text_token3] = ACTIONS(8257), + [sym__definition] = STATE(646), + [sym_keyword] = STATE(646), + [sym_php_statement] = STATE(646), + [sym__escaped] = STATE(2699), + [sym__unescaped] = STATE(2699), + [sym__raw] = STATE(2699), + [sym__inline_raw] = STATE(2699), + [sym__multi_line_raw] = STATE(2699), + [sym_attribute] = STATE(646), + [sym__inline_directive] = STATE(646), + [sym__nested_directive] = STATE(646), + [sym_fragment] = STATE(646), + [sym_section] = STATE(646), + [sym_inlineSection] = STATE(646), + [sym_once] = STATE(646), + [sym_verbatim] = STATE(646), + [sym_stack] = STATE(646), + [sym__push] = STATE(2700), + [sym__pushOnce] = STATE(2700), + [sym__pushIf] = STATE(2700), + [sym__prepend] = STATE(2700), + [sym__prependOnce] = STATE(2700), + [sym_conditional] = STATE(646), + [sym__if] = STATE(2701), + [sym__unless] = STATE(2701), + [sym__isset] = STATE(2701), + [sym__empty] = STATE(2701), + [sym__auth] = STATE(2701), + [sym__guest] = STATE(2701), + [sym__production] = STATE(2701), + [sym__env] = STATE(2701), + [sym__hasSection] = STATE(2701), + [sym__sectionMissing] = STATE(2701), + [sym__error] = STATE(2701), + [sym_authorization] = STATE(2701), + [sym__can] = STATE(2702), + [sym__cannot] = STATE(2702), + [sym__canany] = STATE(2702), + [sym__feature] = STATE(2701), + [sym__custom] = STATE(2701), + [sym_switch] = STATE(646), + [sym_loop] = STATE(646), + [sym_loop_operator] = STATE(646), + [sym__for] = STATE(2703), + [sym__foreach] = STATE(2703), + [sym__forelse] = STATE(2703), + [sym__while] = STATE(2703), + [sym_envoy] = STATE(646), + [sym__setup] = STATE(2699), + [sym__task] = STATE(2704), + [sym__story] = STATE(2704), + [sym__hooks] = STATE(2699), + [sym__before] = STATE(2699), + [sym__after] = STATE(2699), + [sym__envoy_error] = STATE(2699), + [sym__success] = STATE(2699), + [sym__finished] = STATE(2699), + [sym_livewire] = STATE(646), + [sym__persist] = STATE(2705), + [sym__teleport] = STATE(2705), + [sym__volt] = STATE(2705), + [sym_alpine_js] = STATE(646), + [aux_sym__directive_body] = STATE(646), + [sym_text] = STATE(646), + [sym__text] = STATE(968), + [aux_sym_php_only_repeat1] = STATE(968), + [sym_comment] = ACTIONS(9609), + [aux_sym_keyword_token1] = ACTIONS(9612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(9615), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9618), + [anon_sym_ATphp] = ACTIONS(9621), + [aux_sym_attribute_token1] = ACTIONS(9624), + [aux_sym__inline_directive_token1] = ACTIONS(9627), + [anon_sym_ATfragment] = ACTIONS(9630), + [anon_sym_ATsection] = ACTIONS(9633), + [anon_sym_ATonce] = ACTIONS(9636), + [anon_sym_ATverbatim] = ACTIONS(9639), + [anon_sym_ATpush] = ACTIONS(9642), + [anon_sym_ATpushOnce] = ACTIONS(9645), + [anon_sym_ATpushIf] = ACTIONS(9648), + [anon_sym_ATprepend] = ACTIONS(9651), + [anon_sym_ATprependOnce] = ACTIONS(9654), + [anon_sym_ATif] = ACTIONS(9657), + [anon_sym_ATunless] = ACTIONS(9660), + [anon_sym_ATisset] = ACTIONS(9663), + [anon_sym_ATempty] = ACTIONS(9666), + [anon_sym_ATauth] = ACTIONS(9669), + [anon_sym_ATguest] = ACTIONS(9672), + [anon_sym_ATproduction] = ACTIONS(9675), + [anon_sym_ATenv] = ACTIONS(9678), + [anon_sym_AThasSection] = ACTIONS(9681), + [anon_sym_ATsectionMissing] = ACTIONS(9684), + [anon_sym_ATerror] = ACTIONS(9687), + [anon_sym_ATcan] = ACTIONS(9690), + [anon_sym_ATcannot] = ACTIONS(9693), + [anon_sym_ATcanany] = ACTIONS(9696), + [anon_sym_ATfeature] = ACTIONS(9699), + [aux_sym__custom_token1] = ACTIONS(9702), + [aux_sym__custom_token2] = ACTIONS(9705), + [anon_sym_ATswitch] = ACTIONS(9708), + [aux_sym_loop_operator_token1] = ACTIONS(9711), + [anon_sym_ATfor] = ACTIONS(9714), + [anon_sym_ATforeach] = ACTIONS(9717), + [anon_sym_ATforelse] = ACTIONS(9720), + [anon_sym_ATwhile] = ACTIONS(9723), + [anon_sym_ATsetup] = ACTIONS(9726), + [anon_sym_ATtask] = ACTIONS(9729), + [anon_sym_ATstory] = ACTIONS(9732), + [anon_sym_ATbefore] = ACTIONS(9735), + [anon_sym_ATafter] = ACTIONS(9738), + [anon_sym_ATsuccess] = ACTIONS(9741), + [anon_sym_ATfinished] = ACTIONS(9744), + [anon_sym_ATpersist] = ACTIONS(9747), + [anon_sym_ATendpersist] = ACTIONS(5134), + [anon_sym_ATteleport] = ACTIONS(9750), + [anon_sym_ATvolt] = ACTIONS(9753), + [aux_sym_alpine_js_token1] = ACTIONS(9756), + [aux_sym__text_token1] = ACTIONS(9759), + [aux_sym__text_token2] = ACTIONS(9759), + [aux_sym__text_token3] = ACTIONS(9762), }, [647] = { - [sym__definition] = STATE(647), - [sym_keyword] = STATE(647), - [sym_php_statement] = STATE(647), - [sym__escaped] = STATE(2667), - [sym__unescaped] = STATE(2667), - [sym__raw] = STATE(2667), - [sym__inline_raw] = STATE(2667), - [sym__multi_line_raw] = STATE(2667), - [sym_attribute] = STATE(647), - [sym__inline_directive] = STATE(647), - [sym__nested_directive] = STATE(647), - [sym_fragment] = STATE(647), - [sym_section] = STATE(647), - [sym_inlineSection] = STATE(647), - [sym_once] = STATE(647), - [sym_verbatim] = STATE(647), - [sym_stack] = STATE(647), - [sym__push] = STATE(2668), - [sym__pushOnce] = STATE(2668), - [sym__pushIf] = STATE(2668), - [sym__prepend] = STATE(2668), - [sym__prependOnce] = STATE(2668), - [sym_conditional] = STATE(647), - [sym__if] = STATE(2669), - [sym__unless] = STATE(2669), - [sym__isset] = STATE(2669), - [sym__empty] = STATE(2669), - [sym__auth] = STATE(2669), - [sym__guest] = STATE(2669), - [sym__production] = STATE(2669), - [sym__env] = STATE(2669), - [sym__hasSection] = STATE(2669), - [sym__sectionMissing] = STATE(2669), - [sym__error] = STATE(2669), - [sym_authorization] = STATE(2669), - [sym__can] = STATE(2670), - [sym__cannot] = STATE(2670), - [sym__canany] = STATE(2670), - [sym__feature] = STATE(2669), - [sym__custom] = STATE(2669), - [sym_switch] = STATE(647), - [sym_loop] = STATE(647), - [sym_loop_operator] = STATE(647), - [sym__for] = STATE(2671), - [sym__foreach] = STATE(2671), - [sym__forelse] = STATE(2671), - [sym__while] = STATE(2671), - [sym_envoy] = STATE(647), - [sym__setup] = STATE(2667), - [sym__task] = STATE(2672), - [sym__story] = STATE(2672), - [sym__hooks] = STATE(2667), - [sym__before] = STATE(2667), - [sym__after] = STATE(2667), - [sym__envoy_error] = STATE(2667), - [sym__success] = STATE(2667), - [sym__finished] = STATE(2667), - [sym_livewire] = STATE(647), - [sym__persist] = STATE(2673), - [sym__teleport] = STATE(2673), - [sym__volt] = STATE(2673), - [aux_sym__directive_body] = STATE(647), - [sym_text] = STATE(647), - [sym__text] = STATE(972), - [aux_sym_php_only_repeat1] = STATE(972), - [sym_comment] = ACTIONS(9458), - [aux_sym_keyword_token1] = ACTIONS(9461), - [anon_sym_LBRACE_LBRACE] = ACTIONS(9464), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9467), - [anon_sym_ATphp] = ACTIONS(9470), - [aux_sym_attribute_token1] = ACTIONS(9473), - [aux_sym__inline_directive_token1] = ACTIONS(9476), - [anon_sym_ATfragment] = ACTIONS(9479), - [anon_sym_ATsection] = ACTIONS(9482), - [anon_sym_ATonce] = ACTIONS(9485), - [anon_sym_ATverbatim] = ACTIONS(9488), - [anon_sym_ATpush] = ACTIONS(9491), - [anon_sym_ATpushOnce] = ACTIONS(9494), - [anon_sym_ATpushIf] = ACTIONS(9497), - [anon_sym_ATprepend] = ACTIONS(9500), - [anon_sym_ATprependOnce] = ACTIONS(9503), - [anon_sym_ATif] = ACTIONS(9506), - [anon_sym_ATunless] = ACTIONS(9509), - [anon_sym_ATisset] = ACTIONS(9512), - [anon_sym_ATempty] = ACTIONS(9515), - [anon_sym_ATauth] = ACTIONS(9518), - [anon_sym_ATguest] = ACTIONS(9521), - [anon_sym_ATproduction] = ACTIONS(9524), - [anon_sym_ATenv] = ACTIONS(9527), - [anon_sym_AThasSection] = ACTIONS(9530), - [anon_sym_ATsectionMissing] = ACTIONS(9533), - [anon_sym_ATerror] = ACTIONS(9536), - [anon_sym_ATcan] = ACTIONS(9539), - [anon_sym_ATcannot] = ACTIONS(9542), - [anon_sym_ATcanany] = ACTIONS(9545), - [anon_sym_ATfeature] = ACTIONS(9548), - [aux_sym__custom_token1] = ACTIONS(9551), - [aux_sym__custom_token2] = ACTIONS(9554), - [anon_sym_ATswitch] = ACTIONS(9557), - [aux_sym_loop_operator_token1] = ACTIONS(9560), - [anon_sym_ATfor] = ACTIONS(9563), - [anon_sym_ATforeach] = ACTIONS(9566), - [anon_sym_ATforelse] = ACTIONS(9569), - [anon_sym_ATwhile] = ACTIONS(9572), - [anon_sym_ATsetup] = ACTIONS(9575), - [anon_sym_ATtask] = ACTIONS(9578), - [anon_sym_ATstory] = ACTIONS(9581), - [anon_sym_ATbefore] = ACTIONS(9584), - [anon_sym_ATafter] = ACTIONS(9587), - [anon_sym_ATsuccess] = ACTIONS(9590), - [anon_sym_ATfinished] = ACTIONS(9593), - [anon_sym_ATpersist] = ACTIONS(9596), - [anon_sym_ATendpersist] = ACTIONS(5035), - [anon_sym_ATteleport] = ACTIONS(9599), - [anon_sym_ATvolt] = ACTIONS(9602), - [aux_sym__text_token1] = ACTIONS(9605), - [aux_sym__text_token2] = ACTIONS(9605), - [aux_sym__text_token3] = ACTIONS(9608), - }, - [648] = { [sym__definition] = STATE(648), [sym_keyword] = STATE(648), [sym_php_statement] = STATE(648), - [sym__escaped] = STATE(2666), - [sym__unescaped] = STATE(2666), - [sym__raw] = STATE(2666), - [sym__inline_raw] = STATE(2666), - [sym__multi_line_raw] = STATE(2666), + [sym__escaped] = STATE(3114), + [sym__unescaped] = STATE(3114), + [sym__raw] = STATE(3114), + [sym__inline_raw] = STATE(3114), + [sym__multi_line_raw] = STATE(3114), [sym_attribute] = STATE(648), [sym__inline_directive] = STATE(648), [sym__nested_directive] = STATE(648), @@ -103927,117 +105573,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(648), [sym_verbatim] = STATE(648), [sym_stack] = STATE(648), - [sym__push] = STATE(2665), - [sym__pushOnce] = STATE(2665), - [sym__pushIf] = STATE(2665), - [sym__prepend] = STATE(2665), - [sym__prependOnce] = STATE(2665), + [sym__push] = STATE(3115), + [sym__pushOnce] = STATE(3115), + [sym__pushIf] = STATE(3115), + [sym__prepend] = STATE(3115), + [sym__prependOnce] = STATE(3115), [sym_conditional] = STATE(648), - [sym__if] = STATE(2608), - [sym__unless] = STATE(2608), - [sym__isset] = STATE(2608), - [sym__empty] = STATE(2608), - [sym__auth] = STATE(2608), - [sym__guest] = STATE(2608), - [sym__production] = STATE(2608), - [sym__env] = STATE(2608), - [sym__hasSection] = STATE(2608), - [sym__sectionMissing] = STATE(2608), - [sym__error] = STATE(2608), - [sym_authorization] = STATE(2608), - [sym__can] = STATE(2501), - [sym__cannot] = STATE(2501), - [sym__canany] = STATE(2501), - [sym__feature] = STATE(2608), - [sym__custom] = STATE(2608), + [sym__if] = STATE(3116), + [sym__unless] = STATE(3116), + [sym__isset] = STATE(3116), + [sym__empty] = STATE(3116), + [sym__auth] = STATE(3116), + [sym__guest] = STATE(3116), + [sym__production] = STATE(3116), + [sym__env] = STATE(3116), + [sym__hasSection] = STATE(3116), + [sym__sectionMissing] = STATE(3116), + [sym__error] = STATE(3116), + [sym_authorization] = STATE(3116), + [sym__can] = STATE(3117), + [sym__cannot] = STATE(3117), + [sym__canany] = STATE(3117), + [sym__feature] = STATE(3116), + [sym__custom] = STATE(3116), [sym_switch] = STATE(648), [sym_loop] = STATE(648), [sym_loop_operator] = STATE(648), - [sym__for] = STATE(2584), - [sym__foreach] = STATE(2584), - [sym__forelse] = STATE(2584), - [sym__while] = STATE(2584), + [sym__for] = STATE(3118), + [sym__foreach] = STATE(3118), + [sym__forelse] = STATE(3118), + [sym__while] = STATE(3118), [sym_envoy] = STATE(648), - [sym__setup] = STATE(2666), - [sym__task] = STATE(2583), - [sym__story] = STATE(2583), - [sym__hooks] = STATE(2666), - [sym__before] = STATE(2666), - [sym__after] = STATE(2666), - [sym__envoy_error] = STATE(2666), - [sym__success] = STATE(2666), - [sym__finished] = STATE(2666), + [sym__setup] = STATE(3114), + [sym__task] = STATE(3119), + [sym__story] = STATE(3119), + [sym__hooks] = STATE(3114), + [sym__before] = STATE(3114), + [sym__after] = STATE(3114), + [sym__envoy_error] = STATE(3114), + [sym__success] = STATE(3114), + [sym__finished] = STATE(3114), [sym_livewire] = STATE(648), - [sym__persist] = STATE(2526), - [sym__teleport] = STATE(2526), - [sym__volt] = STATE(2526), + [sym__persist] = STATE(3120), + [sym__teleport] = STATE(3120), + [sym__volt] = STATE(3120), + [sym_alpine_js] = STATE(648), [aux_sym__directive_body] = STATE(648), [sym_text] = STATE(648), - [sym__text] = STATE(1078), - [aux_sym_php_only_repeat1] = STATE(1078), - [sym_comment] = ACTIONS(9611), - [aux_sym_keyword_token1] = ACTIONS(9614), - [anon_sym_LBRACE_LBRACE] = ACTIONS(9617), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9620), - [anon_sym_ATphp] = ACTIONS(9623), - [aux_sym_attribute_token1] = ACTIONS(9626), - [aux_sym__inline_directive_token1] = ACTIONS(9629), - [anon_sym_ATfragment] = ACTIONS(9632), - [anon_sym_ATsection] = ACTIONS(9635), - [anon_sym_ATonce] = ACTIONS(9638), - [anon_sym_ATverbatim] = ACTIONS(9641), - [anon_sym_ATpush] = ACTIONS(9644), - [anon_sym_ATpushOnce] = ACTIONS(9647), - [anon_sym_ATpushIf] = ACTIONS(9650), - [anon_sym_ATendPushIf] = ACTIONS(5035), - [anon_sym_ATprepend] = ACTIONS(9653), - [anon_sym_ATprependOnce] = ACTIONS(9656), - [anon_sym_ATif] = ACTIONS(9659), - [anon_sym_ATunless] = ACTIONS(9662), - [anon_sym_ATisset] = ACTIONS(9665), - [anon_sym_ATempty] = ACTIONS(9668), - [anon_sym_ATauth] = ACTIONS(9671), - [anon_sym_ATguest] = ACTIONS(9674), - [anon_sym_ATproduction] = ACTIONS(9677), - [anon_sym_ATenv] = ACTIONS(9680), - [anon_sym_AThasSection] = ACTIONS(9683), - [anon_sym_ATsectionMissing] = ACTIONS(9686), - [anon_sym_ATerror] = ACTIONS(9689), - [anon_sym_ATcan] = ACTIONS(9692), - [anon_sym_ATcannot] = ACTIONS(9695), - [anon_sym_ATcanany] = ACTIONS(9698), - [anon_sym_ATfeature] = ACTIONS(9701), - [aux_sym__custom_token1] = ACTIONS(9704), - [aux_sym__custom_token2] = ACTIONS(9707), - [anon_sym_ATswitch] = ACTIONS(9710), - [aux_sym_loop_operator_token1] = ACTIONS(9713), - [anon_sym_ATfor] = ACTIONS(9716), - [anon_sym_ATforeach] = ACTIONS(9719), - [anon_sym_ATforelse] = ACTIONS(9722), - [anon_sym_ATwhile] = ACTIONS(9725), - [anon_sym_ATsetup] = ACTIONS(9728), - [anon_sym_ATtask] = ACTIONS(9731), - [anon_sym_ATstory] = ACTIONS(9734), - [anon_sym_ATbefore] = ACTIONS(9737), - [anon_sym_ATafter] = ACTIONS(9740), - [anon_sym_ATsuccess] = ACTIONS(9743), - [anon_sym_ATfinished] = ACTIONS(9746), - [anon_sym_ATpersist] = ACTIONS(9749), - [anon_sym_ATteleport] = ACTIONS(9752), - [anon_sym_ATvolt] = ACTIONS(9755), - [aux_sym__text_token1] = ACTIONS(9758), - [aux_sym__text_token2] = ACTIONS(9758), - [aux_sym__text_token3] = ACTIONS(9761), + [sym__text] = STATE(941), + [aux_sym_php_only_repeat1] = STATE(941), + [sym_comment] = ACTIONS(9765), + [aux_sym_keyword_token1] = ACTIONS(9767), + [anon_sym_LBRACE_LBRACE] = ACTIONS(9769), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9771), + [anon_sym_ATphp] = ACTIONS(9773), + [aux_sym_attribute_token1] = ACTIONS(9775), + [aux_sym__inline_directive_token1] = ACTIONS(9777), + [anon_sym_ATfragment] = ACTIONS(9779), + [anon_sym_ATsection] = ACTIONS(9781), + [anon_sym_ATonce] = ACTIONS(9783), + [anon_sym_ATverbatim] = ACTIONS(9785), + [anon_sym_ATpush] = ACTIONS(9787), + [anon_sym_ATpushOnce] = ACTIONS(9789), + [anon_sym_ATpushIf] = ACTIONS(9791), + [anon_sym_ATprepend] = ACTIONS(9793), + [anon_sym_ATprependOnce] = ACTIONS(9795), + [anon_sym_ATif] = ACTIONS(9797), + [anon_sym_ATunless] = ACTIONS(9799), + [anon_sym_ATisset] = ACTIONS(9801), + [anon_sym_ATempty] = ACTIONS(9803), + [anon_sym_ATauth] = ACTIONS(9805), + [anon_sym_ATguest] = ACTIONS(9807), + [anon_sym_ATproduction] = ACTIONS(9809), + [anon_sym_ATenv] = ACTIONS(9811), + [anon_sym_AThasSection] = ACTIONS(9813), + [anon_sym_ATsectionMissing] = ACTIONS(9815), + [anon_sym_ATerror] = ACTIONS(9817), + [anon_sym_ATcan] = ACTIONS(9819), + [anon_sym_ATcannot] = ACTIONS(9821), + [anon_sym_ATcanany] = ACTIONS(9823), + [anon_sym_ATfeature] = ACTIONS(9825), + [aux_sym__custom_token1] = ACTIONS(9827), + [aux_sym__custom_token2] = ACTIONS(9829), + [anon_sym_ATswitch] = ACTIONS(9831), + [anon_sym_ATbreak] = ACTIONS(4699), + [aux_sym_loop_operator_token1] = ACTIONS(9833), + [anon_sym_ATfor] = ACTIONS(9835), + [anon_sym_ATforeach] = ACTIONS(9837), + [anon_sym_ATforelse] = ACTIONS(9839), + [anon_sym_ATwhile] = ACTIONS(9841), + [anon_sym_ATsetup] = ACTIONS(9843), + [anon_sym_ATtask] = ACTIONS(9845), + [anon_sym_ATstory] = ACTIONS(9847), + [anon_sym_ATbefore] = ACTIONS(9849), + [anon_sym_ATafter] = ACTIONS(9851), + [anon_sym_ATsuccess] = ACTIONS(9853), + [anon_sym_ATfinished] = ACTIONS(9855), + [anon_sym_ATpersist] = ACTIONS(9857), + [anon_sym_ATteleport] = ACTIONS(9859), + [anon_sym_ATvolt] = ACTIONS(9861), + [aux_sym_alpine_js_token1] = ACTIONS(9863), + [aux_sym__text_token1] = ACTIONS(9865), + [aux_sym__text_token2] = ACTIONS(9865), + [aux_sym__text_token3] = ACTIONS(9867), + }, + [648] = { + [sym__definition] = STATE(657), + [sym_keyword] = STATE(657), + [sym_php_statement] = STATE(657), + [sym__escaped] = STATE(3114), + [sym__unescaped] = STATE(3114), + [sym__raw] = STATE(3114), + [sym__inline_raw] = STATE(3114), + [sym__multi_line_raw] = STATE(3114), + [sym_attribute] = STATE(657), + [sym__inline_directive] = STATE(657), + [sym__nested_directive] = STATE(657), + [sym_fragment] = STATE(657), + [sym_section] = STATE(657), + [sym_inlineSection] = STATE(657), + [sym_once] = STATE(657), + [sym_verbatim] = STATE(657), + [sym_stack] = STATE(657), + [sym__push] = STATE(3115), + [sym__pushOnce] = STATE(3115), + [sym__pushIf] = STATE(3115), + [sym__prepend] = STATE(3115), + [sym__prependOnce] = STATE(3115), + [sym_conditional] = STATE(657), + [sym__if] = STATE(3116), + [sym__unless] = STATE(3116), + [sym__isset] = STATE(3116), + [sym__empty] = STATE(3116), + [sym__auth] = STATE(3116), + [sym__guest] = STATE(3116), + [sym__production] = STATE(3116), + [sym__env] = STATE(3116), + [sym__hasSection] = STATE(3116), + [sym__sectionMissing] = STATE(3116), + [sym__error] = STATE(3116), + [sym_authorization] = STATE(3116), + [sym__can] = STATE(3117), + [sym__cannot] = STATE(3117), + [sym__canany] = STATE(3117), + [sym__feature] = STATE(3116), + [sym__custom] = STATE(3116), + [sym_switch] = STATE(657), + [sym_loop] = STATE(657), + [sym_loop_operator] = STATE(657), + [sym__for] = STATE(3118), + [sym__foreach] = STATE(3118), + [sym__forelse] = STATE(3118), + [sym__while] = STATE(3118), + [sym_envoy] = STATE(657), + [sym__setup] = STATE(3114), + [sym__task] = STATE(3119), + [sym__story] = STATE(3119), + [sym__hooks] = STATE(3114), + [sym__before] = STATE(3114), + [sym__after] = STATE(3114), + [sym__envoy_error] = STATE(3114), + [sym__success] = STATE(3114), + [sym__finished] = STATE(3114), + [sym_livewire] = STATE(657), + [sym__persist] = STATE(3120), + [sym__teleport] = STATE(3120), + [sym__volt] = STATE(3120), + [sym_alpine_js] = STATE(657), + [aux_sym__directive_body] = STATE(657), + [sym_text] = STATE(657), + [sym__text] = STATE(941), + [aux_sym_php_only_repeat1] = STATE(941), + [sym_comment] = ACTIONS(9869), + [aux_sym_keyword_token1] = ACTIONS(9767), + [anon_sym_LBRACE_LBRACE] = ACTIONS(9769), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9771), + [anon_sym_ATphp] = ACTIONS(9773), + [aux_sym_attribute_token1] = ACTIONS(9775), + [aux_sym__inline_directive_token1] = ACTIONS(9777), + [anon_sym_ATfragment] = ACTIONS(9779), + [anon_sym_ATsection] = ACTIONS(9781), + [anon_sym_ATonce] = ACTIONS(9783), + [anon_sym_ATverbatim] = ACTIONS(9785), + [anon_sym_ATpush] = ACTIONS(9787), + [anon_sym_ATpushOnce] = ACTIONS(9789), + [anon_sym_ATpushIf] = ACTIONS(9791), + [anon_sym_ATprepend] = ACTIONS(9793), + [anon_sym_ATprependOnce] = ACTIONS(9795), + [anon_sym_ATif] = ACTIONS(9797), + [anon_sym_ATunless] = ACTIONS(9799), + [anon_sym_ATisset] = ACTIONS(9801), + [anon_sym_ATempty] = ACTIONS(9803), + [anon_sym_ATauth] = ACTIONS(9805), + [anon_sym_ATguest] = ACTIONS(9807), + [anon_sym_ATproduction] = ACTIONS(9809), + [anon_sym_ATenv] = ACTIONS(9811), + [anon_sym_AThasSection] = ACTIONS(9813), + [anon_sym_ATsectionMissing] = ACTIONS(9815), + [anon_sym_ATerror] = ACTIONS(9817), + [anon_sym_ATcan] = ACTIONS(9819), + [anon_sym_ATcannot] = ACTIONS(9821), + [anon_sym_ATcanany] = ACTIONS(9823), + [anon_sym_ATfeature] = ACTIONS(9825), + [aux_sym__custom_token1] = ACTIONS(9827), + [aux_sym__custom_token2] = ACTIONS(9829), + [anon_sym_ATswitch] = ACTIONS(9831), + [anon_sym_ATbreak] = ACTIONS(4859), + [aux_sym_loop_operator_token1] = ACTIONS(9833), + [anon_sym_ATfor] = ACTIONS(9835), + [anon_sym_ATforeach] = ACTIONS(9837), + [anon_sym_ATforelse] = ACTIONS(9839), + [anon_sym_ATwhile] = ACTIONS(9841), + [anon_sym_ATsetup] = ACTIONS(9843), + [anon_sym_ATtask] = ACTIONS(9845), + [anon_sym_ATstory] = ACTIONS(9847), + [anon_sym_ATbefore] = ACTIONS(9849), + [anon_sym_ATafter] = ACTIONS(9851), + [anon_sym_ATsuccess] = ACTIONS(9853), + [anon_sym_ATfinished] = ACTIONS(9855), + [anon_sym_ATpersist] = ACTIONS(9857), + [anon_sym_ATteleport] = ACTIONS(9859), + [anon_sym_ATvolt] = ACTIONS(9861), + [aux_sym_alpine_js_token1] = ACTIONS(9863), + [aux_sym__text_token1] = ACTIONS(9865), + [aux_sym__text_token2] = ACTIONS(9865), + [aux_sym__text_token3] = ACTIONS(9867), }, [649] = { + [sym__definition] = STATE(649), + [sym_keyword] = STATE(649), + [sym_php_statement] = STATE(649), + [sym__escaped] = STATE(2782), + [sym__unescaped] = STATE(2782), + [sym__raw] = STATE(2782), + [sym__inline_raw] = STATE(2782), + [sym__multi_line_raw] = STATE(2782), + [sym_attribute] = STATE(649), + [sym__inline_directive] = STATE(649), + [sym__nested_directive] = STATE(649), + [sym_fragment] = STATE(649), + [sym_section] = STATE(649), + [sym_inlineSection] = STATE(649), + [sym_once] = STATE(649), + [sym_verbatim] = STATE(649), + [sym_stack] = STATE(649), + [sym__push] = STATE(2783), + [sym__pushOnce] = STATE(2783), + [sym__pushIf] = STATE(2783), + [sym__prepend] = STATE(2783), + [sym__prependOnce] = STATE(2783), + [sym_conditional] = STATE(649), + [sym__if] = STATE(2784), + [sym__unless] = STATE(2784), + [sym__isset] = STATE(2784), + [sym__empty] = STATE(2784), + [sym__auth] = STATE(2784), + [sym__guest] = STATE(2784), + [sym__production] = STATE(2784), + [sym__env] = STATE(2784), + [sym__hasSection] = STATE(2784), + [sym__sectionMissing] = STATE(2784), + [sym__error] = STATE(2784), + [sym_authorization] = STATE(2784), + [sym__can] = STATE(2785), + [sym__cannot] = STATE(2785), + [sym__canany] = STATE(2785), + [sym__feature] = STATE(2784), + [sym__custom] = STATE(2784), + [sym_switch] = STATE(649), + [sym_loop] = STATE(649), + [sym_loop_operator] = STATE(649), + [sym__for] = STATE(2786), + [sym__foreach] = STATE(2786), + [sym__forelse] = STATE(2786), + [sym__while] = STATE(2786), + [sym_envoy] = STATE(649), + [sym__setup] = STATE(2782), + [sym__task] = STATE(2787), + [sym__story] = STATE(2787), + [sym__hooks] = STATE(2782), + [sym__before] = STATE(2782), + [sym__after] = STATE(2782), + [sym__envoy_error] = STATE(2782), + [sym__success] = STATE(2782), + [sym__finished] = STATE(2782), + [sym_livewire] = STATE(649), + [sym__persist] = STATE(2788), + [sym__teleport] = STATE(2788), + [sym__volt] = STATE(2788), + [sym_alpine_js] = STATE(649), + [aux_sym__directive_body] = STATE(649), + [sym_text] = STATE(649), + [sym__text] = STATE(964), + [aux_sym_php_only_repeat1] = STATE(964), + [sym_comment] = ACTIONS(9871), + [aux_sym_keyword_token1] = ACTIONS(9874), + [anon_sym_LBRACE_LBRACE] = ACTIONS(9877), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9880), + [anon_sym_ATphp] = ACTIONS(9883), + [aux_sym_attribute_token1] = ACTIONS(9886), + [aux_sym__inline_directive_token1] = ACTIONS(9889), + [anon_sym_ATfragment] = ACTIONS(9892), + [anon_sym_ATsection] = ACTIONS(9895), + [anon_sym_ATonce] = ACTIONS(9898), + [anon_sym_ATverbatim] = ACTIONS(9901), + [anon_sym_ATpush] = ACTIONS(9904), + [anon_sym_ATpushOnce] = ACTIONS(9907), + [anon_sym_ATpushIf] = ACTIONS(9910), + [anon_sym_ATprepend] = ACTIONS(9913), + [anon_sym_ATprependOnce] = ACTIONS(9916), + [anon_sym_ATif] = ACTIONS(9919), + [anon_sym_ATunless] = ACTIONS(9922), + [anon_sym_ATisset] = ACTIONS(9925), + [anon_sym_ATempty] = ACTIONS(9928), + [anon_sym_ATauth] = ACTIONS(9931), + [anon_sym_ATguest] = ACTIONS(9934), + [anon_sym_ATproduction] = ACTIONS(9937), + [anon_sym_ATenv] = ACTIONS(9940), + [anon_sym_AThasSection] = ACTIONS(9943), + [anon_sym_ATsectionMissing] = ACTIONS(9946), + [anon_sym_ATerror] = ACTIONS(9949), + [anon_sym_ATcan] = ACTIONS(9952), + [anon_sym_ATcannot] = ACTIONS(9955), + [anon_sym_ATcanany] = ACTIONS(9958), + [anon_sym_ATfeature] = ACTIONS(9961), + [aux_sym__custom_token1] = ACTIONS(9964), + [aux_sym__custom_token2] = ACTIONS(9967), + [anon_sym_ATswitch] = ACTIONS(9970), + [aux_sym_loop_operator_token1] = ACTIONS(9973), + [anon_sym_ATfor] = ACTIONS(9976), + [anon_sym_ATforeach] = ACTIONS(9979), + [anon_sym_ATforelse] = ACTIONS(9982), + [anon_sym_ATwhile] = ACTIONS(9985), + [anon_sym_ATsetup] = ACTIONS(9988), + [anon_sym_ATtask] = ACTIONS(9991), + [anon_sym_ATstory] = ACTIONS(9994), + [anon_sym_ATbefore] = ACTIONS(9997), + [anon_sym_ATafter] = ACTIONS(10000), + [anon_sym_ATsuccess] = ACTIONS(10003), + [anon_sym_ATfinished] = ACTIONS(10006), + [anon_sym_ATpersist] = ACTIONS(10009), + [anon_sym_ATteleport] = ACTIONS(10012), + [anon_sym_ATendteleport] = ACTIONS(5134), + [anon_sym_ATvolt] = ACTIONS(10015), + [aux_sym_alpine_js_token1] = ACTIONS(10018), + [aux_sym__text_token1] = ACTIONS(10021), + [aux_sym__text_token2] = ACTIONS(10021), + [aux_sym__text_token3] = ACTIONS(10024), + }, + [650] = { [sym__definition] = STATE(650), [sym_keyword] = STATE(650), [sym_php_statement] = STATE(650), - [sym__escaped] = STATE(3077), - [sym__unescaped] = STATE(3077), - [sym__raw] = STATE(3077), - [sym__inline_raw] = STATE(3077), - [sym__multi_line_raw] = STATE(3077), + [sym__escaped] = STATE(2865), + [sym__unescaped] = STATE(2865), + [sym__raw] = STATE(2865), + [sym__inline_raw] = STATE(2865), + [sym__multi_line_raw] = STATE(2865), [sym_attribute] = STATE(650), [sym__inline_directive] = STATE(650), [sym__nested_directive] = STATE(650), @@ -104047,837 +105939,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(650), [sym_verbatim] = STATE(650), [sym_stack] = STATE(650), - [sym__push] = STATE(3078), - [sym__pushOnce] = STATE(3078), - [sym__pushIf] = STATE(3078), - [sym__prepend] = STATE(3078), - [sym__prependOnce] = STATE(3078), + [sym__push] = STATE(2866), + [sym__pushOnce] = STATE(2866), + [sym__pushIf] = STATE(2866), + [sym__prepend] = STATE(2866), + [sym__prependOnce] = STATE(2866), [sym_conditional] = STATE(650), - [sym__if] = STATE(3079), - [sym__unless] = STATE(3079), - [sym__isset] = STATE(3079), - [sym__empty] = STATE(3079), - [sym__auth] = STATE(3079), - [sym__guest] = STATE(3079), - [sym__production] = STATE(3079), - [sym__env] = STATE(3079), - [sym__hasSection] = STATE(3079), - [sym__sectionMissing] = STATE(3079), - [sym__error] = STATE(3079), - [sym_authorization] = STATE(3079), - [sym__can] = STATE(3080), - [sym__cannot] = STATE(3080), - [sym__canany] = STATE(3080), - [sym__feature] = STATE(3079), - [sym__custom] = STATE(3079), + [sym__if] = STATE(2867), + [sym__unless] = STATE(2867), + [sym__isset] = STATE(2867), + [sym__empty] = STATE(2867), + [sym__auth] = STATE(2867), + [sym__guest] = STATE(2867), + [sym__production] = STATE(2867), + [sym__env] = STATE(2867), + [sym__hasSection] = STATE(2867), + [sym__sectionMissing] = STATE(2867), + [sym__error] = STATE(2867), + [sym_authorization] = STATE(2867), + [sym__can] = STATE(2868), + [sym__cannot] = STATE(2868), + [sym__canany] = STATE(2868), + [sym__feature] = STATE(2867), + [sym__custom] = STATE(2867), [sym_switch] = STATE(650), [sym_loop] = STATE(650), [sym_loop_operator] = STATE(650), - [sym__for] = STATE(3081), - [sym__foreach] = STATE(3081), - [sym__forelse] = STATE(3081), - [sym__while] = STATE(3081), + [sym__for] = STATE(2869), + [sym__foreach] = STATE(2869), + [sym__forelse] = STATE(2869), + [sym__while] = STATE(2869), [sym_envoy] = STATE(650), - [sym__setup] = STATE(3077), - [sym__task] = STATE(3082), - [sym__story] = STATE(3082), - [sym__hooks] = STATE(3077), - [sym__before] = STATE(3077), - [sym__after] = STATE(3077), - [sym__envoy_error] = STATE(3077), - [sym__success] = STATE(3077), - [sym__finished] = STATE(3077), + [sym__setup] = STATE(2865), + [sym__task] = STATE(2870), + [sym__story] = STATE(2870), + [sym__hooks] = STATE(2865), + [sym__before] = STATE(2865), + [sym__after] = STATE(2865), + [sym__envoy_error] = STATE(2865), + [sym__success] = STATE(2865), + [sym__finished] = STATE(2865), [sym_livewire] = STATE(650), - [sym__persist] = STATE(3083), - [sym__teleport] = STATE(3083), - [sym__volt] = STATE(3083), + [sym__persist] = STATE(2871), + [sym__teleport] = STATE(2871), + [sym__volt] = STATE(2871), + [sym_alpine_js] = STATE(650), [aux_sym__directive_body] = STATE(650), [sym_text] = STATE(650), - [sym__text] = STATE(947), - [aux_sym_php_only_repeat1] = STATE(947), - [sym_comment] = ACTIONS(9764), - [aux_sym_keyword_token1] = ACTIONS(9766), - [anon_sym_LBRACE_LBRACE] = ACTIONS(9768), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9770), - [anon_sym_ATphp] = ACTIONS(9772), - [aux_sym_attribute_token1] = ACTIONS(9774), - [aux_sym__inline_directive_token1] = ACTIONS(9776), - [anon_sym_ATfragment] = ACTIONS(9778), - [anon_sym_ATsection] = ACTIONS(9780), - [anon_sym_ATonce] = ACTIONS(9782), - [anon_sym_ATverbatim] = ACTIONS(9784), - [anon_sym_ATpush] = ACTIONS(9786), - [anon_sym_ATpushOnce] = ACTIONS(9788), - [anon_sym_ATpushIf] = ACTIONS(9790), - [anon_sym_ATprepend] = ACTIONS(9792), - [anon_sym_ATprependOnce] = ACTIONS(9794), - [anon_sym_ATif] = ACTIONS(9796), - [anon_sym_ATunless] = ACTIONS(9798), - [anon_sym_ATisset] = ACTIONS(9800), - [anon_sym_ATempty] = ACTIONS(9802), - [anon_sym_ATauth] = ACTIONS(9804), - [anon_sym_ATguest] = ACTIONS(9806), - [anon_sym_ATproduction] = ACTIONS(9808), - [anon_sym_ATenv] = ACTIONS(9810), - [anon_sym_AThasSection] = ACTIONS(9812), - [anon_sym_ATsectionMissing] = ACTIONS(9814), - [anon_sym_ATerror] = ACTIONS(9816), - [anon_sym_ATcan] = ACTIONS(9818), - [anon_sym_ATcannot] = ACTIONS(9820), - [anon_sym_ATcanany] = ACTIONS(9822), - [anon_sym_ATfeature] = ACTIONS(9824), - [aux_sym__custom_token1] = ACTIONS(9826), - [aux_sym__custom_token2] = ACTIONS(9828), - [anon_sym_ATswitch] = ACTIONS(9830), - [anon_sym_ATbreak] = ACTIONS(4609), - [aux_sym_loop_operator_token1] = ACTIONS(9832), - [anon_sym_ATfor] = ACTIONS(9834), - [anon_sym_ATforeach] = ACTIONS(9836), - [anon_sym_ATforelse] = ACTIONS(9838), - [anon_sym_ATwhile] = ACTIONS(9840), - [anon_sym_ATsetup] = ACTIONS(9842), - [anon_sym_ATtask] = ACTIONS(9844), - [anon_sym_ATstory] = ACTIONS(9846), - [anon_sym_ATbefore] = ACTIONS(9848), - [anon_sym_ATafter] = ACTIONS(9850), - [anon_sym_ATsuccess] = ACTIONS(9852), - [anon_sym_ATfinished] = ACTIONS(9854), - [anon_sym_ATpersist] = ACTIONS(9856), - [anon_sym_ATteleport] = ACTIONS(9858), - [anon_sym_ATvolt] = ACTIONS(9860), - [aux_sym__text_token1] = ACTIONS(9862), - [aux_sym__text_token2] = ACTIONS(9862), - [aux_sym__text_token3] = ACTIONS(9864), - }, - [650] = { - [sym__definition] = STATE(657), - [sym_keyword] = STATE(657), - [sym_php_statement] = STATE(657), - [sym__escaped] = STATE(3077), - [sym__unescaped] = STATE(3077), - [sym__raw] = STATE(3077), - [sym__inline_raw] = STATE(3077), - [sym__multi_line_raw] = STATE(3077), - [sym_attribute] = STATE(657), - [sym__inline_directive] = STATE(657), - [sym__nested_directive] = STATE(657), - [sym_fragment] = STATE(657), - [sym_section] = STATE(657), - [sym_inlineSection] = STATE(657), - [sym_once] = STATE(657), - [sym_verbatim] = STATE(657), - [sym_stack] = STATE(657), - [sym__push] = STATE(3078), - [sym__pushOnce] = STATE(3078), - [sym__pushIf] = STATE(3078), - [sym__prepend] = STATE(3078), - [sym__prependOnce] = STATE(3078), - [sym_conditional] = STATE(657), - [sym__if] = STATE(3079), - [sym__unless] = STATE(3079), - [sym__isset] = STATE(3079), - [sym__empty] = STATE(3079), - [sym__auth] = STATE(3079), - [sym__guest] = STATE(3079), - [sym__production] = STATE(3079), - [sym__env] = STATE(3079), - [sym__hasSection] = STATE(3079), - [sym__sectionMissing] = STATE(3079), - [sym__error] = STATE(3079), - [sym_authorization] = STATE(3079), - [sym__can] = STATE(3080), - [sym__cannot] = STATE(3080), - [sym__canany] = STATE(3080), - [sym__feature] = STATE(3079), - [sym__custom] = STATE(3079), - [sym_switch] = STATE(657), - [sym_loop] = STATE(657), - [sym_loop_operator] = STATE(657), - [sym__for] = STATE(3081), - [sym__foreach] = STATE(3081), - [sym__forelse] = STATE(3081), - [sym__while] = STATE(3081), - [sym_envoy] = STATE(657), - [sym__setup] = STATE(3077), - [sym__task] = STATE(3082), - [sym__story] = STATE(3082), - [sym__hooks] = STATE(3077), - [sym__before] = STATE(3077), - [sym__after] = STATE(3077), - [sym__envoy_error] = STATE(3077), - [sym__success] = STATE(3077), - [sym__finished] = STATE(3077), - [sym_livewire] = STATE(657), - [sym__persist] = STATE(3083), - [sym__teleport] = STATE(3083), - [sym__volt] = STATE(3083), - [aux_sym__directive_body] = STATE(657), - [sym_text] = STATE(657), - [sym__text] = STATE(947), - [aux_sym_php_only_repeat1] = STATE(947), - [sym_comment] = ACTIONS(9866), - [aux_sym_keyword_token1] = ACTIONS(9766), - [anon_sym_LBRACE_LBRACE] = ACTIONS(9768), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9770), - [anon_sym_ATphp] = ACTIONS(9772), - [aux_sym_attribute_token1] = ACTIONS(9774), - [aux_sym__inline_directive_token1] = ACTIONS(9776), - [anon_sym_ATfragment] = ACTIONS(9778), - [anon_sym_ATsection] = ACTIONS(9780), - [anon_sym_ATonce] = ACTIONS(9782), - [anon_sym_ATverbatim] = ACTIONS(9784), - [anon_sym_ATpush] = ACTIONS(9786), - [anon_sym_ATpushOnce] = ACTIONS(9788), - [anon_sym_ATpushIf] = ACTIONS(9790), - [anon_sym_ATprepend] = ACTIONS(9792), - [anon_sym_ATprependOnce] = ACTIONS(9794), - [anon_sym_ATif] = ACTIONS(9796), - [anon_sym_ATunless] = ACTIONS(9798), - [anon_sym_ATisset] = ACTIONS(9800), - [anon_sym_ATempty] = ACTIONS(9802), - [anon_sym_ATauth] = ACTIONS(9804), - [anon_sym_ATguest] = ACTIONS(9806), - [anon_sym_ATproduction] = ACTIONS(9808), - [anon_sym_ATenv] = ACTIONS(9810), - [anon_sym_AThasSection] = ACTIONS(9812), - [anon_sym_ATsectionMissing] = ACTIONS(9814), - [anon_sym_ATerror] = ACTIONS(9816), - [anon_sym_ATcan] = ACTIONS(9818), - [anon_sym_ATcannot] = ACTIONS(9820), - [anon_sym_ATcanany] = ACTIONS(9822), - [anon_sym_ATfeature] = ACTIONS(9824), - [aux_sym__custom_token1] = ACTIONS(9826), - [aux_sym__custom_token2] = ACTIONS(9828), - [anon_sym_ATswitch] = ACTIONS(9830), - [anon_sym_ATbreak] = ACTIONS(4996), - [aux_sym_loop_operator_token1] = ACTIONS(9832), - [anon_sym_ATfor] = ACTIONS(9834), - [anon_sym_ATforeach] = ACTIONS(9836), - [anon_sym_ATforelse] = ACTIONS(9838), - [anon_sym_ATwhile] = ACTIONS(9840), - [anon_sym_ATsetup] = ACTIONS(9842), - [anon_sym_ATtask] = ACTIONS(9844), - [anon_sym_ATstory] = ACTIONS(9846), - [anon_sym_ATbefore] = ACTIONS(9848), - [anon_sym_ATafter] = ACTIONS(9850), - [anon_sym_ATsuccess] = ACTIONS(9852), - [anon_sym_ATfinished] = ACTIONS(9854), - [anon_sym_ATpersist] = ACTIONS(9856), - [anon_sym_ATteleport] = ACTIONS(9858), - [anon_sym_ATvolt] = ACTIONS(9860), - [aux_sym__text_token1] = ACTIONS(9862), - [aux_sym__text_token2] = ACTIONS(9862), - [aux_sym__text_token3] = ACTIONS(9864), + [sym__text] = STATE(958), + [aux_sym_php_only_repeat1] = STATE(958), + [sym_comment] = ACTIONS(10027), + [aux_sym_keyword_token1] = ACTIONS(10030), + [anon_sym_LBRACE_LBRACE] = ACTIONS(10033), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(10036), + [anon_sym_ATphp] = ACTIONS(10039), + [aux_sym_attribute_token1] = ACTIONS(10042), + [aux_sym__inline_directive_token1] = ACTIONS(10045), + [anon_sym_ATfragment] = ACTIONS(10048), + [anon_sym_ATsection] = ACTIONS(10051), + [anon_sym_ATonce] = ACTIONS(10054), + [anon_sym_ATverbatim] = ACTIONS(10057), + [anon_sym_ATpush] = ACTIONS(10060), + [anon_sym_ATpushOnce] = ACTIONS(10063), + [anon_sym_ATpushIf] = ACTIONS(10066), + [anon_sym_ATprepend] = ACTIONS(10069), + [anon_sym_ATprependOnce] = ACTIONS(10072), + [anon_sym_ATif] = ACTIONS(10075), + [anon_sym_ATunless] = ACTIONS(10078), + [anon_sym_ATisset] = ACTIONS(10081), + [anon_sym_ATempty] = ACTIONS(10084), + [anon_sym_ATauth] = ACTIONS(10087), + [anon_sym_ATguest] = ACTIONS(10090), + [anon_sym_ATproduction] = ACTIONS(10093), + [anon_sym_ATenv] = ACTIONS(10096), + [anon_sym_AThasSection] = ACTIONS(10099), + [anon_sym_ATsectionMissing] = ACTIONS(10102), + [anon_sym_ATerror] = ACTIONS(10105), + [anon_sym_ATcan] = ACTIONS(10108), + [anon_sym_ATcannot] = ACTIONS(10111), + [anon_sym_ATcanany] = ACTIONS(10114), + [anon_sym_ATfeature] = ACTIONS(10117), + [aux_sym__custom_token1] = ACTIONS(10120), + [aux_sym__custom_token2] = ACTIONS(10123), + [anon_sym_ATswitch] = ACTIONS(10126), + [aux_sym_loop_operator_token1] = ACTIONS(10129), + [anon_sym_ATfor] = ACTIONS(10132), + [anon_sym_ATforeach] = ACTIONS(10135), + [anon_sym_ATforelse] = ACTIONS(10138), + [anon_sym_ATwhile] = ACTIONS(10141), + [anon_sym_ATsetup] = ACTIONS(10144), + [anon_sym_ATtask] = ACTIONS(10147), + [anon_sym_ATstory] = ACTIONS(10150), + [anon_sym_ATbefore] = ACTIONS(10153), + [anon_sym_ATafter] = ACTIONS(10156), + [anon_sym_ATsuccess] = ACTIONS(10159), + [anon_sym_ATfinished] = ACTIONS(10162), + [anon_sym_ATpersist] = ACTIONS(10165), + [anon_sym_ATteleport] = ACTIONS(10168), + [anon_sym_ATvolt] = ACTIONS(10171), + [anon_sym_ATendvolt] = ACTIONS(5134), + [aux_sym_alpine_js_token1] = ACTIONS(10174), + [aux_sym__text_token1] = ACTIONS(10177), + [aux_sym__text_token2] = ACTIONS(10177), + [aux_sym__text_token3] = ACTIONS(10180), }, [651] = { - [sym__definition] = STATE(651), - [sym_keyword] = STATE(651), - [sym_php_statement] = STATE(651), - [sym__escaped] = STATE(2749), - [sym__unescaped] = STATE(2749), - [sym__raw] = STATE(2749), - [sym__inline_raw] = STATE(2749), - [sym__multi_line_raw] = STATE(2749), - [sym_attribute] = STATE(651), - [sym__inline_directive] = STATE(651), - [sym__nested_directive] = STATE(651), - [sym_fragment] = STATE(651), - [sym_section] = STATE(651), - [sym_inlineSection] = STATE(651), - [sym_once] = STATE(651), - [sym_verbatim] = STATE(651), - [sym_stack] = STATE(651), - [sym__push] = STATE(2750), - [sym__pushOnce] = STATE(2750), - [sym__pushIf] = STATE(2750), - [sym__prepend] = STATE(2750), - [sym__prependOnce] = STATE(2750), - [sym_conditional] = STATE(651), - [sym__if] = STATE(2751), - [sym__unless] = STATE(2751), - [sym__isset] = STATE(2751), - [sym__empty] = STATE(2751), - [sym__auth] = STATE(2751), - [sym__guest] = STATE(2751), - [sym__production] = STATE(2751), - [sym__env] = STATE(2751), - [sym__hasSection] = STATE(2751), - [sym__sectionMissing] = STATE(2751), - [sym__error] = STATE(2751), - [sym_authorization] = STATE(2751), - [sym__can] = STATE(2752), - [sym__cannot] = STATE(2752), - [sym__canany] = STATE(2752), - [sym__feature] = STATE(2751), - [sym__custom] = STATE(2751), - [sym_switch] = STATE(651), - [sym_loop] = STATE(651), - [sym_loop_operator] = STATE(651), - [sym__for] = STATE(2753), - [sym__foreach] = STATE(2753), - [sym__forelse] = STATE(2753), - [sym__while] = STATE(2753), - [sym_envoy] = STATE(651), - [sym__setup] = STATE(2749), - [sym__task] = STATE(2754), - [sym__story] = STATE(2754), - [sym__hooks] = STATE(2749), - [sym__before] = STATE(2749), - [sym__after] = STATE(2749), - [sym__envoy_error] = STATE(2749), - [sym__success] = STATE(2749), - [sym__finished] = STATE(2749), - [sym_livewire] = STATE(651), - [sym__persist] = STATE(2755), - [sym__teleport] = STATE(2755), - [sym__volt] = STATE(2755), - [aux_sym__directive_body] = STATE(651), - [sym_text] = STATE(651), - [sym__text] = STATE(968), - [aux_sym_php_only_repeat1] = STATE(968), - [sym_comment] = ACTIONS(9868), - [aux_sym_keyword_token1] = ACTIONS(9871), - [anon_sym_LBRACE_LBRACE] = ACTIONS(9874), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9877), - [anon_sym_ATphp] = ACTIONS(9880), - [aux_sym_attribute_token1] = ACTIONS(9883), - [aux_sym__inline_directive_token1] = ACTIONS(9886), - [anon_sym_ATfragment] = ACTIONS(9889), - [anon_sym_ATsection] = ACTIONS(9892), - [anon_sym_ATonce] = ACTIONS(9895), - [anon_sym_ATverbatim] = ACTIONS(9898), - [anon_sym_ATpush] = ACTIONS(9901), - [anon_sym_ATpushOnce] = ACTIONS(9904), - [anon_sym_ATpushIf] = ACTIONS(9907), - [anon_sym_ATprepend] = ACTIONS(9910), - [anon_sym_ATprependOnce] = ACTIONS(9913), - [anon_sym_ATif] = ACTIONS(9916), - [anon_sym_ATunless] = ACTIONS(9919), - [anon_sym_ATisset] = ACTIONS(9922), - [anon_sym_ATempty] = ACTIONS(9925), - [anon_sym_ATauth] = ACTIONS(9928), - [anon_sym_ATguest] = ACTIONS(9931), - [anon_sym_ATproduction] = ACTIONS(9934), - [anon_sym_ATenv] = ACTIONS(9937), - [anon_sym_AThasSection] = ACTIONS(9940), - [anon_sym_ATsectionMissing] = ACTIONS(9943), - [anon_sym_ATerror] = ACTIONS(9946), - [anon_sym_ATcan] = ACTIONS(9949), - [anon_sym_ATcannot] = ACTIONS(9952), - [anon_sym_ATcanany] = ACTIONS(9955), - [anon_sym_ATfeature] = ACTIONS(9958), - [aux_sym__custom_token1] = ACTIONS(9961), - [aux_sym__custom_token2] = ACTIONS(9964), - [anon_sym_ATswitch] = ACTIONS(9967), - [aux_sym_loop_operator_token1] = ACTIONS(9970), - [anon_sym_ATfor] = ACTIONS(9973), - [anon_sym_ATforeach] = ACTIONS(9976), - [anon_sym_ATforelse] = ACTIONS(9979), - [anon_sym_ATwhile] = ACTIONS(9982), - [anon_sym_ATsetup] = ACTIONS(9985), - [anon_sym_ATtask] = ACTIONS(9988), - [anon_sym_ATstory] = ACTIONS(9991), - [anon_sym_ATbefore] = ACTIONS(9994), - [anon_sym_ATafter] = ACTIONS(9997), - [anon_sym_ATsuccess] = ACTIONS(10000), - [anon_sym_ATfinished] = ACTIONS(10003), - [anon_sym_ATpersist] = ACTIONS(10006), - [anon_sym_ATteleport] = ACTIONS(10009), - [anon_sym_ATendteleport] = ACTIONS(5035), - [anon_sym_ATvolt] = ACTIONS(10012), - [aux_sym__text_token1] = ACTIONS(10015), - [aux_sym__text_token2] = ACTIONS(10015), - [aux_sym__text_token3] = ACTIONS(10018), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(366), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(366), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(4525), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(10183), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), }, [652] = { - [sym__definition] = STATE(652), - [sym_keyword] = STATE(652), - [sym_php_statement] = STATE(652), - [sym__escaped] = STATE(2831), - [sym__unescaped] = STATE(2831), - [sym__raw] = STATE(2831), - [sym__inline_raw] = STATE(2831), - [sym__multi_line_raw] = STATE(2831), - [sym_attribute] = STATE(652), - [sym__inline_directive] = STATE(652), - [sym__nested_directive] = STATE(652), - [sym_fragment] = STATE(652), - [sym_section] = STATE(652), - [sym_inlineSection] = STATE(652), - [sym_once] = STATE(652), - [sym_verbatim] = STATE(652), - [sym_stack] = STATE(652), - [sym__push] = STATE(2832), - [sym__pushOnce] = STATE(2832), - [sym__pushIf] = STATE(2832), - [sym__prepend] = STATE(2832), - [sym__prependOnce] = STATE(2832), - [sym_conditional] = STATE(652), - [sym__if] = STATE(2833), - [sym__unless] = STATE(2833), - [sym__isset] = STATE(2833), - [sym__empty] = STATE(2833), - [sym__auth] = STATE(2833), - [sym__guest] = STATE(2833), - [sym__production] = STATE(2833), - [sym__env] = STATE(2833), - [sym__hasSection] = STATE(2833), - [sym__sectionMissing] = STATE(2833), - [sym__error] = STATE(2833), - [sym_authorization] = STATE(2833), - [sym__can] = STATE(2834), - [sym__cannot] = STATE(2834), - [sym__canany] = STATE(2834), - [sym__feature] = STATE(2833), - [sym__custom] = STATE(2833), - [sym_switch] = STATE(652), - [sym_loop] = STATE(652), - [sym_loop_operator] = STATE(652), - [sym__for] = STATE(2835), - [sym__foreach] = STATE(2835), - [sym__forelse] = STATE(2835), - [sym__while] = STATE(2835), - [sym_envoy] = STATE(652), - [sym__setup] = STATE(2831), - [sym__task] = STATE(2836), - [sym__story] = STATE(2836), - [sym__hooks] = STATE(2831), - [sym__before] = STATE(2831), - [sym__after] = STATE(2831), - [sym__envoy_error] = STATE(2831), - [sym__success] = STATE(2831), - [sym__finished] = STATE(2831), - [sym_livewire] = STATE(652), - [sym__persist] = STATE(2837), - [sym__teleport] = STATE(2837), - [sym__volt] = STATE(2837), - [aux_sym__directive_body] = STATE(652), - [sym_text] = STATE(652), - [sym__text] = STATE(962), - [aux_sym_php_only_repeat1] = STATE(962), - [sym_comment] = ACTIONS(10021), - [aux_sym_keyword_token1] = ACTIONS(10024), - [anon_sym_LBRACE_LBRACE] = ACTIONS(10027), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(10030), - [anon_sym_ATphp] = ACTIONS(10033), - [aux_sym_attribute_token1] = ACTIONS(10036), - [aux_sym__inline_directive_token1] = ACTIONS(10039), - [anon_sym_ATfragment] = ACTIONS(10042), - [anon_sym_ATsection] = ACTIONS(10045), - [anon_sym_ATonce] = ACTIONS(10048), - [anon_sym_ATverbatim] = ACTIONS(10051), - [anon_sym_ATpush] = ACTIONS(10054), - [anon_sym_ATpushOnce] = ACTIONS(10057), - [anon_sym_ATpushIf] = ACTIONS(10060), - [anon_sym_ATprepend] = ACTIONS(10063), - [anon_sym_ATprependOnce] = ACTIONS(10066), - [anon_sym_ATif] = ACTIONS(10069), - [anon_sym_ATunless] = ACTIONS(10072), - [anon_sym_ATisset] = ACTIONS(10075), - [anon_sym_ATempty] = ACTIONS(10078), - [anon_sym_ATauth] = ACTIONS(10081), - [anon_sym_ATguest] = ACTIONS(10084), - [anon_sym_ATproduction] = ACTIONS(10087), - [anon_sym_ATenv] = ACTIONS(10090), - [anon_sym_AThasSection] = ACTIONS(10093), - [anon_sym_ATsectionMissing] = ACTIONS(10096), - [anon_sym_ATerror] = ACTIONS(10099), - [anon_sym_ATcan] = ACTIONS(10102), - [anon_sym_ATcannot] = ACTIONS(10105), - [anon_sym_ATcanany] = ACTIONS(10108), - [anon_sym_ATfeature] = ACTIONS(10111), - [aux_sym__custom_token1] = ACTIONS(10114), - [aux_sym__custom_token2] = ACTIONS(10117), - [anon_sym_ATswitch] = ACTIONS(10120), - [aux_sym_loop_operator_token1] = ACTIONS(10123), - [anon_sym_ATfor] = ACTIONS(10126), - [anon_sym_ATforeach] = ACTIONS(10129), - [anon_sym_ATforelse] = ACTIONS(10132), - [anon_sym_ATwhile] = ACTIONS(10135), - [anon_sym_ATsetup] = ACTIONS(10138), - [anon_sym_ATtask] = ACTIONS(10141), - [anon_sym_ATstory] = ACTIONS(10144), - [anon_sym_ATbefore] = ACTIONS(10147), - [anon_sym_ATafter] = ACTIONS(10150), - [anon_sym_ATsuccess] = ACTIONS(10153), - [anon_sym_ATfinished] = ACTIONS(10156), - [anon_sym_ATpersist] = ACTIONS(10159), - [anon_sym_ATteleport] = ACTIONS(10162), - [anon_sym_ATvolt] = ACTIONS(10165), - [anon_sym_ATendvolt] = ACTIONS(5035), - [aux_sym__text_token1] = ACTIONS(10168), - [aux_sym__text_token2] = ACTIONS(10168), - [aux_sym__text_token3] = ACTIONS(10171), + [sym__definition] = STATE(634), + [sym_keyword] = STATE(634), + [sym_php_statement] = STATE(634), + [sym__escaped] = STATE(3373), + [sym__unescaped] = STATE(3373), + [sym__raw] = STATE(3373), + [sym__inline_raw] = STATE(3373), + [sym__multi_line_raw] = STATE(3373), + [sym_attribute] = STATE(634), + [sym__inline_directive] = STATE(634), + [sym__nested_directive] = STATE(634), + [sym_fragment] = STATE(634), + [sym_section] = STATE(634), + [sym_inlineSection] = STATE(634), + [sym_once] = STATE(634), + [sym_verbatim] = STATE(634), + [sym_stack] = STATE(634), + [sym__push] = STATE(3374), + [sym__pushOnce] = STATE(3374), + [sym__pushIf] = STATE(3374), + [sym__prepend] = STATE(3374), + [sym__prependOnce] = STATE(3374), + [sym_conditional] = STATE(634), + [sym__if] = STATE(3375), + [sym__unless] = STATE(3375), + [sym__isset] = STATE(3375), + [sym__empty] = STATE(3375), + [sym__auth] = STATE(3375), + [sym__guest] = STATE(3375), + [sym__production] = STATE(3375), + [sym__env] = STATE(3375), + [sym__hasSection] = STATE(3375), + [sym__sectionMissing] = STATE(3375), + [sym__error] = STATE(3375), + [sym_authorization] = STATE(3375), + [sym__can] = STATE(3376), + [sym__cannot] = STATE(3376), + [sym__canany] = STATE(3376), + [sym__feature] = STATE(3375), + [sym__custom] = STATE(3375), + [sym_switch] = STATE(634), + [sym_loop] = STATE(634), + [sym_loop_operator] = STATE(634), + [sym__for] = STATE(3407), + [sym__foreach] = STATE(3407), + [sym__forelse] = STATE(3407), + [sym__while] = STATE(3407), + [sym_envoy] = STATE(634), + [sym__setup] = STATE(3373), + [sym__task] = STATE(3382), + [sym__story] = STATE(3382), + [sym__hooks] = STATE(3373), + [sym__before] = STATE(3373), + [sym__after] = STATE(3373), + [sym__envoy_error] = STATE(3373), + [sym__success] = STATE(3373), + [sym__finished] = STATE(3373), + [sym_livewire] = STATE(634), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [sym_alpine_js] = STATE(634), + [aux_sym__directive_body] = STATE(634), + [sym_text] = STATE(634), + [sym__text] = STATE(761), + [aux_sym_php_only_repeat1] = STATE(761), + [sym_comment] = ACTIONS(10185), + [aux_sym_keyword_token1] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4291), + [anon_sym_ATphp] = ACTIONS(4293), + [aux_sym_attribute_token1] = ACTIONS(4295), + [aux_sym__inline_directive_token1] = ACTIONS(4297), + [anon_sym_ATfragment] = ACTIONS(4299), + [anon_sym_ATsection] = ACTIONS(4301), + [anon_sym_ATonce] = ACTIONS(4303), + [anon_sym_ATverbatim] = ACTIONS(4305), + [anon_sym_ATendverbatim] = ACTIONS(10187), + [anon_sym_ATpush] = ACTIONS(4309), + [anon_sym_ATpushOnce] = ACTIONS(4311), + [anon_sym_ATpushIf] = ACTIONS(4313), + [anon_sym_ATprepend] = ACTIONS(4315), + [anon_sym_ATprependOnce] = ACTIONS(4317), + [anon_sym_ATif] = ACTIONS(4319), + [anon_sym_ATunless] = ACTIONS(4321), + [anon_sym_ATisset] = ACTIONS(4323), + [anon_sym_ATempty] = ACTIONS(4325), + [anon_sym_ATauth] = ACTIONS(4327), + [anon_sym_ATguest] = ACTIONS(4329), + [anon_sym_ATproduction] = ACTIONS(4331), + [anon_sym_ATenv] = ACTIONS(4333), + [anon_sym_AThasSection] = ACTIONS(4335), + [anon_sym_ATsectionMissing] = ACTIONS(4337), + [anon_sym_ATerror] = ACTIONS(4339), + [anon_sym_ATcan] = ACTIONS(4341), + [anon_sym_ATcannot] = ACTIONS(4343), + [anon_sym_ATcanany] = ACTIONS(4345), + [anon_sym_ATfeature] = ACTIONS(4347), + [aux_sym__custom_token1] = ACTIONS(4349), + [aux_sym__custom_token2] = ACTIONS(4351), + [anon_sym_ATswitch] = ACTIONS(4353), + [aux_sym_loop_operator_token1] = ACTIONS(4355), + [anon_sym_ATfor] = ACTIONS(4357), + [anon_sym_ATforeach] = ACTIONS(4359), + [anon_sym_ATforelse] = ACTIONS(4361), + [anon_sym_ATwhile] = ACTIONS(4363), + [anon_sym_ATsetup] = ACTIONS(4365), + [anon_sym_ATtask] = ACTIONS(4367), + [anon_sym_ATstory] = ACTIONS(4369), + [anon_sym_ATbefore] = ACTIONS(4371), + [anon_sym_ATafter] = ACTIONS(4373), + [anon_sym_ATsuccess] = ACTIONS(4375), + [anon_sym_ATfinished] = ACTIONS(4377), + [anon_sym_ATpersist] = ACTIONS(4379), + [anon_sym_ATteleport] = ACTIONS(4381), + [anon_sym_ATvolt] = ACTIONS(4383), + [aux_sym_alpine_js_token1] = ACTIONS(4385), + [aux_sym__text_token1] = ACTIONS(4387), + [aux_sym__text_token2] = ACTIONS(4387), + [aux_sym__text_token3] = ACTIONS(4389), }, [653] = { - [sym__definition] = STATE(268), - [sym_keyword] = STATE(268), - [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), - [sym_attribute] = STATE(268), - [sym__inline_directive] = STATE(268), - [sym__nested_directive] = STATE(268), - [sym_fragment] = STATE(268), - [sym_section] = STATE(268), - [sym_inlineSection] = STATE(268), - [sym_once] = STATE(268), - [sym_verbatim] = STATE(268), - [sym_stack] = STATE(268), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), - [sym_conditional] = STATE(268), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), - [sym_switch] = STATE(268), - [sym_loop] = STATE(268), - [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), - [sym_envoy] = STATE(268), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), - [sym_livewire] = STATE(268), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), - [aux_sym__directive_body] = STATE(268), - [sym_text] = STATE(268), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(4441), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(10174), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), - }, - [654] = { - [sym__definition] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2913), - [sym__unescaped] = STATE(2913), - [sym__raw] = STATE(2913), - [sym__inline_raw] = STATE(2913), - [sym__multi_line_raw] = STATE(2913), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2914), - [sym__pushOnce] = STATE(2914), - [sym__pushIf] = STATE(2914), - [sym__prepend] = STATE(2914), - [sym__prependOnce] = STATE(2914), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2915), - [sym__unless] = STATE(2915), - [sym__isset] = STATE(2915), - [sym__empty] = STATE(2915), - [sym__auth] = STATE(2915), - [sym__guest] = STATE(2915), - [sym__production] = STATE(2915), - [sym__env] = STATE(2915), - [sym__hasSection] = STATE(2915), - [sym__sectionMissing] = STATE(2915), - [sym__error] = STATE(2915), - [sym_authorization] = STATE(2915), - [sym__can] = STATE(2916), - [sym__cannot] = STATE(2916), - [sym__canany] = STATE(2916), - [sym__feature] = STATE(2915), - [sym__custom] = STATE(2915), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2917), - [sym__foreach] = STATE(2917), - [sym__forelse] = STATE(2917), - [sym__while] = STATE(2917), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2913), - [sym__task] = STATE(2918), - [sym__story] = STATE(2918), - [sym__hooks] = STATE(2913), - [sym__before] = STATE(2913), - [sym__after] = STATE(2913), - [sym__envoy_error] = STATE(2913), - [sym__success] = STATE(2913), - [sym__finished] = STATE(2913), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2919), - [sym__teleport] = STATE(2919), - [sym__volt] = STATE(2919), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(956), - [aux_sym_php_only_repeat1] = STATE(956), - [sym_comment] = ACTIONS(10176), - [aux_sym_keyword_token1] = ACTIONS(10179), - [anon_sym_LBRACE_LBRACE] = ACTIONS(10182), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(10185), - [anon_sym_ATphp] = ACTIONS(10188), - [aux_sym_attribute_token1] = ACTIONS(10191), - [aux_sym__inline_directive_token1] = ACTIONS(10194), - [anon_sym_ATfragment] = ACTIONS(10197), - [anon_sym_ATsection] = ACTIONS(10200), - [aux_sym_section_token1] = ACTIONS(5035), - [anon_sym_ATonce] = ACTIONS(10203), - [anon_sym_ATverbatim] = ACTIONS(10206), - [anon_sym_ATpush] = ACTIONS(10209), - [anon_sym_ATpushOnce] = ACTIONS(10212), - [anon_sym_ATpushIf] = ACTIONS(10215), - [anon_sym_ATprepend] = ACTIONS(10218), - [anon_sym_ATprependOnce] = ACTIONS(10221), - [anon_sym_ATif] = ACTIONS(10224), - [anon_sym_ATunless] = ACTIONS(10227), - [anon_sym_ATisset] = ACTIONS(10230), - [anon_sym_ATempty] = ACTIONS(10233), - [anon_sym_ATauth] = ACTIONS(10236), - [anon_sym_ATguest] = ACTIONS(10239), - [anon_sym_ATproduction] = ACTIONS(10242), - [anon_sym_ATenv] = ACTIONS(10245), - [anon_sym_AThasSection] = ACTIONS(10248), - [anon_sym_ATsectionMissing] = ACTIONS(10251), - [anon_sym_ATerror] = ACTIONS(10254), - [anon_sym_ATcan] = ACTIONS(10257), - [anon_sym_ATcannot] = ACTIONS(10260), - [anon_sym_ATcanany] = ACTIONS(10263), - [anon_sym_ATfeature] = ACTIONS(10266), - [aux_sym__custom_token1] = ACTIONS(10269), - [aux_sym__custom_token2] = ACTIONS(10272), - [anon_sym_ATswitch] = ACTIONS(10275), - [aux_sym_loop_operator_token1] = ACTIONS(10278), - [anon_sym_ATfor] = ACTIONS(10281), - [anon_sym_ATforeach] = ACTIONS(10284), - [anon_sym_ATforelse] = ACTIONS(10287), - [anon_sym_ATwhile] = ACTIONS(10290), - [anon_sym_ATsetup] = ACTIONS(10293), - [anon_sym_ATtask] = ACTIONS(10296), - [anon_sym_ATstory] = ACTIONS(10299), - [anon_sym_ATbefore] = ACTIONS(10302), - [anon_sym_ATafter] = ACTIONS(10305), - [anon_sym_ATsuccess] = ACTIONS(10308), - [anon_sym_ATfinished] = ACTIONS(10311), - [anon_sym_ATpersist] = ACTIONS(10314), - [anon_sym_ATteleport] = ACTIONS(10317), - [anon_sym_ATvolt] = ACTIONS(10320), - [aux_sym__text_token1] = ACTIONS(10323), - [aux_sym__text_token2] = ACTIONS(10323), - [aux_sym__text_token3] = ACTIONS(10326), - }, - [655] = { - [sym__definition] = STATE(510), - [sym_keyword] = STATE(510), - [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3256), - [sym__unescaped] = STATE(3256), - [sym__raw] = STATE(3256), - [sym__inline_raw] = STATE(3256), - [sym__multi_line_raw] = STATE(3256), - [sym_attribute] = STATE(510), - [sym__inline_directive] = STATE(510), - [sym__nested_directive] = STATE(510), - [sym_fragment] = STATE(510), - [sym_section] = STATE(510), - [sym_inlineSection] = STATE(510), - [sym_once] = STATE(510), - [sym_verbatim] = STATE(510), - [sym_stack] = STATE(510), - [sym__push] = STATE(3258), - [sym__pushOnce] = STATE(3258), - [sym__pushIf] = STATE(3258), - [sym__prepend] = STATE(3258), - [sym__prependOnce] = STATE(3258), - [sym_conditional] = STATE(510), - [sym__if] = STATE(3259), - [sym__unless] = STATE(3259), - [sym__isset] = STATE(3259), - [sym__empty] = STATE(3259), - [sym__auth] = STATE(3259), - [sym__guest] = STATE(3259), - [sym__production] = STATE(3259), - [sym__env] = STATE(3259), - [sym__hasSection] = STATE(3259), - [sym__sectionMissing] = STATE(3259), - [sym__error] = STATE(3259), - [sym_authorization] = STATE(3259), - [sym__can] = STATE(3260), - [sym__cannot] = STATE(3260), - [sym__canany] = STATE(3260), - [sym__feature] = STATE(3259), - [sym__custom] = STATE(3259), - [sym_switch] = STATE(510), - [sym_loop] = STATE(510), - [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3261), - [sym__foreach] = STATE(3261), - [sym__forelse] = STATE(3261), - [sym__while] = STATE(3261), - [sym_envoy] = STATE(510), - [sym__setup] = STATE(3256), - [sym__task] = STATE(3262), - [sym__story] = STATE(3262), - [sym__hooks] = STATE(3256), - [sym__before] = STATE(3256), - [sym__after] = STATE(3256), - [sym__envoy_error] = STATE(3256), - [sym__success] = STATE(3256), - [sym__finished] = STATE(3256), - [sym_livewire] = STATE(510), - [sym__persist] = STATE(3265), - [sym__teleport] = STATE(3265), - [sym__volt] = STATE(3265), - [aux_sym__directive_body] = STATE(510), - [sym_text] = STATE(510), - [sym__text] = STATE(758), - [aux_sym_php_only_repeat1] = STATE(758), - [sym_comment] = ACTIONS(4445), - [aux_sym_keyword_token1] = ACTIONS(4215), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), - [anon_sym_ATphp] = ACTIONS(4221), - [aux_sym_attribute_token1] = ACTIONS(4223), - [aux_sym__inline_directive_token1] = ACTIONS(4225), - [anon_sym_ATfragment] = ACTIONS(4227), - [anon_sym_ATsection] = ACTIONS(4229), - [anon_sym_ATonce] = ACTIONS(4231), - [anon_sym_ATendonce] = ACTIONS(10329), - [anon_sym_ATverbatim] = ACTIONS(4235), - [anon_sym_ATpush] = ACTIONS(4237), - [anon_sym_ATpushOnce] = ACTIONS(4239), - [anon_sym_ATpushIf] = ACTIONS(4241), - [anon_sym_ATprepend] = ACTIONS(4243), - [anon_sym_ATprependOnce] = ACTIONS(4245), - [anon_sym_ATif] = ACTIONS(4247), - [anon_sym_ATunless] = ACTIONS(4249), - [anon_sym_ATisset] = ACTIONS(4251), - [anon_sym_ATempty] = ACTIONS(4253), - [anon_sym_ATauth] = ACTIONS(4255), - [anon_sym_ATguest] = ACTIONS(4257), - [anon_sym_ATproduction] = ACTIONS(4259), - [anon_sym_ATenv] = ACTIONS(4261), - [anon_sym_AThasSection] = ACTIONS(4263), - [anon_sym_ATsectionMissing] = ACTIONS(4265), - [anon_sym_ATerror] = ACTIONS(4267), - [anon_sym_ATcan] = ACTIONS(4269), - [anon_sym_ATcannot] = ACTIONS(4271), - [anon_sym_ATcanany] = ACTIONS(4273), - [anon_sym_ATfeature] = ACTIONS(4275), - [aux_sym__custom_token1] = ACTIONS(4277), - [aux_sym__custom_token2] = ACTIONS(4279), - [anon_sym_ATswitch] = ACTIONS(4281), - [aux_sym_loop_operator_token1] = ACTIONS(4283), - [anon_sym_ATfor] = ACTIONS(4285), - [anon_sym_ATforeach] = ACTIONS(4287), - [anon_sym_ATforelse] = ACTIONS(4289), - [anon_sym_ATwhile] = ACTIONS(4291), - [anon_sym_ATsetup] = ACTIONS(4293), - [anon_sym_ATtask] = ACTIONS(4295), - [anon_sym_ATstory] = ACTIONS(4297), - [anon_sym_ATbefore] = ACTIONS(4299), - [anon_sym_ATafter] = ACTIONS(4301), - [anon_sym_ATsuccess] = ACTIONS(4303), - [anon_sym_ATfinished] = ACTIONS(4305), - [anon_sym_ATpersist] = ACTIONS(4307), - [anon_sym_ATteleport] = ACTIONS(4309), - [anon_sym_ATvolt] = ACTIONS(4311), - [aux_sym__text_token1] = ACTIONS(4313), - [aux_sym__text_token2] = ACTIONS(4313), - [aux_sym__text_token3] = ACTIONS(4315), - }, - [656] = { [sym__definition] = STATE(653), [sym_keyword] = STATE(653), [sym_php_statement] = STATE(653), - [sym__escaped] = STATE(3355), - [sym__unescaped] = STATE(3355), - [sym__raw] = STATE(3355), - [sym__inline_raw] = STATE(3355), - [sym__multi_line_raw] = STATE(3355), + [sym__escaped] = STATE(2948), + [sym__unescaped] = STATE(2948), + [sym__raw] = STATE(2948), + [sym__inline_raw] = STATE(2948), + [sym__multi_line_raw] = STATE(2948), [sym_attribute] = STATE(653), [sym__inline_directive] = STATE(653), [sym__nested_directive] = STATE(653), @@ -104887,117 +106305,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(653), [sym_verbatim] = STATE(653), [sym_stack] = STATE(653), - [sym__push] = STATE(3356), - [sym__pushOnce] = STATE(3356), - [sym__pushIf] = STATE(3356), - [sym__prepend] = STATE(3356), - [sym__prependOnce] = STATE(3356), + [sym__push] = STATE(2949), + [sym__pushOnce] = STATE(2949), + [sym__pushIf] = STATE(2949), + [sym__prepend] = STATE(2949), + [sym__prependOnce] = STATE(2949), [sym_conditional] = STATE(653), - [sym__if] = STATE(3357), - [sym__unless] = STATE(3357), - [sym__isset] = STATE(3357), - [sym__empty] = STATE(3357), - [sym__auth] = STATE(3357), - [sym__guest] = STATE(3357), - [sym__production] = STATE(3357), - [sym__env] = STATE(3357), - [sym__hasSection] = STATE(3357), - [sym__sectionMissing] = STATE(3357), - [sym__error] = STATE(3357), - [sym_authorization] = STATE(3357), - [sym__can] = STATE(3358), - [sym__cannot] = STATE(3358), - [sym__canany] = STATE(3358), - [sym__feature] = STATE(3357), - [sym__custom] = STATE(3357), + [sym__if] = STATE(2950), + [sym__unless] = STATE(2950), + [sym__isset] = STATE(2950), + [sym__empty] = STATE(2950), + [sym__auth] = STATE(2950), + [sym__guest] = STATE(2950), + [sym__production] = STATE(2950), + [sym__env] = STATE(2950), + [sym__hasSection] = STATE(2950), + [sym__sectionMissing] = STATE(2950), + [sym__error] = STATE(2950), + [sym_authorization] = STATE(2950), + [sym__can] = STATE(2951), + [sym__cannot] = STATE(2951), + [sym__canany] = STATE(2951), + [sym__feature] = STATE(2950), + [sym__custom] = STATE(2950), [sym_switch] = STATE(653), [sym_loop] = STATE(653), [sym_loop_operator] = STATE(653), - [sym__for] = STATE(3359), - [sym__foreach] = STATE(3359), - [sym__forelse] = STATE(3359), - [sym__while] = STATE(3359), + [sym__for] = STATE(2952), + [sym__foreach] = STATE(2952), + [sym__forelse] = STATE(2952), + [sym__while] = STATE(2952), [sym_envoy] = STATE(653), - [sym__setup] = STATE(3355), - [sym__task] = STATE(3360), - [sym__story] = STATE(3360), - [sym__hooks] = STATE(3355), - [sym__before] = STATE(3355), - [sym__after] = STATE(3355), - [sym__envoy_error] = STATE(3355), - [sym__success] = STATE(3355), - [sym__finished] = STATE(3355), + [sym__setup] = STATE(2948), + [sym__task] = STATE(2953), + [sym__story] = STATE(2953), + [sym__hooks] = STATE(2948), + [sym__before] = STATE(2948), + [sym__after] = STATE(2948), + [sym__envoy_error] = STATE(2948), + [sym__success] = STATE(2948), + [sym__finished] = STATE(2948), [sym_livewire] = STATE(653), - [sym__persist] = STATE(3362), - [sym__teleport] = STATE(3362), - [sym__volt] = STATE(3362), + [sym__persist] = STATE(2954), + [sym__teleport] = STATE(2954), + [sym__volt] = STATE(2954), + [sym_alpine_js] = STATE(653), [aux_sym__directive_body] = STATE(653), [sym_text] = STATE(653), - [sym__text] = STATE(762), - [aux_sym_php_only_repeat1] = STATE(762), - [sym_comment] = ACTIONS(10331), - [aux_sym_keyword_token1] = ACTIONS(4111), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), - [anon_sym_ATphp] = ACTIONS(4117), - [aux_sym_attribute_token1] = ACTIONS(4119), - [aux_sym__inline_directive_token1] = ACTIONS(4121), - [anon_sym_ATfragment] = ACTIONS(4123), - [anon_sym_ATsection] = ACTIONS(4125), - [anon_sym_ATonce] = ACTIONS(4127), - [anon_sym_ATverbatim] = ACTIONS(4129), - [anon_sym_ATendverbatim] = ACTIONS(10333), - [anon_sym_ATpush] = ACTIONS(4133), - [anon_sym_ATpushOnce] = ACTIONS(4135), - [anon_sym_ATpushIf] = ACTIONS(4137), - [anon_sym_ATprepend] = ACTIONS(4139), - [anon_sym_ATprependOnce] = ACTIONS(4141), - [anon_sym_ATif] = ACTIONS(4143), - [anon_sym_ATunless] = ACTIONS(4145), - [anon_sym_ATisset] = ACTIONS(4147), - [anon_sym_ATempty] = ACTIONS(4149), - [anon_sym_ATauth] = ACTIONS(4151), - [anon_sym_ATguest] = ACTIONS(4153), - [anon_sym_ATproduction] = ACTIONS(4155), - [anon_sym_ATenv] = ACTIONS(4157), - [anon_sym_AThasSection] = ACTIONS(4159), - [anon_sym_ATsectionMissing] = ACTIONS(4161), - [anon_sym_ATerror] = ACTIONS(4163), - [anon_sym_ATcan] = ACTIONS(4165), - [anon_sym_ATcannot] = ACTIONS(4167), - [anon_sym_ATcanany] = ACTIONS(4169), - [anon_sym_ATfeature] = ACTIONS(4171), - [aux_sym__custom_token1] = ACTIONS(4173), - [aux_sym__custom_token2] = ACTIONS(4175), - [anon_sym_ATswitch] = ACTIONS(4177), - [aux_sym_loop_operator_token1] = ACTIONS(4179), - [anon_sym_ATfor] = ACTIONS(4181), - [anon_sym_ATforeach] = ACTIONS(4183), - [anon_sym_ATforelse] = ACTIONS(4185), - [anon_sym_ATwhile] = ACTIONS(4187), - [anon_sym_ATsetup] = ACTIONS(4189), - [anon_sym_ATtask] = ACTIONS(4191), - [anon_sym_ATstory] = ACTIONS(4193), - [anon_sym_ATbefore] = ACTIONS(4195), - [anon_sym_ATafter] = ACTIONS(4197), - [anon_sym_ATsuccess] = ACTIONS(4199), - [anon_sym_ATfinished] = ACTIONS(4201), - [anon_sym_ATpersist] = ACTIONS(4203), - [anon_sym_ATteleport] = ACTIONS(4205), - [anon_sym_ATvolt] = ACTIONS(4207), - [aux_sym__text_token1] = ACTIONS(4209), - [aux_sym__text_token2] = ACTIONS(4209), - [aux_sym__text_token3] = ACTIONS(4211), + [sym__text] = STATE(946), + [aux_sym_php_only_repeat1] = STATE(946), + [sym_comment] = ACTIONS(10189), + [aux_sym_keyword_token1] = ACTIONS(10192), + [anon_sym_LBRACE_LBRACE] = ACTIONS(10195), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(10198), + [anon_sym_ATphp] = ACTIONS(10201), + [aux_sym_attribute_token1] = ACTIONS(10204), + [aux_sym__inline_directive_token1] = ACTIONS(10207), + [anon_sym_ATfragment] = ACTIONS(10210), + [anon_sym_ATsection] = ACTIONS(10213), + [aux_sym_section_token1] = ACTIONS(5134), + [anon_sym_ATonce] = ACTIONS(10216), + [anon_sym_ATverbatim] = ACTIONS(10219), + [anon_sym_ATpush] = ACTIONS(10222), + [anon_sym_ATpushOnce] = ACTIONS(10225), + [anon_sym_ATpushIf] = ACTIONS(10228), + [anon_sym_ATprepend] = ACTIONS(10231), + [anon_sym_ATprependOnce] = ACTIONS(10234), + [anon_sym_ATif] = ACTIONS(10237), + [anon_sym_ATunless] = ACTIONS(10240), + [anon_sym_ATisset] = ACTIONS(10243), + [anon_sym_ATempty] = ACTIONS(10246), + [anon_sym_ATauth] = ACTIONS(10249), + [anon_sym_ATguest] = ACTIONS(10252), + [anon_sym_ATproduction] = ACTIONS(10255), + [anon_sym_ATenv] = ACTIONS(10258), + [anon_sym_AThasSection] = ACTIONS(10261), + [anon_sym_ATsectionMissing] = ACTIONS(10264), + [anon_sym_ATerror] = ACTIONS(10267), + [anon_sym_ATcan] = ACTIONS(10270), + [anon_sym_ATcannot] = ACTIONS(10273), + [anon_sym_ATcanany] = ACTIONS(10276), + [anon_sym_ATfeature] = ACTIONS(10279), + [aux_sym__custom_token1] = ACTIONS(10282), + [aux_sym__custom_token2] = ACTIONS(10285), + [anon_sym_ATswitch] = ACTIONS(10288), + [aux_sym_loop_operator_token1] = ACTIONS(10291), + [anon_sym_ATfor] = ACTIONS(10294), + [anon_sym_ATforeach] = ACTIONS(10297), + [anon_sym_ATforelse] = ACTIONS(10300), + [anon_sym_ATwhile] = ACTIONS(10303), + [anon_sym_ATsetup] = ACTIONS(10306), + [anon_sym_ATtask] = ACTIONS(10309), + [anon_sym_ATstory] = ACTIONS(10312), + [anon_sym_ATbefore] = ACTIONS(10315), + [anon_sym_ATafter] = ACTIONS(10318), + [anon_sym_ATsuccess] = ACTIONS(10321), + [anon_sym_ATfinished] = ACTIONS(10324), + [anon_sym_ATpersist] = ACTIONS(10327), + [anon_sym_ATteleport] = ACTIONS(10330), + [anon_sym_ATvolt] = ACTIONS(10333), + [aux_sym_alpine_js_token1] = ACTIONS(10336), + [aux_sym__text_token1] = ACTIONS(10339), + [aux_sym__text_token2] = ACTIONS(10339), + [aux_sym__text_token3] = ACTIONS(10342), + }, + [654] = { + [sym__definition] = STATE(429), + [sym_keyword] = STATE(429), + [sym_php_statement] = STATE(429), + [sym__escaped] = STATE(2036), + [sym__unescaped] = STATE(2036), + [sym__raw] = STATE(2036), + [sym__inline_raw] = STATE(2036), + [sym__multi_line_raw] = STATE(2036), + [sym_attribute] = STATE(429), + [sym__inline_directive] = STATE(429), + [sym__nested_directive] = STATE(429), + [sym_fragment] = STATE(429), + [sym_section] = STATE(429), + [sym_inlineSection] = STATE(429), + [sym_once] = STATE(429), + [sym_verbatim] = STATE(429), + [sym_stack] = STATE(429), + [sym__push] = STATE(2035), + [sym__pushOnce] = STATE(2035), + [sym__pushIf] = STATE(2035), + [sym__prepend] = STATE(2035), + [sym__prependOnce] = STATE(2035), + [sym_conditional] = STATE(429), + [sym__if] = STATE(2033), + [sym__unless] = STATE(2033), + [sym__isset] = STATE(2033), + [sym__empty] = STATE(2033), + [sym__auth] = STATE(2033), + [sym__guest] = STATE(2033), + [sym__production] = STATE(2033), + [sym__env] = STATE(2033), + [sym__hasSection] = STATE(2033), + [sym__sectionMissing] = STATE(2033), + [sym__error] = STATE(2033), + [sym_authorization] = STATE(2033), + [sym__can] = STATE(2032), + [sym__cannot] = STATE(2032), + [sym__canany] = STATE(2032), + [sym__feature] = STATE(2033), + [sym__custom] = STATE(2033), + [sym_switch] = STATE(429), + [sym_loop] = STATE(429), + [sym_loop_operator] = STATE(429), + [sym__for] = STATE(2031), + [sym__foreach] = STATE(2031), + [sym__forelse] = STATE(2031), + [sym__while] = STATE(2031), + [sym_envoy] = STATE(429), + [sym__setup] = STATE(2036), + [sym__task] = STATE(2030), + [sym__story] = STATE(2030), + [sym__hooks] = STATE(2036), + [sym__before] = STATE(2036), + [sym__after] = STATE(2036), + [sym__envoy_error] = STATE(2036), + [sym__success] = STATE(2036), + [sym__finished] = STATE(2036), + [sym_livewire] = STATE(429), + [sym__persist] = STATE(2029), + [sym__teleport] = STATE(2029), + [sym__volt] = STATE(2029), + [sym_alpine_js] = STATE(429), + [aux_sym__directive_body] = STATE(429), + [sym_text] = STATE(429), + [sym__text] = STATE(1271), + [aux_sym_php_only_repeat1] = STATE(1271), + [sym_comment] = ACTIONS(10345), + [aux_sym_keyword_token1] = ACTIONS(8717), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8719), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8721), + [anon_sym_ATphp] = ACTIONS(8723), + [aux_sym_attribute_token1] = ACTIONS(8725), + [aux_sym__inline_directive_token1] = ACTIONS(8727), + [anon_sym_ATfragment] = ACTIONS(8729), + [anon_sym_ATsection] = ACTIONS(8731), + [anon_sym_ATonce] = ACTIONS(8733), + [anon_sym_ATverbatim] = ACTIONS(8735), + [anon_sym_ATpush] = ACTIONS(8737), + [anon_sym_ATpushOnce] = ACTIONS(8739), + [anon_sym_ATpushIf] = ACTIONS(8741), + [anon_sym_ATprepend] = ACTIONS(8743), + [anon_sym_ATprependOnce] = ACTIONS(8745), + [anon_sym_ATendPrependOnce] = ACTIONS(4859), + [anon_sym_ATif] = ACTIONS(8747), + [anon_sym_ATunless] = ACTIONS(8749), + [anon_sym_ATisset] = ACTIONS(8751), + [anon_sym_ATempty] = ACTIONS(8753), + [anon_sym_ATauth] = ACTIONS(8755), + [anon_sym_ATguest] = ACTIONS(8757), + [anon_sym_ATproduction] = ACTIONS(8759), + [anon_sym_ATenv] = ACTIONS(8761), + [anon_sym_AThasSection] = ACTIONS(8763), + [anon_sym_ATsectionMissing] = ACTIONS(8765), + [anon_sym_ATerror] = ACTIONS(8767), + [anon_sym_ATcan] = ACTIONS(8769), + [anon_sym_ATcannot] = ACTIONS(8771), + [anon_sym_ATcanany] = ACTIONS(8773), + [anon_sym_ATfeature] = ACTIONS(8775), + [aux_sym__custom_token1] = ACTIONS(8777), + [aux_sym__custom_token2] = ACTIONS(8779), + [anon_sym_ATswitch] = ACTIONS(8781), + [aux_sym_loop_operator_token1] = ACTIONS(8783), + [anon_sym_ATfor] = ACTIONS(8785), + [anon_sym_ATforeach] = ACTIONS(8787), + [anon_sym_ATforelse] = ACTIONS(8789), + [anon_sym_ATwhile] = ACTIONS(8791), + [anon_sym_ATsetup] = ACTIONS(8793), + [anon_sym_ATtask] = ACTIONS(8795), + [anon_sym_ATstory] = ACTIONS(8797), + [anon_sym_ATbefore] = ACTIONS(8799), + [anon_sym_ATafter] = ACTIONS(8801), + [anon_sym_ATsuccess] = ACTIONS(8803), + [anon_sym_ATfinished] = ACTIONS(8805), + [anon_sym_ATpersist] = ACTIONS(8807), + [anon_sym_ATteleport] = ACTIONS(8809), + [anon_sym_ATvolt] = ACTIONS(8811), + [aux_sym_alpine_js_token1] = ACTIONS(8813), + [aux_sym__text_token1] = ACTIONS(8815), + [aux_sym__text_token2] = ACTIONS(8815), + [aux_sym__text_token3] = ACTIONS(8817), + }, + [655] = { + [sym__definition] = STATE(651), + [sym_keyword] = STATE(651), + [sym_php_statement] = STATE(651), + [sym__escaped] = STATE(3267), + [sym__unescaped] = STATE(3267), + [sym__raw] = STATE(3267), + [sym__inline_raw] = STATE(3267), + [sym__multi_line_raw] = STATE(3267), + [sym_attribute] = STATE(651), + [sym__inline_directive] = STATE(651), + [sym__nested_directive] = STATE(651), + [sym_fragment] = STATE(651), + [sym_section] = STATE(651), + [sym_inlineSection] = STATE(651), + [sym_once] = STATE(651), + [sym_verbatim] = STATE(651), + [sym_stack] = STATE(651), + [sym__push] = STATE(3268), + [sym__pushOnce] = STATE(3268), + [sym__pushIf] = STATE(3268), + [sym__prepend] = STATE(3268), + [sym__prependOnce] = STATE(3268), + [sym_conditional] = STATE(651), + [sym__if] = STATE(3269), + [sym__unless] = STATE(3269), + [sym__isset] = STATE(3269), + [sym__empty] = STATE(3269), + [sym__auth] = STATE(3269), + [sym__guest] = STATE(3269), + [sym__production] = STATE(3269), + [sym__env] = STATE(3269), + [sym__hasSection] = STATE(3269), + [sym__sectionMissing] = STATE(3269), + [sym__error] = STATE(3269), + [sym_authorization] = STATE(3269), + [sym__can] = STATE(3270), + [sym__cannot] = STATE(3270), + [sym__canany] = STATE(3270), + [sym__feature] = STATE(3269), + [sym__custom] = STATE(3269), + [sym_switch] = STATE(651), + [sym_loop] = STATE(651), + [sym_loop_operator] = STATE(651), + [sym__for] = STATE(3292), + [sym__foreach] = STATE(3292), + [sym__forelse] = STATE(3292), + [sym__while] = STATE(3292), + [sym_envoy] = STATE(651), + [sym__setup] = STATE(3267), + [sym__task] = STATE(3272), + [sym__story] = STATE(3272), + [sym__hooks] = STATE(3267), + [sym__before] = STATE(3267), + [sym__after] = STATE(3267), + [sym__envoy_error] = STATE(3267), + [sym__success] = STATE(3267), + [sym__finished] = STATE(3267), + [sym_livewire] = STATE(651), + [sym__persist] = STATE(3273), + [sym__teleport] = STATE(3273), + [sym__volt] = STATE(3273), + [sym_alpine_js] = STATE(651), + [aux_sym__directive_body] = STATE(651), + [sym_text] = STATE(651), + [sym__text] = STATE(757), + [aux_sym_php_only_repeat1] = STATE(757), + [sym_comment] = ACTIONS(10347), + [aux_sym_keyword_token1] = ACTIONS(4393), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4395), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4397), + [anon_sym_ATphp] = ACTIONS(4399), + [aux_sym_attribute_token1] = ACTIONS(4401), + [aux_sym__inline_directive_token1] = ACTIONS(4403), + [anon_sym_ATfragment] = ACTIONS(4405), + [anon_sym_ATsection] = ACTIONS(4407), + [anon_sym_ATonce] = ACTIONS(4409), + [anon_sym_ATendonce] = ACTIONS(10349), + [anon_sym_ATverbatim] = ACTIONS(4413), + [anon_sym_ATpush] = ACTIONS(4415), + [anon_sym_ATpushOnce] = ACTIONS(4417), + [anon_sym_ATpushIf] = ACTIONS(4419), + [anon_sym_ATprepend] = ACTIONS(4421), + [anon_sym_ATprependOnce] = ACTIONS(4423), + [anon_sym_ATif] = ACTIONS(4425), + [anon_sym_ATunless] = ACTIONS(4427), + [anon_sym_ATisset] = ACTIONS(4429), + [anon_sym_ATempty] = ACTIONS(4431), + [anon_sym_ATauth] = ACTIONS(4433), + [anon_sym_ATguest] = ACTIONS(4435), + [anon_sym_ATproduction] = ACTIONS(4437), + [anon_sym_ATenv] = ACTIONS(4439), + [anon_sym_AThasSection] = ACTIONS(4441), + [anon_sym_ATsectionMissing] = ACTIONS(4443), + [anon_sym_ATerror] = ACTIONS(4445), + [anon_sym_ATcan] = ACTIONS(4447), + [anon_sym_ATcannot] = ACTIONS(4449), + [anon_sym_ATcanany] = ACTIONS(4451), + [anon_sym_ATfeature] = ACTIONS(4453), + [aux_sym__custom_token1] = ACTIONS(4455), + [aux_sym__custom_token2] = ACTIONS(4457), + [anon_sym_ATswitch] = ACTIONS(4459), + [aux_sym_loop_operator_token1] = ACTIONS(4461), + [anon_sym_ATfor] = ACTIONS(4463), + [anon_sym_ATforeach] = ACTIONS(4465), + [anon_sym_ATforelse] = ACTIONS(4467), + [anon_sym_ATwhile] = ACTIONS(4469), + [anon_sym_ATsetup] = ACTIONS(4471), + [anon_sym_ATtask] = ACTIONS(4473), + [anon_sym_ATstory] = ACTIONS(4475), + [anon_sym_ATbefore] = ACTIONS(4477), + [anon_sym_ATafter] = ACTIONS(4479), + [anon_sym_ATsuccess] = ACTIONS(4481), + [anon_sym_ATfinished] = ACTIONS(4483), + [anon_sym_ATpersist] = ACTIONS(4485), + [anon_sym_ATteleport] = ACTIONS(4487), + [anon_sym_ATvolt] = ACTIONS(4489), + [aux_sym_alpine_js_token1] = ACTIONS(4491), + [aux_sym__text_token1] = ACTIONS(4493), + [aux_sym__text_token2] = ACTIONS(4493), + [aux_sym__text_token3] = ACTIONS(4495), + }, + [656] = { + [sym__definition] = STATE(656), + [sym_keyword] = STATE(656), + [sym_php_statement] = STATE(656), + [sym__escaped] = STATE(2365), + [sym__unescaped] = STATE(2365), + [sym__raw] = STATE(2365), + [sym__inline_raw] = STATE(2365), + [sym__multi_line_raw] = STATE(2365), + [sym_attribute] = STATE(656), + [sym__inline_directive] = STATE(656), + [sym__nested_directive] = STATE(656), + [sym_fragment] = STATE(656), + [sym_section] = STATE(656), + [sym_inlineSection] = STATE(656), + [sym_once] = STATE(656), + [sym_verbatim] = STATE(656), + [sym_stack] = STATE(656), + [sym__push] = STATE(2192), + [sym__pushOnce] = STATE(2192), + [sym__pushIf] = STATE(2192), + [sym__prepend] = STATE(2192), + [sym__prependOnce] = STATE(2192), + [sym_conditional] = STATE(656), + [sym__if] = STATE(2291), + [sym__unless] = STATE(2291), + [sym__isset] = STATE(2291), + [sym__empty] = STATE(2291), + [sym__auth] = STATE(2291), + [sym__guest] = STATE(2291), + [sym__production] = STATE(2291), + [sym__env] = STATE(2291), + [sym__hasSection] = STATE(2291), + [sym__sectionMissing] = STATE(2291), + [sym__error] = STATE(2291), + [sym_authorization] = STATE(2291), + [sym__can] = STATE(2283), + [sym__cannot] = STATE(2283), + [sym__canany] = STATE(2283), + [sym__feature] = STATE(2291), + [sym__custom] = STATE(2291), + [sym_switch] = STATE(656), + [sym_loop] = STATE(656), + [sym_loop_operator] = STATE(656), + [sym__for] = STATE(2282), + [sym__foreach] = STATE(2282), + [sym__forelse] = STATE(2282), + [sym__while] = STATE(2282), + [sym_envoy] = STATE(656), + [sym__setup] = STATE(2365), + [sym__task] = STATE(2224), + [sym__story] = STATE(2224), + [sym__hooks] = STATE(2365), + [sym__before] = STATE(2365), + [sym__after] = STATE(2365), + [sym__envoy_error] = STATE(2365), + [sym__success] = STATE(2365), + [sym__finished] = STATE(2365), + [sym_livewire] = STATE(656), + [sym__persist] = STATE(2208), + [sym__teleport] = STATE(2208), + [sym__volt] = STATE(2208), + [sym_alpine_js] = STATE(656), + [aux_sym__directive_body] = STATE(656), + [sym_text] = STATE(656), + [sym__text] = STATE(1091), + [aux_sym_php_only_repeat1] = STATE(1091), + [sym_comment] = ACTIONS(10351), + [aux_sym_keyword_token1] = ACTIONS(10354), + [anon_sym_LBRACE_LBRACE] = ACTIONS(10357), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(10360), + [anon_sym_ATphp] = ACTIONS(10363), + [aux_sym_attribute_token1] = ACTIONS(10366), + [aux_sym__inline_directive_token1] = ACTIONS(10369), + [anon_sym_ATfragment] = ACTIONS(10372), + [anon_sym_ATsection] = ACTIONS(10375), + [anon_sym_ATonce] = ACTIONS(10378), + [anon_sym_ATverbatim] = ACTIONS(10381), + [anon_sym_ATpush] = ACTIONS(10384), + [anon_sym_ATpushOnce] = ACTIONS(10387), + [anon_sym_ATpushIf] = ACTIONS(10390), + [anon_sym_ATendPushIf] = ACTIONS(5134), + [anon_sym_ATprepend] = ACTIONS(10393), + [anon_sym_ATprependOnce] = ACTIONS(10396), + [anon_sym_ATif] = ACTIONS(10399), + [anon_sym_ATunless] = ACTIONS(10402), + [anon_sym_ATisset] = ACTIONS(10405), + [anon_sym_ATempty] = ACTIONS(10408), + [anon_sym_ATauth] = ACTIONS(10411), + [anon_sym_ATguest] = ACTIONS(10414), + [anon_sym_ATproduction] = ACTIONS(10417), + [anon_sym_ATenv] = ACTIONS(10420), + [anon_sym_AThasSection] = ACTIONS(10423), + [anon_sym_ATsectionMissing] = ACTIONS(10426), + [anon_sym_ATerror] = ACTIONS(10429), + [anon_sym_ATcan] = ACTIONS(10432), + [anon_sym_ATcannot] = ACTIONS(10435), + [anon_sym_ATcanany] = ACTIONS(10438), + [anon_sym_ATfeature] = ACTIONS(10441), + [aux_sym__custom_token1] = ACTIONS(10444), + [aux_sym__custom_token2] = ACTIONS(10447), + [anon_sym_ATswitch] = ACTIONS(10450), + [aux_sym_loop_operator_token1] = ACTIONS(10453), + [anon_sym_ATfor] = ACTIONS(10456), + [anon_sym_ATforeach] = ACTIONS(10459), + [anon_sym_ATforelse] = ACTIONS(10462), + [anon_sym_ATwhile] = ACTIONS(10465), + [anon_sym_ATsetup] = ACTIONS(10468), + [anon_sym_ATtask] = ACTIONS(10471), + [anon_sym_ATstory] = ACTIONS(10474), + [anon_sym_ATbefore] = ACTIONS(10477), + [anon_sym_ATafter] = ACTIONS(10480), + [anon_sym_ATsuccess] = ACTIONS(10483), + [anon_sym_ATfinished] = ACTIONS(10486), + [anon_sym_ATpersist] = ACTIONS(10489), + [anon_sym_ATteleport] = ACTIONS(10492), + [anon_sym_ATvolt] = ACTIONS(10495), + [aux_sym_alpine_js_token1] = ACTIONS(10498), + [aux_sym__text_token1] = ACTIONS(10501), + [aux_sym__text_token2] = ACTIONS(10501), + [aux_sym__text_token3] = ACTIONS(10504), }, [657] = { [sym__definition] = STATE(657), [sym_keyword] = STATE(657), [sym_php_statement] = STATE(657), - [sym__escaped] = STATE(3077), - [sym__unescaped] = STATE(3077), - [sym__raw] = STATE(3077), - [sym__inline_raw] = STATE(3077), - [sym__multi_line_raw] = STATE(3077), + [sym__escaped] = STATE(3114), + [sym__unescaped] = STATE(3114), + [sym__raw] = STATE(3114), + [sym__inline_raw] = STATE(3114), + [sym__multi_line_raw] = STATE(3114), [sym_attribute] = STATE(657), [sym__inline_directive] = STATE(657), [sym__nested_directive] = STATE(657), @@ -105007,119 +106793,1600 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(657), [sym_verbatim] = STATE(657), [sym_stack] = STATE(657), - [sym__push] = STATE(3078), - [sym__pushOnce] = STATE(3078), - [sym__pushIf] = STATE(3078), - [sym__prepend] = STATE(3078), - [sym__prependOnce] = STATE(3078), + [sym__push] = STATE(3115), + [sym__pushOnce] = STATE(3115), + [sym__pushIf] = STATE(3115), + [sym__prepend] = STATE(3115), + [sym__prependOnce] = STATE(3115), [sym_conditional] = STATE(657), - [sym__if] = STATE(3079), - [sym__unless] = STATE(3079), - [sym__isset] = STATE(3079), - [sym__empty] = STATE(3079), - [sym__auth] = STATE(3079), - [sym__guest] = STATE(3079), - [sym__production] = STATE(3079), - [sym__env] = STATE(3079), - [sym__hasSection] = STATE(3079), - [sym__sectionMissing] = STATE(3079), - [sym__error] = STATE(3079), - [sym_authorization] = STATE(3079), - [sym__can] = STATE(3080), - [sym__cannot] = STATE(3080), - [sym__canany] = STATE(3080), - [sym__feature] = STATE(3079), - [sym__custom] = STATE(3079), + [sym__if] = STATE(3116), + [sym__unless] = STATE(3116), + [sym__isset] = STATE(3116), + [sym__empty] = STATE(3116), + [sym__auth] = STATE(3116), + [sym__guest] = STATE(3116), + [sym__production] = STATE(3116), + [sym__env] = STATE(3116), + [sym__hasSection] = STATE(3116), + [sym__sectionMissing] = STATE(3116), + [sym__error] = STATE(3116), + [sym_authorization] = STATE(3116), + [sym__can] = STATE(3117), + [sym__cannot] = STATE(3117), + [sym__canany] = STATE(3117), + [sym__feature] = STATE(3116), + [sym__custom] = STATE(3116), [sym_switch] = STATE(657), [sym_loop] = STATE(657), [sym_loop_operator] = STATE(657), - [sym__for] = STATE(3081), - [sym__foreach] = STATE(3081), - [sym__forelse] = STATE(3081), - [sym__while] = STATE(3081), + [sym__for] = STATE(3118), + [sym__foreach] = STATE(3118), + [sym__forelse] = STATE(3118), + [sym__while] = STATE(3118), [sym_envoy] = STATE(657), - [sym__setup] = STATE(3077), - [sym__task] = STATE(3082), - [sym__story] = STATE(3082), - [sym__hooks] = STATE(3077), - [sym__before] = STATE(3077), - [sym__after] = STATE(3077), - [sym__envoy_error] = STATE(3077), - [sym__success] = STATE(3077), - [sym__finished] = STATE(3077), + [sym__setup] = STATE(3114), + [sym__task] = STATE(3119), + [sym__story] = STATE(3119), + [sym__hooks] = STATE(3114), + [sym__before] = STATE(3114), + [sym__after] = STATE(3114), + [sym__envoy_error] = STATE(3114), + [sym__success] = STATE(3114), + [sym__finished] = STATE(3114), [sym_livewire] = STATE(657), - [sym__persist] = STATE(3083), - [sym__teleport] = STATE(3083), - [sym__volt] = STATE(3083), + [sym__persist] = STATE(3120), + [sym__teleport] = STATE(3120), + [sym__volt] = STATE(3120), + [sym_alpine_js] = STATE(657), [aux_sym__directive_body] = STATE(657), [sym_text] = STATE(657), - [sym__text] = STATE(947), - [aux_sym_php_only_repeat1] = STATE(947), - [sym_comment] = ACTIONS(10335), - [aux_sym_keyword_token1] = ACTIONS(10338), - [anon_sym_LBRACE_LBRACE] = ACTIONS(10341), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(10344), - [anon_sym_ATphp] = ACTIONS(10347), - [aux_sym_attribute_token1] = ACTIONS(10350), - [aux_sym__inline_directive_token1] = ACTIONS(10353), - [anon_sym_ATfragment] = ACTIONS(10356), - [anon_sym_ATsection] = ACTIONS(10359), - [anon_sym_ATonce] = ACTIONS(10362), - [anon_sym_ATverbatim] = ACTIONS(10365), - [anon_sym_ATpush] = ACTIONS(10368), - [anon_sym_ATpushOnce] = ACTIONS(10371), - [anon_sym_ATpushIf] = ACTIONS(10374), - [anon_sym_ATprepend] = ACTIONS(10377), - [anon_sym_ATprependOnce] = ACTIONS(10380), - [anon_sym_ATif] = ACTIONS(10383), - [anon_sym_ATunless] = ACTIONS(10386), - [anon_sym_ATisset] = ACTIONS(10389), - [anon_sym_ATempty] = ACTIONS(10392), - [anon_sym_ATauth] = ACTIONS(10395), - [anon_sym_ATguest] = ACTIONS(10398), - [anon_sym_ATproduction] = ACTIONS(10401), - [anon_sym_ATenv] = ACTIONS(10404), - [anon_sym_AThasSection] = ACTIONS(10407), - [anon_sym_ATsectionMissing] = ACTIONS(10410), - [anon_sym_ATerror] = ACTIONS(10413), - [anon_sym_ATcan] = ACTIONS(10416), - [anon_sym_ATcannot] = ACTIONS(10419), - [anon_sym_ATcanany] = ACTIONS(10422), - [anon_sym_ATfeature] = ACTIONS(10425), - [aux_sym__custom_token1] = ACTIONS(10428), - [aux_sym__custom_token2] = ACTIONS(10431), - [anon_sym_ATswitch] = ACTIONS(10434), - [anon_sym_ATbreak] = ACTIONS(5035), - [aux_sym_loop_operator_token1] = ACTIONS(10437), - [anon_sym_ATfor] = ACTIONS(10440), - [anon_sym_ATforeach] = ACTIONS(10443), - [anon_sym_ATforelse] = ACTIONS(10446), - [anon_sym_ATwhile] = ACTIONS(10449), - [anon_sym_ATsetup] = ACTIONS(10452), - [anon_sym_ATtask] = ACTIONS(10455), - [anon_sym_ATstory] = ACTIONS(10458), - [anon_sym_ATbefore] = ACTIONS(10461), - [anon_sym_ATafter] = ACTIONS(10464), - [anon_sym_ATsuccess] = ACTIONS(10467), - [anon_sym_ATfinished] = ACTIONS(10470), - [anon_sym_ATpersist] = ACTIONS(10473), - [anon_sym_ATteleport] = ACTIONS(10476), - [anon_sym_ATvolt] = ACTIONS(10479), - [aux_sym__text_token1] = ACTIONS(10482), - [aux_sym__text_token2] = ACTIONS(10482), - [aux_sym__text_token3] = ACTIONS(10485), + [sym__text] = STATE(941), + [aux_sym_php_only_repeat1] = STATE(941), + [sym_comment] = ACTIONS(10507), + [aux_sym_keyword_token1] = ACTIONS(10510), + [anon_sym_LBRACE_LBRACE] = ACTIONS(10513), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(10516), + [anon_sym_ATphp] = ACTIONS(10519), + [aux_sym_attribute_token1] = ACTIONS(10522), + [aux_sym__inline_directive_token1] = ACTIONS(10525), + [anon_sym_ATfragment] = ACTIONS(10528), + [anon_sym_ATsection] = ACTIONS(10531), + [anon_sym_ATonce] = ACTIONS(10534), + [anon_sym_ATverbatim] = ACTIONS(10537), + [anon_sym_ATpush] = ACTIONS(10540), + [anon_sym_ATpushOnce] = ACTIONS(10543), + [anon_sym_ATpushIf] = ACTIONS(10546), + [anon_sym_ATprepend] = ACTIONS(10549), + [anon_sym_ATprependOnce] = ACTIONS(10552), + [anon_sym_ATif] = ACTIONS(10555), + [anon_sym_ATunless] = ACTIONS(10558), + [anon_sym_ATisset] = ACTIONS(10561), + [anon_sym_ATempty] = ACTIONS(10564), + [anon_sym_ATauth] = ACTIONS(10567), + [anon_sym_ATguest] = ACTIONS(10570), + [anon_sym_ATproduction] = ACTIONS(10573), + [anon_sym_ATenv] = ACTIONS(10576), + [anon_sym_AThasSection] = ACTIONS(10579), + [anon_sym_ATsectionMissing] = ACTIONS(10582), + [anon_sym_ATerror] = ACTIONS(10585), + [anon_sym_ATcan] = ACTIONS(10588), + [anon_sym_ATcannot] = ACTIONS(10591), + [anon_sym_ATcanany] = ACTIONS(10594), + [anon_sym_ATfeature] = ACTIONS(10597), + [aux_sym__custom_token1] = ACTIONS(10600), + [aux_sym__custom_token2] = ACTIONS(10603), + [anon_sym_ATswitch] = ACTIONS(10606), + [anon_sym_ATbreak] = ACTIONS(5134), + [aux_sym_loop_operator_token1] = ACTIONS(10609), + [anon_sym_ATfor] = ACTIONS(10612), + [anon_sym_ATforeach] = ACTIONS(10615), + [anon_sym_ATforelse] = ACTIONS(10618), + [anon_sym_ATwhile] = ACTIONS(10621), + [anon_sym_ATsetup] = ACTIONS(10624), + [anon_sym_ATtask] = ACTIONS(10627), + [anon_sym_ATstory] = ACTIONS(10630), + [anon_sym_ATbefore] = ACTIONS(10633), + [anon_sym_ATafter] = ACTIONS(10636), + [anon_sym_ATsuccess] = ACTIONS(10639), + [anon_sym_ATfinished] = ACTIONS(10642), + [anon_sym_ATpersist] = ACTIONS(10645), + [anon_sym_ATteleport] = ACTIONS(10648), + [anon_sym_ATvolt] = ACTIONS(10651), + [aux_sym_alpine_js_token1] = ACTIONS(10654), + [aux_sym__text_token1] = ACTIONS(10657), + [aux_sym__text_token2] = ACTIONS(10657), + [aux_sym__text_token3] = ACTIONS(10660), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 5, - ACTIONS(10492), 1, + ACTIONS(10667), 1, + anon_sym_LPAREN2, + STATE(113), 1, + sym__directive_parameter, + STATE(6013), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 44, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + aux_sym__custom_token3, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [70] = 5, + ACTIONS(10667), 1, + anon_sym_LPAREN2, + STATE(113), 1, + sym__directive_parameter, + STATE(6130), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 44, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [140] = 5, + ACTIONS(10667), 1, + anon_sym_LPAREN2, + STATE(113), 1, + sym__directive_parameter, + STATE(6653), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 44, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATendproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [210] = 5, + ACTIONS(10667), 1, + anon_sym_LPAREN2, + STATE(113), 1, + sym__directive_parameter, + STATE(6728), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 44, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATendauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [280] = 5, + ACTIONS(10667), 1, + anon_sym_LPAREN2, + STATE(113), 1, + sym__directive_parameter, + STATE(6394), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 44, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATendif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [350] = 5, + ACTIONS(10667), 1, + anon_sym_LPAREN2, + STATE(113), 1, + sym__directive_parameter, + STATE(6169), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 44, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [420] = 5, + ACTIONS(10667), 1, + anon_sym_LPAREN2, + STATE(113), 1, + sym__directive_parameter, + STATE(6092), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 44, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [490] = 5, + ACTIONS(10667), 1, + anon_sym_LPAREN2, + STATE(113), 1, + sym__directive_parameter, + STATE(6355), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 44, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATendunless, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [560] = 5, + ACTIONS(10667), 1, + anon_sym_LPAREN2, + STATE(113), 1, + sym__directive_parameter, + STATE(6690), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 44, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATendguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [630] = 5, + ACTIONS(10667), 1, + anon_sym_LPAREN2, + STATE(113), 1, + sym__directive_parameter, + STATE(6318), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 44, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATendisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [700] = 5, + ACTIONS(10667), 1, + anon_sym_LPAREN2, + STATE(113), 1, + sym__directive_parameter, + STATE(6244), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 44, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_ATendenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [770] = 5, + ACTIONS(10667), 1, + anon_sym_LPAREN2, + STATE(113), 1, + sym__directive_parameter, + STATE(6206), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 44, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [840] = 5, + ACTIONS(10667), 1, + anon_sym_LPAREN2, + STATE(113), 1, + sym__directive_parameter, + STATE(6052), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 44, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + anon_sym_ATendfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [910] = 5, + ACTIONS(10667), 1, anon_sym_LPAREN2, - STATE(114), 1, + STATE(113), 1, sym__directive_parameter, - STATE(6316), 1, + STATE(6281), 1, sym__if_statement_directive_body, - ACTIONS(10490), 12, + ACTIONS(10665), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 44, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATendempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [980] = 5, + ACTIONS(10675), 1, + aux_sym__text_token3, + ACTIONS(10673), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(683), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10671), 10, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + ACTIONS(10669), 43, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATendif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + [1049] = 4, + ACTIONS(10677), 1, + anon_sym_LPAREN2, + STATE(1284), 1, + sym__directive_parameter, + ACTIONS(10665), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 44, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATendif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [1116] = 4, + ACTIONS(10679), 1, + anon_sym_LPAREN2, + STATE(1716), 1, + sym__directive_parameter, + ACTIONS(10665), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 44, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [1183] = 4, + ACTIONS(10681), 1, + anon_sym_LPAREN2, + STATE(1156), 1, + sym__directive_parameter, + ACTIONS(10665), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 44, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + anon_sym_ATendfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [1250] = 5, + ACTIONS(10685), 1, + aux_sym__text_token3, + ACTIONS(10683), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(698), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10671), 10, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + ACTIONS(10669), 43, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATendempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + [1319] = 4, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + STATE(1632), 1, + sym__directive_parameter, + ACTIONS(10665), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 44, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_ATendenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [1386] = 5, + ACTIONS(10691), 1, + aux_sym__text_token3, + ACTIONS(10689), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(715), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10671), 10, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + ACTIONS(10669), 43, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + [1455] = 4, + ACTIONS(10693), 1, + anon_sym_LPAREN2, + STATE(1066), 1, + sym__directive_parameter, + ACTIONS(10665), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 44, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + aux_sym__custom_token3, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [1522] = 5, + ACTIONS(10697), 1, + aux_sym__text_token3, + ACTIONS(10695), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(695), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10671), 10, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + ACTIONS(10669), 43, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATendisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + [1591] = 4, + ACTIONS(10667), 1, + anon_sym_LPAREN2, + STATE(1547), 1, + sym__directive_parameter, + ACTIONS(10665), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105132,7 +108399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 43, + ACTIONS(10663), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -105175,15 +108442,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [69] = 5, - ACTIONS(10492), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(6068), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 12, + [1658] = 5, + ACTIONS(10701), 1, + aux_sym__text_token3, + ACTIONS(10699), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(716), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10671), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105194,9 +108464,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, + ACTIONS(10669), 43, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + anon_sym_ATendfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + [1727] = 5, + ACTIONS(10710), 1, + aux_sym__text_token3, + ACTIONS(10707), 2, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 43, + STATE(683), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10705), 10, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + ACTIONS(10703), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -105210,10 +108542,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -105239,15 +108571,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [138] = 5, - ACTIONS(10492), 1, + aux_sym_alpine_js_token1, + [1796] = 4, + ACTIONS(10717), 1, anon_sym_LPAREN2, - STATE(114), 1, + STATE(759), 1, sym__directive_parameter, - STATE(6143), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 12, + ACTIONS(10715), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105260,7 +108590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 43, + ACTIONS(10713), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -105278,13 +108608,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -105303,15 +108633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [207] = 5, - ACTIONS(10492), 1, + [1863] = 5, + ACTIONS(10721), 1, + aux_sym__text_token3, + ACTIONS(10719), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(688), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10671), 10, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + ACTIONS(10669), 43, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATendunless, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + [1932] = 4, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(114), 1, + STATE(1461), 1, sym__directive_parameter, - STATE(6097), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 12, + ACTIONS(10665), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105324,7 +108717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 43, + ACTIONS(10663), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -105339,6 +108732,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -105349,7 +108743,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -105367,15 +108760,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [276] = 5, - ACTIONS(10492), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(6289), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 12, + [1999] = 5, + ACTIONS(10727), 1, + aux_sym__text_token3, + ACTIONS(10725), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(718), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10671), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105386,9 +108782,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, + ACTIONS(10669), 43, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + aux_sym__custom_token3, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + [2068] = 5, + ACTIONS(10732), 1, + aux_sym__text_token3, + ACTIONS(10729), 2, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 43, + STATE(688), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10705), 10, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + ACTIONS(10703), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -105402,11 +108860,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -105431,15 +108889,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [345] = 5, - ACTIONS(10492), 1, + aux_sym_alpine_js_token1, + [2137] = 4, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(114), 1, + STATE(1399), 1, sym__directive_parameter, - STATE(6505), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 12, + ACTIONS(10715), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105452,7 +108908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 43, + ACTIONS(10713), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -105471,7 +108927,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -105480,6 +108935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -105495,15 +108951,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [414] = 5, - ACTIONS(10492), 1, + [2204] = 4, + ACTIONS(10735), 1, anon_sym_LPAREN2, - STATE(114), 1, + STATE(764), 1, sym__directive_parameter, - STATE(6443), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 12, + ACTIONS(10715), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105516,7 +108971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 43, + ACTIONS(10713), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -105530,12 +108985,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -105559,15 +109014,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [483] = 5, - ACTIONS(10492), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(6188), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 12, + [2271] = 5, + ACTIONS(10739), 1, + aux_sym__text_token3, + ACTIONS(10737), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(708), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10671), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105578,9 +109036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10488), 43, + ACTIONS(10669), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -105623,15 +109079,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [552] = 5, - ACTIONS(10492), 1, + aux_sym_alpine_js_token1, + [2340] = 4, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(114), 1, + STATE(1374), 1, sym__directive_parameter, - STATE(6405), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 12, + ACTIONS(10665), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105644,7 +109098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 43, + ACTIONS(10663), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -105687,15 +109141,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [621] = 5, - ACTIONS(10492), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(6267), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 12, + [2407] = 5, + ACTIONS(10745), 1, + aux_sym__text_token3, + ACTIONS(10743), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(713), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10671), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105706,9 +109163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10488), 43, + ACTIONS(10669), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -105728,11 +109183,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -105751,15 +109206,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [690] = 5, - ACTIONS(10492), 1, + aux_sym_alpine_js_token1, + [2476] = 4, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(114), 1, + STATE(1706), 1, sym__directive_parameter, - STATE(6047), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 12, + ACTIONS(10715), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105772,7 +109225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 43, + ACTIONS(10713), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -105787,6 +109240,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -105798,7 +109252,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -105815,15 +109268,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [759] = 5, - ACTIONS(10492), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(6362), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 12, + [2543] = 5, + ACTIONS(10750), 1, + aux_sym__text_token3, + ACTIONS(10747), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(695), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10705), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105834,9 +109290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10488), 43, + ACTIONS(10703), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -105879,15 +109333,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [828] = 5, - ACTIONS(10492), 1, + aux_sym_alpine_js_token1, + [2612] = 4, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(114), 1, + STATE(854), 1, sym__directive_parameter, - STATE(6226), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 12, + ACTIONS(10715), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105900,7 +109352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 43, + ACTIONS(10713), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -105920,10 +109372,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -105943,15 +109395,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [897] = 5, - ACTIONS(10492), 1, + [2679] = 4, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(114), 1, + STATE(1309), 1, sym__directive_parameter, - STATE(6003), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 12, + ACTIONS(10715), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105964,7 +109415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 43, + ACTIONS(10713), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -105990,8 +109441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -106007,13 +109458,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [966] = 4, - ACTIONS(10494), 1, - anon_sym_LPAREN2, - STATE(984), 1, - sym__directive_parameter, - ACTIONS(10490), 12, + [2746] = 5, + ACTIONS(10756), 1, + aux_sym__text_token3, + ACTIONS(10753), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(698), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10705), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106024,9 +109480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10488), 43, + ACTIONS(10703), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -106042,10 +109496,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -106069,13 +109523,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, + [2815] = 5, + ACTIONS(10761), 1, aux_sym__text_token3, - [1032] = 4, - ACTIONS(10500), 1, - anon_sym_LPAREN2, - STATE(1118), 1, - sym__directive_parameter, - ACTIONS(10498), 12, + ACTIONS(10759), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(702), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10671), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106086,9 +109544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10496), 43, + ACTIONS(10669), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -106108,11 +109564,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -106131,17 +109587,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [1098] = 5, - ACTIONS(10508), 1, - aux_sym__text_token3, - ACTIONS(10506), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(701), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10504), 10, + aux_sym_alpine_js_token1, + [2884] = 4, + ACTIONS(10763), 1, + anon_sym_LPAREN2, + STATE(1247), 1, + sym__directive_parameter, + ACTIONS(10665), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106152,7 +109604,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10502), 42, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -106172,12 +109626,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -106195,12 +109649,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [1166] = 4, - ACTIONS(10510), 1, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [2951] = 4, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(1696), 1, + STATE(1884), 1, sym__directive_parameter, - ACTIONS(10490), 12, + ACTIONS(10665), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106213,7 +109669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 43, + ACTIONS(10663), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -106236,8 +109692,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -106256,13 +109712,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [1232] = 4, - ACTIONS(10512), 1, - anon_sym_LPAREN2, - STATE(1156), 1, - sym__directive_parameter, - ACTIONS(10490), 12, + [3018] = 5, + ACTIONS(10770), 1, + aux_sym__text_token3, + ACTIONS(10767), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(702), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10705), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106273,9 +109734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10488), 43, + ACTIONS(10703), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -106295,13 +109754,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -106318,17 +109777,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, + [3087] = 5, + ACTIONS(10776), 1, aux_sym__text_token3, - [1298] = 5, - ACTIONS(10516), 1, - aux_sym__text_token3, - ACTIONS(10514), 2, + ACTIONS(10773), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(696), 2, + STATE(703), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(10504), 10, + ACTIONS(10705), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106339,7 +109798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10502), 42, + ACTIONS(10703), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -106355,8 +109814,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -106382,12 +109841,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [1366] = 4, - ACTIONS(10518), 1, + aux_sym_alpine_js_token1, + [3156] = 4, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(1613), 1, + STATE(1220), 1, sym__directive_parameter, - ACTIONS(10490), 12, + ACTIONS(10715), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106400,7 +109860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 43, + ACTIONS(10713), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -106420,12 +109880,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -106443,17 +109903,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [1432] = 5, - ACTIONS(10522), 1, + [3223] = 5, + ACTIONS(10782), 1, aux_sym__text_token3, - ACTIONS(10520), 2, + ACTIONS(10779), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(714), 2, + STATE(705), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(10504), 10, + ACTIONS(10705), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106464,7 +109925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10502), 42, + ACTIONS(10703), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -106487,9 +109948,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -106507,12 +109968,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [1500] = 4, - ACTIONS(10524), 1, + aux_sym_alpine_js_token1, + [3292] = 5, + ACTIONS(10788), 1, + aux_sym__text_token3, + ACTIONS(10785), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(706), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10705), 10, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + ACTIONS(10703), 43, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATendguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + [3361] = 4, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(1069), 1, + STATE(1800), 1, sym__directive_parameter, - ACTIONS(10490), 12, + ACTIONS(10665), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106525,7 +110051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 43, + ACTIONS(10663), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -106548,11 +110074,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -106568,17 +110094,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [1566] = 5, - ACTIONS(10528), 1, + [3428] = 5, + ACTIONS(10796), 1, aux_sym__text_token3, - ACTIONS(10526), 2, + ACTIONS(10793), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(694), 2, + STATE(708), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(10504), 10, + ACTIONS(10705), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106589,7 +110116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10502), 42, + ACTIONS(10703), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -106604,7 +110131,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -106613,6 +110139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -106632,12 +110159,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [1634] = 4, - ACTIONS(10492), 1, + aux_sym_alpine_js_token1, + [3497] = 4, + ACTIONS(10799), 1, anon_sym_LPAREN2, - STATE(1529), 1, + STATE(782), 1, sym__directive_parameter, - ACTIONS(10490), 12, + ACTIONS(10665), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106650,7 +110178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 43, + ACTIONS(10663), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -106666,8 +110194,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -106693,17 +110221,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [1700] = 5, - ACTIONS(10532), 1, + [3564] = 5, + ACTIONS(10803), 1, aux_sym__text_token3, - ACTIONS(10530), 2, + ACTIONS(10801), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(717), 2, + STATE(723), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(10504), 10, + ACTIONS(10671), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106714,7 +110243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10502), 42, + ACTIONS(10669), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -106733,6 +110262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -106740,7 +110270,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -106757,16 +110286,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [1768] = 5, - ACTIONS(10541), 1, + aux_sym_alpine_js_token1, + [3633] = 5, + ACTIONS(10807), 1, aux_sym__text_token3, - ACTIONS(10538), 2, + ACTIONS(10805), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(684), 2, + STATE(703), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(10536), 10, + ACTIONS(10671), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106777,7 +110307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 42, + ACTIONS(10669), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -106791,10 +110321,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -106820,12 +110350,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [1836] = 4, - ACTIONS(10544), 1, + aux_sym_alpine_js_token1, + [3702] = 4, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(760), 1, + STATE(1131), 1, sym__directive_parameter, - ACTIONS(10498), 12, + ACTIONS(10715), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106838,7 +110369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10496), 43, + ACTIONS(10713), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -106856,13 +110387,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -106881,17 +110412,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [1902] = 5, - ACTIONS(10548), 1, + [3769] = 5, + ACTIONS(10812), 1, aux_sym__text_token3, - ACTIONS(10546), 2, + ACTIONS(10809), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(689), 2, + STATE(713), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(10504), 10, + ACTIONS(10705), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106902,7 +110434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10502), 42, + ACTIONS(10703), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -106916,7 +110448,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -106927,6 +110458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -106945,12 +110477,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [1970] = 4, - ACTIONS(10550), 1, + aux_sym_alpine_js_token1, + [3838] = 4, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(1444), 1, + STATE(803), 1, sym__directive_parameter, - ACTIONS(10490), 12, + ACTIONS(10715), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106963,7 +110496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 43, + ACTIONS(10713), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -106977,8 +110510,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -107006,17 +110539,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [2036] = 5, - ACTIONS(10554), 1, + [3905] = 5, + ACTIONS(10818), 1, aux_sym__text_token3, - ACTIONS(10552), 2, + ACTIONS(10815), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(719), 2, + STATE(715), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(10504), 10, + ACTIONS(10705), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107027,7 +110561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10502), 42, + ACTIONS(10703), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -107052,9 +110586,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -107070,16 +110604,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [2104] = 5, - ACTIONS(10559), 1, + aux_sym_alpine_js_token1, + [3974] = 5, + ACTIONS(10824), 1, aux_sym__text_token3, - ACTIONS(10556), 2, + ACTIONS(10821), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(689), 2, + STATE(716), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(10536), 10, + ACTIONS(10705), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107090,7 +110625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 42, + ACTIONS(10703), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -107104,7 +110639,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -107117,6 +110651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -107133,12 +110668,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [2172] = 4, - ACTIONS(10524), 1, + aux_sym_alpine_js_token1, + [4043] = 4, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(1383), 1, + STATE(1039), 1, sym__directive_parameter, - ACTIONS(10498), 12, + ACTIONS(10715), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107151,7 +110687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10496), 43, + ACTIONS(10713), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -107174,11 +110710,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -107194,13 +110730,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [4110] = 5, + ACTIONS(10830), 1, aux_sym__text_token3, - [2238] = 4, - ACTIONS(10518), 1, + ACTIONS(10827), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(718), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10705), 10, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + ACTIONS(10703), 43, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + aux_sym__custom_token3, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + [4179] = 4, + ACTIONS(10735), 1, anon_sym_LPAREN2, - STATE(844), 1, + STATE(1000), 1, sym__directive_parameter, - ACTIONS(10498), 12, + ACTIONS(10665), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107213,7 +110814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10496), 43, + ACTIONS(10663), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -107232,8 +110833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -107256,17 +110857,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [2304] = 5, - ACTIONS(10564), 1, + [4246] = 5, + ACTIONS(10835), 1, aux_sym__text_token3, - ACTIONS(10562), 2, + ACTIONS(10833), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(684), 2, + STATE(705), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(10504), 10, + ACTIONS(10671), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107277,7 +110879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10502), 42, + ACTIONS(10669), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -107291,7 +110893,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -107301,6 +110902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -107320,12 +110922,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [2372] = 4, - ACTIONS(10566), 1, + aux_sym_alpine_js_token1, + [4315] = 4, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(1358), 1, + STATE(888), 1, sym__directive_parameter, - ACTIONS(10490), 12, + ACTIONS(10715), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107338,7 +110941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 43, + ACTIONS(10713), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -107381,17 +110984,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [2438] = 5, - ACTIONS(10571), 1, + [4382] = 5, + ACTIONS(10839), 1, aux_sym__text_token3, - ACTIONS(10568), 2, + ACTIONS(10837), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(694), 2, + STATE(706), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(10536), 10, + ACTIONS(10671), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107402,7 +111006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 42, + ACTIONS(10669), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -107417,10 +111021,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -107445,16 +111049,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [2506] = 5, - ACTIONS(10577), 1, + aux_sym_alpine_js_token1, + [4451] = 5, + ACTIONS(10844), 1, aux_sym__text_token3, - ACTIONS(10574), 2, + ACTIONS(10841), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(695), 2, + STATE(723), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(10536), 10, + ACTIONS(10705), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107465,7 +111070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 42, + ACTIONS(10703), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -107483,8 +111088,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -107508,16 +111113,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [2574] = 5, - ACTIONS(10583), 1, - aux_sym__text_token3, - ACTIONS(10580), 2, + aux_sym_alpine_js_token1, + [4520] = 4, + ACTIONS(10679), 1, + anon_sym_LPAREN2, + STATE(947), 1, + sym__directive_parameter, + ACTIONS(10715), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - STATE(696), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10536), 10, + ACTIONS(10713), 44, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [4587] = 4, + ACTIONS(10799), 1, + anon_sym_LPAREN2, + STATE(755), 1, + sym__directive_parameter, + ACTIONS(10715), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107528,7 +111193,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 42, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10713), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -107544,8 +111211,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -107571,12 +111238,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [2642] = 4, - ACTIONS(10512), 1, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [4654] = 4, + ACTIONS(10717), 1, anon_sym_LPAREN2, - STATE(1294), 1, + STATE(887), 1, sym__directive_parameter, - ACTIONS(10498), 12, + ACTIONS(10665), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107589,7 +111258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10496), 43, + ACTIONS(10663), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -107607,6 +111276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -107615,7 +111285,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -107632,13 +111301,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [2708] = 4, - ACTIONS(10494), 1, + [4721] = 4, + ACTIONS(10667), 1, anon_sym_LPAREN2, - STATE(764), 1, + STATE(762), 1, sym__directive_parameter, - ACTIONS(10498), 12, + ACTIONS(10715), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107651,7 +111321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10496), 43, + ACTIONS(10713), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -107667,10 +111337,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -107694,26 +111364,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [2774] = 4, - ACTIONS(10586), 1, + [4788] = 5, + ACTIONS(10667), 1, anon_sym_LPAREN2, - STATE(1269), 1, + STATE(113), 1, sym__directive_parameter, - ACTIONS(10490), 12, + STATE(5853), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 43, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -107725,9 +111397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -107746,6 +111416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -107756,26 +111427,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [2840] = 4, - ACTIONS(10500), 1, + [4856] = 5, + ACTIONS(10667), 1, anon_sym_LPAREN2, - STATE(1862), 1, + STATE(113), 1, sym__directive_parameter, - ACTIONS(10490), 12, + STATE(6505), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 43, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -107786,8 +111459,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -107799,7 +111472,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -107818,28 +111490,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [2906] = 5, - ACTIONS(10591), 1, - aux_sym__text_token3, - ACTIONS(10588), 2, + [4924] = 5, + ACTIONS(10667), 1, + anon_sym_LPAREN2, + STATE(113), 1, + sym__directive_parameter, + STATE(5615), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - STATE(701), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10536), 10, + ACTIONS(10663), 43, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + anon_sym_ATendvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [4992] = 5, + ACTIONS(10667), 1, + anon_sym_LPAREN2, + STATE(113), 1, + sym__directive_parameter, + STATE(5562), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 42, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -107851,7 +111586,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -107859,7 +111593,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -107868,6 +111601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -107882,25 +111616,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [2974] = 4, - ACTIONS(10594), 1, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [5060] = 5, + ACTIONS(10667), 1, anon_sym_LPAREN2, - STATE(1242), 1, + STATE(113), 1, sym__directive_parameter, - ACTIONS(10490), 12, + STATE(5634), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 43, + ACTIONS(10663), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -107912,7 +111650,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -107925,11 +111662,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -107943,26 +111679,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [3040] = 4, - ACTIONS(10596), 1, + [5128] = 5, + ACTIONS(10667), 1, anon_sym_LPAREN2, - STATE(782), 1, + STATE(113), 1, sym__directive_parameter, - ACTIONS(10490), 12, + STATE(6468), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 43, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -107973,13 +111711,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -108005,28 +111742,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [3106] = 5, - ACTIONS(10601), 1, - aux_sym__text_token3, - ACTIONS(10598), 2, + [5196] = 5, + ACTIONS(10667), 1, + anon_sym_LPAREN2, + STATE(113), 1, + sym__directive_parameter, + STATE(5541), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - STATE(704), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10536), 10, + ACTIONS(10663), 43, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + aux_sym_section_token1, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [5264] = 5, + ACTIONS(10667), 1, + anon_sym_LPAREN2, + STATE(113), 1, + sym__directive_parameter, + STATE(6542), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 42, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -108036,9 +111836,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -108049,7 +111849,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -108069,25 +111868,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [3174] = 4, - ACTIONS(10594), 1, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [5332] = 5, + ACTIONS(10667), 1, anon_sym_LPAREN2, - STATE(1206), 1, + STATE(113), 1, sym__directive_parameter, - ACTIONS(10498), 12, + STATE(5974), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10496), 43, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -108099,7 +111901,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -108112,11 +111913,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -108130,45 +111931,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [3240] = 5, - ACTIONS(10606), 1, - aux_sym__text_token3, - ACTIONS(10604), 2, + [5400] = 5, + ACTIONS(10667), 1, + anon_sym_LPAREN2, + STATE(113), 1, + sym__directive_parameter, + STATE(5693), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - STATE(716), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10504), 10, + ACTIONS(10663), 43, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATendteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [5468] = 5, + ACTIONS(10667), 1, + anon_sym_LPAREN2, + STATE(113), 1, + sym__directive_parameter, + STATE(6616), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10502), 42, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -108194,25 +112057,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [3308] = 4, - ACTIONS(10586), 1, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [5536] = 5, + ACTIONS(10667), 1, anon_sym_LPAREN2, - STATE(805), 1, + STATE(113), 1, sym__directive_parameter, - ACTIONS(10498), 12, + STATE(5732), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10496), 43, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -108224,9 +112090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -108253,28 +112117,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [3374] = 4, - ACTIONS(10550), 1, + [5604] = 5, + ACTIONS(10667), 1, anon_sym_LPAREN2, - STATE(1844), 1, + STATE(113), 1, sym__directive_parameter, - ACTIONS(10498), 12, + STATE(5775), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10496), 43, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -108286,10 +112153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -108310,6 +112175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -108317,28 +112183,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [3440] = 5, - ACTIONS(10611), 1, - aux_sym__text_token3, - ACTIONS(10608), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(709), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10536), 10, + [5672] = 5, + ACTIONS(10667), 1, + anon_sym_LPAREN2, + STATE(113), 1, + sym__directive_parameter, + STATE(6431), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 42, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -108350,7 +112216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -108361,7 +112227,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -108381,27 +112246,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [3508] = 5, - ACTIONS(10616), 1, + aux_sym_alpine_js_token1, aux_sym__text_token3, - ACTIONS(10614), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(704), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10504), 10, + [5740] = 5, + ACTIONS(10667), 1, + anon_sym_LPAREN2, + STATE(113), 1, + sym__directive_parameter, + STATE(5814), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10502), 42, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -108413,7 +112279,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -108424,7 +112289,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -108436,6 +112300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -108444,27 +112309,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [3576] = 5, - ACTIONS(10621), 1, + aux_sym_alpine_js_token1, aux_sym__text_token3, - ACTIONS(10618), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(711), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10536), 10, + [5808] = 5, + ACTIONS(10667), 1, + anon_sym_LPAREN2, + STATE(113), 1, + sym__directive_parameter, + STATE(5893), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 42, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -108476,7 +112342,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -108488,7 +112353,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -108496,6 +112360,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -108507,27 +112372,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [3644] = 5, - ACTIONS(10626), 1, + aux_sym_alpine_js_token1, aux_sym__text_token3, - ACTIONS(10624), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(711), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10504), 10, + [5876] = 5, + ACTIONS(10667), 1, + anon_sym_LPAREN2, + STATE(113), 1, + sym__directive_parameter, + STATE(6765), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10502), 42, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -108536,10 +112402,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -108551,7 +112417,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -108570,25 +112435,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [3712] = 4, - ACTIONS(10544), 1, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [5944] = 5, + ACTIONS(10667), 1, anon_sym_LPAREN2, - STATE(863), 1, + STATE(113), 1, sym__directive_parameter, - ACTIONS(10490), 12, + STATE(6579), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 43, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -108597,16 +112465,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -108631,28 +112498,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [3778] = 5, - ACTIONS(10631), 1, - aux_sym__text_token3, - ACTIONS(10628), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(714), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10536), 10, + [6012] = 5, + ACTIONS(10667), 1, + anon_sym_LPAREN2, + STATE(113), 1, + sym__directive_parameter, + STATE(5999), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 42, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -108664,7 +112532,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -108677,7 +112544,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -108695,25 +112561,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [3846] = 4, - ACTIONS(10510), 1, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [6080] = 5, + ACTIONS(10667), 1, anon_sym_LPAREN2, - STATE(936), 1, + STATE(113), 1, sym__directive_parameter, - ACTIONS(10498), 12, + STATE(5932), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10496), 43, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -108725,7 +112594,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -108736,7 +112604,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -108744,6 +112611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -108756,28 +112624,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [3912] = 5, - ACTIONS(10637), 1, - aux_sym__text_token3, - ACTIONS(10634), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(716), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10536), 10, + [6148] = 5, + ACTIONS(10667), 1, + anon_sym_LPAREN2, + STATE(113), 1, + sym__directive_parameter, + STATE(6802), 1, + sym__if_statement_directive_body, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 42, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -108785,16 +112653,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -108820,16 +112687,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [3980] = 5, - ACTIONS(10643), 1, + aux_sym_alpine_js_token1, aux_sym__text_token3, - ACTIONS(10640), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(717), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10536), 10, + [6216] = 2, + ACTIONS(10849), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -108840,7 +112701,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 42, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10847), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -108863,10 +112726,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -108883,16 +112746,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [4048] = 5, - ACTIONS(10649), 1, + aux_sym_alpine_js_token1, aux_sym__text_token3, - ACTIONS(10646), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(718), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10536), 10, + [6277] = 2, + ACTIONS(10853), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -108903,7 +112760,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 42, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10851), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -108922,13 +112781,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -108946,27 +112805,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [4116] = 5, - ACTIONS(10655), 1, + aux_sym_alpine_js_token1, aux_sym__text_token3, - ACTIONS(10652), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(719), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10536), 10, + [6338] = 4, + ACTIONS(10855), 1, + anon_sym_LPAREN2, + STATE(3271), 1, + sym__directive_parameter, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 42, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -108978,7 +112837,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -108993,7 +112851,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -109009,27 +112866,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [4184] = 5, - ACTIONS(10660), 1, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [6403] = 5, + ACTIONS(10859), 1, aux_sym__text_token3, - ACTIONS(10658), 2, + ACTIONS(10857), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(695), 2, + STATE(754), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(10504), 10, + ACTIONS(10671), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10502), 42, + ACTIONS(10669), 42, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -109041,13 +112900,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -109072,12 +112929,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [4252] = 4, - ACTIONS(10662), 1, - anon_sym_LPAREN2, - STATE(1027), 1, - sym__directive_parameter, - ACTIONS(10498), 12, + aux_sym_alpine_js_token1, + [6470] = 2, + ACTIONS(10715), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109090,7 +112944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10496), 43, + ACTIONS(10713), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -109107,13 +112961,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -109133,28 +112987,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [4318] = 5, - ACTIONS(10666), 1, + [6531] = 5, + ACTIONS(10864), 1, aux_sym__text_token3, - ACTIONS(10664), 2, + ACTIONS(10861), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(718), 2, + STATE(754), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(10504), 10, + ACTIONS(10705), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10502), 42, + ACTIONS(10703), 42, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -109166,14 +113021,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -109197,12 +113050,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [4386] = 4, - ACTIONS(10566), 1, - anon_sym_LPAREN2, - STATE(886), 1, - sym__directive_parameter, - ACTIONS(10498), 12, + aux_sym_alpine_js_token1, + [6598] = 2, + ACTIONS(10869), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109215,7 +113065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10496), 43, + ACTIONS(10867), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -109229,10 +113079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -109258,13 +113108,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [4452] = 4, - ACTIONS(10492), 1, + [6659] = 4, + ACTIONS(10871), 1, anon_sym_LPAREN2, - STATE(753), 1, + STATE(3287), 1, sym__directive_parameter, - ACTIONS(10498), 12, + ACTIONS(10665), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 43, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [6724] = 5, + ACTIONS(10875), 1, + aux_sym__text_token3, + ACTIONS(10873), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(871), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10671), 9, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + ACTIONS(10669), 42, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + [6791] = 2, + ACTIONS(10715), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109277,7 +113247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10496), 43, + ACTIONS(10713), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -109293,9 +113263,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -109320,76 +113290,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [4518] = 5, - ACTIONS(10670), 1, - aux_sym__text_token3, - ACTIONS(10668), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(709), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10504), 10, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(10502), 42, - sym_comment, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATendcan, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [4586] = 4, - ACTIONS(10662), 1, - anon_sym_LPAREN2, - STATE(1779), 1, - sym__directive_parameter, - ACTIONS(10490), 12, + [6852] = 2, + ACTIONS(10869), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109402,7 +113306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 43, + ACTIONS(10867), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -109420,12 +113324,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -109445,26 +113349,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [4652] = 4, - ACTIONS(10596), 1, + [6913] = 4, + ACTIONS(10877), 1, anon_sym_LPAREN2, - STATE(756), 1, + STATE(3398), 1, sym__directive_parameter, - ACTIONS(10498), 12, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10496), 43, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -109473,15 +113377,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -109507,77 +113410,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [4718] = 5, - ACTIONS(10492), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(5732), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 11, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, + [6978] = 5, + ACTIONS(10881), 1, + aux_sym__text_token3, + ACTIONS(10879), 2, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, - sym_comment, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATendstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [4785] = 5, - ACTIONS(10492), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(5561), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 12, + STATE(1086), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10671), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109586,11 +113430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10488), 41, + ACTIONS(10669), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -109599,6 +113440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -109617,7 +113459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -109631,27 +113473,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [4852] = 5, - ACTIONS(10492), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(5490), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 11, + aux_sym_alpine_js_token1, + [7045] = 2, + ACTIONS(10869), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(10867), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -109663,9 +113500,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -109678,7 +113517,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -109693,45 +113531,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [4919] = 5, - ACTIONS(10492), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(5498), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 11, + [7106] = 2, + ACTIONS(10715), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(10713), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -109755,27 +113590,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [4986] = 5, - ACTIONS(10492), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(5598), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 11, + [7167] = 2, + ACTIONS(10869), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(10867), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -109787,12 +113618,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -109816,28 +113649,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [5053] = 5, - ACTIONS(10492), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(6532), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 11, + [7228] = 2, + ACTIONS(10853), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(10851), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -109848,12 +113676,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -109879,27 +113708,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [5120] = 5, - ACTIONS(10492), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(5645), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 11, + [7289] = 2, + ACTIONS(10885), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(10883), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -109911,10 +113736,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -109939,29 +113766,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [5187] = 5, - ACTIONS(10492), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(5687), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 11, + [7350] = 2, + ACTIONS(10889), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(10887), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -109973,10 +113795,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -110000,30 +113824,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [5254] = 5, - ACTIONS(10492), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(6622), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 11, + [7411] = 2, + ACTIONS(10893), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(10891), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -110033,13 +113852,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -110065,27 +113885,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [5321] = 5, - ACTIONS(10492), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(6485), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 11, + [7472] = 2, + ACTIONS(10897), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(10895), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -110097,11 +113913,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -110127,27 +113944,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [5388] = 5, - ACTIONS(10492), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(6579), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 11, + [7533] = 2, + ACTIONS(10901), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(10899), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -110158,12 +113971,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -110189,27 +114003,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [5455] = 5, - ACTIONS(10492), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(5771), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 11, + [7594] = 2, + ACTIONS(10905), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(10903), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -110221,10 +114031,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -110242,7 +114054,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -110251,43 +114062,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [5522] = 5, - ACTIONS(10492), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(6634), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 11, + [7655] = 2, + ACTIONS(10909), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(10907), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -110313,27 +114121,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [5589] = 5, - ACTIONS(10492), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(5817), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 11, + [7716] = 2, + ACTIONS(10913), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(10911), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -110345,10 +114149,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -110364,7 +114170,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -110375,27 +114180,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [5656] = 5, - ACTIONS(10492), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(5838), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 11, + [7777] = 2, + ACTIONS(10917), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(10915), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -110404,14 +114205,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -110437,27 +114239,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [5723] = 5, - ACTIONS(10492), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(5867), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 11, + [7838] = 2, + ACTIONS(10921), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(10919), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -110469,10 +114267,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -110487,7 +114287,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -110499,27 +114298,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [5790] = 5, - ACTIONS(10492), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(5916), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 11, + [7899] = 2, + ACTIONS(10925), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(10923), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -110531,10 +114326,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -110548,7 +114345,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -110561,28 +114357,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [5857] = 5, - ACTIONS(10492), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(5917), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 11, + [7960] = 2, + ACTIONS(10929), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, - ts_builtin_sym_end, + ACTIONS(10927), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -110594,10 +114385,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -110623,27 +114416,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [5924] = 5, - ACTIONS(10492), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(5962), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 11, + [8021] = 2, + ACTIONS(10933), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(10931), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -110655,10 +114444,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -110671,7 +114462,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -110685,27 +114475,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [5991] = 5, - ACTIONS(10492), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(6659), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 11, + [8082] = 2, + ACTIONS(10937), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(10935), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -110714,14 +114500,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -110747,27 +114534,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [6058] = 5, - ACTIONS(10492), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(5528), 1, - sym__if_statement_directive_body, - ACTIONS(10490), 11, + [8143] = 2, + ACTIONS(10715), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(10713), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -110775,12 +114558,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -110809,9 +114593,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [6125] = 2, - ACTIONS(10674), 12, + [8204] = 2, + ACTIONS(10941), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -110824,7 +114609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 43, + ACTIONS(10939), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -110841,13 +114626,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -110867,9 +114652,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [6185] = 2, - ACTIONS(10678), 12, + [8265] = 2, + ACTIONS(10945), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -110882,7 +114668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 43, + ACTIONS(10943), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -110899,9 +114685,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -110925,26 +114711,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [6245] = 4, - ACTIONS(10680), 1, - anon_sym_LPAREN2, - STATE(3168), 1, - sym__directive_parameter, - ACTIONS(10490), 11, + [8326] = 2, + ACTIONS(10949), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, - ts_builtin_sym_end, + ACTIONS(10947), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -110956,10 +114739,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -110985,70 +114770,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [6309] = 5, - ACTIONS(10684), 1, - aux_sym__text_token3, - ACTIONS(10682), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(755), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10504), 9, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(10502), 41, - ts_builtin_sym_end, - sym_comment, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [6375] = 2, - ACTIONS(10688), 12, + [8387] = 2, + ACTIONS(10849), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111061,7 +114786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10686), 43, + ACTIONS(10847), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -111077,8 +114802,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -111104,9 +114829,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [6435] = 2, - ACTIONS(10498), 12, + [8448] = 2, + ACTIONS(10953), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111119,7 +114845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10496), 43, + ACTIONS(10951), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -111162,70 +114888,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [6495] = 5, - ACTIONS(10693), 1, - aux_sym__text_token3, - ACTIONS(10690), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(755), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10536), 9, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(10534), 41, - ts_builtin_sym_end, - sym_comment, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [6561] = 2, - ACTIONS(10688), 12, + [8509] = 2, + ACTIONS(10957), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111238,7 +114904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10686), 43, + ACTIONS(10955), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -111281,25 +114947,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [6621] = 4, - ACTIONS(10696), 1, - anon_sym_LPAREN2, - STATE(3279), 1, - sym__directive_parameter, - ACTIONS(10490), 11, + [8570] = 2, + ACTIONS(10961), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(10959), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -111307,15 +114971,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -111341,70 +115006,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [6685] = 5, - ACTIONS(10700), 1, - aux_sym__text_token3, - ACTIONS(10698), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(869), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10504), 9, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(10502), 41, - sym_comment, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATendonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [6751] = 2, - ACTIONS(10498), 12, + [8631] = 2, + ACTIONS(10965), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111417,7 +115022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10496), 43, + ACTIONS(10963), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -111434,8 +115039,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -111460,9 +115065,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [6811] = 2, - ACTIONS(10688), 12, + [8692] = 2, + ACTIONS(10969), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111475,7 +115081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10686), 43, + ACTIONS(10967), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -111492,8 +115098,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -111518,25 +115124,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [6871] = 4, - ACTIONS(10702), 1, - anon_sym_LPAREN2, - STATE(3374), 1, - sym__directive_parameter, - ACTIONS(10490), 11, + [8753] = 2, + ACTIONS(10973), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(10971), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -111545,14 +115149,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -111578,27 +115183,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [6935] = 5, - ACTIONS(10706), 1, - aux_sym__text_token3, - ACTIONS(10704), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(1003), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10504), 9, + [8814] = 2, + ACTIONS(10977), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10502), 41, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10975), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -111607,14 +115208,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -111640,8 +115242,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [7001] = 2, - ACTIONS(10498), 12, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [8875] = 2, + ACTIONS(10981), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111654,7 +115258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10496), 43, + ACTIONS(10979), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -111671,9 +115275,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -111697,9 +115301,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [7061] = 2, - ACTIONS(10688), 12, + [8936] = 2, + ACTIONS(10985), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111712,7 +115317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10686), 43, + ACTIONS(10983), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -111729,9 +115334,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -111755,9 +115360,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [7121] = 2, - ACTIONS(10710), 12, + [8997] = 2, + ACTIONS(10989), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111770,7 +115376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 43, + ACTIONS(10987), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -111813,9 +115419,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [7181] = 2, - ACTIONS(10714), 12, + [9058] = 2, + ACTIONS(10993), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111828,7 +115435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 43, + ACTIONS(10991), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -111871,9 +115478,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [7241] = 2, - ACTIONS(10718), 12, + [9119] = 2, + ACTIONS(10997), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111886,7 +115494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 43, + ACTIONS(10995), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -111929,9 +115537,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [7301] = 2, - ACTIONS(10722), 12, + [9180] = 2, + ACTIONS(11001), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111944,7 +115553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 43, + ACTIONS(10999), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -111987,9 +115596,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [7361] = 2, - ACTIONS(10674), 12, + [9241] = 2, + ACTIONS(11005), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112002,7 +115612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 43, + ACTIONS(11003), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -112045,9 +115655,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [7421] = 2, - ACTIONS(10726), 12, + [9302] = 2, + ACTIONS(11009), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112060,7 +115671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 43, + ACTIONS(11007), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -112103,9 +115714,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [7481] = 2, - ACTIONS(10730), 12, + [9363] = 2, + ACTIONS(11013), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112118,7 +115730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 43, + ACTIONS(11011), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -112161,9 +115773,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [7541] = 2, - ACTIONS(10734), 12, + [9424] = 2, + ACTIONS(11017), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112176,7 +115789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 43, + ACTIONS(11015), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -112219,9 +115832,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [7601] = 2, - ACTIONS(10738), 12, + [9485] = 2, + ACTIONS(11021), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112234,7 +115848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 43, + ACTIONS(11019), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -112277,9 +115891,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [7661] = 2, - ACTIONS(10742), 12, + [9546] = 2, + ACTIONS(10869), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112292,7 +115907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 43, + ACTIONS(10867), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -112306,10 +115921,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -112335,9 +115950,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [7721] = 2, - ACTIONS(10746), 12, + [9607] = 2, + ACTIONS(11025), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112350,7 +115966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 43, + ACTIONS(11023), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -112393,22 +116009,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [7781] = 2, - ACTIONS(10750), 12, + [9668] = 4, + ACTIONS(11027), 1, + anon_sym_LPAREN2, + STATE(3561), 1, + sym__directive_parameter, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 43, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -112417,15 +116037,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -112451,9 +116070,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [7841] = 2, - ACTIONS(10754), 12, + [9733] = 2, + ACTIONS(11031), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112466,7 +116086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 43, + ACTIONS(11029), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -112509,9 +116129,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [7901] = 2, - ACTIONS(10758), 12, + [9794] = 2, + ACTIONS(11035), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112524,7 +116145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 43, + ACTIONS(11033), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -112567,9 +116188,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [7961] = 2, - ACTIONS(10762), 12, + [9855] = 2, + ACTIONS(11039), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112582,7 +116204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 43, + ACTIONS(11037), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -112625,9 +116247,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [8021] = 2, - ACTIONS(10498), 12, + [9916] = 2, + ACTIONS(11043), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112640,7 +116263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10496), 43, + ACTIONS(11041), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -112654,10 +116277,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -112683,9 +116306,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [8081] = 2, - ACTIONS(10766), 12, + [9977] = 2, + ACTIONS(11047), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112698,7 +116322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 43, + ACTIONS(11045), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -112741,9 +116365,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [8141] = 2, - ACTIONS(10770), 12, + [10038] = 2, + ACTIONS(11051), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112756,7 +116381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 43, + ACTIONS(11049), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -112799,9 +116424,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [8201] = 2, - ACTIONS(10774), 12, + [10099] = 2, + ACTIONS(11055), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112814,7 +116440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 43, + ACTIONS(11053), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -112857,9 +116483,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [8261] = 2, - ACTIONS(10778), 12, + [10160] = 2, + ACTIONS(11059), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112872,7 +116499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 43, + ACTIONS(11057), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -112915,9 +116542,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [8321] = 2, - ACTIONS(10782), 12, + [10221] = 2, + ACTIONS(11063), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112930,7 +116558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 43, + ACTIONS(11061), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -112973,9 +116601,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [8381] = 2, - ACTIONS(10786), 12, + [10282] = 2, + ACTIONS(11067), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112988,7 +116617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 43, + ACTIONS(11065), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -113031,9 +116660,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [8441] = 2, - ACTIONS(10790), 12, + [10343] = 2, + ACTIONS(11071), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113046,7 +116676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 43, + ACTIONS(11069), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -113089,9 +116719,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [8501] = 2, - ACTIONS(10794), 12, + [10404] = 2, + ACTIONS(11075), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113104,7 +116735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 43, + ACTIONS(11073), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -113147,9 +116778,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [8561] = 2, - ACTIONS(10798), 12, + [10465] = 2, + ACTIONS(11079), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113162,7 +116794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 43, + ACTIONS(11077), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -113205,9 +116837,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [8621] = 2, - ACTIONS(10802), 12, + [10526] = 2, + ACTIONS(11083), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113220,7 +116853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 43, + ACTIONS(11081), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -113263,9 +116896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [8681] = 2, - ACTIONS(10806), 12, + [10587] = 2, + ACTIONS(11087), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113278,7 +116912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 43, + ACTIONS(11085), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -113321,9 +116955,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [8741] = 2, - ACTIONS(10810), 12, + [10648] = 2, + ACTIONS(11091), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113336,7 +116971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 43, + ACTIONS(11089), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -113379,9 +117014,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [8801] = 2, - ACTIONS(10814), 12, + [10709] = 2, + ACTIONS(11095), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113394,7 +117030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 43, + ACTIONS(11093), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -113437,9 +117073,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [8861] = 2, - ACTIONS(10818), 12, + [10770] = 2, + ACTIONS(11099), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113452,7 +117089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 43, + ACTIONS(11097), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -113495,25 +117132,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [8921] = 4, - ACTIONS(10820), 1, - anon_sym_LPAREN2, - STATE(3509), 1, - sym__directive_parameter, - ACTIONS(10490), 11, + [10831] = 2, + ACTIONS(11103), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(11101), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -113522,14 +117157,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -113555,9 +117191,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [8985] = 2, - ACTIONS(10824), 12, + [10892] = 2, + ACTIONS(10715), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113570,7 +117207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 43, + ACTIONS(10713), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -113587,10 +117224,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -113613,9 +117250,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [9045] = 2, - ACTIONS(10828), 12, + [10953] = 2, + ACTIONS(11107), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113628,7 +117266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 43, + ACTIONS(11105), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -113671,9 +117309,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [9105] = 2, - ACTIONS(10832), 12, + [11014] = 2, + ACTIONS(11111), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113686,7 +117325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 43, + ACTIONS(11109), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -113729,9 +117368,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [9165] = 2, - ACTIONS(10836), 12, + [11075] = 2, + ACTIONS(11115), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113744,7 +117384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 43, + ACTIONS(11113), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -113787,9 +117427,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [9225] = 2, - ACTIONS(10840), 12, + [11136] = 2, + ACTIONS(11119), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113802,7 +117443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 43, + ACTIONS(11117), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -113845,9 +117486,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [9285] = 2, - ACTIONS(10678), 12, + [11197] = 2, + ACTIONS(11123), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113860,7 +117502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 43, + ACTIONS(11121), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -113903,9 +117545,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [9345] = 2, - ACTIONS(10844), 12, + [11258] = 2, + ACTIONS(11127), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113918,7 +117561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 43, + ACTIONS(11125), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -113961,9 +117604,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [9405] = 2, - ACTIONS(10848), 12, + [11319] = 2, + ACTIONS(11131), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113976,7 +117620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 43, + ACTIONS(11129), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -114019,9 +117663,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [9465] = 2, - ACTIONS(10852), 12, + [11380] = 2, + ACTIONS(11135), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114034,7 +117679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 43, + ACTIONS(11133), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -114077,9 +117722,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [9525] = 2, - ACTIONS(10688), 12, + [11441] = 2, + ACTIONS(11139), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114092,7 +117738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10686), 43, + ACTIONS(11137), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -114106,10 +117752,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -114135,9 +117781,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [9585] = 2, - ACTIONS(10856), 12, + [11502] = 2, + ACTIONS(11143), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114150,7 +117797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 43, + ACTIONS(11141), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -114193,9 +117840,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [9645] = 2, - ACTIONS(10860), 12, + [11563] = 2, + ACTIONS(11147), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114208,7 +117856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 43, + ACTIONS(11145), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -114251,9 +117899,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [9705] = 2, - ACTIONS(10864), 12, + [11624] = 2, + ACTIONS(11151), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114266,7 +117915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 43, + ACTIONS(11149), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -114280,10 +117929,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -114309,9 +117958,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [9765] = 2, - ACTIONS(10868), 12, + [11685] = 2, + ACTIONS(11155), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114324,7 +117974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 43, + ACTIONS(11153), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -114367,9 +118017,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [9825] = 2, - ACTIONS(10872), 12, + [11746] = 2, + ACTIONS(11159), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114382,7 +118033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 43, + ACTIONS(11157), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -114425,9 +118076,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [9885] = 2, - ACTIONS(10876), 12, + [11807] = 2, + ACTIONS(11163), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114440,7 +118092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 43, + ACTIONS(11161), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -114483,9 +118135,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [9945] = 2, - ACTIONS(10880), 12, + [11868] = 2, + ACTIONS(11167), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114498,7 +118151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 43, + ACTIONS(11165), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -114541,9 +118194,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [10005] = 2, - ACTIONS(10884), 12, + [11929] = 2, + ACTIONS(11171), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114556,7 +118210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 43, + ACTIONS(11169), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -114599,9 +118253,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [10065] = 2, - ACTIONS(10888), 12, + [11990] = 2, + ACTIONS(11175), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114614,7 +118269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 43, + ACTIONS(11173), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -114657,9 +118312,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [10125] = 2, - ACTIONS(10498), 12, + [12051] = 2, + ACTIONS(11179), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114672,7 +118328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10496), 43, + ACTIONS(11177), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -114689,10 +118345,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -114715,9 +118371,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [10185] = 2, - ACTIONS(10892), 12, + [12112] = 2, + ACTIONS(11183), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114730,7 +118387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 43, + ACTIONS(11181), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -114773,9 +118430,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [10245] = 2, - ACTIONS(10896), 12, + [12173] = 2, + ACTIONS(11187), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114788,7 +118446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 43, + ACTIONS(11185), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -114831,9 +118489,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [10305] = 2, - ACTIONS(10900), 12, + [12234] = 2, + ACTIONS(10885), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114846,7 +118505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 43, + ACTIONS(10883), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -114863,8 +118522,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -114889,9 +118548,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [10365] = 2, - ACTIONS(10904), 12, + [12295] = 2, + ACTIONS(10889), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114904,7 +118564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 43, + ACTIONS(10887), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -114921,8 +118581,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -114947,9 +118607,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [10425] = 2, - ACTIONS(10908), 12, + [12356] = 2, + ACTIONS(10893), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114962,7 +118623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 43, + ACTIONS(10891), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -114979,8 +118640,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -115005,9 +118666,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [10485] = 2, - ACTIONS(10912), 12, + [12417] = 2, + ACTIONS(10897), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115020,7 +118682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 43, + ACTIONS(10895), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -115037,8 +118699,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -115063,9 +118725,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [10545] = 2, - ACTIONS(10916), 12, + [12478] = 2, + ACTIONS(10901), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115078,7 +118741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 43, + ACTIONS(10899), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -115095,8 +118758,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -115121,9 +118784,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [10605] = 2, - ACTIONS(10920), 12, + [12539] = 2, + ACTIONS(10905), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115136,7 +118800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 43, + ACTIONS(10903), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -115153,8 +118817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -115179,9 +118843,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [10665] = 2, - ACTIONS(10924), 12, + [12600] = 2, + ACTIONS(10909), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115194,7 +118859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 43, + ACTIONS(10907), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -115211,8 +118876,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -115237,9 +118902,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [10725] = 2, - ACTIONS(10928), 12, + [12661] = 2, + ACTIONS(10869), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115252,7 +118918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 43, + ACTIONS(10867), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -115269,10 +118935,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -115295,9 +118961,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [10785] = 2, - ACTIONS(10932), 12, + [12722] = 2, + ACTIONS(10913), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115310,7 +118977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 43, + ACTIONS(10911), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -115327,8 +118994,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -115353,9 +119020,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [10845] = 2, - ACTIONS(10936), 12, + [12783] = 2, + ACTIONS(10917), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115368,7 +119036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 43, + ACTIONS(10915), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -115382,11 +119050,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -115411,9 +119079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [10905] = 2, - ACTIONS(10940), 12, + [12844] = 2, + ACTIONS(10997), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115426,7 +119095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 43, + ACTIONS(10995), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -115443,8 +119112,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -115469,9 +119138,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [10965] = 2, - ACTIONS(10944), 12, + [12905] = 2, + ACTIONS(10921), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115484,7 +119154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 43, + ACTIONS(10919), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -115501,8 +119171,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -115527,9 +119197,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [11025] = 2, - ACTIONS(10948), 12, + [12966] = 2, + ACTIONS(10925), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115542,7 +119213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 43, + ACTIONS(10923), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -115559,8 +119230,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -115585,9 +119256,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [11085] = 2, - ACTIONS(10952), 12, + [13027] = 2, + ACTIONS(10929), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115600,7 +119272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 43, + ACTIONS(10927), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -115617,8 +119289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -115643,9 +119315,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [11145] = 2, - ACTIONS(10956), 12, + [13088] = 2, + ACTIONS(10933), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115658,7 +119331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 43, + ACTIONS(10931), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -115675,8 +119348,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -115701,9 +119374,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [11205] = 2, - ACTIONS(10960), 12, + [13149] = 2, + ACTIONS(10937), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115716,7 +119390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 43, + ACTIONS(10935), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -115733,8 +119407,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [13210] = 2, + ACTIONS(10715), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10713), 44, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATendunless, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [13271] = 2, + ACTIONS(10941), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10939), 44, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATendguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [13332] = 2, + ACTIONS(10853), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10851), 44, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATendguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [13393] = 2, + ACTIONS(10949), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10947), 44, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -115759,9 +119669,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [11265] = 2, - ACTIONS(10964), 12, + [13454] = 2, + ACTIONS(10849), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115774,7 +119685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 43, + ACTIONS(10847), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -115791,8 +119702,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -115817,9 +119728,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [11325] = 2, - ACTIONS(10968), 12, + [13515] = 2, + ACTIONS(10953), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115832,7 +119744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 43, + ACTIONS(10951), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -115849,8 +119761,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -115875,9 +119787,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [11385] = 2, - ACTIONS(10972), 12, + [13576] = 2, + ACTIONS(10957), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115890,7 +119803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 43, + ACTIONS(10955), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -115907,8 +119820,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -115933,9 +119846,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [11445] = 2, - ACTIONS(10976), 12, + [13637] = 2, + ACTIONS(10961), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115948,7 +119862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 43, + ACTIONS(10959), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -115965,8 +119879,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -115991,22 +119905,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [13698] = 5, + ACTIONS(11192), 1, aux_sym__text_token3, - [11505] = 2, - ACTIONS(10980), 12, + ACTIONS(11189), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(871), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10705), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10978), 43, + ACTIONS(10703), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -116014,16 +119934,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -116049,9 +119968,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [11565] = 2, - ACTIONS(10984), 12, + aux_sym_alpine_js_token1, + [13765] = 2, + ACTIONS(10965), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116064,7 +119983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 43, + ACTIONS(10963), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -116081,8 +120000,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -116107,9 +120026,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [11625] = 2, - ACTIONS(10988), 12, + [13826] = 2, + ACTIONS(10969), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116122,7 +120042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 43, + ACTIONS(10967), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -116139,8 +120059,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -116165,9 +120085,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [11685] = 2, - ACTIONS(10992), 12, + [13887] = 2, + ACTIONS(10973), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116180,7 +120101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 43, + ACTIONS(10971), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -116197,8 +120118,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -116223,9 +120144,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [11745] = 2, - ACTIONS(10996), 12, + [13948] = 2, + ACTIONS(10977), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116238,7 +120160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 43, + ACTIONS(10975), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -116255,8 +120177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -116281,9 +120203,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [11805] = 2, - ACTIONS(11000), 12, + [14009] = 2, + ACTIONS(10981), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116296,7 +120219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 43, + ACTIONS(10979), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -116313,8 +120236,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -116339,9 +120262,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [11865] = 2, - ACTIONS(10688), 12, + [14070] = 2, + ACTIONS(10985), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116354,7 +120278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10686), 43, + ACTIONS(10983), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -116372,9 +120296,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -116397,9 +120321,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [11925] = 2, - ACTIONS(10710), 12, + [14131] = 2, + ACTIONS(10989), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116412,7 +120337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 43, + ACTIONS(10987), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -116455,9 +120380,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [11985] = 2, - ACTIONS(10714), 12, + [14192] = 2, + ACTIONS(10993), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116470,7 +120396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 43, + ACTIONS(10991), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -116513,9 +120439,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [12045] = 2, - ACTIONS(10718), 12, + [14253] = 2, + ACTIONS(11087), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116528,7 +120455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 43, + ACTIONS(11085), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -116571,9 +120498,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [12105] = 2, - ACTIONS(10722), 12, + [14314] = 2, + ACTIONS(11001), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116586,7 +120514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 43, + ACTIONS(10999), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -116629,9 +120557,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [12165] = 2, - ACTIONS(10802), 12, + [14375] = 2, + ACTIONS(11005), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116644,7 +120573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 43, + ACTIONS(11003), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -116687,9 +120616,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [12225] = 2, - ACTIONS(10674), 12, + [14436] = 2, + ACTIONS(11009), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116702,7 +120632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 43, + ACTIONS(11007), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -116745,9 +120675,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [12285] = 2, - ACTIONS(10726), 12, + [14497] = 2, + ACTIONS(11197), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116760,7 +120691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 43, + ACTIONS(11195), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -116774,11 +120705,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -116803,9 +120734,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [12345] = 2, - ACTIONS(10730), 12, + [14558] = 2, + ACTIONS(11013), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116818,7 +120750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 43, + ACTIONS(11011), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -116861,9 +120793,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [12405] = 2, - ACTIONS(10734), 12, + [14619] = 2, + ACTIONS(11017), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116876,7 +120809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 43, + ACTIONS(11015), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -116919,9 +120852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [12465] = 2, - ACTIONS(10738), 12, + [14680] = 2, + ACTIONS(10945), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116934,7 +120868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 43, + ACTIONS(10943), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -116977,9 +120911,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [12525] = 2, - ACTIONS(10742), 12, + [14741] = 2, + ACTIONS(10869), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116992,7 +120927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 43, + ACTIONS(10867), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -117006,11 +120941,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -117035,9 +120970,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [12585] = 2, - ACTIONS(10746), 12, + [14802] = 2, + ACTIONS(11025), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117050,7 +120986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 43, + ACTIONS(11023), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -117093,9 +121029,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [12645] = 2, - ACTIONS(10750), 12, + [14863] = 2, + ACTIONS(11031), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117108,7 +121045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 43, + ACTIONS(11029), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -117151,9 +121088,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [12705] = 2, - ACTIONS(11004), 12, + [14924] = 2, + ACTIONS(11035), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117166,7 +121104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 43, + ACTIONS(11033), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -117183,8 +121121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -117209,9 +121147,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [12765] = 2, - ACTIONS(10758), 12, + [14985] = 2, + ACTIONS(11039), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117224,7 +121163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 43, + ACTIONS(11037), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -117267,9 +121206,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [12825] = 2, - ACTIONS(10762), 12, + [15046] = 2, + ACTIONS(11043), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117282,7 +121222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 43, + ACTIONS(11041), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -117325,9 +121265,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [12885] = 2, - ACTIONS(10498), 12, + [15107] = 2, + ACTIONS(11047), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117340,7 +121281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10496), 43, + ACTIONS(11045), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -117354,11 +121295,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -117383,9 +121324,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [12945] = 2, - ACTIONS(10766), 12, + [15168] = 2, + ACTIONS(11051), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117398,7 +121340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 43, + ACTIONS(11049), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -117441,9 +121383,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [13005] = 2, - ACTIONS(10770), 12, + [15229] = 2, + ACTIONS(11055), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117456,7 +121399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 43, + ACTIONS(11053), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -117499,9 +121442,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [13065] = 2, - ACTIONS(10774), 12, + [15290] = 2, + ACTIONS(11059), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117514,7 +121458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 43, + ACTIONS(11057), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -117557,22 +121501,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [13125] = 2, - ACTIONS(10778), 12, + [15351] = 4, + ACTIONS(11199), 1, + anon_sym_LPAREN2, + STATE(3298), 1, + sym__directive_parameter, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 43, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -117582,15 +121530,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -117615,9 +121562,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [13185] = 2, - ACTIONS(10782), 12, + [15416] = 2, + ACTIONS(11063), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117630,7 +121578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 43, + ACTIONS(11061), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -117673,9 +121621,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [13245] = 2, - ACTIONS(10786), 12, + [15477] = 2, + ACTIONS(11067), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117688,7 +121637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 43, + ACTIONS(11065), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -117731,9 +121680,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [13305] = 2, - ACTIONS(10790), 12, + [15538] = 2, + ACTIONS(11071), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117746,7 +121696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 43, + ACTIONS(11069), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -117789,27 +121739,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [13365] = 5, - ACTIONS(11009), 1, - aux_sym__text_token3, - ACTIONS(11006), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(869), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10536), 9, + [15599] = 2, + ACTIONS(11075), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 41, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11073), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -117817,16 +121763,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -117851,8 +121798,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [13431] = 2, - ACTIONS(10794), 12, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [15660] = 2, + ACTIONS(11079), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117865,7 +121814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 43, + ACTIONS(11077), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -117908,9 +121857,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [13491] = 2, - ACTIONS(10798), 12, + [15721] = 2, + ACTIONS(11083), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117923,7 +121873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 43, + ACTIONS(11081), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -117966,9 +121916,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [13551] = 2, - ACTIONS(10806), 12, + [15782] = 2, + ACTIONS(11155), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117981,7 +121932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 43, + ACTIONS(11153), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -118024,22 +121975,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [15843] = 5, + ACTIONS(11203), 1, aux_sym__text_token3, - [13611] = 2, - ACTIONS(10810), 12, + ACTIONS(11201), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(1722), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10671), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10808), 43, + ACTIONS(10669), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -118048,16 +122005,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -118082,9 +122038,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [13671] = 2, - ACTIONS(11014), 12, + aux_sym_alpine_js_token1, + [15910] = 2, + ACTIONS(11091), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118097,7 +122053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 43, + ACTIONS(11089), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -118111,11 +122067,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -118140,9 +122096,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [13731] = 2, - ACTIONS(10814), 12, + [15971] = 2, + ACTIONS(11095), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118155,7 +122112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 43, + ACTIONS(11093), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -118198,9 +122155,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [13791] = 2, - ACTIONS(10818), 12, + [16032] = 2, + ACTIONS(11099), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118213,7 +122171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 43, + ACTIONS(11097), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -118256,9 +122214,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [13851] = 2, - ACTIONS(10824), 12, + [16093] = 2, + ACTIONS(11103), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118271,7 +122230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 43, + ACTIONS(11101), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -118314,9 +122273,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [13911] = 2, - ACTIONS(10828), 12, + [16154] = 2, + ACTIONS(11107), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118329,7 +122289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 43, + ACTIONS(11105), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -118372,9 +122332,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [13971] = 2, - ACTIONS(10832), 12, + [16215] = 2, + ACTIONS(11021), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118387,7 +122348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 43, + ACTIONS(11019), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -118430,9 +122391,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [14031] = 2, - ACTIONS(10836), 12, + [16276] = 2, + ACTIONS(11115), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118445,7 +122407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 43, + ACTIONS(11113), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -118488,9 +122450,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [14091] = 2, - ACTIONS(10754), 12, + [16337] = 2, + ACTIONS(11119), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118503,7 +122466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 43, + ACTIONS(11117), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -118546,9 +122509,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [14151] = 2, - ACTIONS(10678), 12, + [16398] = 2, + ACTIONS(11123), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118561,7 +122525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 43, + ACTIONS(11121), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -118604,9 +122568,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [14211] = 2, - ACTIONS(10844), 12, + [16459] = 2, + ACTIONS(11127), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118619,7 +122584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 43, + ACTIONS(11125), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -118662,9 +122627,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [14271] = 2, - ACTIONS(10848), 12, + [16520] = 2, + ACTIONS(11131), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118677,7 +122643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 43, + ACTIONS(11129), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -118720,9 +122686,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [14331] = 2, - ACTIONS(10852), 12, + [16581] = 2, + ACTIONS(10715), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118735,7 +122702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 43, + ACTIONS(10713), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -118753,12 +122720,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -118778,9 +122745,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [14391] = 2, - ACTIONS(10688), 12, + [16642] = 2, + ACTIONS(10715), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118793,7 +122761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10686), 43, + ACTIONS(10713), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -118807,9 +122775,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -118836,25 +122804,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [14451] = 4, - ACTIONS(11016), 1, - anon_sym_LPAREN2, - STATE(3336), 1, - sym__directive_parameter, - ACTIONS(10490), 11, + [16703] = 2, + ACTIONS(11135), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(11133), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -118864,14 +122830,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -118896,9 +122863,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [14515] = 2, - ACTIONS(10856), 12, + [16764] = 2, + ACTIONS(11139), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118911,7 +122879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 43, + ACTIONS(11137), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -118954,9 +122922,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [14575] = 2, - ACTIONS(10860), 12, + [16825] = 2, + ACTIONS(11143), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118969,7 +122938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 43, + ACTIONS(11141), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -119012,9 +122981,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [14635] = 2, - ACTIONS(10864), 12, + [16886] = 2, + ACTIONS(11147), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119027,7 +122997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 43, + ACTIONS(11145), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -119070,9 +123040,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [14695] = 2, - ACTIONS(10868), 12, + [16947] = 2, + ACTIONS(11187), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119085,7 +123056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 43, + ACTIONS(11185), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -119128,9 +123099,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [14755] = 2, - ACTIONS(10872), 12, + [17008] = 2, + ACTIONS(11159), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119143,7 +123115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 43, + ACTIONS(11157), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -119186,9 +123158,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [14815] = 2, - ACTIONS(10876), 12, + [17069] = 2, + ACTIONS(11163), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119201,7 +123174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 43, + ACTIONS(11161), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -119244,9 +123217,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [14875] = 2, - ACTIONS(10880), 12, + [17130] = 2, + ACTIONS(11167), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119259,7 +123233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 43, + ACTIONS(11165), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -119302,27 +123276,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [14935] = 5, - ACTIONS(11020), 1, - aux_sym__text_token3, - ACTIONS(11018), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(1702), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10504), 9, + [17191] = 2, + ACTIONS(11171), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10502), 41, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11169), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -119331,15 +123301,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -119364,8 +123335,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [15001] = 2, - ACTIONS(10884), 12, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [17252] = 2, + ACTIONS(11175), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119378,7 +123351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 43, + ACTIONS(11173), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -119421,9 +123394,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [15061] = 2, - ACTIONS(11024), 12, + [17313] = 2, + ACTIONS(11151), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119436,7 +123410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 43, + ACTIONS(11149), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -119450,11 +123424,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -119479,9 +123453,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [15121] = 2, - ACTIONS(10888), 12, + [17374] = 2, + ACTIONS(11179), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119494,7 +123469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 43, + ACTIONS(11177), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -119537,9 +123512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [15181] = 2, - ACTIONS(10892), 12, + [17435] = 2, + ACTIONS(11111), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119552,7 +123528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 43, + ACTIONS(11109), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -119595,22 +123571,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [17496] = 5, + ACTIONS(11208), 1, aux_sym__text_token3, - [15241] = 2, - ACTIONS(10896), 12, + ACTIONS(11205), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(933), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10705), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10894), 43, + ACTIONS(10703), 41, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -119622,13 +123605,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -119639,7 +123620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -119653,22 +123634,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, + [17563] = 5, + ACTIONS(11214), 1, aux_sym__text_token3, - [15301] = 2, - ACTIONS(10900), 12, + ACTIONS(11211), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(934), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10705), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10898), 43, + ACTIONS(10703), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -119680,13 +123666,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -119697,6 +123681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -119711,40 +123696,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, + [17630] = 5, + ACTIONS(11220), 1, aux_sym__text_token3, - [15361] = 2, - ACTIONS(10904), 12, + ACTIONS(11217), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(935), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10705), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10902), 43, + ACTIONS(10703), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -119769,22 +123758,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, + [17697] = 5, + ACTIONS(11226), 1, aux_sym__text_token3, - [15421] = 2, - ACTIONS(10908), 12, + ACTIONS(11223), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(936), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10705), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10906), 43, + ACTIONS(10703), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -119796,13 +123790,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -119827,22 +123819,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, + aux_sym_alpine_js_token1, + [17764] = 5, + ACTIONS(11232), 1, aux_sym__text_token3, - [15481] = 2, - ACTIONS(10912), 12, + ACTIONS(11229), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(937), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10705), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10910), 43, + ACTIONS(10703), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -119854,13 +123852,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -119884,23 +123880,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, + [17831] = 5, + ACTIONS(11238), 1, aux_sym__text_token3, - [15541] = 2, - ACTIONS(10840), 12, + ACTIONS(11235), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(938), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10705), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10838), 43, + ACTIONS(10703), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -119912,13 +123914,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -119941,24 +123941,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, + [17898] = 5, + ACTIONS(11244), 1, aux_sym__text_token3, - [15601] = 2, - ACTIONS(10920), 12, + ACTIONS(11241), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(939), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10705), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10918), 43, + ACTIONS(10703), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -119970,13 +123976,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -119994,6 +123998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -120001,22 +124006,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, + [17965] = 5, + ACTIONS(11250), 1, aux_sym__text_token3, - [15661] = 2, - ACTIONS(10498), 12, + ACTIONS(11247), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(940), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10705), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10496), 43, + ACTIONS(10703), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -120028,7 +124038,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -120039,7 +124048,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -120051,6 +124059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -120059,22 +124068,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, + [18032] = 5, + ACTIONS(11255), 1, aux_sym__text_token3, - [15721] = 2, - ACTIONS(10924), 12, + ACTIONS(11253), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(933), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10671), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10922), 43, + ACTIONS(10669), 41, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -120086,13 +124101,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -120103,7 +124116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -120117,22 +124130,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, + [18099] = 5, + ACTIONS(11260), 1, aux_sym__text_token3, - [15781] = 2, - ACTIONS(10928), 12, + ACTIONS(11257), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(942), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10705), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10926), 43, + ACTIONS(10703), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -120144,13 +124162,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -120165,6 +124181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -120175,22 +124192,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, + [18166] = 5, + ACTIONS(11265), 1, aux_sym__text_token3, - [15841] = 2, - ACTIONS(10932), 12, + ACTIONS(11263), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(934), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10671), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10930), 43, + ACTIONS(10669), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -120202,13 +124224,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -120219,6 +124239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -120233,22 +124254,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, + [18233] = 5, + ACTIONS(11270), 1, aux_sym__text_token3, - [15901] = 2, - ACTIONS(10940), 12, + ACTIONS(11267), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(944), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10705), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10938), 43, + ACTIONS(10703), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -120260,13 +124286,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -120280,6 +124304,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -120291,22 +124316,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, + [18300] = 5, + ACTIONS(11276), 1, aux_sym__text_token3, - [15961] = 2, - ACTIONS(10944), 12, + ACTIONS(11273), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(945), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10705), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10942), 43, + ACTIONS(10703), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -120318,13 +124348,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -120337,6 +124365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -120349,40 +124378,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, + [18367] = 5, + ACTIONS(11281), 1, aux_sym__text_token3, - [16021] = 2, - ACTIONS(10948), 12, + ACTIONS(11279), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(935), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10671), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10946), 43, + ACTIONS(10669), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -120407,9 +124440,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [16081] = 2, - ACTIONS(10952), 12, + aux_sym_alpine_js_token1, + [18434] = 2, + ACTIONS(10869), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120422,7 +124455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 43, + ACTIONS(10867), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -120440,12 +124473,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -120465,22 +124498,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [16141] = 2, - ACTIONS(10956), 12, + [18495] = 4, + ACTIONS(11283), 1, + anon_sym_LPAREN2, + STATE(3131), 1, + sym__directive_parameter, + ACTIONS(10665), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 43, + ACTIONS(10663), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -120492,13 +124530,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -120509,7 +124545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -120523,9 +124559,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [16201] = 2, - ACTIONS(10960), 12, + [18560] = 2, + ACTIONS(11183), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120538,7 +124575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 43, + ACTIONS(11181), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -120581,9 +124618,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [16261] = 2, - ACTIONS(10964), 12, + [18621] = 2, + ACTIONS(11197), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120596,7 +124634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 43, + ACTIONS(11195), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -120614,8 +124652,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -120639,9 +124677,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [16321] = 2, - ACTIONS(10968), 12, + [18682] = 2, + ACTIONS(11151), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120654,7 +124693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 43, + ACTIONS(11149), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -120672,8 +124711,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -120697,22 +124736,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [18743] = 5, + ACTIONS(11288), 1, aux_sym__text_token3, - [16381] = 2, - ACTIONS(10936), 12, + ACTIONS(11285), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(952), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10705), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10934), 43, + ACTIONS(10703), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -120724,9 +124769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -120742,6 +124785,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -120755,22 +124799,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [16441] = 2, - ACTIONS(10972), 12, + aux_sym_alpine_js_token1, + [18810] = 4, + ACTIONS(11291), 1, + anon_sym_LPAREN2, + STATE(3048), 1, + sym__directive_parameter, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 43, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -120782,13 +124829,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -120799,6 +124844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -120813,9 +124859,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [16501] = 2, - ACTIONS(10976), 12, + [18875] = 2, + ACTIONS(10885), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120828,7 +124875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 43, + ACTIONS(10883), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -120846,8 +124893,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -120871,9 +124918,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [16561] = 2, - ACTIONS(10980), 12, + [18936] = 2, + ACTIONS(11197), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120886,7 +124934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 43, + ACTIONS(11195), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -120929,9 +124977,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [16621] = 2, - ACTIONS(10984), 12, + [18997] = 2, + ACTIONS(11151), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120944,7 +124993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 43, + ACTIONS(11149), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -120987,9 +125036,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [16681] = 2, - ACTIONS(11000), 12, + [19058] = 2, + ACTIONS(10853), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121002,7 +125052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 43, + ACTIONS(10851), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -121020,8 +125070,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -121045,22 +125095,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [16741] = 2, - ACTIONS(10988), 12, + [19119] = 5, + ACTIONS(11295), 1, + aux_sym__text_token3, + ACTIONS(11293), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(936), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10671), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10986), 43, + ACTIONS(10669), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -121072,13 +125128,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -121103,40 +125157,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [16801] = 2, - ACTIONS(10992), 12, + anon_sym_ATendvolt, + aux_sym_alpine_js_token1, + [19186] = 4, + ACTIONS(11297), 1, + anon_sym_LPAREN2, + STATE(2965), 1, + sym__directive_parameter, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 43, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -121161,9 +125218,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [16861] = 2, - ACTIONS(10996), 12, + [19251] = 2, + ACTIONS(10893), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121176,7 +125234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 43, + ACTIONS(10891), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -121194,8 +125252,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -121219,9 +125277,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [16921] = 2, - ACTIONS(11004), 12, + [19312] = 2, + ACTIONS(11197), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121234,7 +125293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 43, + ACTIONS(11195), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -121251,8 +125310,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -121277,9 +125336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [16981] = 2, - ACTIONS(10710), 12, + [19373] = 2, + ACTIONS(11151), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121292,7 +125352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 43, + ACTIONS(11149), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -121309,9 +125369,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -121335,9 +125395,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [17041] = 2, - ACTIONS(10714), 12, + [19434] = 2, + ACTIONS(10897), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121350,7 +125411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 43, + ACTIONS(10895), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -121393,22 +125454,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [17101] = 2, - ACTIONS(10916), 12, + [19495] = 5, + ACTIONS(11301), 1, + aux_sym__text_token3, + ACTIONS(11299), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(937), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10671), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10914), 43, + ACTIONS(10669), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -121420,13 +125487,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -121450,23 +125515,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [17161] = 2, - ACTIONS(10722), 12, + aux_sym_alpine_js_token1, + [19562] = 4, + ACTIONS(11303), 1, + anon_sym_LPAREN2, + STATE(2882), 1, + sym__directive_parameter, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 43, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -121478,14 +125547,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -121509,9 +125576,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [17221] = 2, - ACTIONS(10802), 12, + [19627] = 2, + ACTIONS(10889), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121524,7 +125593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 43, + ACTIONS(10887), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -121567,9 +125636,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [17281] = 2, - ACTIONS(10674), 12, + [19688] = 2, + ACTIONS(10905), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121582,7 +125652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 43, + ACTIONS(10903), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -121625,22 +125695,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [17341] = 2, - ACTIONS(10726), 12, + [19749] = 5, + ACTIONS(11307), 1, + aux_sym__text_token3, + ACTIONS(11305), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(938), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10671), 9, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + ACTIONS(10669), 42, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATendpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + [19816] = 4, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + STATE(2799), 1, + sym__directive_parameter, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 43, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -121652,14 +125788,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -121682,10 +125816,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [17401] = 2, - ACTIONS(10688), 12, + [19881] = 2, + ACTIONS(10909), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121698,7 +125834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10686), 43, + ACTIONS(10907), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -121717,11 +125853,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -121741,9 +125877,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [17461] = 2, - ACTIONS(10718), 12, + [19942] = 2, + ACTIONS(10913), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121756,7 +125893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 43, + ACTIONS(10911), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -121799,17 +125936,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [17521] = 5, - ACTIONS(11029), 1, + [20003] = 5, + ACTIONS(11313), 1, aux_sym__text_token3, - ACTIONS(11026), 2, + ACTIONS(11311), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(938), 2, + STATE(939), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(10536), 10, + ACTIONS(10671), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121818,9 +125956,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, - ACTIONS(10534), 40, + ACTIONS(10669), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -121847,13 +125984,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -121861,16 +125999,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [17587] = 5, - ACTIONS(11035), 1, - aux_sym__text_token3, - ACTIONS(11032), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(939), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10536), 9, + aux_sym_alpine_js_token1, + [20070] = 4, + ACTIONS(11315), 1, + anon_sym_LPAREN2, + STATE(2716), 1, + sym__directive_parameter, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121880,7 +126015,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 41, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -121907,7 +126044,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -121920,46 +126056,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [17653] = 5, - ACTIONS(11041), 1, + aux_sym_alpine_js_token1, aux_sym__text_token3, - ACTIONS(11038), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(940), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10536), 9, + [20135] = 2, + ACTIONS(10901), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 41, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10899), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -121983,26 +126118,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [17719] = 5, - ACTIONS(11047), 1, + aux_sym_alpine_js_token1, aux_sym__text_token3, - ACTIONS(11044), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(941), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10536), 9, + [20196] = 2, + ACTIONS(10917), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 41, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10915), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -122014,12 +126146,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -122043,17 +126177,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, - [17785] = 5, - ACTIONS(11053), 1, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [20257] = 5, + ACTIONS(11319), 1, aux_sym__text_token3, - ACTIONS(11050), 2, + ACTIONS(11317), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(942), 2, + STATE(940), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(10536), 9, + ACTIONS(10671), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122063,7 +126198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 41, + ACTIONS(10669), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -122096,6 +126231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -122103,28 +126239,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, - [17851] = 5, - ACTIONS(11059), 1, - aux_sym__text_token3, - ACTIONS(11056), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(943), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10536), 9, + aux_sym_alpine_js_token1, + [20324] = 2, + ACTIONS(11197), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 41, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11195), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -122136,7 +126267,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -122163,19 +126296,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [17917] = 5, - ACTIONS(11065), 1, + aux_sym_alpine_js_token1, aux_sym__text_token3, - ACTIONS(11062), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(944), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10536), 9, + [20385] = 4, + ACTIONS(11321), 1, + anon_sym_LPAREN2, + STATE(2633), 1, + sym__directive_parameter, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122185,7 +126315,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 41, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -122227,26 +126359,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [17983] = 5, - ACTIONS(11071), 1, + aux_sym_alpine_js_token1, aux_sym__text_token3, - ACTIONS(11068), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(945), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10536), 9, + [20450] = 2, + ACTIONS(10921), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 41, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10919), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -122258,12 +126387,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -122279,7 +126410,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -122288,16 +126418,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [18049] = 5, - ACTIONS(11077), 1, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [20511] = 5, + ACTIONS(11325), 1, aux_sym__text_token3, - ACTIONS(11074), 2, + ACTIONS(11323), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(946), 2, + STATE(942), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(10536), 9, + ACTIONS(10671), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122307,7 +126439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 41, + ACTIONS(10669), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -122349,16 +126481,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [18115] = 5, - ACTIONS(11082), 1, - aux_sym__text_token3, - ACTIONS(11080), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(938), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10504), 10, + aux_sym_alpine_js_token1, + [20578] = 4, + ACTIONS(11327), 1, + anon_sym_LPAREN2, + STATE(2550), 1, + sym__directive_parameter, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122367,9 +126496,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, - ACTIONS(10502), 40, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -122396,12 +126526,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -122410,26 +126541,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [18181] = 5, - ACTIONS(11087), 1, + aux_sym_alpine_js_token1, aux_sym__text_token3, - ACTIONS(11084), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(948), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10536), 9, + [20643] = 2, + ACTIONS(10925), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 41, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10923), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -122441,12 +126569,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -122459,7 +126589,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -122471,26 +126600,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [18247] = 5, - ACTIONS(11092), 1, + aux_sym_alpine_js_token1, aux_sym__text_token3, - ACTIONS(11090), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(939), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10504), 9, + [20704] = 2, + ACTIONS(10929), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10502), 41, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10927), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -122502,12 +126628,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -122517,7 +126645,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -122532,16 +126659,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [18313] = 5, - ACTIONS(11097), 1, + aux_sym_alpine_js_token1, aux_sym__text_token3, - ACTIONS(11094), 2, + [20765] = 5, + ACTIONS(11331), 1, + aux_sym__text_token3, + ACTIONS(11329), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(950), 2, + STATE(944), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(10536), 9, + ACTIONS(10671), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122551,7 +126680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 41, + ACTIONS(10669), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -122580,8 +126709,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -122593,12 +126722,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [18379] = 4, - ACTIONS(11100), 1, + aux_sym_alpine_js_token1, + [20832] = 4, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(3094), 1, + STATE(2467), 1, sym__directive_parameter, - ACTIONS(10490), 12, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122607,11 +126737,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 41, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -122638,10 +126767,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -122652,9 +126782,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [18443] = 2, - ACTIONS(10734), 12, + [20897] = 2, + ACTIONS(10997), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122667,7 +126798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 43, + ACTIONS(10995), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -122710,9 +126841,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [18503] = 2, - ACTIONS(11014), 12, + [20958] = 2, + ACTIONS(10937), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122725,7 +126857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 43, + ACTIONS(10935), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -122768,9 +126900,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [21019] = 5, + ACTIONS(11337), 1, aux_sym__text_token3, - [18563] = 2, - ACTIONS(10936), 12, + ACTIONS(11335), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(945), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10671), 9, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + ACTIONS(10669), 42, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATendforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + [21086] = 4, + ACTIONS(11339), 1, + anon_sym_LPAREN2, + STATE(2384), 1, + sym__directive_parameter, + ACTIONS(10665), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10663), 43, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATendforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [21151] = 2, + ACTIONS(10933), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122783,7 +127039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 43, + ACTIONS(10931), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -122826,27 +127082,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [18623] = 5, - ACTIONS(11105), 1, - aux_sym__text_token3, - ACTIONS(11102), 2, + [21212] = 4, + ACTIONS(11341), 1, + anon_sym_LPAREN2, + STATE(2187), 1, + sym__directive_parameter, + ACTIONS(10665), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - STATE(955), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10536), 9, + ACTIONS(10663), 43, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATendPushIf, + anon_sym_ATprependOnce, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [21277] = 2, + ACTIONS(10941), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 41, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10939), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -122858,12 +127171,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -122874,7 +127189,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -122888,16 +127202,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [18689] = 5, - ACTIONS(11110), 1, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [21338] = 5, + ACTIONS(11345), 1, aux_sym__text_token3, - ACTIONS(11108), 2, + ACTIONS(11343), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(940), 2, + STATE(952), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(10504), 9, + ACTIONS(10671), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122907,14 +127223,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10502), 41, + ACTIONS(10669), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -122936,6 +127251,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -122949,12 +127265,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [18755] = 4, - ACTIONS(11112), 1, + aux_sym_alpine_js_token1, + [21405] = 4, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(3012), 1, + STATE(2301), 1, sym__directive_parameter, - ACTIONS(10490), 11, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122966,7 +127283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -122993,9 +127310,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -123008,9 +127325,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [18819] = 2, - ACTIONS(10730), 12, + [21470] = 2, + ACTIONS(10715), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123023,7 +127341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 43, + ACTIONS(10713), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -123038,11 +127356,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -123066,9 +127384,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [18879] = 2, - ACTIONS(11014), 12, + [21531] = 2, + ACTIONS(10949), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123081,7 +127400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 43, + ACTIONS(10947), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -123099,8 +127418,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -123124,9 +127443,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [18939] = 2, - ACTIONS(10936), 12, + [21592] = 2, + ACTIONS(10849), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123139,7 +127459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 43, + ACTIONS(10847), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -123157,8 +127477,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -123182,22 +127502,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [18999] = 2, - ACTIONS(10738), 12, + [21653] = 4, + ACTIONS(11349), 1, + anon_sym_LPAREN2, + STATE(2218), 1, + sym__directive_parameter, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 43, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -123209,14 +127533,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -123227,6 +127549,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -123240,17 +127563,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [19059] = 5, - ACTIONS(11116), 1, + [21718] = 5, + ACTIONS(11353), 1, aux_sym__text_token3, - ACTIONS(11114), 2, + ACTIONS(11351), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(941), 2, + STATE(1806), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(10504), 9, + ACTIONS(10671), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123260,7 +127584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10502), 41, + ACTIONS(10669), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -123270,6 +127594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -123301,43 +127626,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, - [19125] = 4, - ACTIONS(11118), 1, - anon_sym_LPAREN2, - STATE(2930), 1, - sym__directive_parameter, - ACTIONS(10490), 11, + aux_sym_alpine_js_token1, + [21785] = 2, + ACTIONS(10945), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(10943), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -123361,9 +127684,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [19189] = 2, - ACTIONS(10742), 12, + [21846] = 2, + ACTIONS(11183), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123376,7 +127700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 43, + ACTIONS(11181), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -123395,7 +127719,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -123404,6 +127727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -123419,9 +127743,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [19249] = 2, - ACTIONS(11014), 12, + [21907] = 2, + ACTIONS(11179), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123434,7 +127759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 43, + ACTIONS(11177), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -123451,7 +127776,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -123462,6 +127786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -123477,9 +127802,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [19309] = 2, - ACTIONS(11014), 12, + [21968] = 2, + ACTIONS(11175), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123492,7 +127818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 43, + ACTIONS(11173), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -123506,7 +127832,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -123520,6 +127845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -123535,9 +127861,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [19369] = 2, - ACTIONS(10936), 12, + [22029] = 2, + ACTIONS(11171), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123550,7 +127877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 43, + ACTIONS(11169), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -123567,7 +127894,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -123578,6 +127904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -123593,27 +127920,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [19429] = 5, - ACTIONS(11122), 1, - aux_sym__text_token3, - ACTIONS(11120), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(942), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10504), 9, + [22090] = 2, + ACTIONS(11167), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10502), 41, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11165), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -123625,6 +127948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -123639,6 +127963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -123653,26 +127978,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, - [19495] = 4, - ACTIONS(11124), 1, - anon_sym_LPAREN2, - STATE(2848), 1, - sym__directive_parameter, - ACTIONS(10490), 11, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [22151] = 2, + ACTIONS(11163), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(11161), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -123684,6 +128007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -123698,6 +128022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -123713,10 +128038,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [19559] = 2, - ACTIONS(10750), 12, + [22212] = 2, + ACTIONS(11159), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123729,7 +128054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 43, + ACTIONS(11157), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -123748,7 +128073,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -123757,6 +128081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -123772,9 +128097,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [19619] = 2, - ACTIONS(10754), 12, + [22273] = 2, + ACTIONS(11187), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123787,7 +128113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 43, + ACTIONS(11185), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -123806,7 +128132,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -123815,6 +128140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -123830,27 +128156,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [19679] = 5, - ACTIONS(11128), 1, - aux_sym__text_token3, - ACTIONS(11126), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(943), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10504), 9, + [22334] = 2, + ACTIONS(11147), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10502), 41, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11145), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -123862,6 +128184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -123876,6 +128199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -123889,27 +128213,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [19745] = 4, - ACTIONS(11130), 1, - anon_sym_LPAREN2, - STATE(2766), 1, - sym__directive_parameter, - ACTIONS(10490), 11, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [22395] = 2, + ACTIONS(10715), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(10713), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -123921,6 +128243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -123931,6 +128254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -123949,11 +128273,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [19809] = 2, - ACTIONS(10746), 12, + [22456] = 2, + ACTIONS(11143), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123966,7 +128290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 43, + ACTIONS(11141), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -123985,7 +128309,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -123994,6 +128317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -124009,9 +128333,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [19869] = 2, - ACTIONS(11024), 12, + [22517] = 2, + ACTIONS(11139), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124024,7 +128349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 43, + ACTIONS(11137), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -124041,7 +128366,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -124052,6 +128376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -124067,9 +128392,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [19929] = 2, - ACTIONS(10762), 12, + [22578] = 2, + ACTIONS(11135), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124082,7 +128408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 43, + ACTIONS(11133), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -124101,7 +128427,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -124110,6 +128435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -124125,27 +128451,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [19989] = 5, - ACTIONS(11134), 1, - aux_sym__text_token3, - ACTIONS(11132), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(944), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10504), 9, + [22639] = 2, + ACTIONS(11131), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10502), 41, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11129), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -124157,6 +128479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -124171,6 +128494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -124179,7 +128503,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -124187,24 +128510,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [20055] = 4, - ACTIONS(11136), 1, - anon_sym_LPAREN2, - STATE(2684), 1, - sym__directive_parameter, - ACTIONS(10490), 11, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [22700] = 2, + ACTIONS(11127), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(11125), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -124216,6 +128538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -124230,6 +128553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -124243,28 +128567,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [20119] = 4, - ACTIONS(11138), 1, - anon_sym_LPAREN2, - STATE(2280), 1, - sym__directive_parameter, - ACTIONS(10490), 11, + [22761] = 2, + ACTIONS(11123), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(11121), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -124275,8 +128596,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -124291,6 +128612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -124306,9 +128628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [20183] = 2, - ACTIONS(10498), 12, + [22822] = 2, + ACTIONS(11119), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124321,7 +128644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10496), 43, + ACTIONS(11117), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -124336,7 +128659,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -124349,6 +128671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -124364,9 +128687,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [20243] = 2, - ACTIONS(10758), 12, + [22883] = 2, + ACTIONS(11115), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124379,7 +128703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 43, + ACTIONS(11113), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -124398,7 +128722,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -124407,6 +128730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -124422,27 +128746,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [20303] = 5, - ACTIONS(11142), 1, - aux_sym__text_token3, - ACTIONS(11140), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(945), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10504), 9, + [22944] = 2, + ACTIONS(11111), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10502), 41, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11109), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -124454,6 +128774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -124468,6 +128789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -124475,7 +128797,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -124484,24 +128805,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [20369] = 4, - ACTIONS(11144), 1, - anon_sym_LPAREN2, - STATE(2602), 1, - sym__directive_parameter, - ACTIONS(10490), 11, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [23005] = 2, + ACTIONS(11107), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(11105), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -124513,6 +128833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -124527,6 +128848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -124535,7 +128857,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -124543,9 +128864,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [20433] = 2, - ACTIONS(10770), 12, + [23066] = 2, + ACTIONS(11103), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124558,7 +128880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 43, + ACTIONS(11101), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -124577,7 +128899,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -124586,6 +128907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -124601,9 +128923,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [20493] = 2, - ACTIONS(10774), 12, + [23127] = 2, + ACTIONS(11151), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124616,7 +128939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 43, + ACTIONS(11149), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -124631,11 +128954,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -124659,27 +128982,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [20553] = 5, - ACTIONS(11148), 1, - aux_sym__text_token3, - ACTIONS(11146), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(946), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10504), 9, + [23188] = 2, + ACTIONS(11099), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10502), 41, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11097), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -124691,6 +129010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -124705,12 +129025,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -124721,26 +129041,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [20619] = 5, - ACTIONS(11152), 1, + aux_sym_alpine_js_token1, aux_sym__text_token3, - ACTIONS(11150), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(1785), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10504), 9, + [23249] = 2, + ACTIONS(11095), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10502), 41, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11093), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -124750,9 +129067,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -124767,6 +129084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -124782,12 +129100,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [20685] = 4, - ACTIONS(11154), 1, - anon_sym_LPAREN2, - STATE(2520), 1, - sym__directive_parameter, - ACTIONS(10490), 11, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [23310] = 5, + ACTIONS(11357), 1, + aux_sym__text_token3, + ACTIONS(11355), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(1553), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10671), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124797,15 +129121,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(10669), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -124832,7 +129155,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -124841,9 +129163,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [20749] = 2, - ACTIONS(10766), 12, + aux_sym_alpine_js_token1, + [23377] = 2, + ACTIONS(11091), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124856,7 +129178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 43, + ACTIONS(11089), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -124875,7 +129197,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -124884,6 +129205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -124899,9 +129221,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [20809] = 2, - ACTIONS(10782), 12, + [23438] = 2, + ACTIONS(11155), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124914,7 +129237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 43, + ACTIONS(11153), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -124933,7 +129256,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -124942,6 +129264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -124957,86 +129280,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [20869] = 5, - ACTIONS(11158), 1, - aux_sym__text_token3, - ACTIONS(11156), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(948), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10504), 9, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(10502), 41, - sym_comment, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATendforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [20935] = 4, - ACTIONS(11160), 1, - anon_sym_LPAREN2, - STATE(2438), 1, - sym__directive_parameter, - ACTIONS(10490), 11, + [23499] = 2, + ACTIONS(11083), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(11081), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -125048,6 +129308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -125062,12 +129323,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -125078,9 +129339,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [20999] = 2, - ACTIONS(10786), 12, + [23560] = 2, + ACTIONS(11079), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125093,7 +129355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 43, + ACTIONS(11077), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -125112,7 +129374,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -125121,6 +129382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -125136,9 +129398,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [21059] = 2, - ACTIONS(10790), 12, + [23621] = 2, + ACTIONS(11075), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125151,7 +129414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 43, + ACTIONS(11073), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -125170,7 +129433,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -125179,6 +129441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -125194,27 +129457,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [21119] = 5, - ACTIONS(11164), 1, - aux_sym__text_token3, - ACTIONS(11162), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(950), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10504), 9, + [23682] = 2, + ACTIONS(11071), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10502), 41, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11069), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -125226,6 +129485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -125240,10 +129500,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -125256,24 +129516,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [21185] = 4, - ACTIONS(11166), 1, - anon_sym_LPAREN2, - STATE(2356), 1, - sym__directive_parameter, - ACTIONS(10490), 11, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [23743] = 2, + ACTIONS(11067), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(11065), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -125285,6 +129544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -125299,11 +129559,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -125315,9 +129575,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [21249] = 2, - ACTIONS(10778), 12, + [23804] = 2, + ACTIONS(11063), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125330,7 +129591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 43, + ACTIONS(11061), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -125349,7 +129610,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -125358,6 +129618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -125373,9 +129634,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [21309] = 2, - ACTIONS(10498), 12, + [23865] = 2, + ACTIONS(11059), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125388,7 +129650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10496), 43, + ACTIONS(11057), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -125411,11 +129673,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -125431,9 +129693,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [21369] = 2, - ACTIONS(10498), 12, + [23926] = 2, + ACTIONS(11175), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125446,7 +129709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10496), 43, + ACTIONS(11173), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -125462,10 +129725,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -125489,9 +129752,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [21429] = 2, - ACTIONS(10794), 12, + [23987] = 2, + ACTIONS(11055), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125504,7 +129768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 43, + ACTIONS(11053), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -125523,7 +129787,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -125532,6 +129795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -125547,27 +129811,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [21489] = 5, - ACTIONS(11170), 1, - aux_sym__text_token3, - ACTIONS(11168), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(955), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10504), 9, + [24048] = 2, + ACTIONS(11051), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10502), 41, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11049), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -125579,6 +129839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -125593,9 +129854,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -125609,24 +129870,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [21555] = 4, - ACTIONS(11172), 1, - anon_sym_LPAREN2, - STATE(2274), 1, - sym__directive_parameter, - ACTIONS(10490), 11, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [24109] = 2, + ACTIONS(11047), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(11045), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -125638,6 +129898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -125652,10 +129913,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -125668,27 +129929,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [21619] = 5, - ACTIONS(11177), 1, - aux_sym__text_token3, - ACTIONS(11174), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(1003), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10536), 9, + [24170] = 2, + ACTIONS(10869), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 41, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10867), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -125697,10 +129954,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -125711,6 +129968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -125730,8 +129988,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [21685] = 2, - ACTIONS(10806), 12, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [24231] = 2, + ACTIONS(11043), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125744,7 +130004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 43, + ACTIONS(11041), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -125763,7 +130023,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -125772,6 +130031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -125787,25 +130047,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [21745] = 4, - ACTIONS(11180), 1, - anon_sym_LPAREN2, - STATE(2192), 1, - sym__directive_parameter, - ACTIONS(10490), 11, + [24292] = 2, + ACTIONS(11039), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(11037), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -125817,6 +130075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -125831,9 +130090,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -125847,9 +130106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [21809] = 2, - ACTIONS(10810), 12, + [24353] = 2, + ACTIONS(11035), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125862,7 +130122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 43, + ACTIONS(11033), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -125881,7 +130141,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -125890,6 +130149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -125905,9 +130165,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [21869] = 2, - ACTIONS(11004), 12, + [24414] = 2, + ACTIONS(11031), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125920,7 +130181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 43, + ACTIONS(11029), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -125963,9 +130224,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [21929] = 2, - ACTIONS(10996), 12, + [24475] = 2, + ACTIONS(11025), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125978,7 +130240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 43, + ACTIONS(11023), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -126021,9 +130283,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [21989] = 2, - ACTIONS(10992), 12, + [24536] = 2, + ACTIONS(11021), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126036,7 +130299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 43, + ACTIONS(11019), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -126079,9 +130342,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [22049] = 2, - ACTIONS(10936), 12, + [24597] = 2, + ACTIONS(11017), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126094,7 +130358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 43, + ACTIONS(11015), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -126109,7 +130373,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -126122,6 +130385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -126137,9 +130401,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [22109] = 2, - ACTIONS(10988), 12, + [24658] = 2, + ACTIONS(11013), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126152,7 +130417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 43, + ACTIONS(11011), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -126195,9 +130460,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [22169] = 2, - ACTIONS(11000), 12, + [24719] = 2, + ACTIONS(11009), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126210,7 +130476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 43, + ACTIONS(11007), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -126253,9 +130519,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [22229] = 2, - ACTIONS(10984), 12, + [24780] = 2, + ACTIONS(11005), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126268,7 +130535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 43, + ACTIONS(11003), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -126311,9 +130578,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [22289] = 2, - ACTIONS(10980), 12, + [24841] = 2, + ACTIONS(11001), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126326,7 +130594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 43, + ACTIONS(10999), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -126369,9 +130637,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [22349] = 2, - ACTIONS(10976), 12, + [24902] = 2, + ACTIONS(11087), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126384,7 +130653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 43, + ACTIONS(11085), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -126427,9 +130696,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [22409] = 2, - ACTIONS(10972), 12, + [24963] = 2, + ACTIONS(10993), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126442,7 +130712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 43, + ACTIONS(10991), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -126485,9 +130755,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [22469] = 2, - ACTIONS(10968), 12, + [25024] = 2, + ACTIONS(10989), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126500,7 +130771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 43, + ACTIONS(10987), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -126543,9 +130814,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [22529] = 2, - ACTIONS(10964), 12, + [25085] = 2, + ACTIONS(10985), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126558,7 +130830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 43, + ACTIONS(10983), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -126601,9 +130873,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [22589] = 2, - ACTIONS(10960), 12, + [25146] = 2, + ACTIONS(10981), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126616,7 +130889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 43, + ACTIONS(10979), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -126659,9 +130932,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [22649] = 2, - ACTIONS(10956), 12, + [25207] = 2, + ACTIONS(10977), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126674,7 +130948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 43, + ACTIONS(10975), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -126717,9 +130991,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [22709] = 2, - ACTIONS(10952), 12, + [25268] = 2, + ACTIONS(10973), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126732,7 +131007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 43, + ACTIONS(10971), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -126775,9 +131050,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [22769] = 2, - ACTIONS(10948), 12, + [25329] = 2, + ACTIONS(10969), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126790,7 +131066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 43, + ACTIONS(10967), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -126833,9 +131109,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [22829] = 2, - ACTIONS(10944), 12, + [25390] = 2, + ACTIONS(10965), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126848,7 +131125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 43, + ACTIONS(10963), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -126891,9 +131168,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [22889] = 2, - ACTIONS(10940), 12, + [25451] = 2, + ACTIONS(10957), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126906,7 +131184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 43, + ACTIONS(10955), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -126925,6 +131203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -126933,7 +131212,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -126949,9 +131227,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [22949] = 2, - ACTIONS(10932), 12, + [25512] = 2, + ACTIONS(10961), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126964,7 +131243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 43, + ACTIONS(10959), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -127007,9 +131286,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [23009] = 2, - ACTIONS(10928), 12, + [25573] = 2, + ACTIONS(10957), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127022,7 +131302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 43, + ACTIONS(10955), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -127065,9 +131345,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [23069] = 2, - ACTIONS(10688), 12, + [25634] = 2, + ACTIONS(10953), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127080,7 +131361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10686), 43, + ACTIONS(10951), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -127103,11 +131384,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -127123,9 +131404,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [23129] = 2, - ACTIONS(10924), 12, + [25695] = 2, + ACTIONS(10849), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127138,7 +131420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 43, + ACTIONS(10847), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -127181,9 +131463,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [23189] = 2, - ACTIONS(10920), 12, + [25756] = 2, + ACTIONS(10949), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127196,7 +131479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 43, + ACTIONS(10947), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -127239,9 +131522,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [23249] = 2, - ACTIONS(10916), 12, + [25817] = 2, + ACTIONS(10945), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127254,7 +131538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 43, + ACTIONS(10943), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -127297,9 +131581,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [23309] = 2, - ACTIONS(10912), 12, + [25878] = 2, + ACTIONS(10941), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127312,7 +131597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 43, + ACTIONS(10939), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -127355,9 +131640,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [23369] = 2, - ACTIONS(10908), 12, + [25939] = 2, + ACTIONS(10937), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127370,7 +131656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 43, + ACTIONS(10935), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -127413,9 +131699,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [23429] = 2, - ACTIONS(10904), 12, + [26000] = 2, + ACTIONS(11197), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127428,7 +131715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 43, + ACTIONS(11195), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -127443,6 +131730,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -127455,7 +131743,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -127471,9 +131758,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [23489] = 2, - ACTIONS(10900), 12, + [26061] = 2, + ACTIONS(10933), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127486,7 +131774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 43, + ACTIONS(10931), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -127529,9 +131817,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [23549] = 2, - ACTIONS(10896), 12, + [26122] = 2, + ACTIONS(10929), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127544,7 +131833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 43, + ACTIONS(10927), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -127587,9 +131876,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [23609] = 2, - ACTIONS(10892), 12, + [26183] = 2, + ACTIONS(10925), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127602,7 +131892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 43, + ACTIONS(10923), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -127645,9 +131935,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [23669] = 2, - ACTIONS(10888), 12, + [26244] = 2, + ACTIONS(10921), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127660,7 +131951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 43, + ACTIONS(10919), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -127703,9 +131994,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [23729] = 2, - ACTIONS(11024), 12, + [26305] = 2, + ACTIONS(10997), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127718,7 +132010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 43, + ACTIONS(10995), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -127761,9 +132053,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [23789] = 2, - ACTIONS(10884), 12, + [26366] = 2, + ACTIONS(10917), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127776,7 +132069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 43, + ACTIONS(10915), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -127819,9 +132112,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [23849] = 2, - ACTIONS(10880), 12, + [26427] = 2, + ACTIONS(10913), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127834,7 +132128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 43, + ACTIONS(10911), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -127877,9 +132171,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [23909] = 2, - ACTIONS(10876), 12, + [26488] = 2, + ACTIONS(10961), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127892,7 +132187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 43, + ACTIONS(10959), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -127911,6 +132206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -127919,7 +132215,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -127935,9 +132230,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [23969] = 2, - ACTIONS(10872), 12, + [26549] = 2, + ACTIONS(10909), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127950,7 +132246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 43, + ACTIONS(10907), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -127993,9 +132289,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [24029] = 2, - ACTIONS(10868), 12, + [26610] = 2, + ACTIONS(10905), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128008,7 +132305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 43, + ACTIONS(10903), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -128051,9 +132348,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [24089] = 2, - ACTIONS(10864), 12, + [26671] = 2, + ACTIONS(10901), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128066,7 +132364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 43, + ACTIONS(10899), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -128109,9 +132407,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [24149] = 2, - ACTIONS(10860), 12, + [26732] = 2, + ACTIONS(10897), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128124,7 +132423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 43, + ACTIONS(10895), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -128167,9 +132466,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [24209] = 2, - ACTIONS(10856), 12, + [26793] = 2, + ACTIONS(10893), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128182,7 +132482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 43, + ACTIONS(10891), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -128225,22 +132525,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [24269] = 2, - ACTIONS(10852), 12, + [26854] = 4, + ACTIONS(11359), 1, + anon_sym_LPAREN2, + STATE(2100), 1, + sym__directive_parameter, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 43, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -128251,8 +132555,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -128267,7 +132571,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -128283,9 +132586,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [24329] = 2, - ACTIONS(10848), 12, + [26919] = 2, + ACTIONS(10889), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128298,7 +132602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 43, + ACTIONS(10887), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -128341,9 +132645,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [24389] = 2, - ACTIONS(10844), 12, + [26980] = 2, + ACTIONS(10885), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128356,7 +132661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 43, + ACTIONS(10883), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -128399,22 +132704,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [27041] = 5, + ACTIONS(11364), 1, aux_sym__text_token3, - [24449] = 2, - ACTIONS(10678), 12, + ACTIONS(11361), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(1086), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10705), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10676), 43, + ACTIONS(10703), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -128423,10 +132734,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -128441,7 +132752,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -128457,9 +132767,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [24509] = 2, - ACTIONS(10840), 12, + aux_sym_alpine_js_token1, + [27108] = 2, + ACTIONS(10953), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128472,7 +132782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 43, + ACTIONS(10951), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -128491,6 +132801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -128499,7 +132810,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -128515,9 +132825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [24569] = 2, - ACTIONS(10836), 12, + [27169] = 2, + ACTIONS(10853), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128530,7 +132841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 43, + ACTIONS(10851), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -128573,9 +132884,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [24629] = 2, - ACTIONS(10832), 12, + [27230] = 2, + ACTIONS(11183), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128588,7 +132900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 43, + ACTIONS(11181), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -128614,8 +132926,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -128631,9 +132943,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [24689] = 2, - ACTIONS(10828), 12, + [27291] = 2, + ACTIONS(11179), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128646,7 +132959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 43, + ACTIONS(11177), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -128672,8 +132985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -128689,9 +133002,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [27352] = 5, + ACTIONS(11369), 1, aux_sym__text_token3, - [24749] = 2, - ACTIONS(10824), 12, + ACTIONS(11367), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(1890), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10671), 9, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + ACTIONS(10669), 42, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATendPushIf, + anon_sym_ATprependOnce, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + [27419] = 2, + ACTIONS(11175), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128704,7 +133080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 43, + ACTIONS(11173), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -128730,8 +133106,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -128747,9 +133123,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [24809] = 2, - ACTIONS(10818), 12, + [27480] = 2, + ACTIONS(11171), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128762,7 +133139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 43, + ACTIONS(11169), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -128788,8 +133165,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -128805,9 +133182,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [24869] = 2, - ACTIONS(11014), 12, + [27541] = 2, + ACTIONS(11167), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128820,7 +133198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 43, + ACTIONS(11165), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -128835,7 +133213,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -128847,6 +133224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -128863,9 +133241,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [24929] = 2, - ACTIONS(10814), 12, + [27602] = 2, + ACTIONS(11163), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128878,7 +133257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 43, + ACTIONS(11161), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -128904,8 +133283,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -128921,9 +133300,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [24989] = 2, - ACTIONS(10810), 12, + [27663] = 2, + ACTIONS(11159), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128936,7 +133316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 43, + ACTIONS(11157), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -128962,8 +133342,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -128979,9 +133359,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [25049] = 2, - ACTIONS(10806), 12, + [27724] = 2, + ACTIONS(11187), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128994,7 +133375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 43, + ACTIONS(11185), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -129020,8 +133401,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -129037,9 +133418,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [25109] = 2, - ACTIONS(10798), 12, + [27785] = 2, + ACTIONS(11147), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129052,7 +133434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 43, + ACTIONS(11145), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -129078,8 +133460,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -129095,9 +133477,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [25169] = 2, - ACTIONS(10794), 12, + [27846] = 2, + ACTIONS(11143), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129110,7 +133493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 43, + ACTIONS(11141), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -129136,8 +133519,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -129153,9 +133536,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [25229] = 2, - ACTIONS(10814), 12, + [27907] = 2, + ACTIONS(11139), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129168,7 +133552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 43, + ACTIONS(11137), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -129187,7 +133571,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -129195,6 +133578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -129211,9 +133595,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [25289] = 2, - ACTIONS(10790), 12, + [27968] = 2, + ACTIONS(11135), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129226,7 +133611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 43, + ACTIONS(11133), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -129252,8 +133637,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -129269,9 +133654,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [25349] = 2, - ACTIONS(10786), 12, + [28029] = 2, + ACTIONS(10715), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129284,7 +133670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 43, + ACTIONS(10713), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -129308,10 +133694,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -129327,9 +133713,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [25409] = 2, - ACTIONS(10782), 12, + [28090] = 2, + ACTIONS(11131), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129342,7 +133729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 43, + ACTIONS(11129), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -129368,8 +133755,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -129385,9 +133772,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [25469] = 2, - ACTIONS(10778), 12, + [28151] = 2, + ACTIONS(11127), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129400,7 +133788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 43, + ACTIONS(11125), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -129426,8 +133814,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -129443,9 +133831,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [25529] = 2, - ACTIONS(10774), 12, + [28212] = 2, + ACTIONS(11123), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129458,7 +133847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 43, + ACTIONS(11121), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -129484,8 +133873,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -129501,9 +133890,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [25589] = 2, - ACTIONS(10770), 12, + [28273] = 2, + ACTIONS(11119), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129516,7 +133906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 43, + ACTIONS(11117), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -129542,8 +133932,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -129559,25 +133949,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [25649] = 4, - ACTIONS(11182), 1, - anon_sym_LPAREN2, - STATE(2091), 1, - sym__directive_parameter, - ACTIONS(10490), 11, + [28334] = 2, + ACTIONS(11115), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(11113), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -129588,8 +133976,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -129603,6 +133991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -129619,9 +134008,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [25713] = 2, - ACTIONS(10766), 12, + [28395] = 2, + ACTIONS(11111), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129634,7 +134024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 43, + ACTIONS(11109), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -129660,8 +134050,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [28456] = 2, + ACTIONS(11107), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11105), 44, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + anon_sym_ATendfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [28517] = 2, + ACTIONS(11103), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11101), 44, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + anon_sym_ATendfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [28578] = 2, + ACTIONS(11099), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11097), 44, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -129677,9 +134244,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [25773] = 2, - ACTIONS(10762), 12, + [28639] = 2, + ACTIONS(11095), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129692,7 +134260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 43, + ACTIONS(11093), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -129718,8 +134286,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -129735,9 +134303,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [25833] = 2, - ACTIONS(10758), 12, + [28700] = 2, + ACTIONS(11091), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129750,7 +134319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 43, + ACTIONS(11089), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -129776,8 +134345,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -129793,9 +134362,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [25893] = 2, - ACTIONS(10754), 12, + [28761] = 2, + ACTIONS(11151), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129808,7 +134378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 43, + ACTIONS(11149), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -129824,6 +134394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -129835,7 +134406,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -129851,9 +134421,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [25953] = 2, - ACTIONS(10750), 12, + [28822] = 2, + ACTIONS(11155), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129866,7 +134437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 43, + ACTIONS(11153), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -129892,8 +134463,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -129909,9 +134480,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [26013] = 2, - ACTIONS(10746), 12, + [28883] = 2, + ACTIONS(11083), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129924,7 +134496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 43, + ACTIONS(11081), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -129950,8 +134522,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -129967,34 +134539,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [26073] = 2, - ACTIONS(10742), 12, + [28944] = 4, + ACTIONS(11371), 1, + anon_sym_LPAREN2, + STATE(3538), 1, + sym__directive_parameter, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 43, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -130009,7 +134585,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -130025,27 +134600,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [26133] = 5, - ACTIONS(11186), 1, - aux_sym__text_token3, - ACTIONS(11184), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(1868), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10504), 9, + [29009] = 2, + ACTIONS(11079), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10502), 41, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11077), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -130056,8 +134627,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -130071,6 +134642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -130087,8 +134659,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [26199] = 2, - ACTIONS(10738), 12, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [29070] = 2, + ACTIONS(11075), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130101,7 +134675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 43, + ACTIONS(11073), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -130127,8 +134701,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -130144,9 +134718,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [26259] = 2, - ACTIONS(10734), 12, + [29131] = 2, + ACTIONS(11071), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130159,7 +134734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 43, + ACTIONS(11069), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -130185,8 +134760,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -130202,9 +134777,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [26319] = 2, - ACTIONS(10818), 12, + [29192] = 2, + ACTIONS(11067), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130217,7 +134793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 43, + ACTIONS(11065), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -130236,7 +134812,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -130244,6 +134819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -130260,9 +134836,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [26379] = 2, - ACTIONS(10730), 12, + [29253] = 2, + ACTIONS(11063), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130275,7 +134852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 43, + ACTIONS(11061), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -130301,8 +134878,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -130318,9 +134895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [26439] = 2, - ACTIONS(10726), 12, + [29314] = 2, + ACTIONS(11059), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130333,7 +134911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 43, + ACTIONS(11057), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -130359,8 +134937,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -130376,9 +134954,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [26499] = 2, - ACTIONS(10674), 12, + [29375] = 2, + ACTIONS(11055), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130391,7 +134970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 43, + ACTIONS(11053), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -130417,8 +134996,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -130434,9 +135013,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [26559] = 2, - ACTIONS(10802), 12, + [29436] = 2, + ACTIONS(11051), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130449,7 +135029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 43, + ACTIONS(11049), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -130475,8 +135055,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -130492,9 +135072,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [26619] = 2, - ACTIONS(10722), 12, + [29497] = 2, + ACTIONS(11047), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130507,7 +135088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 43, + ACTIONS(11045), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -130533,8 +135114,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -130550,9 +135131,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [26679] = 2, - ACTIONS(10718), 12, + [29558] = 2, + ACTIONS(11183), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130565,7 +135147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 43, + ACTIONS(11181), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -130584,6 +135166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -130592,7 +135175,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -130608,9 +135190,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [26739] = 2, - ACTIONS(10714), 12, + [29619] = 2, + ACTIONS(11043), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130623,7 +135206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 43, + ACTIONS(11041), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -130649,8 +135232,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -130666,9 +135249,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [26799] = 2, - ACTIONS(10498), 12, + [29680] = 2, + ACTIONS(11039), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130681,7 +135265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10496), 43, + ACTIONS(11037), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -130705,9 +135289,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -130724,9 +135308,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [26859] = 2, - ACTIONS(10824), 12, + [29741] = 2, + ACTIONS(11035), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130739,7 +135324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 43, + ACTIONS(11033), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -130758,7 +135343,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -130766,6 +135350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -130782,9 +135367,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [26919] = 2, - ACTIONS(10798), 12, + [29802] = 2, + ACTIONS(10869), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130797,7 +135383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 43, + ACTIONS(10867), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -130816,12 +135402,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -130840,9 +135426,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [26979] = 2, - ACTIONS(10710), 12, + [29863] = 2, + ACTIONS(11031), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130855,7 +135442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 43, + ACTIONS(11029), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -130881,8 +135468,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -130898,9 +135485,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [27039] = 2, - ACTIONS(11004), 12, + [29924] = 2, + ACTIONS(11179), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130913,7 +135501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 43, + ACTIONS(11177), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -130932,6 +135520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -130939,7 +135528,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -130956,9 +135544,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [27099] = 2, - ACTIONS(10996), 12, + [29985] = 2, + ACTIONS(11025), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130971,7 +135560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 43, + ACTIONS(11023), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -131014,9 +135603,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [27159] = 2, - ACTIONS(10992), 12, + [30046] = 2, + ACTIONS(11021), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131029,7 +135619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 43, + ACTIONS(11019), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -131072,9 +135662,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [27219] = 2, - ACTIONS(10988), 12, + [30107] = 2, + ACTIONS(11017), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131087,7 +135678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 43, + ACTIONS(11015), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -131130,9 +135721,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [27279] = 2, - ACTIONS(11000), 12, + [30168] = 2, + ACTIONS(11013), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131145,7 +135737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 43, + ACTIONS(11011), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -131188,9 +135780,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [27339] = 2, - ACTIONS(10984), 12, + [30229] = 2, + ACTIONS(11009), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131203,7 +135796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 43, + ACTIONS(11007), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -131246,9 +135839,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [27399] = 2, - ACTIONS(10980), 12, + [30290] = 2, + ACTIONS(11005), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131261,7 +135855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 43, + ACTIONS(11003), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -131304,9 +135898,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [27459] = 2, - ACTIONS(10976), 12, + [30351] = 2, + ACTIONS(11001), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131319,7 +135914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 43, + ACTIONS(10999), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -131362,9 +135957,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [27519] = 2, - ACTIONS(10936), 12, + [30412] = 2, + ACTIONS(11087), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131377,7 +135973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 43, + ACTIONS(11085), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -131393,7 +135989,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -131404,6 +135999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -131420,9 +136016,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [27579] = 2, - ACTIONS(10972), 12, + [30473] = 2, + ACTIONS(10993), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131435,7 +136032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 43, + ACTIONS(10991), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -131478,9 +136075,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [27639] = 2, - ACTIONS(10968), 12, + [30534] = 2, + ACTIONS(10989), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131493,7 +136091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 43, + ACTIONS(10987), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -131536,9 +136134,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [27699] = 2, - ACTIONS(10964), 12, + [30595] = 2, + ACTIONS(10985), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131551,7 +136150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 43, + ACTIONS(10983), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -131594,9 +136193,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [27759] = 2, - ACTIONS(10960), 12, + [30656] = 2, + ACTIONS(10981), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131609,7 +136209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 43, + ACTIONS(10979), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -131652,39 +136252,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [27819] = 5, - ACTIONS(11190), 1, - aux_sym__text_token3, - ACTIONS(11188), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(1535), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10504), 9, + [30717] = 2, + ACTIONS(10977), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10502), 41, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10975), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -131698,6 +136294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -131714,8 +136311,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [27885] = 2, - ACTIONS(10956), 12, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [30778] = 2, + ACTIONS(10973), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131728,7 +136327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 43, + ACTIONS(10971), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -131771,9 +136370,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [27945] = 2, - ACTIONS(10952), 12, + [30839] = 2, + ACTIONS(10969), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131786,7 +136386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 43, + ACTIONS(10967), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -131829,9 +136429,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [28005] = 2, - ACTIONS(10948), 12, + [30900] = 2, + ACTIONS(10965), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131844,7 +136445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 43, + ACTIONS(10963), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -131887,22 +136488,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [30961] = 5, + ACTIONS(11376), 1, aux_sym__text_token3, - [28065] = 2, - ACTIONS(10944), 12, + ACTIONS(11373), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(1150), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10705), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10942), 43, + ACTIONS(10703), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -131914,7 +136521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -131928,7 +136535,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -131945,9 +136551,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [28125] = 2, - ACTIONS(10940), 12, + aux_sym_alpine_js_token1, + [31028] = 2, + ACTIONS(10961), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131960,7 +136566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 43, + ACTIONS(10959), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -132003,9 +136609,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [28185] = 2, - ACTIONS(10932), 12, + [31089] = 2, + ACTIONS(10957), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132018,7 +136625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 43, + ACTIONS(10955), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -132061,9 +136668,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [28245] = 2, - ACTIONS(10928), 12, + [31150] = 2, + ACTIONS(10953), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132076,7 +136684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 43, + ACTIONS(10951), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -132119,9 +136727,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [28305] = 2, - ACTIONS(10924), 12, + [31211] = 2, + ACTIONS(10849), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132134,7 +136743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 43, + ACTIONS(10847), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -132177,9 +136786,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [28365] = 2, - ACTIONS(10920), 12, + [31272] = 2, + ACTIONS(10949), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132192,7 +136802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 43, + ACTIONS(10947), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -132235,9 +136845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [28425] = 2, - ACTIONS(10916), 12, + [31333] = 2, + ACTIONS(10945), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132250,7 +136861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 43, + ACTIONS(10943), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -132293,9 +136904,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [28485] = 2, - ACTIONS(10912), 12, + [31394] = 2, + ACTIONS(10941), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132308,7 +136920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 43, + ACTIONS(10939), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -132351,9 +136963,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [28545] = 2, - ACTIONS(10688), 12, + [31455] = 2, + ACTIONS(10937), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132366,7 +136979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10686), 43, + ACTIONS(10935), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -132390,9 +137003,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -132409,9 +137022,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [28605] = 2, - ACTIONS(10908), 12, + [31516] = 2, + ACTIONS(10933), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132424,7 +137038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 43, + ACTIONS(10931), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -132467,9 +137081,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [28665] = 2, - ACTIONS(10904), 12, + [31577] = 2, + ACTIONS(10929), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132482,7 +137097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 43, + ACTIONS(10927), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -132525,9 +137140,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [28725] = 2, - ACTIONS(10900), 12, + [31638] = 2, + ACTIONS(11197), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132540,7 +137156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 43, + ACTIONS(11195), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -132556,6 +137172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -132566,7 +137183,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -132583,9 +137199,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [28785] = 2, - ACTIONS(10896), 12, + [31699] = 2, + ACTIONS(10925), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132598,7 +137215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 43, + ACTIONS(10923), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -132641,9 +137258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [28845] = 2, - ACTIONS(10892), 12, + [31760] = 2, + ACTIONS(10921), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132656,7 +137274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 43, + ACTIONS(10919), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -132699,9 +137317,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [28905] = 2, - ACTIONS(10888), 12, + [31821] = 2, + ACTIONS(10997), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132714,7 +137333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 43, + ACTIONS(10995), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -132757,9 +137376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [28965] = 2, - ACTIONS(11024), 12, + [31882] = 2, + ACTIONS(10917), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132772,7 +137392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 43, + ACTIONS(10915), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -132815,9 +137435,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [29025] = 2, - ACTIONS(10884), 12, + [31943] = 2, + ACTIONS(10913), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132830,7 +137451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 43, + ACTIONS(10911), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -132873,9 +137494,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [29085] = 2, - ACTIONS(10880), 12, + [32004] = 2, + ACTIONS(10969), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132888,7 +137510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 43, + ACTIONS(10967), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -132907,6 +137529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -132914,7 +137537,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -132931,9 +137553,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [29145] = 2, - ACTIONS(10876), 12, + [32065] = 2, + ACTIONS(10909), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132946,7 +137569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 43, + ACTIONS(10907), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -132989,9 +137612,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [29205] = 2, - ACTIONS(10872), 12, + [32126] = 2, + ACTIONS(10905), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133004,7 +137628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 43, + ACTIONS(10903), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -133047,9 +137671,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [29265] = 2, - ACTIONS(10868), 12, + [32187] = 2, + ACTIONS(10901), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133062,7 +137687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 43, + ACTIONS(10899), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -133105,9 +137730,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [29325] = 2, - ACTIONS(10864), 12, + [32248] = 2, + ACTIONS(10897), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133120,7 +137746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 43, + ACTIONS(10895), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -133163,9 +137789,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [29385] = 2, - ACTIONS(10860), 12, + [32309] = 2, + ACTIONS(10893), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133178,7 +137805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 43, + ACTIONS(10891), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -133221,9 +137848,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [29445] = 2, - ACTIONS(10856), 12, + [32370] = 2, + ACTIONS(10889), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133236,7 +137864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 43, + ACTIONS(10887), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -133279,9 +137907,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [29505] = 2, - ACTIONS(10852), 12, + [32431] = 2, + ACTIONS(11135), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133294,7 +137923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 43, + ACTIONS(11133), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -133313,6 +137942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -133320,7 +137950,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133337,22 +137966,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [29565] = 2, - ACTIONS(10848), 12, + [32492] = 4, + ACTIONS(11379), 1, + anon_sym_LPAREN2, + STATE(2018), 1, + sym__directive_parameter, + ACTIONS(10665), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 43, + ACTIONS(10663), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -133364,7 +137997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -133378,7 +138011,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133395,9 +138027,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [29625] = 2, - ACTIONS(10844), 12, + [32557] = 2, + ACTIONS(10885), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133410,7 +138043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 43, + ACTIONS(10883), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -133453,9 +138086,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [29685] = 2, - ACTIONS(10678), 12, + [32618] = 2, + ACTIONS(10973), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133468,7 +138102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 43, + ACTIONS(10971), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -133487,6 +138121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -133494,7 +138129,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133511,9 +138145,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [29745] = 2, - ACTIONS(10840), 12, + [32679] = 2, + ACTIONS(10853), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133526,7 +138161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 43, + ACTIONS(10851), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -133569,9 +138204,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [29805] = 2, - ACTIONS(10836), 12, + [32740] = 2, + ACTIONS(11183), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133584,7 +138220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 43, + ACTIONS(11181), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -133609,8 +138245,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133627,9 +138263,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [29865] = 2, - ACTIONS(10832), 12, + [32801] = 2, + ACTIONS(11179), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133642,7 +138279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 43, + ACTIONS(11177), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -133667,8 +138304,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133685,9 +138322,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [29925] = 2, - ACTIONS(10828), 12, + [32862] = 2, + ACTIONS(11175), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133700,7 +138338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 43, + ACTIONS(11173), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -133725,8 +138363,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133743,9 +138381,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [29985] = 2, - ACTIONS(10824), 12, + [32923] = 2, + ACTIONS(11171), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133758,7 +138397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 43, + ACTIONS(11169), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -133783,8 +138422,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133801,22 +138440,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [30045] = 2, - ACTIONS(10818), 12, + [32984] = 5, + ACTIONS(11383), 1, + aux_sym__text_token3, + ACTIONS(11381), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(1241), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10671), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10816), 43, + ACTIONS(10669), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -133827,8 +138472,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -133842,7 +138487,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133859,9 +138503,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [30105] = 2, - ACTIONS(10814), 12, + aux_sym_alpine_js_token1, + [33051] = 2, + ACTIONS(11167), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133874,7 +138518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 43, + ACTIONS(11165), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -133899,8 +138543,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133917,9 +138561,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [30165] = 2, - ACTIONS(10810), 12, + [33112] = 2, + ACTIONS(11163), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133932,7 +138577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 43, + ACTIONS(11161), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -133957,8 +138602,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133975,9 +138620,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [30225] = 2, - ACTIONS(10806), 12, + [33173] = 2, + ACTIONS(11159), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133990,7 +138636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 43, + ACTIONS(11157), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -134015,8 +138661,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134033,9 +138679,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [30285] = 2, - ACTIONS(10798), 12, + [33234] = 2, + ACTIONS(11187), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134048,7 +138695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 43, + ACTIONS(11185), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -134073,8 +138720,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134091,9 +138738,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [30345] = 2, - ACTIONS(11014), 12, + [33295] = 2, + ACTIONS(11147), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134106,7 +138754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 43, + ACTIONS(11145), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -134122,7 +138770,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -134132,6 +138779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -134149,9 +138797,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [30405] = 2, - ACTIONS(10794), 12, + [33356] = 2, + ACTIONS(11143), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134164,7 +138813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 43, + ACTIONS(11141), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -134189,8 +138838,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134207,27 +138856,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [30465] = 5, - ACTIONS(11195), 1, - aux_sym__text_token3, - ACTIONS(11192), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(1150), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10536), 9, + [33417] = 2, + ACTIONS(11171), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 41, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11169), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -134239,13 +138884,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -134269,8 +138915,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [30531] = 2, - ACTIONS(10790), 12, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [33478] = 2, + ACTIONS(11139), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134283,7 +138931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 43, + ACTIONS(11137), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -134308,8 +138956,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134326,9 +138974,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [30591] = 2, - ACTIONS(10786), 12, + [33539] = 2, + ACTIONS(11135), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134341,7 +138990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 43, + ACTIONS(11133), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -134366,8 +139015,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134384,9 +139033,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [30651] = 2, - ACTIONS(10782), 12, + [33600] = 2, + ACTIONS(10715), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134399,7 +139049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 43, + ACTIONS(10713), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -134424,8 +139074,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134442,9 +139092,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [30711] = 2, - ACTIONS(10778), 12, + [33661] = 2, + ACTIONS(11167), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134457,7 +139108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 43, + ACTIONS(11165), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -134476,6 +139127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -134483,7 +139135,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134500,9 +139151,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [30771] = 2, - ACTIONS(10774), 12, + [33722] = 2, + ACTIONS(11131), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134515,7 +139167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 43, + ACTIONS(11129), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -134540,8 +139192,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134558,9 +139210,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [30831] = 2, - ACTIONS(10770), 12, + [33783] = 2, + ACTIONS(11127), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134573,7 +139226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 43, + ACTIONS(11125), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -134598,8 +139251,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134616,9 +139269,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [30891] = 2, - ACTIONS(10766), 12, + [33844] = 2, + ACTIONS(11123), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134631,7 +139285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 43, + ACTIONS(11121), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -134656,8 +139310,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134674,9 +139328,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [30951] = 2, - ACTIONS(10762), 12, + [33905] = 2, + ACTIONS(11119), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134689,7 +139344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 43, + ACTIONS(11117), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -134714,8 +139369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134732,9 +139387,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [31011] = 2, - ACTIONS(10758), 12, + [33966] = 2, + ACTIONS(11115), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134747,7 +139403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 43, + ACTIONS(11113), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -134772,8 +139428,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134790,9 +139446,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [31071] = 2, - ACTIONS(10754), 12, + [34027] = 2, + ACTIONS(11111), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134805,7 +139462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 43, + ACTIONS(11109), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -134830,8 +139487,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134848,25 +139505,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [31131] = 4, - ACTIONS(11198), 1, - anon_sym_LPAREN2, - STATE(2006), 1, - sym__directive_parameter, - ACTIONS(10490), 11, + [34088] = 2, + ACTIONS(11107), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(11105), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -134878,7 +139533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -134891,6 +139546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -134908,9 +139564,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [31195] = 2, - ACTIONS(10750), 12, + [34149] = 2, + ACTIONS(11103), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134923,7 +139580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 43, + ACTIONS(11101), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -134948,8 +139605,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134966,9 +139623,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [31255] = 2, - ACTIONS(10746), 12, + [34210] = 2, + ACTIONS(11099), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134981,7 +139639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 43, + ACTIONS(11097), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -135006,8 +139664,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135024,9 +139682,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [31315] = 2, - ACTIONS(10742), 12, + [34271] = 2, + ACTIONS(11095), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135039,7 +139698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 43, + ACTIONS(11093), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -135064,8 +139723,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135082,9 +139741,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [31375] = 2, - ACTIONS(10738), 12, + [34332] = 2, + ACTIONS(11091), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135097,7 +139757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 43, + ACTIONS(11089), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -135122,8 +139782,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135140,9 +139800,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [31435] = 2, - ACTIONS(10734), 12, + [34393] = 2, + ACTIONS(11155), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135155,7 +139816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 43, + ACTIONS(11153), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -135180,8 +139841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135198,9 +139859,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [31495] = 2, - ACTIONS(10832), 12, + [34454] = 2, + ACTIONS(11163), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135213,7 +139875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 43, + ACTIONS(11161), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -135256,9 +139918,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [31555] = 2, - ACTIONS(10730), 12, + [34515] = 2, + ACTIONS(11083), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135271,7 +139934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 43, + ACTIONS(11081), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -135296,8 +139959,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135314,27 +139977,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [31615] = 5, - ACTIONS(11202), 1, - aux_sym__text_token3, - ACTIONS(11200), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(1236), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10504), 9, + [34576] = 2, + ACTIONS(11159), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10502), 41, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11157), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -135345,14 +140004,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -135376,8 +140036,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [31681] = 2, - ACTIONS(10726), 12, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [34637] = 2, + ACTIONS(11079), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135390,7 +140052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 43, + ACTIONS(11077), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -135415,8 +140077,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135433,9 +140095,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [31741] = 2, - ACTIONS(10674), 12, + [34698] = 2, + ACTIONS(11075), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135448,7 +140111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 43, + ACTIONS(11073), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -135473,8 +140136,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135491,9 +140154,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [31801] = 2, - ACTIONS(10802), 12, + [34759] = 2, + ACTIONS(11071), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135506,7 +140170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 43, + ACTIONS(11069), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -135531,8 +140195,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135549,9 +140213,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [31861] = 2, - ACTIONS(10722), 12, + [34820] = 2, + ACTIONS(11067), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135564,7 +140229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 43, + ACTIONS(11065), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -135589,8 +140254,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135607,9 +140272,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [31921] = 2, - ACTIONS(10718), 12, + [34881] = 2, + ACTIONS(11063), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135622,7 +140288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 43, + ACTIONS(11061), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -135647,8 +140313,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135665,9 +140331,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [31981] = 2, - ACTIONS(10714), 12, + [34942] = 2, + ACTIONS(11059), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135680,7 +140347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 43, + ACTIONS(11057), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -135705,8 +140372,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135723,9 +140390,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [32041] = 2, - ACTIONS(10836), 12, + [35003] = 2, + ACTIONS(11055), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135738,7 +140406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 43, + ACTIONS(11053), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -135757,13 +140425,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -135781,9 +140449,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [32101] = 2, - ACTIONS(10828), 12, + [35064] = 2, + ACTIONS(11051), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135796,7 +140465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 43, + ACTIONS(11049), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -135815,13 +140484,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -135839,9 +140508,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [32161] = 2, - ACTIONS(10710), 12, + [35125] = 2, + ACTIONS(11047), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135854,7 +140524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 43, + ACTIONS(11045), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -135879,8 +140549,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135897,9 +140567,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [32221] = 2, - ACTIONS(10498), 12, + [35186] = 2, + ACTIONS(11043), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135912,7 +140583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10496), 43, + ACTIONS(11041), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -135955,9 +140626,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [32281] = 2, - ACTIONS(11004), 12, + [35247] = 2, + ACTIONS(10869), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135970,7 +140642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 43, + ACTIONS(10867), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -136013,9 +140685,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [32341] = 2, - ACTIONS(10996), 12, + [35308] = 2, + ACTIONS(11039), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136028,7 +140701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 43, + ACTIONS(11037), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -136071,9 +140744,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [32401] = 2, - ACTIONS(10992), 12, + [35369] = 2, + ACTIONS(11187), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136086,7 +140760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 43, + ACTIONS(11185), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -136105,13 +140779,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -136129,9 +140803,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [32461] = 2, - ACTIONS(10988), 12, + [35430] = 2, + ACTIONS(11035), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136144,7 +140819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 43, + ACTIONS(11033), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -136187,9 +140862,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [32521] = 2, - ACTIONS(11000), 12, + [35491] = 2, + ACTIONS(11031), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136202,7 +140878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 43, + ACTIONS(11029), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -136245,9 +140921,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [32581] = 2, - ACTIONS(10984), 12, + [35552] = 2, + ACTIONS(11025), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136260,7 +140937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 43, + ACTIONS(11023), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -136303,9 +140980,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [32641] = 2, - ACTIONS(10980), 12, + [35613] = 2, + ACTIONS(11021), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136318,7 +140996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 43, + ACTIONS(11019), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -136361,9 +141039,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [32701] = 2, - ACTIONS(10976), 12, + [35674] = 2, + ACTIONS(11017), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136376,7 +141055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 43, + ACTIONS(11015), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -136419,9 +141098,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [32761] = 2, - ACTIONS(10972), 12, + [35735] = 2, + ACTIONS(11013), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136434,7 +141114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 43, + ACTIONS(11011), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -136477,9 +141157,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [32821] = 2, - ACTIONS(10968), 12, + [35796] = 2, + ACTIONS(11009), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136492,7 +141173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 43, + ACTIONS(11007), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -136535,9 +141216,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [32881] = 2, - ACTIONS(10964), 12, + [35857] = 2, + ACTIONS(11005), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136550,7 +141232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 43, + ACTIONS(11003), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -136593,9 +141275,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [32941] = 2, - ACTIONS(10960), 12, + [35918] = 2, + ACTIONS(11001), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136608,7 +141291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 43, + ACTIONS(10999), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -136651,9 +141334,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [33001] = 2, - ACTIONS(10956), 12, + [35979] = 2, + ACTIONS(11087), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136666,7 +141350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 43, + ACTIONS(11085), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -136709,9 +141393,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [33061] = 2, - ACTIONS(10980), 12, + [36040] = 2, + ACTIONS(10993), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136724,7 +141409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 43, + ACTIONS(10991), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -136743,13 +141428,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -136767,9 +141452,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [33121] = 2, - ACTIONS(10952), 12, + [36101] = 2, + ACTIONS(10989), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136782,7 +141468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 43, + ACTIONS(10987), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -136825,9 +141511,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [33181] = 2, - ACTIONS(10948), 12, + [36162] = 2, + ACTIONS(10985), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136840,7 +141527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 43, + ACTIONS(10983), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -136883,9 +141570,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [33241] = 2, - ACTIONS(10944), 12, + [36223] = 2, + ACTIONS(10981), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136898,7 +141586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 43, + ACTIONS(10979), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -136941,9 +141629,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [33301] = 2, - ACTIONS(10940), 12, + [36284] = 2, + ACTIONS(10977), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136956,7 +141645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 43, + ACTIONS(10975), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -136999,9 +141688,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [33361] = 2, - ACTIONS(10932), 12, + [36345] = 2, + ACTIONS(10973), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137014,7 +141704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 43, + ACTIONS(10971), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -137057,9 +141747,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [33421] = 2, - ACTIONS(10928), 12, + [36406] = 2, + ACTIONS(10969), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137072,7 +141763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 43, + ACTIONS(10967), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -137115,9 +141806,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [33481] = 2, - ACTIONS(10924), 12, + [36467] = 2, + ACTIONS(10965), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137130,7 +141822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 43, + ACTIONS(10963), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -137173,22 +141865,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [33541] = 2, - ACTIONS(10920), 12, + [36528] = 5, + ACTIONS(11388), 1, + aux_sym__text_token3, + ACTIONS(11385), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(1241), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10705), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10918), 43, + ACTIONS(10703), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -137199,8 +141897,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -137213,7 +141911,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -137231,9 +141928,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [33601] = 2, - ACTIONS(10916), 12, + aux_sym_alpine_js_token1, + [36595] = 2, + ACTIONS(10961), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137246,7 +141943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 43, + ACTIONS(10959), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -137289,9 +141986,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [33661] = 2, - ACTIONS(10912), 12, + [36656] = 2, + ACTIONS(10957), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137304,7 +142002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 43, + ACTIONS(10955), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -137347,9 +142045,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [33721] = 2, - ACTIONS(10908), 12, + [36717] = 2, + ACTIONS(10953), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137362,7 +142061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 43, + ACTIONS(10951), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -137405,9 +142104,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [33781] = 2, - ACTIONS(10904), 12, + [36778] = 2, + ACTIONS(10849), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137420,7 +142120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 43, + ACTIONS(10847), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -137463,9 +142163,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [33841] = 2, - ACTIONS(10688), 12, + [36839] = 2, + ACTIONS(10949), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137478,7 +142179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10686), 43, + ACTIONS(10947), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -137521,9 +142222,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [33901] = 2, - ACTIONS(10900), 12, + [36900] = 2, + ACTIONS(10945), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137536,7 +142238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 43, + ACTIONS(10943), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -137579,37 +142281,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [33961] = 4, - ACTIONS(11204), 1, - anon_sym_LPAREN2, - STATE(2419), 1, - sym__directive_parameter, - ACTIONS(10490), 11, + [36961] = 2, + ACTIONS(10941), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10488), 42, + ACTIONS(10939), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -137622,6 +142322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -137639,9 +142340,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [34025] = 2, - ACTIONS(10896), 12, + [37022] = 2, + ACTIONS(10937), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137654,7 +142356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 43, + ACTIONS(10935), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -137697,9 +142399,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [34085] = 2, - ACTIONS(10892), 12, + [37083] = 2, + ACTIONS(10933), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137712,7 +142415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 43, + ACTIONS(10931), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -137755,9 +142458,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [34145] = 2, - ACTIONS(10888), 12, + [37144] = 2, + ACTIONS(10929), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137770,7 +142474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 43, + ACTIONS(10927), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -137813,9 +142517,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [34205] = 2, - ACTIONS(11024), 12, + [37205] = 2, + ACTIONS(10925), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137828,7 +142533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 43, + ACTIONS(10923), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -137871,9 +142576,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [34265] = 2, - ACTIONS(10884), 12, + [37266] = 2, + ACTIONS(10921), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137886,7 +142592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 43, + ACTIONS(10919), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -137929,9 +142635,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [34325] = 2, - ACTIONS(10880), 12, + [37327] = 2, + ACTIONS(10997), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137944,7 +142651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 43, + ACTIONS(10995), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -137987,9 +142694,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [34385] = 2, - ACTIONS(10876), 12, + [37388] = 2, + ACTIONS(10917), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138002,7 +142710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 43, + ACTIONS(10915), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -138045,9 +142753,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [34445] = 2, - ACTIONS(10872), 12, + [37449] = 2, + ACTIONS(10913), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138060,7 +142769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 43, + ACTIONS(10911), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -138103,9 +142812,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [34505] = 2, - ACTIONS(10868), 12, + [37510] = 2, + ACTIONS(10977), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138118,7 +142828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 43, + ACTIONS(10975), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -138137,13 +142847,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -138161,9 +142871,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [34565] = 2, - ACTIONS(10864), 12, + [37571] = 2, + ACTIONS(10909), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138176,7 +142887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 43, + ACTIONS(10907), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -138219,9 +142930,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [34625] = 2, - ACTIONS(10860), 12, + [37632] = 2, + ACTIONS(10905), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138234,7 +142946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 43, + ACTIONS(10903), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -138277,9 +142989,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [34685] = 2, - ACTIONS(10856), 12, + [37693] = 2, + ACTIONS(10901), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138292,7 +143005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 43, + ACTIONS(10899), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -138335,9 +143048,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [34745] = 2, - ACTIONS(10852), 12, + [37754] = 2, + ACTIONS(10853), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138350,7 +143064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 43, + ACTIONS(10851), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -138364,6 +143078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -138375,7 +143090,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -138393,9 +143107,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [34805] = 2, - ACTIONS(10848), 12, + [37815] = 2, + ACTIONS(11147), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138408,7 +143123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 43, + ACTIONS(11145), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -138427,13 +143142,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -138451,9 +143166,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [34865] = 2, - ACTIONS(10844), 12, + [37876] = 2, + ACTIONS(11143), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138466,7 +143182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 43, + ACTIONS(11141), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -138485,13 +143201,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -138509,9 +143225,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [34925] = 2, - ACTIONS(10678), 12, + [37937] = 2, + ACTIONS(10885), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138524,7 +143241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 43, + ACTIONS(10883), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -138538,6 +143255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -138549,7 +143267,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -138567,9 +143284,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [34985] = 2, - ACTIONS(10840), 12, + [37998] = 2, + ACTIONS(10889), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138582,7 +143300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 43, + ACTIONS(10887), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -138596,6 +143314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -138607,7 +143326,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -138625,9 +143343,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [35045] = 2, - ACTIONS(10836), 12, + [38059] = 2, + ACTIONS(10893), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138640,7 +143359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 43, + ACTIONS(10891), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -138654,6 +143373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -138665,7 +143385,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -138683,9 +143402,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [35105] = 2, - ACTIONS(10832), 12, + [38120] = 2, + ACTIONS(10897), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138698,7 +143418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 43, + ACTIONS(10895), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -138712,6 +143432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -138723,7 +143444,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -138741,9 +143461,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [35165] = 2, - ACTIONS(10828), 12, + [38181] = 2, + ACTIONS(10901), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138756,7 +143477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 43, + ACTIONS(10899), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -138770,6 +143491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -138781,7 +143503,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -138799,9 +143520,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [35225] = 2, - ACTIONS(10824), 12, + [38242] = 2, + ACTIONS(10905), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138814,7 +143536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 43, + ACTIONS(10903), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -138828,6 +143550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -138839,7 +143562,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -138857,9 +143579,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [35285] = 2, - ACTIONS(10818), 12, + [38303] = 2, + ACTIONS(10909), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138872,7 +143595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 43, + ACTIONS(10907), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -138886,6 +143609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -138897,7 +143621,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -138915,80 +143638,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [35345] = 2, - ACTIONS(10814), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, + [38364] = 5, + ACTIONS(11393), 1, + aux_sym__text_token3, + ACTIONS(11391), 2, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 43, - sym_comment, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATendcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [35405] = 2, - ACTIONS(10810), 12, + STATE(1150), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10671), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10808), 43, + ACTIONS(10669), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -139000,7 +143671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -139013,7 +143684,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -139031,9 +143701,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [35465] = 2, - ACTIONS(10806), 12, + aux_sym_alpine_js_token1, + [38431] = 2, + ACTIONS(10913), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139046,7 +143716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 43, + ACTIONS(10911), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -139060,6 +143730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -139071,7 +143742,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -139089,9 +143759,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [35525] = 2, - ACTIONS(10798), 12, + [38492] = 2, + ACTIONS(10917), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139104,7 +143775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 43, + ACTIONS(10915), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -139118,6 +143789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -139129,7 +143801,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -139147,9 +143818,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [35585] = 2, - ACTIONS(10794), 12, + [38553] = 2, + ACTIONS(10997), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139162,7 +143834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 43, + ACTIONS(10995), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -139176,6 +143848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -139187,7 +143860,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -139205,70 +143877,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [35645] = 5, - ACTIONS(11209), 1, - aux_sym__text_token3, - ACTIONS(11206), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(1236), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10536), 9, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(10534), 41, - sym_comment, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATendprepend, - anon_sym_ATprependOnce, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [35711] = 2, - ACTIONS(10790), 12, + [38614] = 2, + ACTIONS(10921), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139281,7 +143893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 43, + ACTIONS(10919), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -139295,6 +143907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -139306,7 +143919,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -139324,9 +143936,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [35771] = 2, - ACTIONS(10786), 12, + [38675] = 2, + ACTIONS(10925), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139339,7 +143952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 43, + ACTIONS(10923), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -139353,6 +143966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -139364,7 +143978,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -139382,9 +143995,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [35831] = 2, - ACTIONS(10782), 12, + [38736] = 2, + ACTIONS(10929), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139397,7 +144011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 43, + ACTIONS(10927), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -139411,6 +144025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -139422,7 +144037,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -139440,9 +144054,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [35891] = 2, - ACTIONS(10778), 12, + [38797] = 2, + ACTIONS(11139), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139455,7 +144070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 43, + ACTIONS(11137), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -139474,13 +144089,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -139498,9 +144113,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [35951] = 2, - ACTIONS(10774), 12, + [38858] = 2, + ACTIONS(10933), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139513,7 +144129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 43, + ACTIONS(10931), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -139527,6 +144143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -139538,7 +144155,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -139556,9 +144172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [36011] = 2, - ACTIONS(10770), 12, + [38919] = 2, + ACTIONS(10937), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139571,7 +144188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 43, + ACTIONS(10935), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -139585,6 +144202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -139596,7 +144214,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -139614,9 +144231,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [36071] = 2, - ACTIONS(10766), 12, + [38980] = 2, + ACTIONS(10715), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139629,7 +144247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 43, + ACTIONS(10713), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -139654,8 +144272,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -139672,9 +144290,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [36131] = 2, - ACTIONS(10762), 12, + [39041] = 2, + ACTIONS(10897), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139687,7 +144306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 43, + ACTIONS(10895), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -139730,9 +144349,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [36191] = 2, - ACTIONS(10758), 12, + [39102] = 2, + ACTIONS(10941), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139745,7 +144365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 43, + ACTIONS(10939), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -139759,6 +144379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -139770,7 +144391,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -139788,9 +144408,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [36251] = 2, - ACTIONS(10710), 12, + [39163] = 2, + ACTIONS(10945), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139803,7 +144424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 43, + ACTIONS(10943), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -139846,9 +144467,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [36311] = 2, - ACTIONS(10754), 12, + [39224] = 2, + ACTIONS(10949), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139861,7 +144483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 43, + ACTIONS(10947), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -139875,6 +144497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -139886,7 +144509,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -139904,9 +144526,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [36371] = 2, - ACTIONS(11004), 12, + [39285] = 2, + ACTIONS(10849), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139919,7 +144542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 43, + ACTIONS(10847), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -139933,12 +144556,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -139962,9 +144585,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [36431] = 2, - ACTIONS(10714), 12, + [39346] = 2, + ACTIONS(10953), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139977,7 +144601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 43, + ACTIONS(10951), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -140020,9 +144644,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [36491] = 2, - ACTIONS(10718), 12, + [39407] = 2, + ACTIONS(10957), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140035,7 +144660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 43, + ACTIONS(10955), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -140078,9 +144703,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [36551] = 2, - ACTIONS(10722), 12, + [39468] = 2, + ACTIONS(10961), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140093,7 +144719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 43, + ACTIONS(10959), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -140136,9 +144762,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [36611] = 2, - ACTIONS(10802), 12, + [39529] = 2, + ACTIONS(10893), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140151,7 +144778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 43, + ACTIONS(10891), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -140165,7 +144792,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -140177,6 +144803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -140194,9 +144821,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [36671] = 2, - ACTIONS(10674), 12, + [39590] = 2, + ACTIONS(10965), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140209,7 +144837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 43, + ACTIONS(10963), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -140252,9 +144880,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [36731] = 2, - ACTIONS(10726), 12, + [39651] = 2, + ACTIONS(10969), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140267,7 +144896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 43, + ACTIONS(10967), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -140310,9 +144939,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [36791] = 2, - ACTIONS(10730), 12, + [39712] = 2, + ACTIONS(11151), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140325,7 +144955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 43, + ACTIONS(11149), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -140339,13 +144969,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -140368,70 +144998,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [36851] = 5, - ACTIONS(11214), 1, - aux_sym__text_token3, - ACTIONS(11212), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(1150), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10504), 9, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(10502), 41, - sym_comment, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [36917] = 2, - ACTIONS(10734), 12, + [39773] = 2, + ACTIONS(10973), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140444,7 +145014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 43, + ACTIONS(10971), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -140487,9 +145057,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [36977] = 2, - ACTIONS(10738), 12, + [39834] = 2, + ACTIONS(10977), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140502,7 +145073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 43, + ACTIONS(10975), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -140545,9 +145116,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [37037] = 2, - ACTIONS(10742), 12, + [39895] = 2, + ACTIONS(11095), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140560,7 +145132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 43, + ACTIONS(11093), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -140574,12 +145146,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -140603,9 +145175,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [37097] = 2, - ACTIONS(10746), 12, + [39956] = 2, + ACTIONS(10981), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140618,7 +145191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 43, + ACTIONS(10979), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -140661,9 +145234,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [37157] = 2, - ACTIONS(10750), 12, + [40017] = 2, + ACTIONS(11131), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140676,7 +145250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 43, + ACTIONS(11129), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -140690,12 +145264,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -140719,9 +145293,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [37217] = 2, - ACTIONS(10754), 12, + [40078] = 2, + ACTIONS(10985), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140734,7 +145309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 43, + ACTIONS(10983), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -140777,9 +145352,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [37277] = 2, - ACTIONS(10996), 12, + [40139] = 2, + ACTIONS(10989), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140792,7 +145368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 43, + ACTIONS(10987), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -140806,12 +145382,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -140835,9 +145411,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [37337] = 2, - ACTIONS(10758), 12, + [40200] = 2, + ACTIONS(10993), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140850,7 +145427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 43, + ACTIONS(10991), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -140893,9 +145470,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [37397] = 2, - ACTIONS(10762), 12, + [40261] = 2, + ACTIONS(11087), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140908,7 +145486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 43, + ACTIONS(11085), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -140951,9 +145529,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [37457] = 2, - ACTIONS(10498), 12, + [40322] = 2, + ACTIONS(11001), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140966,7 +145545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10496), 43, + ACTIONS(10999), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -140980,6 +145559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -140992,7 +145572,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -141009,9 +145588,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [37517] = 2, - ACTIONS(10992), 12, + [40383] = 2, + ACTIONS(11005), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141024,7 +145604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 43, + ACTIONS(11003), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -141038,12 +145618,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -141067,9 +145647,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [37577] = 2, - ACTIONS(10766), 12, + [40444] = 2, + ACTIONS(11009), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141082,7 +145663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 43, + ACTIONS(11007), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -141125,9 +145706,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [37637] = 2, - ACTIONS(10770), 12, + [40505] = 2, + ACTIONS(11013), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141140,7 +145722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 43, + ACTIONS(11011), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -141183,9 +145765,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [37697] = 2, - ACTIONS(10774), 12, + [40566] = 2, + ACTIONS(11017), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141198,7 +145781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 43, + ACTIONS(11015), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -141241,9 +145824,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [37757] = 2, - ACTIONS(10778), 12, + [40627] = 2, + ACTIONS(11021), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141256,7 +145840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 43, + ACTIONS(11019), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -141299,9 +145883,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [37817] = 2, - ACTIONS(10782), 12, + [40688] = 2, + ACTIONS(10869), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141314,7 +145899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 43, + ACTIONS(10867), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -141328,7 +145913,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -141341,6 +145925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -141357,9 +145942,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [37877] = 2, - ACTIONS(10786), 12, + [40749] = 2, + ACTIONS(11025), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141372,7 +145958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 43, + ACTIONS(11023), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -141415,9 +146001,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [37937] = 2, - ACTIONS(10790), 12, + [40810] = 2, + ACTIONS(11127), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141430,7 +146017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 43, + ACTIONS(11125), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -141444,12 +146031,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -141473,9 +146060,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [37997] = 2, - ACTIONS(10750), 12, + [40871] = 2, + ACTIONS(11031), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141488,7 +146076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 43, + ACTIONS(11029), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -141502,6 +146090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -141513,7 +146102,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -141531,9 +146119,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [38057] = 2, - ACTIONS(10794), 12, + [40932] = 2, + ACTIONS(11035), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141546,7 +146135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 43, + ACTIONS(11033), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -141589,9 +146178,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [38117] = 2, - ACTIONS(10798), 12, + [40993] = 2, + ACTIONS(11039), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141604,7 +146194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 43, + ACTIONS(11037), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -141647,9 +146237,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [38177] = 2, - ACTIONS(10936), 12, + [41054] = 2, + ACTIONS(11043), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141662,7 +146253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 43, + ACTIONS(11041), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -141676,13 +146267,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -141705,9 +146296,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [38237] = 2, - ACTIONS(10806), 12, + [41115] = 2, + ACTIONS(11047), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141720,7 +146312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 43, + ACTIONS(11045), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -141763,9 +146355,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [38297] = 2, - ACTIONS(10810), 12, + [41176] = 2, + ACTIONS(11051), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141778,7 +146371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 43, + ACTIONS(11049), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -141821,9 +146414,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [38357] = 2, - ACTIONS(10988), 12, + [41237] = 2, + ACTIONS(11055), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141836,7 +146430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 43, + ACTIONS(11053), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -141850,12 +146444,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -141879,9 +146473,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [38417] = 2, - ACTIONS(10814), 12, + [41298] = 2, + ACTIONS(11059), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141894,7 +146489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 43, + ACTIONS(11057), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -141937,9 +146532,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [38477] = 2, - ACTIONS(11000), 12, + [41359] = 2, + ACTIONS(11063), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141952,7 +146548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 43, + ACTIONS(11061), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -141966,12 +146562,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -141995,9 +146591,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [38537] = 2, - ACTIONS(10818), 12, + [41420] = 2, + ACTIONS(11067), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142010,7 +146607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 43, + ACTIONS(11065), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -142053,9 +146650,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [38597] = 2, - ACTIONS(10824), 12, + [41481] = 2, + ACTIONS(11071), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142068,7 +146666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 43, + ACTIONS(11069), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -142111,9 +146709,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [38657] = 2, - ACTIONS(10828), 12, + [41542] = 2, + ACTIONS(11075), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142126,7 +146725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 43, + ACTIONS(11073), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -142169,9 +146768,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [38717] = 2, - ACTIONS(10832), 12, + [41603] = 2, + ACTIONS(11079), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142184,7 +146784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 43, + ACTIONS(11077), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -142227,9 +146827,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [38777] = 2, - ACTIONS(10836), 12, + [41664] = 2, + ACTIONS(11083), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142242,7 +146843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 43, + ACTIONS(11081), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -142285,9 +146886,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [38837] = 2, - ACTIONS(10840), 12, + [41725] = 2, + ACTIONS(11155), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142300,7 +146902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 43, + ACTIONS(11153), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -142343,9 +146945,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [38897] = 2, - ACTIONS(10678), 12, + [41786] = 2, + ACTIONS(11091), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142358,7 +146961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 43, + ACTIONS(11089), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -142401,9 +147004,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [38957] = 2, - ACTIONS(10844), 12, + [41847] = 2, + ACTIONS(11095), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142416,7 +147020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 43, + ACTIONS(11093), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -142459,9 +147063,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [39017] = 2, - ACTIONS(10848), 12, + [41908] = 2, + ACTIONS(11099), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142474,7 +147079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 43, + ACTIONS(11097), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -142517,9 +147122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [39077] = 2, - ACTIONS(10852), 12, + [41969] = 2, + ACTIONS(11103), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142532,7 +147138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 43, + ACTIONS(11101), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -142575,9 +147181,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [39137] = 2, - ACTIONS(10688), 12, + [42030] = 2, + ACTIONS(11107), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142590,7 +147197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10686), 43, + ACTIONS(11105), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -142604,6 +147211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -142616,7 +147224,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -142633,9 +147240,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [39197] = 2, - ACTIONS(10856), 12, + [42091] = 2, + ACTIONS(11111), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142648,7 +147256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 43, + ACTIONS(11109), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -142691,9 +147299,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [39257] = 2, - ACTIONS(10984), 12, + [42152] = 2, + ACTIONS(11115), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142706,7 +147315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 43, + ACTIONS(11113), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -142720,12 +147329,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -142749,9 +147358,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [39317] = 2, - ACTIONS(10860), 12, + [42213] = 2, + ACTIONS(11119), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142764,7 +147374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 43, + ACTIONS(11117), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -142807,9 +147417,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [39377] = 2, - ACTIONS(10864), 12, + [42274] = 2, + ACTIONS(11123), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142822,7 +147433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 43, + ACTIONS(11121), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -142865,9 +147476,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [39437] = 2, - ACTIONS(10868), 12, + [42335] = 2, + ACTIONS(11127), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142880,7 +147492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 43, + ACTIONS(11125), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -142923,9 +147535,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [39497] = 2, - ACTIONS(10872), 12, + [42396] = 2, + ACTIONS(11131), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142938,7 +147551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 43, + ACTIONS(11129), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -142981,9 +147594,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [39557] = 2, - ACTIONS(10876), 12, + [42457] = 2, + ACTIONS(11135), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142996,7 +147610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 43, + ACTIONS(11133), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -143039,9 +147653,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [39617] = 2, - ACTIONS(10880), 12, + [42518] = 2, + ACTIONS(11197), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143054,7 +147669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 43, + ACTIONS(11195), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -143068,13 +147683,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -143097,9 +147712,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [39677] = 2, - ACTIONS(10884), 12, + [42579] = 2, + ACTIONS(11139), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143112,7 +147728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 43, + ACTIONS(11137), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -143155,9 +147771,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [39737] = 2, - ACTIONS(11024), 12, + [42640] = 2, + ACTIONS(11143), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143170,7 +147787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 43, + ACTIONS(11141), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -143213,9 +147830,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [39797] = 2, - ACTIONS(10888), 12, + [42701] = 2, + ACTIONS(11147), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143228,7 +147846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 43, + ACTIONS(11145), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -143271,9 +147889,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [39857] = 2, - ACTIONS(10892), 12, + [42762] = 2, + ACTIONS(11187), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143286,7 +147905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 43, + ACTIONS(11185), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -143329,9 +147948,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [39917] = 2, - ACTIONS(10896), 12, + [42823] = 2, + ACTIONS(11159), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143344,7 +147964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 43, + ACTIONS(11157), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -143387,9 +148007,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [39977] = 2, - ACTIONS(10900), 12, + [42884] = 2, + ACTIONS(11163), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143402,7 +148023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 43, + ACTIONS(11161), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -143445,9 +148066,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [40037] = 2, - ACTIONS(10904), 12, + [42945] = 2, + ACTIONS(11167), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143460,7 +148082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 43, + ACTIONS(11165), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -143503,9 +148125,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [40097] = 2, - ACTIONS(10908), 12, + [43006] = 2, + ACTIONS(11171), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143518,7 +148141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 43, + ACTIONS(11169), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -143561,9 +148184,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [40157] = 2, - ACTIONS(10912), 12, + [43067] = 2, + ACTIONS(11175), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143576,7 +148200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 43, + ACTIONS(11173), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -143619,9 +148243,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [40217] = 2, - ACTIONS(10916), 12, + [43128] = 2, + ACTIONS(11179), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143634,7 +148259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 43, + ACTIONS(11177), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -143677,9 +148302,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [40277] = 2, - ACTIONS(10920), 12, + [43189] = 2, + ACTIONS(11183), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143692,7 +148318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 43, + ACTIONS(11181), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -143735,9 +148361,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [40337] = 2, - ACTIONS(10924), 12, + [43250] = 2, + ACTIONS(10853), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143750,7 +148377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 43, + ACTIONS(10851), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -143764,7 +148391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -143793,9 +148420,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [40397] = 2, - ACTIONS(10928), 12, + [43311] = 2, + ACTIONS(11123), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143808,7 +148436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 43, + ACTIONS(11121), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -143822,12 +148450,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -143851,9 +148479,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [40457] = 2, - ACTIONS(10932), 12, + [43372] = 2, + ACTIONS(11119), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143866,7 +148495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 43, + ACTIONS(11117), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -143880,12 +148509,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -143909,9 +148538,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [40517] = 2, - ACTIONS(10940), 12, + [43433] = 2, + ACTIONS(10885), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143924,7 +148554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 43, + ACTIONS(10883), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -143938,7 +148568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -143967,9 +148597,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [40577] = 2, - ACTIONS(10944), 12, + [43494] = 2, + ACTIONS(10889), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143982,7 +148613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 43, + ACTIONS(10887), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -143996,7 +148627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -144025,9 +148656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [40637] = 2, - ACTIONS(10948), 12, + [43555] = 2, + ACTIONS(10893), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144040,7 +148672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 43, + ACTIONS(10891), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -144054,7 +148686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -144083,9 +148715,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [40697] = 2, - ACTIONS(10952), 12, + [43616] = 2, + ACTIONS(10897), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144098,7 +148731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 43, + ACTIONS(10895), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -144112,65 +148745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [40757] = 2, - ACTIONS(10956), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10954), 43, - sym_comment, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATendif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -144199,9 +148774,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [40817] = 2, - ACTIONS(10960), 12, + [43677] = 2, + ACTIONS(10901), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144214,7 +148790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 43, + ACTIONS(10899), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -144228,7 +148804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -144257,9 +148833,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [40877] = 2, - ACTIONS(10964), 12, + [43738] = 2, + ACTIONS(10905), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144272,7 +148849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 43, + ACTIONS(10903), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -144286,7 +148863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -144315,9 +148892,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [40937] = 2, - ACTIONS(11014), 12, + [43799] = 2, + ACTIONS(10909), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144330,7 +148908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 43, + ACTIONS(10907), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -144344,13 +148922,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -144373,9 +148951,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [40997] = 2, - ACTIONS(10968), 12, + [43860] = 2, + ACTIONS(11115), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144388,7 +148967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 43, + ACTIONS(11113), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -144402,12 +148981,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -144431,9 +149010,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [41057] = 2, - ACTIONS(10972), 12, + [43921] = 2, + ACTIONS(10913), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144446,7 +149026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 43, + ACTIONS(10911), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -144460,7 +149040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -144489,9 +149069,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [41117] = 2, - ACTIONS(10976), 12, + [43982] = 2, + ACTIONS(10917), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144504,7 +149085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 43, + ACTIONS(10915), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -144518,7 +149099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -144547,9 +149128,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [41177] = 2, - ACTIONS(10980), 12, + [44043] = 2, + ACTIONS(10997), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144562,7 +149144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 43, + ACTIONS(10995), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -144576,7 +149158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -144605,9 +149187,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [41237] = 2, - ACTIONS(10984), 12, + [44104] = 2, + ACTIONS(10921), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144620,7 +149203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 43, + ACTIONS(10919), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -144634,7 +149217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -144663,9 +149246,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [41297] = 2, - ACTIONS(11000), 12, + [44165] = 2, + ACTIONS(10925), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144678,7 +149262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 43, + ACTIONS(10923), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -144692,7 +149276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -144721,9 +149305,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [41357] = 2, - ACTIONS(10988), 12, + [44226] = 2, + ACTIONS(10929), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144736,7 +149321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 43, + ACTIONS(10927), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -144750,7 +149335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -144779,9 +149364,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [41417] = 2, - ACTIONS(10992), 12, + [44287] = 2, + ACTIONS(11111), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144794,7 +149380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 43, + ACTIONS(11109), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -144808,12 +149394,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -144837,9 +149423,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [41477] = 2, - ACTIONS(10996), 12, + [44348] = 2, + ACTIONS(10933), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144852,7 +149439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 43, + ACTIONS(10931), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -144866,7 +149453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -144895,9 +149482,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [41537] = 2, - ACTIONS(11004), 12, + [44409] = 2, + ACTIONS(10937), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144910,7 +149498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 43, + ACTIONS(10935), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -144924,7 +149512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -144953,9 +149541,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [41597] = 2, - ACTIONS(10710), 12, + [44470] = 2, + ACTIONS(10715), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144968,7 +149557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 43, + ACTIONS(10713), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -144982,7 +149571,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -144996,6 +149584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -145011,9 +149600,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [41657] = 2, - ACTIONS(10944), 12, + [44531] = 2, + ACTIONS(11107), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145026,7 +149616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 43, + ACTIONS(11105), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -145069,9 +149659,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [41717] = 2, - ACTIONS(10976), 12, + [44592] = 2, + ACTIONS(10941), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145084,7 +149675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 43, + ACTIONS(10939), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -145098,12 +149689,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -145127,9 +149718,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [41777] = 2, - ACTIONS(10714), 12, + [44653] = 2, + ACTIONS(10945), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145142,7 +149734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 43, + ACTIONS(10943), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -145185,9 +149777,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [41837] = 2, - ACTIONS(10718), 12, + [44714] = 2, + ACTIONS(10949), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145200,7 +149793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 43, + ACTIONS(10947), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -145243,9 +149836,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [41897] = 2, - ACTIONS(10722), 12, + [44775] = 2, + ACTIONS(10849), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145258,7 +149852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 43, + ACTIONS(10847), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -145301,9 +149895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [41957] = 2, - ACTIONS(10802), 12, + [44836] = 2, + ACTIONS(10953), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145316,7 +149911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 43, + ACTIONS(10951), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -145359,9 +149954,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [42017] = 2, - ACTIONS(10674), 12, + [44897] = 2, + ACTIONS(10957), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145374,7 +149970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 43, + ACTIONS(10955), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -145417,9 +150013,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [42077] = 2, - ACTIONS(10726), 12, + [44958] = 2, + ACTIONS(10961), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145432,7 +150029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 43, + ACTIONS(10959), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -145475,9 +150072,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [42137] = 2, - ACTIONS(10730), 12, + [45019] = 2, + ACTIONS(10889), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145490,7 +150088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 43, + ACTIONS(10887), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -145504,7 +150102,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -145516,6 +150113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -145533,9 +150131,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [42197] = 2, - ACTIONS(10972), 12, + [45080] = 2, + ACTIONS(10965), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145548,7 +150147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 43, + ACTIONS(10963), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -145562,12 +150161,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -145591,9 +150190,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [42257] = 2, - ACTIONS(10734), 12, + [45141] = 2, + ACTIONS(10969), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145606,7 +150206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 43, + ACTIONS(10967), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -145649,9 +150249,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [42317] = 2, - ACTIONS(10738), 12, + [45202] = 2, + ACTIONS(11151), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145664,7 +150265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 43, + ACTIONS(11149), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -145678,7 +150279,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -145688,6 +150288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -145707,9 +150308,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [42377] = 2, - ACTIONS(10742), 12, + [45263] = 2, + ACTIONS(10973), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145722,7 +150324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 43, + ACTIONS(10971), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -145765,9 +150367,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [42437] = 2, - ACTIONS(10746), 12, + [45324] = 2, + ACTIONS(10977), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145780,7 +150383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 43, + ACTIONS(10975), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -145823,9 +150426,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [42497] = 2, - ACTIONS(10750), 12, + [45385] = 2, + ACTIONS(11103), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145838,7 +150442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 43, + ACTIONS(11101), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -145852,12 +150456,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -145881,9 +150485,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [42557] = 2, - ACTIONS(10754), 12, + [45446] = 2, + ACTIONS(10981), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145896,7 +150501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 43, + ACTIONS(10979), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -145939,9 +150544,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [42617] = 2, - ACTIONS(10968), 12, + [45507] = 2, + ACTIONS(11099), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145954,7 +150560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 43, + ACTIONS(11097), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -145997,9 +150603,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [42677] = 2, - ACTIONS(10758), 12, + [45568] = 2, + ACTIONS(10985), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146012,7 +150619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 43, + ACTIONS(10983), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -146055,9 +150662,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [42737] = 2, - ACTIONS(10762), 12, + [45629] = 2, + ACTIONS(10989), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146070,7 +150678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 43, + ACTIONS(10987), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -146113,9 +150721,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [42797] = 2, - ACTIONS(10498), 12, + [45690] = 2, + ACTIONS(10993), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146128,7 +150737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10496), 43, + ACTIONS(10991), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -146142,6 +150751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -146155,7 +150765,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -146171,9 +150780,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [42857] = 2, - ACTIONS(10746), 12, + [45751] = 2, + ACTIONS(11087), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146186,7 +150796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 43, + ACTIONS(11085), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -146200,6 +150810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -146211,7 +150822,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -146229,9 +150839,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [42917] = 2, - ACTIONS(10766), 12, + [45812] = 2, + ACTIONS(11001), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146244,7 +150855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 43, + ACTIONS(10999), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -146287,9 +150898,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [42977] = 2, - ACTIONS(10770), 12, + [45873] = 2, + ACTIONS(11005), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146302,7 +150914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 43, + ACTIONS(11003), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -146345,9 +150957,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [43037] = 2, - ACTIONS(10774), 12, + [45934] = 2, + ACTIONS(11009), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146360,7 +150973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 43, + ACTIONS(11007), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -146403,9 +151016,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [43097] = 2, - ACTIONS(10778), 12, + [45995] = 2, + ACTIONS(11013), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146418,7 +151032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 43, + ACTIONS(11011), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -146461,9 +151075,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [43157] = 2, - ACTIONS(10782), 12, + [46056] = 2, + ACTIONS(11017), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146476,7 +151091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 43, + ACTIONS(11015), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -146519,9 +151134,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [43217] = 2, - ACTIONS(10786), 12, + [46117] = 2, + ACTIONS(11021), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146534,7 +151150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 43, + ACTIONS(11019), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -146577,9 +151193,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [43277] = 2, - ACTIONS(10790), 12, + [46178] = 2, + ACTIONS(10869), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146592,7 +151209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 43, + ACTIONS(10867), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -146606,7 +151223,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -146620,6 +151236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -146635,9 +151252,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [43337] = 2, - ACTIONS(10742), 12, + [46239] = 2, + ACTIONS(11025), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146650,7 +151268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 43, + ACTIONS(11023), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -146664,6 +151282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -146675,7 +151294,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -146693,9 +151311,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [43397] = 2, - ACTIONS(10794), 12, + [46300] = 2, + ACTIONS(11031), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146708,7 +151327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 43, + ACTIONS(11029), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -146751,9 +151370,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [43457] = 2, - ACTIONS(10798), 12, + [46361] = 2, + ACTIONS(11035), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146766,7 +151386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 43, + ACTIONS(11033), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -146809,9 +151429,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [43517] = 2, - ACTIONS(10936), 12, + [46422] = 2, + ACTIONS(11039), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146824,7 +151445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 43, + ACTIONS(11037), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -146838,6 +151459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -146847,7 +151469,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -146867,9 +151488,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [43577] = 2, - ACTIONS(10806), 12, + [46483] = 2, + ACTIONS(11043), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146882,7 +151504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 43, + ACTIONS(11041), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -146925,9 +151547,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [43637] = 2, - ACTIONS(10810), 12, + [46544] = 2, + ACTIONS(11047), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146940,7 +151563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 43, + ACTIONS(11045), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -146983,9 +151606,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [43697] = 2, - ACTIONS(10964), 12, + [46605] = 2, + ACTIONS(11051), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146998,7 +151622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 43, + ACTIONS(11049), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -147012,12 +151636,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -147041,9 +151665,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [43757] = 2, - ACTIONS(10814), 12, + [46666] = 2, + ACTIONS(11055), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147056,7 +151681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 43, + ACTIONS(11053), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -147099,9 +151724,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [43817] = 2, - ACTIONS(10960), 12, + [46727] = 2, + ACTIONS(11059), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147114,7 +151740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 43, + ACTIONS(11057), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -147128,12 +151754,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -147157,9 +151783,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [43877] = 2, - ACTIONS(10818), 12, + [46788] = 2, + ACTIONS(11063), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147172,7 +151799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 43, + ACTIONS(11061), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -147215,9 +151842,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [43937] = 2, - ACTIONS(10824), 12, + [46849] = 2, + ACTIONS(11067), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147230,7 +151858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 43, + ACTIONS(11065), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -147273,9 +151901,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [43997] = 2, - ACTIONS(10828), 12, + [46910] = 2, + ACTIONS(11071), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147288,7 +151917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 43, + ACTIONS(11069), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -147331,9 +151960,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [44057] = 2, - ACTIONS(10832), 12, + [46971] = 2, + ACTIONS(11075), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147346,7 +151976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 43, + ACTIONS(11073), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -147389,9 +152019,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [44117] = 2, - ACTIONS(10836), 12, + [47032] = 2, + ACTIONS(11079), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147404,7 +152035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 43, + ACTIONS(11077), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -147447,9 +152078,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [44177] = 2, - ACTIONS(10840), 12, + [47093] = 2, + ACTIONS(11083), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147462,7 +152094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 43, + ACTIONS(11081), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -147505,9 +152137,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [44237] = 2, - ACTIONS(10678), 12, + [47154] = 2, + ACTIONS(11155), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147520,7 +152153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 43, + ACTIONS(11153), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -147563,9 +152196,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [44297] = 2, - ACTIONS(10844), 12, + [47215] = 2, + ACTIONS(11091), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147578,7 +152212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 43, + ACTIONS(11089), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -147621,9 +152255,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [44357] = 2, - ACTIONS(10848), 12, + [47276] = 2, + ACTIONS(11095), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147636,7 +152271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 43, + ACTIONS(11093), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -147679,9 +152314,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [44417] = 2, - ACTIONS(10852), 12, + [47337] = 2, + ACTIONS(11099), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147694,7 +152330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 43, + ACTIONS(11097), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -147737,9 +152373,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [44477] = 2, - ACTIONS(10688), 12, + [47398] = 2, + ACTIONS(11103), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147752,7 +152389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10686), 43, + ACTIONS(11101), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -147766,6 +152403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -147779,7 +152417,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -147795,9 +152432,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [44537] = 2, - ACTIONS(10856), 12, + [47459] = 2, + ACTIONS(11107), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147810,7 +152448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 43, + ACTIONS(11105), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -147853,9 +152491,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [44597] = 2, - ACTIONS(10860), 12, + [47520] = 2, + ACTIONS(11111), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147868,7 +152507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 43, + ACTIONS(11109), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -147911,9 +152550,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [44657] = 2, - ACTIONS(10864), 12, + [47581] = 2, + ACTIONS(11115), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147926,7 +152566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 43, + ACTIONS(11113), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -147969,9 +152609,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [44717] = 2, - ACTIONS(10868), 12, + [47642] = 2, + ACTIONS(11119), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147984,7 +152625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 43, + ACTIONS(11117), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -148027,9 +152668,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [44777] = 2, - ACTIONS(10872), 12, + [47703] = 2, + ACTIONS(11123), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148042,7 +152684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 43, + ACTIONS(11121), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -148085,9 +152727,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [44837] = 2, - ACTIONS(10876), 12, + [47764] = 2, + ACTIONS(11127), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148100,7 +152743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 43, + ACTIONS(11125), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -148143,9 +152786,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [44897] = 2, - ACTIONS(10880), 12, + [47825] = 2, + ACTIONS(11131), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148158,7 +152802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 43, + ACTIONS(11129), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -148201,9 +152845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [44957] = 2, - ACTIONS(10884), 12, + [47886] = 2, + ACTIONS(11135), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148216,7 +152861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 43, + ACTIONS(11133), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -148259,9 +152904,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [45017] = 2, - ACTIONS(11024), 12, + [47947] = 2, + ACTIONS(11197), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148274,7 +152920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 43, + ACTIONS(11195), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -148288,7 +152934,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -148298,6 +152943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -148317,9 +152963,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [45077] = 2, - ACTIONS(10888), 12, + [48008] = 2, + ACTIONS(11139), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148332,7 +152979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 43, + ACTIONS(11137), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -148375,9 +153022,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [45137] = 2, - ACTIONS(10892), 12, + [48069] = 2, + ACTIONS(11143), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148390,7 +153038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 43, + ACTIONS(11141), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -148433,9 +153081,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [45197] = 2, - ACTIONS(10896), 12, + [48130] = 2, + ACTIONS(11147), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148448,7 +153097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 43, + ACTIONS(11145), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -148491,9 +153140,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [45257] = 2, - ACTIONS(10900), 12, + [48191] = 2, + ACTIONS(11187), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148506,7 +153156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 43, + ACTIONS(11185), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -148549,9 +153199,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [45317] = 2, - ACTIONS(10904), 12, + [48252] = 2, + ACTIONS(11159), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148564,7 +153215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 43, + ACTIONS(11157), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -148607,9 +153258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [45377] = 2, - ACTIONS(10908), 12, + [48313] = 2, + ACTIONS(11163), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148622,7 +153274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 43, + ACTIONS(11161), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -148665,9 +153317,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [45437] = 2, - ACTIONS(10912), 12, + [48374] = 2, + ACTIONS(11167), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148680,7 +153333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 43, + ACTIONS(11165), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -148723,9 +153376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [45497] = 2, - ACTIONS(10916), 12, + [48435] = 2, + ACTIONS(11171), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148738,7 +153392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 43, + ACTIONS(11169), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -148781,9 +153435,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [45557] = 2, - ACTIONS(10920), 12, + [48496] = 2, + ACTIONS(11175), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148796,7 +153451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 43, + ACTIONS(11173), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -148839,9 +153494,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [45617] = 2, - ACTIONS(10924), 12, + [48557] = 2, + ACTIONS(11179), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148854,7 +153510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 43, + ACTIONS(11177), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -148897,9 +153553,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [45677] = 2, - ACTIONS(10928), 12, + [48618] = 2, + ACTIONS(11183), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148912,7 +153569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 43, + ACTIONS(11181), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -148955,9 +153612,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [45737] = 2, - ACTIONS(10932), 12, + [48679] = 2, + ACTIONS(10853), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148970,7 +153628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 43, + ACTIONS(10851), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -148984,8 +153642,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -149013,9 +153671,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [45797] = 2, - ACTIONS(10940), 12, + [48740] = 2, + ACTIONS(11059), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149028,7 +153687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 43, + ACTIONS(11057), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -149042,12 +153701,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -149071,9 +153730,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [45857] = 2, - ACTIONS(10944), 12, + [48801] = 2, + ACTIONS(11091), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149086,7 +153746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 43, + ACTIONS(11089), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -149100,12 +153760,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -149129,9 +153789,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [45917] = 2, - ACTIONS(10948), 12, + [48862] = 2, + ACTIONS(10885), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149144,7 +153805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 43, + ACTIONS(10883), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -149158,8 +153819,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -149187,9 +153848,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [45977] = 2, - ACTIONS(10952), 12, + [48923] = 2, + ACTIONS(10889), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149202,7 +153864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 43, + ACTIONS(10887), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -149216,8 +153878,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -149245,9 +153907,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [46037] = 2, - ACTIONS(10956), 12, + [48984] = 2, + ACTIONS(10893), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149260,7 +153923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 43, + ACTIONS(10891), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -149274,8 +153937,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -149303,9 +153966,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [46097] = 2, - ACTIONS(10960), 12, + [49045] = 2, + ACTIONS(10897), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149318,7 +153982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 43, + ACTIONS(10895), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -149332,8 +153996,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -149361,9 +154025,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [46157] = 2, - ACTIONS(10964), 12, + [49106] = 2, + ACTIONS(10901), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149376,7 +154041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 43, + ACTIONS(10899), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -149390,8 +154055,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -149419,9 +154084,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [46217] = 2, - ACTIONS(11014), 12, + [49167] = 2, + ACTIONS(10905), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149434,7 +154100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 43, + ACTIONS(10903), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -149449,6 +154115,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -149457,7 +154124,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -149477,9 +154143,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [46277] = 2, - ACTIONS(10968), 12, + [49228] = 2, + ACTIONS(10909), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149492,7 +154159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 43, + ACTIONS(10907), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -149506,8 +154173,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -149535,9 +154202,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [46337] = 2, - ACTIONS(10972), 12, + [49289] = 2, + ACTIONS(11155), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149550,7 +154218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 43, + ACTIONS(11153), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -149564,12 +154232,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -149593,9 +154261,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [46397] = 2, - ACTIONS(10976), 12, + [49350] = 2, + ACTIONS(10913), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149608,7 +154277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 43, + ACTIONS(10911), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -149622,8 +154291,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -149651,9 +154320,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [46457] = 2, - ACTIONS(10980), 12, + [49411] = 2, + ACTIONS(10917), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149666,7 +154336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 43, + ACTIONS(10915), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -149680,8 +154350,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -149709,9 +154379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [46517] = 2, - ACTIONS(10984), 12, + [49472] = 2, + ACTIONS(10997), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149724,7 +154395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 43, + ACTIONS(10995), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -149738,8 +154409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -149767,9 +154438,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [46577] = 2, - ACTIONS(11000), 12, + [49533] = 2, + ACTIONS(10921), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149782,7 +154454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 43, + ACTIONS(10919), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -149796,8 +154468,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -149825,9 +154497,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [46637] = 2, - ACTIONS(10988), 12, + [49594] = 2, + ACTIONS(10925), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149840,7 +154513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 43, + ACTIONS(10923), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -149854,8 +154527,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -149883,9 +154556,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [46697] = 2, - ACTIONS(10992), 12, + [49655] = 2, + ACTIONS(10929), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149898,7 +154572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 43, + ACTIONS(10927), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -149912,8 +154586,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -149941,9 +154615,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [46757] = 2, - ACTIONS(10996), 12, + [49716] = 2, + ACTIONS(11083), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149956,7 +154631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 43, + ACTIONS(11081), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -149970,12 +154645,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -149999,9 +154674,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [46817] = 2, - ACTIONS(11004), 12, + [49777] = 2, + ACTIONS(10933), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150014,7 +154690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 43, + ACTIONS(10931), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -150028,8 +154704,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -150057,9 +154733,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [46877] = 2, - ACTIONS(10710), 12, + [49838] = 2, + ACTIONS(10937), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150072,7 +154749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 43, + ACTIONS(10935), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -150115,9 +154792,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [46937] = 2, - ACTIONS(10956), 12, + [49899] = 2, + ACTIONS(10941), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150130,7 +154808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 43, + ACTIONS(10939), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -150145,11 +154823,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -150173,9 +154851,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [46997] = 2, - ACTIONS(10952), 12, + [49960] = 2, + ACTIONS(10945), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150188,7 +154867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 43, + ACTIONS(10943), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -150203,11 +154882,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -150231,9 +154910,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [47057] = 2, - ACTIONS(10714), 12, + [50021] = 2, + ACTIONS(10949), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150246,7 +154926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 43, + ACTIONS(10947), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -150289,9 +154969,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [47117] = 2, - ACTIONS(10718), 12, + [50082] = 2, + ACTIONS(10849), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150304,7 +154985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 43, + ACTIONS(10847), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -150347,9 +155028,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [47177] = 2, - ACTIONS(10722), 12, + [50143] = 2, + ACTIONS(10953), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150362,7 +155044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 43, + ACTIONS(10951), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -150405,9 +155087,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [47237] = 2, - ACTIONS(10802), 12, + [50204] = 2, + ACTIONS(10957), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150420,7 +155103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 43, + ACTIONS(10955), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -150463,9 +155146,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [47297] = 2, - ACTIONS(10674), 12, + [50265] = 2, + ACTIONS(10961), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150478,7 +155162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 43, + ACTIONS(10959), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -150521,9 +155205,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [47357] = 2, - ACTIONS(10726), 12, + [50326] = 2, + ACTIONS(10885), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150536,7 +155221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 43, + ACTIONS(10883), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -150551,7 +155236,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -150562,6 +155246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -150579,9 +155264,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [47417] = 2, - ACTIONS(10730), 12, + [50387] = 2, + ACTIONS(10965), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150594,7 +155280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 43, + ACTIONS(10963), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -150637,9 +155323,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [47477] = 2, - ACTIONS(10948), 12, + [50448] = 2, + ACTIONS(10969), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150652,7 +155339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 43, + ACTIONS(10967), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -150667,11 +155354,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -150695,9 +155382,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [47537] = 2, - ACTIONS(10734), 12, + [50509] = 2, + ACTIONS(11151), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150710,7 +155398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 43, + ACTIONS(11149), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -150725,7 +155413,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -150734,6 +155421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -150753,9 +155441,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [47597] = 2, - ACTIONS(10738), 12, + [50570] = 2, + ACTIONS(10973), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150768,7 +155457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 43, + ACTIONS(10971), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -150811,9 +155500,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [47657] = 2, - ACTIONS(10742), 12, + [50631] = 2, + ACTIONS(10977), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150826,7 +155516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 43, + ACTIONS(10975), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -150869,9 +155559,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [47717] = 2, - ACTIONS(10746), 12, + [50692] = 2, + ACTIONS(11079), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150884,7 +155575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 43, + ACTIONS(11077), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -150899,11 +155590,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -150927,9 +155618,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [47777] = 2, - ACTIONS(10750), 12, + [50753] = 2, + ACTIONS(10981), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150942,7 +155634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 43, + ACTIONS(10979), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -150985,9 +155677,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [47837] = 2, - ACTIONS(10754), 12, + [50814] = 2, + ACTIONS(11075), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151000,7 +155693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 43, + ACTIONS(11073), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -151015,11 +155708,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -151043,9 +155736,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [47897] = 2, - ACTIONS(10904), 12, + [50875] = 2, + ACTIONS(10985), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151058,7 +155752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 43, + ACTIONS(10983), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -151073,11 +155767,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -151101,9 +155795,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [47957] = 2, - ACTIONS(10758), 12, + [50936] = 2, + ACTIONS(10989), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151116,7 +155811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 43, + ACTIONS(10987), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -151159,9 +155854,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [48017] = 2, - ACTIONS(10762), 12, + [50997] = 2, + ACTIONS(10993), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151174,7 +155870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 43, + ACTIONS(10991), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -151217,9 +155913,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [48077] = 2, - ACTIONS(10766), 12, + [51058] = 2, + ACTIONS(11087), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151232,7 +155929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 43, + ACTIONS(11085), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -151275,9 +155972,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [48137] = 2, - ACTIONS(10770), 12, + [51119] = 2, + ACTIONS(11001), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151290,7 +155988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 43, + ACTIONS(10999), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -151333,9 +156031,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [48197] = 2, - ACTIONS(10774), 12, + [51180] = 2, + ACTIONS(11005), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151348,7 +156047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 43, + ACTIONS(11003), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -151391,9 +156090,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [48257] = 2, - ACTIONS(10778), 12, + [51241] = 2, + ACTIONS(11009), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151406,7 +156106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 43, + ACTIONS(11007), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -151449,9 +156149,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [48317] = 2, - ACTIONS(10782), 12, + [51302] = 2, + ACTIONS(11013), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151464,7 +156165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 43, + ACTIONS(11011), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -151507,9 +156208,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [48377] = 2, - ACTIONS(10786), 12, + [51363] = 2, + ACTIONS(11017), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151522,7 +156224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 43, + ACTIONS(11015), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -151565,9 +156267,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [48437] = 2, - ACTIONS(10790), 12, + [51424] = 2, + ACTIONS(11021), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151580,7 +156283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 43, + ACTIONS(11019), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -151623,9 +156326,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [48497] = 2, - ACTIONS(10738), 12, + [51485] = 2, + ACTIONS(11025), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151638,7 +156342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 43, + ACTIONS(11023), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -151653,6 +156357,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -151663,7 +156368,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -151681,9 +156385,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [48557] = 2, - ACTIONS(10794), 12, + [51546] = 2, + ACTIONS(11031), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151696,7 +156401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 43, + ACTIONS(11029), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -151739,9 +156444,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [48617] = 2, - ACTIONS(10798), 12, + [51607] = 2, + ACTIONS(11035), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151754,7 +156460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 43, + ACTIONS(11033), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -151797,9 +156503,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [48677] = 2, - ACTIONS(10936), 12, + [51668] = 2, + ACTIONS(11039), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151812,7 +156519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 43, + ACTIONS(11037), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -151827,6 +156534,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -151835,7 +156543,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -151855,9 +156562,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [48737] = 2, - ACTIONS(10806), 12, + [51729] = 2, + ACTIONS(11043), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151870,7 +156578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 43, + ACTIONS(11041), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -151913,9 +156621,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [48797] = 2, - ACTIONS(10810), 12, + [51790] = 2, + ACTIONS(11047), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151928,7 +156637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 43, + ACTIONS(11045), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -151971,9 +156680,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [48857] = 2, - ACTIONS(10940), 12, + [51851] = 2, + ACTIONS(11051), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151986,7 +156696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 43, + ACTIONS(11049), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -152001,11 +156711,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -152029,9 +156739,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [48917] = 2, - ACTIONS(10814), 12, + [51912] = 2, + ACTIONS(11055), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152044,7 +156755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 43, + ACTIONS(11053), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -152087,9 +156798,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [48977] = 2, - ACTIONS(10932), 12, + [51973] = 2, + ACTIONS(11059), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152102,7 +156814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 43, + ACTIONS(11057), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -152117,11 +156829,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -152145,9 +156857,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [49037] = 2, - ACTIONS(10818), 12, + [52034] = 2, + ACTIONS(11063), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152160,7 +156873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 43, + ACTIONS(11061), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -152203,9 +156916,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [49097] = 2, - ACTIONS(10824), 12, + [52095] = 2, + ACTIONS(11067), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152218,7 +156932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 43, + ACTIONS(11065), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -152261,9 +156975,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [49157] = 2, - ACTIONS(10828), 12, + [52156] = 2, + ACTIONS(11071), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152276,7 +156991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 43, + ACTIONS(11069), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -152319,9 +157034,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [49217] = 2, - ACTIONS(10832), 12, + [52217] = 2, + ACTIONS(11075), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152334,7 +157050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 43, + ACTIONS(11073), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -152377,9 +157093,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [49277] = 2, - ACTIONS(10836), 12, + [52278] = 2, + ACTIONS(11079), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152392,7 +157109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 43, + ACTIONS(11077), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -152435,9 +157152,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [49337] = 2, - ACTIONS(10840), 12, + [52339] = 2, + ACTIONS(11083), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152450,7 +157168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 43, + ACTIONS(11081), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -152493,9 +157211,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [49397] = 2, - ACTIONS(10678), 12, + [52400] = 2, + ACTIONS(11155), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152508,7 +157227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 43, + ACTIONS(11153), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -152551,9 +157270,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [49457] = 2, - ACTIONS(10844), 12, + [52461] = 2, + ACTIONS(11091), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152566,7 +157286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 43, + ACTIONS(11089), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -152609,9 +157329,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [49517] = 2, - ACTIONS(10848), 12, + [52522] = 2, + ACTIONS(11095), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152624,7 +157345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 43, + ACTIONS(11093), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -152667,9 +157388,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [49577] = 2, - ACTIONS(10852), 12, + [52583] = 2, + ACTIONS(11099), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152682,7 +157404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 43, + ACTIONS(11097), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -152725,9 +157447,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [49637] = 2, - ACTIONS(10856), 12, + [52644] = 2, + ACTIONS(11103), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152740,7 +157463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 43, + ACTIONS(11101), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -152783,9 +157506,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [49697] = 2, - ACTIONS(10860), 12, + [52705] = 2, + ACTIONS(11107), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152798,7 +157522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 43, + ACTIONS(11105), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -152841,9 +157565,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [49757] = 2, - ACTIONS(10864), 12, + [52766] = 2, + ACTIONS(11111), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152856,7 +157581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 43, + ACTIONS(11109), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -152899,9 +157624,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [49817] = 2, - ACTIONS(10868), 12, + [52827] = 2, + ACTIONS(11115), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152914,7 +157640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 43, + ACTIONS(11113), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -152957,9 +157683,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [49877] = 2, - ACTIONS(10872), 12, + [52888] = 2, + ACTIONS(11119), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152972,7 +157699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 43, + ACTIONS(11117), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -153015,9 +157742,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [49937] = 2, - ACTIONS(10876), 12, + [52949] = 2, + ACTIONS(11123), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153030,7 +157758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 43, + ACTIONS(11121), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -153073,9 +157801,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [49997] = 2, - ACTIONS(10880), 12, + [53010] = 2, + ACTIONS(11127), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153088,7 +157817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 43, + ACTIONS(11125), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -153131,9 +157860,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [50057] = 2, - ACTIONS(10884), 12, + [53071] = 2, + ACTIONS(11131), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153146,7 +157876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 43, + ACTIONS(11129), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -153189,9 +157919,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [50117] = 2, - ACTIONS(11024), 12, + [53132] = 2, + ACTIONS(11135), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153204,7 +157935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 43, + ACTIONS(11133), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -153247,9 +157978,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [50177] = 2, - ACTIONS(10888), 12, + [53193] = 2, + ACTIONS(11197), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153262,7 +157994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 43, + ACTIONS(11195), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -153277,7 +158009,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -153286,6 +158017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -153305,9 +158037,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [50237] = 2, - ACTIONS(10892), 12, + [53254] = 2, + ACTIONS(11139), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153320,7 +158053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 43, + ACTIONS(11137), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -153363,9 +158096,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [50297] = 2, - ACTIONS(10896), 12, + [53315] = 2, + ACTIONS(11143), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153378,7 +158112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 43, + ACTIONS(11141), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -153421,9 +158155,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [50357] = 2, - ACTIONS(10900), 12, + [53376] = 2, + ACTIONS(11147), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153436,7 +158171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 43, + ACTIONS(11145), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -153479,9 +158214,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [50417] = 2, - ACTIONS(10904), 12, + [53437] = 2, + ACTIONS(11187), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153494,7 +158230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 43, + ACTIONS(11185), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -153537,9 +158273,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [50477] = 2, - ACTIONS(10908), 12, + [53498] = 2, + ACTIONS(11159), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153552,7 +158289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 43, + ACTIONS(11157), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -153595,9 +158332,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [50537] = 2, - ACTIONS(10912), 12, + [53559] = 2, + ACTIONS(11163), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153610,7 +158348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 43, + ACTIONS(11161), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -153653,9 +158391,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [50597] = 2, - ACTIONS(10916), 12, + [53620] = 2, + ACTIONS(11167), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153668,7 +158407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 43, + ACTIONS(11165), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -153711,9 +158450,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [50657] = 2, - ACTIONS(10920), 12, + [53681] = 2, + ACTIONS(11171), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153726,7 +158466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 43, + ACTIONS(11169), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -153769,9 +158509,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [50717] = 2, - ACTIONS(10924), 12, + [53742] = 2, + ACTIONS(11175), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153784,7 +158525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 43, + ACTIONS(11173), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -153827,9 +158568,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [50777] = 2, - ACTIONS(10928), 12, + [53803] = 2, + ACTIONS(11179), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153842,7 +158584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 43, + ACTIONS(11177), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -153885,9 +158627,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [50837] = 2, - ACTIONS(10932), 12, + [53864] = 2, + ACTIONS(11183), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153900,7 +158643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 43, + ACTIONS(11181), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -153943,9 +158686,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [50897] = 2, - ACTIONS(10940), 12, + [53925] = 2, + ACTIONS(10853), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153958,7 +158702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 43, + ACTIONS(10851), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -153973,8 +158717,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -154001,9 +158745,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [50957] = 2, - ACTIONS(10944), 12, + [53986] = 2, + ACTIONS(11071), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154016,7 +158761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 43, + ACTIONS(11069), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -154031,11 +158776,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -154059,9 +158804,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [51017] = 2, - ACTIONS(10948), 12, + [54047] = 2, + ACTIONS(11067), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154074,7 +158820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 43, + ACTIONS(11065), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -154089,11 +158835,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -154117,9 +158863,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [51077] = 2, - ACTIONS(10952), 12, + [54108] = 2, + ACTIONS(10885), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154132,7 +158879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 43, + ACTIONS(10883), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -154147,8 +158894,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -154175,9 +158922,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [51137] = 2, - ACTIONS(10956), 12, + [54169] = 2, + ACTIONS(10889), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154190,7 +158938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 43, + ACTIONS(10887), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -154205,8 +158953,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -154233,9 +158981,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [51197] = 2, - ACTIONS(10960), 12, + [54230] = 2, + ACTIONS(10893), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154248,7 +158997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 43, + ACTIONS(10891), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -154263,8 +159012,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -154291,9 +159040,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [51257] = 2, - ACTIONS(10964), 12, + [54291] = 2, + ACTIONS(10897), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154306,7 +159056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 43, + ACTIONS(10895), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -154321,8 +159071,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -154349,9 +159099,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [51317] = 2, - ACTIONS(11014), 12, + [54352] = 2, + ACTIONS(10901), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154364,7 +159115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 43, + ACTIONS(10899), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -154380,6 +159131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -154387,7 +159139,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -154407,9 +159158,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [51377] = 2, - ACTIONS(10968), 12, + [54413] = 2, + ACTIONS(10905), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154422,7 +159174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 43, + ACTIONS(10903), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -154437,8 +159189,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -154465,9 +159217,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [51437] = 2, - ACTIONS(10972), 12, + [54474] = 2, + ACTIONS(10909), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154480,7 +159233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 43, + ACTIONS(10907), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -154495,8 +159248,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -154523,9 +159276,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [51497] = 2, - ACTIONS(10976), 12, + [54535] = 2, + ACTIONS(11063), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154538,7 +159292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 43, + ACTIONS(11061), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -154553,11 +159307,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -154581,9 +159335,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [51557] = 2, - ACTIONS(10980), 12, + [54596] = 2, + ACTIONS(10913), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154596,7 +159351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 43, + ACTIONS(10911), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -154611,8 +159366,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -154639,9 +159394,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [51617] = 2, - ACTIONS(10984), 12, + [54657] = 2, + ACTIONS(10917), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154654,7 +159410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 43, + ACTIONS(10915), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -154669,8 +159425,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -154697,9 +159453,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [51677] = 2, - ACTIONS(11000), 12, + [54718] = 2, + ACTIONS(10997), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154712,7 +159469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 43, + ACTIONS(10995), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -154727,8 +159484,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -154755,9 +159512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [51737] = 2, - ACTIONS(10988), 12, + [54779] = 2, + ACTIONS(10921), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154770,7 +159528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 43, + ACTIONS(10919), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -154785,8 +159543,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -154813,9 +159571,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [51797] = 2, - ACTIONS(10992), 12, + [54840] = 2, + ACTIONS(10925), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154828,7 +159587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 43, + ACTIONS(10923), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -154843,8 +159602,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -154871,9 +159630,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [51857] = 2, - ACTIONS(10996), 12, + [54901] = 2, + ACTIONS(10929), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154886,7 +159646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 43, + ACTIONS(10927), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -154901,8 +159661,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -154929,9 +159689,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [51917] = 2, - ACTIONS(11004), 12, + [54962] = 2, + ACTIONS(11031), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154944,7 +159705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 43, + ACTIONS(11029), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -154959,11 +159720,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -154987,9 +159748,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [51977] = 2, - ACTIONS(10710), 12, + [55023] = 2, + ACTIONS(10933), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155002,7 +159764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 43, + ACTIONS(10931), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -155045,9 +159807,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [52037] = 2, - ACTIONS(10928), 12, + [55084] = 2, + ACTIONS(10937), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155060,7 +159823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 43, + ACTIONS(10935), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -155076,10 +159839,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -155103,9 +159866,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [52097] = 2, - ACTIONS(10924), 12, + [55145] = 2, + ACTIONS(10941), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155118,7 +159882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 43, + ACTIONS(10939), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -155134,10 +159898,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -155161,9 +159925,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [52157] = 2, - ACTIONS(10714), 12, + [55206] = 2, + ACTIONS(10945), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155176,7 +159941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 43, + ACTIONS(10943), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -155219,9 +159984,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [52217] = 2, - ACTIONS(10718), 12, + [55267] = 2, + ACTIONS(10949), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155234,7 +160000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 43, + ACTIONS(10947), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -155277,9 +160043,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [52277] = 2, - ACTIONS(10722), 12, + [55328] = 2, + ACTIONS(10849), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155292,7 +160059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 43, + ACTIONS(10847), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -155335,9 +160102,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [52337] = 2, - ACTIONS(10802), 12, + [55389] = 2, + ACTIONS(10953), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155350,7 +160118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 43, + ACTIONS(10951), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -155393,9 +160161,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [52397] = 2, - ACTIONS(10674), 12, + [55450] = 2, + ACTIONS(10957), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155408,7 +160177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 43, + ACTIONS(10955), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -155451,9 +160220,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [52457] = 2, - ACTIONS(10726), 12, + [55511] = 2, + ACTIONS(10961), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155466,7 +160236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 43, + ACTIONS(10959), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -155509,38 +160279,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [55572] = 5, + ACTIONS(11398), 1, aux_sym__text_token3, - [52517] = 2, - ACTIONS(10730), 12, + ACTIONS(11395), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(1553), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10705), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10728), 43, + ACTIONS(10703), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -155567,9 +160342,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [52577] = 2, - ACTIONS(10920), 12, + aux_sym_alpine_js_token1, + [55639] = 2, + ACTIONS(10965), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155582,7 +160357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 43, + ACTIONS(10963), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -155598,10 +160373,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -155625,9 +160400,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [52637] = 2, - ACTIONS(10734), 12, + [55700] = 2, + ACTIONS(10969), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155640,7 +160416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 43, + ACTIONS(10967), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -155683,9 +160459,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [52697] = 2, - ACTIONS(10738), 12, + [55761] = 2, + ACTIONS(11151), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155698,7 +160475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 43, + ACTIONS(11149), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -155714,7 +160491,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -155723,6 +160499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -155741,9 +160518,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [52757] = 2, - ACTIONS(10742), 12, + [55822] = 2, + ACTIONS(10973), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155756,7 +160534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 43, + ACTIONS(10971), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -155799,9 +160577,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [52817] = 2, - ACTIONS(10746), 12, + [55883] = 2, + ACTIONS(10977), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155814,7 +160593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 43, + ACTIONS(10975), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -155857,9 +160636,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [52877] = 2, - ACTIONS(10750), 12, + [55944] = 2, + ACTIONS(11055), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155872,7 +160652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 43, + ACTIONS(11053), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -155888,10 +160668,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -155915,9 +160695,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [52937] = 2, - ACTIONS(10754), 12, + [56005] = 2, + ACTIONS(10981), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155930,7 +160711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 43, + ACTIONS(10979), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -155973,9 +160754,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [52997] = 2, - ACTIONS(10916), 12, + [56066] = 2, + ACTIONS(11051), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155988,7 +160770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 43, + ACTIONS(11049), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -156031,9 +160813,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [53057] = 2, - ACTIONS(10758), 12, + [56127] = 2, + ACTIONS(10985), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156046,7 +160829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 43, + ACTIONS(10983), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -156089,9 +160872,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [53117] = 2, - ACTIONS(10762), 12, + [56188] = 2, + ACTIONS(10989), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156104,7 +160888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 43, + ACTIONS(10987), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -156147,9 +160931,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [53177] = 2, - ACTIONS(10766), 12, + [56249] = 2, + ACTIONS(10993), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156162,7 +160947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 43, + ACTIONS(10991), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -156205,9 +160990,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [53237] = 2, - ACTIONS(10770), 12, + [56310] = 2, + ACTIONS(11087), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156220,7 +161006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 43, + ACTIONS(11085), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -156263,9 +161049,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [53297] = 2, - ACTIONS(10774), 12, + [56371] = 2, + ACTIONS(11001), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156278,7 +161065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 43, + ACTIONS(10999), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -156321,9 +161108,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [53357] = 2, - ACTIONS(10778), 12, + [56432] = 2, + ACTIONS(11005), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156336,7 +161124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 43, + ACTIONS(11003), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -156379,9 +161167,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [53417] = 2, - ACTIONS(10782), 12, + [56493] = 2, + ACTIONS(11009), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156394,7 +161183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 43, + ACTIONS(11007), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -156437,9 +161226,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [53477] = 2, - ACTIONS(10786), 12, + [56554] = 2, + ACTIONS(11013), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156452,7 +161242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 43, + ACTIONS(11011), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -156495,9 +161285,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [53537] = 2, - ACTIONS(10790), 12, + [56615] = 2, + ACTIONS(11017), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156510,7 +161301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 43, + ACTIONS(11015), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -156553,42 +161344,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [53597] = 5, - ACTIONS(11219), 1, - aux_sym__text_token3, - ACTIONS(11216), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(1535), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10536), 9, + [56676] = 2, + ACTIONS(11021), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 41, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11019), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -156615,8 +161403,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [53663] = 2, - ACTIONS(10794), 12, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [56737] = 2, + ACTIONS(11025), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156629,7 +161419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 43, + ACTIONS(11023), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -156672,9 +161462,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [53723] = 2, - ACTIONS(10798), 12, + [56798] = 2, + ACTIONS(11031), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156687,7 +161478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 43, + ACTIONS(11029), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -156730,9 +161521,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [53783] = 2, - ACTIONS(10936), 12, + [56859] = 2, + ACTIONS(11035), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156745,7 +161537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 43, + ACTIONS(11033), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -156761,6 +161553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -156769,7 +161562,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -156788,9 +161580,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [53843] = 2, - ACTIONS(10806), 12, + [56920] = 2, + ACTIONS(11039), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156803,7 +161596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 43, + ACTIONS(11037), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -156846,9 +161639,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [53903] = 2, - ACTIONS(10810), 12, + [56981] = 2, + ACTIONS(11043), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156861,7 +161655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 43, + ACTIONS(11041), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -156904,9 +161698,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [53963] = 2, - ACTIONS(10912), 12, + [57042] = 2, + ACTIONS(11047), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156919,65 +161714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 43, - sym_comment, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATendproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [54023] = 2, - ACTIONS(10814), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10812), 43, + ACTIONS(11045), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -157020,9 +161757,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [54083] = 2, - ACTIONS(10908), 12, + [57103] = 2, + ACTIONS(11051), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157035,7 +161773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 43, + ACTIONS(11049), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -157051,10 +161789,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -157078,9 +161816,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [54143] = 2, - ACTIONS(10818), 12, + [57164] = 2, + ACTIONS(11055), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157093,7 +161832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 43, + ACTIONS(11053), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -157136,9 +161875,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [54203] = 2, - ACTIONS(10824), 12, + [57225] = 2, + ACTIONS(11059), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157151,7 +161891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 43, + ACTIONS(11057), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -157194,9 +161934,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [54263] = 2, - ACTIONS(10828), 12, + [57286] = 2, + ACTIONS(11063), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157209,7 +161950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 43, + ACTIONS(11061), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -157252,9 +161993,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [54323] = 2, - ACTIONS(10832), 12, + [57347] = 2, + ACTIONS(11067), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157267,7 +162009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 43, + ACTIONS(11065), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -157310,9 +162052,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [54383] = 2, - ACTIONS(10836), 12, + [57408] = 2, + ACTIONS(11071), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157325,7 +162068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 43, + ACTIONS(11069), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -157368,9 +162111,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [54443] = 2, - ACTIONS(10840), 12, + [57469] = 2, + ACTIONS(11075), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157383,7 +162127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 43, + ACTIONS(11073), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -157426,9 +162170,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [54503] = 2, - ACTIONS(10678), 12, + [57530] = 2, + ACTIONS(11079), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157441,7 +162186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 43, + ACTIONS(11077), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -157484,9 +162229,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [54563] = 2, - ACTIONS(10844), 12, + [57591] = 2, + ACTIONS(11083), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157499,7 +162245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 43, + ACTIONS(11081), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -157542,9 +162288,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [54623] = 2, - ACTIONS(10848), 12, + [57652] = 2, + ACTIONS(11155), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157557,7 +162304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 43, + ACTIONS(11153), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -157600,9 +162347,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [54683] = 2, - ACTIONS(10852), 12, + [57713] = 2, + ACTIONS(11091), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157615,7 +162363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 43, + ACTIONS(11089), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -157658,9 +162406,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [54743] = 2, - ACTIONS(10856), 12, + [57774] = 2, + ACTIONS(11095), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157673,7 +162422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 43, + ACTIONS(11093), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -157716,9 +162465,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [54803] = 2, - ACTIONS(10860), 12, + [57835] = 2, + ACTIONS(11099), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157731,7 +162481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 43, + ACTIONS(11097), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -157774,9 +162524,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [54863] = 2, - ACTIONS(10864), 12, + [57896] = 2, + ACTIONS(11103), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157789,7 +162540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 43, + ACTIONS(11101), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -157832,9 +162583,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [54923] = 2, - ACTIONS(10868), 12, + [57957] = 2, + ACTIONS(11107), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157847,7 +162599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 43, + ACTIONS(11105), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -157890,9 +162642,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [54983] = 2, - ACTIONS(10872), 12, + [58018] = 2, + ACTIONS(11111), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157905,7 +162658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 43, + ACTIONS(11109), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -157948,9 +162701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [55043] = 2, - ACTIONS(10876), 12, + [58079] = 2, + ACTIONS(11115), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157963,7 +162717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 43, + ACTIONS(11113), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -158006,9 +162760,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [55103] = 2, - ACTIONS(10880), 12, + [58140] = 2, + ACTIONS(11119), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158021,7 +162776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 43, + ACTIONS(11117), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -158064,9 +162819,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [55163] = 2, - ACTIONS(10884), 12, + [58201] = 2, + ACTIONS(11123), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158079,7 +162835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 43, + ACTIONS(11121), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -158122,9 +162878,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [55223] = 2, - ACTIONS(11024), 12, + [58262] = 2, + ACTIONS(11127), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158137,7 +162894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 43, + ACTIONS(11125), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -158180,9 +162937,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [55283] = 2, - ACTIONS(10888), 12, + [58323] = 2, + ACTIONS(11131), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158195,7 +162953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 43, + ACTIONS(11129), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -158238,9 +162996,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [55343] = 2, - ACTIONS(10892), 12, + [58384] = 2, + ACTIONS(11135), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158253,7 +163012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 43, + ACTIONS(11133), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -158296,9 +163055,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [55403] = 2, - ACTIONS(10896), 12, + [58445] = 2, + ACTIONS(11197), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158311,7 +163071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 43, + ACTIONS(11195), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -158327,7 +163087,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -158336,6 +163095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -158354,9 +163114,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [55463] = 2, - ACTIONS(10900), 12, + [58506] = 2, + ACTIONS(11139), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158369,7 +163130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 43, + ACTIONS(11137), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -158412,9 +163173,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [55523] = 2, - ACTIONS(10904), 12, + [58567] = 2, + ACTIONS(11143), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158427,7 +163189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 43, + ACTIONS(11141), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -158470,9 +163232,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [55583] = 2, - ACTIONS(10908), 12, + [58628] = 2, + ACTIONS(11147), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158485,7 +163248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 43, + ACTIONS(11145), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -158528,9 +163291,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [55643] = 2, - ACTIONS(10912), 12, + [58689] = 2, + ACTIONS(11187), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158543,7 +163307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 43, + ACTIONS(11185), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -158586,9 +163350,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [55703] = 2, - ACTIONS(10916), 12, + [58750] = 2, + ACTIONS(11159), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158601,7 +163366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 43, + ACTIONS(11157), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -158644,9 +163409,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [55763] = 2, - ACTIONS(10920), 12, + [58811] = 2, + ACTIONS(11163), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158659,7 +163425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 43, + ACTIONS(11161), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -158702,9 +163468,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [55823] = 2, - ACTIONS(10924), 12, + [58872] = 2, + ACTIONS(11167), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158717,7 +163484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 43, + ACTIONS(11165), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -158760,9 +163527,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [55883] = 2, - ACTIONS(10928), 12, + [58933] = 2, + ACTIONS(11171), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158775,7 +163543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 43, + ACTIONS(11169), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -158818,9 +163586,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [55943] = 2, - ACTIONS(10932), 12, + [58994] = 2, + ACTIONS(11175), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158833,7 +163602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 43, + ACTIONS(11173), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -158876,9 +163645,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [56003] = 2, - ACTIONS(10940), 12, + [59055] = 2, + ACTIONS(11179), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158891,7 +163661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 43, + ACTIONS(11177), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -158934,9 +163704,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [56063] = 2, - ACTIONS(10944), 12, + [59116] = 2, + ACTIONS(11183), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158949,7 +163720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 43, + ACTIONS(11181), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -158992,9 +163763,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [56123] = 2, - ACTIONS(10948), 12, + [59177] = 2, + ACTIONS(10853), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159007,7 +163779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 43, + ACTIONS(10851), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -159023,11 +163795,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -159050,9 +163822,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [56183] = 2, - ACTIONS(10952), 12, + [59238] = 2, + ACTIONS(11047), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159065,7 +163838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 43, + ACTIONS(11045), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -159081,10 +163854,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -159108,9 +163881,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [56243] = 2, - ACTIONS(10956), 12, + [59299] = 2, + ACTIONS(11043), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159123,7 +163897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 43, + ACTIONS(11041), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -159139,10 +163913,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -159166,9 +163940,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [56303] = 2, - ACTIONS(10960), 12, + [59360] = 2, + ACTIONS(10885), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159181,7 +163956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 43, + ACTIONS(10883), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -159197,11 +163972,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -159224,9 +163999,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [56363] = 2, - ACTIONS(10964), 12, + [59421] = 2, + ACTIONS(10889), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159239,7 +164015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 43, + ACTIONS(10887), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -159255,11 +164031,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -159282,9 +164058,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [56423] = 2, - ACTIONS(11014), 12, + [59482] = 2, + ACTIONS(10893), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159297,7 +164074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 43, + ACTIONS(10891), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -159317,11 +164094,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -159340,9 +164117,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [56483] = 2, - ACTIONS(10968), 12, + [59543] = 2, + ACTIONS(10897), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159355,7 +164133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 43, + ACTIONS(10895), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -159371,11 +164149,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -159398,9 +164176,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [56543] = 2, - ACTIONS(10972), 12, + [59604] = 2, + ACTIONS(10901), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159413,7 +164192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 43, + ACTIONS(10899), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -159429,11 +164208,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -159456,9 +164235,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [56603] = 2, - ACTIONS(10976), 12, + [59665] = 2, + ACTIONS(10905), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159471,7 +164251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 43, + ACTIONS(10903), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -159487,11 +164267,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -159514,9 +164294,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [56663] = 2, - ACTIONS(10980), 12, + [59726] = 2, + ACTIONS(10909), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159529,7 +164310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 43, + ACTIONS(10907), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -159545,11 +164326,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -159572,9 +164353,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [56723] = 2, - ACTIONS(10984), 12, + [59787] = 2, + ACTIONS(11039), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159587,7 +164369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 43, + ACTIONS(11037), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -159603,10 +164385,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -159630,9 +164412,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [56783] = 2, - ACTIONS(11000), 12, + [59848] = 2, + ACTIONS(10913), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159645,7 +164428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 43, + ACTIONS(10911), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -159661,11 +164444,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -159688,9 +164471,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [56843] = 2, - ACTIONS(10988), 12, + [59909] = 2, + ACTIONS(10917), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159703,7 +164487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 43, + ACTIONS(10915), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -159719,11 +164503,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -159746,9 +164530,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [56903] = 2, - ACTIONS(10992), 12, + [59970] = 2, + ACTIONS(10997), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159761,7 +164546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 43, + ACTIONS(10995), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -159777,11 +164562,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -159804,9 +164589,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [56963] = 2, - ACTIONS(10996), 12, + [60031] = 2, + ACTIONS(10921), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159819,7 +164605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 43, + ACTIONS(10919), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -159835,11 +164621,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -159862,9 +164648,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [57023] = 2, - ACTIONS(11004), 12, + [60092] = 2, + ACTIONS(10925), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159877,7 +164664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 43, + ACTIONS(10923), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -159893,11 +164680,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -159920,9 +164707,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [57083] = 2, - ACTIONS(10710), 12, + [60153] = 2, + ACTIONS(10929), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159935,7 +164723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 43, + ACTIONS(10927), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -159978,9 +164766,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [57143] = 2, - ACTIONS(10876), 12, + [60214] = 2, + ACTIONS(10933), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159993,7 +164782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 43, + ACTIONS(10931), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -160012,8 +164801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -160036,9 +164825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [57203] = 2, - ACTIONS(10900), 12, + [60275] = 2, + ACTIONS(10937), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160051,7 +164841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 43, + ACTIONS(10935), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -160070,8 +164860,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -160094,9 +164884,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [57263] = 2, - ACTIONS(10714), 12, + [60336] = 2, + ACTIONS(10941), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160109,7 +164900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 43, + ACTIONS(10939), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -160152,9 +164943,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [57323] = 2, - ACTIONS(10718), 12, + [60397] = 2, + ACTIONS(10945), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160167,7 +164959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 43, + ACTIONS(10943), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -160210,9 +165002,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [57383] = 2, - ACTIONS(10722), 12, + [60458] = 2, + ACTIONS(10949), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160225,7 +165018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 43, + ACTIONS(10947), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -160268,9 +165061,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [57443] = 2, - ACTIONS(10802), 12, + [60519] = 2, + ACTIONS(10849), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160283,7 +165077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 43, + ACTIONS(10847), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -160326,9 +165120,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [57503] = 2, - ACTIONS(10674), 12, + [60580] = 2, + ACTIONS(10953), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160341,7 +165136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 43, + ACTIONS(10951), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -160384,9 +165179,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [57563] = 2, - ACTIONS(10726), 12, + [60641] = 2, + ACTIONS(10957), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160399,7 +165195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 43, + ACTIONS(10955), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -160442,9 +165238,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [57623] = 2, - ACTIONS(10730), 12, + [60702] = 2, + ACTIONS(10961), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160457,7 +165254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 43, + ACTIONS(10959), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -160500,9 +165297,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [57683] = 2, - ACTIONS(10896), 12, + [60763] = 2, + ACTIONS(10981), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160515,7 +165313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 43, + ACTIONS(10979), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -160558,9 +165356,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [57743] = 2, - ACTIONS(10734), 12, + [60824] = 2, + ACTIONS(10965), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160573,7 +165372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 43, + ACTIONS(10963), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -160616,9 +165415,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [57803] = 2, - ACTIONS(10738), 12, + [60885] = 2, + ACTIONS(10969), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160631,7 +165431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 43, + ACTIONS(10967), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -160674,9 +165474,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [57863] = 2, - ACTIONS(10742), 12, + [60946] = 2, + ACTIONS(11151), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160689,7 +165490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 43, + ACTIONS(11149), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -160709,12 +165510,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -160732,9 +165533,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [57923] = 2, - ACTIONS(10746), 12, + [61007] = 2, + ACTIONS(10973), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160747,7 +165549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 43, + ACTIONS(10971), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -160790,9 +165592,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [57983] = 2, - ACTIONS(10750), 12, + [61068] = 2, + ACTIONS(10977), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160805,7 +165608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 43, + ACTIONS(10975), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -160848,9 +165651,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [58043] = 2, - ACTIONS(10754), 12, + [61129] = 2, + ACTIONS(10981), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160863,7 +165667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 43, + ACTIONS(10979), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -160906,9 +165710,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [58103] = 2, - ACTIONS(10758), 12, + [61190] = 2, + ACTIONS(11035), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160921,7 +165726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 43, + ACTIONS(11033), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -160940,8 +165745,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -160964,9 +165769,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [58163] = 2, - ACTIONS(10762), 12, + [61251] = 2, + ACTIONS(10985), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160979,7 +165785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 43, + ACTIONS(10983), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -161022,9 +165828,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [58223] = 2, - ACTIONS(10766), 12, + [61312] = 2, + ACTIONS(10989), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161037,7 +165844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 43, + ACTIONS(10987), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -161080,9 +165887,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [58283] = 2, - ACTIONS(10770), 12, + [61373] = 2, + ACTIONS(10993), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161095,7 +165903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 43, + ACTIONS(10991), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -161138,9 +165946,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [58343] = 2, - ACTIONS(10774), 12, + [61434] = 2, + ACTIONS(11087), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161153,7 +165962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 43, + ACTIONS(11085), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -161196,9 +166005,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [58403] = 2, - ACTIONS(10778), 12, + [61495] = 2, + ACTIONS(11001), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161211,7 +166021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 43, + ACTIONS(10999), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -161254,9 +166064,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [58463] = 2, - ACTIONS(10782), 12, + [61556] = 2, + ACTIONS(11005), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161269,7 +166080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 43, + ACTIONS(11003), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -161312,9 +166123,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [58523] = 2, - ACTIONS(10786), 12, + [61617] = 2, + ACTIONS(11009), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161327,7 +166139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 43, + ACTIONS(11007), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -161370,9 +166182,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [58583] = 2, - ACTIONS(10790), 12, + [61678] = 2, + ACTIONS(11013), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161385,7 +166198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 43, + ACTIONS(11011), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -161428,9 +166241,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [58643] = 2, - ACTIONS(10734), 12, + [61739] = 2, + ACTIONS(11017), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161443,7 +166257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 43, + ACTIONS(11015), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -161463,12 +166277,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -161486,9 +166300,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [58703] = 2, - ACTIONS(10794), 12, + [61800] = 2, + ACTIONS(11021), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161501,7 +166316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 43, + ACTIONS(11019), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -161544,9 +166359,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [58763] = 2, - ACTIONS(10798), 12, + [61861] = 2, + ACTIONS(11025), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161559,7 +166375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 43, + ACTIONS(11023), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -161602,9 +166418,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [58823] = 2, - ACTIONS(10936), 12, + [61922] = 2, + ACTIONS(11031), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161617,7 +166434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 43, + ACTIONS(11029), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -161637,12 +166454,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -161660,9 +166477,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [58883] = 2, - ACTIONS(10806), 12, + [61983] = 2, + ACTIONS(11035), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161675,7 +166493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 43, + ACTIONS(11033), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -161718,9 +166536,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [58943] = 2, - ACTIONS(10810), 12, + [62044] = 2, + ACTIONS(11039), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161733,7 +166552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 43, + ACTIONS(11037), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -161776,9 +166595,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [59003] = 2, - ACTIONS(10814), 12, + [62105] = 2, + ACTIONS(11043), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161791,7 +166611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 43, + ACTIONS(11041), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -161834,9 +166654,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [59063] = 2, - ACTIONS(10892), 12, + [62166] = 2, + ACTIONS(11047), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161849,7 +166670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 43, + ACTIONS(11045), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -161868,8 +166689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -161892,9 +166713,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [59123] = 2, - ACTIONS(10818), 12, + [62227] = 2, + ACTIONS(11051), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161907,7 +166729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 43, + ACTIONS(11049), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -161950,9 +166772,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [59183] = 2, - ACTIONS(10824), 12, + [62288] = 2, + ACTIONS(11055), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161965,7 +166788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 43, + ACTIONS(11053), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -162008,9 +166831,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [59243] = 2, - ACTIONS(10828), 12, + [62349] = 2, + ACTIONS(11059), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162023,7 +166847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 43, + ACTIONS(11057), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -162066,9 +166890,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [59303] = 2, - ACTIONS(10832), 12, + [62410] = 2, + ACTIONS(11063), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162081,7 +166906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 43, + ACTIONS(11061), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -162124,9 +166949,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [59363] = 2, - ACTIONS(10836), 12, + [62471] = 2, + ACTIONS(11067), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162139,7 +166965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 43, + ACTIONS(11065), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -162182,9 +167008,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [59423] = 2, - ACTIONS(10840), 12, + [62532] = 2, + ACTIONS(11071), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162197,7 +167024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 43, + ACTIONS(11069), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -162240,9 +167067,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [59483] = 2, - ACTIONS(10678), 12, + [62593] = 2, + ACTIONS(11075), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162255,7 +167083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 43, + ACTIONS(11073), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -162298,9 +167126,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [59543] = 2, - ACTIONS(10844), 12, + [62654] = 2, + ACTIONS(11079), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162313,7 +167142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 43, + ACTIONS(11077), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -162356,9 +167185,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [59603] = 2, - ACTIONS(10848), 12, + [62715] = 2, + ACTIONS(11083), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162371,7 +167201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 43, + ACTIONS(11081), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -162414,9 +167244,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [59663] = 2, - ACTIONS(10852), 12, + [62776] = 2, + ACTIONS(11155), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162429,7 +167260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 43, + ACTIONS(11153), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -162472,9 +167303,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [59723] = 2, - ACTIONS(10856), 12, + [62837] = 2, + ACTIONS(11091), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162487,7 +167319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 43, + ACTIONS(11089), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -162530,9 +167362,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [59783] = 2, - ACTIONS(10860), 12, + [62898] = 2, + ACTIONS(11095), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162545,7 +167378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 43, + ACTIONS(11093), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -162588,9 +167421,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [59843] = 2, - ACTIONS(10864), 12, + [62959] = 2, + ACTIONS(11099), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162603,7 +167437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 43, + ACTIONS(11097), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -162646,9 +167480,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [59903] = 2, - ACTIONS(10868), 12, + [63020] = 2, + ACTIONS(11103), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162661,7 +167496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 43, + ACTIONS(11101), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -162704,9 +167539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [59963] = 2, - ACTIONS(10872), 12, + [63081] = 2, + ACTIONS(11107), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162719,7 +167555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 43, + ACTIONS(11105), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -162762,9 +167598,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [60023] = 2, - ACTIONS(10876), 12, + [63142] = 2, + ACTIONS(11111), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162777,7 +167614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 43, + ACTIONS(11109), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -162820,9 +167657,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [60083] = 2, - ACTIONS(10880), 12, + [63203] = 2, + ACTIONS(11115), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162835,7 +167673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 43, + ACTIONS(11113), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -162878,9 +167716,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [60143] = 2, - ACTIONS(10884), 12, + [63264] = 2, + ACTIONS(11119), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162893,7 +167732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 43, + ACTIONS(11117), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -162936,9 +167775,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [60203] = 2, - ACTIONS(11024), 12, + [63325] = 2, + ACTIONS(11123), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162951,7 +167791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 43, + ACTIONS(11121), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -162994,9 +167834,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [60263] = 2, - ACTIONS(10888), 12, + [63386] = 2, + ACTIONS(11127), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163009,7 +167850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 43, + ACTIONS(11125), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -163052,9 +167893,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [60323] = 2, - ACTIONS(10892), 12, + [63447] = 2, + ACTIONS(11131), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163067,7 +167909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 43, + ACTIONS(11129), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -163110,9 +167952,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [60383] = 2, - ACTIONS(10896), 12, + [63508] = 2, + ACTIONS(11135), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163125,7 +167968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 43, + ACTIONS(11133), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -163168,9 +168011,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [60443] = 2, - ACTIONS(10900), 12, + [63569] = 2, + ACTIONS(11197), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163183,7 +168027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 43, + ACTIONS(11195), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -163203,12 +168047,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -163226,9 +168070,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [60503] = 2, - ACTIONS(10904), 12, + [63630] = 2, + ACTIONS(11139), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163241,7 +168086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 43, + ACTIONS(11137), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -163284,9 +168129,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [60563] = 2, - ACTIONS(10908), 12, + [63691] = 2, + ACTIONS(11143), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163299,7 +168145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 43, + ACTIONS(11141), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -163342,9 +168188,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [60623] = 2, - ACTIONS(10912), 12, + [63752] = 2, + ACTIONS(11147), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163357,7 +168204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 43, + ACTIONS(11145), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -163400,9 +168247,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [60683] = 2, - ACTIONS(10916), 12, + [63813] = 2, + ACTIONS(11187), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163415,7 +168263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 43, + ACTIONS(11185), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -163458,9 +168306,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [60743] = 2, - ACTIONS(10920), 12, + [63874] = 2, + ACTIONS(11159), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163473,7 +168322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 43, + ACTIONS(11157), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -163516,9 +168365,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [60803] = 2, - ACTIONS(10924), 12, + [63935] = 2, + ACTIONS(11163), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163531,7 +168381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 43, + ACTIONS(11161), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -163574,9 +168424,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [60863] = 2, - ACTIONS(10928), 12, + [63996] = 2, + ACTIONS(11167), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163589,7 +168440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 43, + ACTIONS(11165), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -163632,9 +168483,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [60923] = 2, - ACTIONS(10932), 12, + [64057] = 2, + ACTIONS(11171), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163647,7 +168499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 43, + ACTIONS(11169), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -163690,9 +168542,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [60983] = 2, - ACTIONS(10940), 12, + [64118] = 2, + ACTIONS(11175), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163705,7 +168558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 43, + ACTIONS(11173), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -163748,9 +168601,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [61043] = 2, - ACTIONS(10944), 12, + [64179] = 2, + ACTIONS(11179), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163763,7 +168617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 43, + ACTIONS(11177), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -163806,9 +168660,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [61103] = 2, - ACTIONS(10948), 12, + [64240] = 2, + ACTIONS(11183), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163821,7 +168676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 43, + ACTIONS(11181), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -163864,9 +168719,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [61163] = 2, - ACTIONS(10952), 12, + [64301] = 2, + ACTIONS(10853), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163879,7 +168735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 43, + ACTIONS(10851), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -163899,10 +168755,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -163922,9 +168778,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [61223] = 2, - ACTIONS(10956), 12, + [64362] = 2, + ACTIONS(11001), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163937,7 +168794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 43, + ACTIONS(10999), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -163956,8 +168813,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -163980,9 +168837,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [61283] = 2, - ACTIONS(10960), 12, + [64423] = 2, + ACTIONS(11025), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163995,7 +168853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 43, + ACTIONS(11023), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -164014,8 +168872,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -164038,9 +168896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [61343] = 2, - ACTIONS(10964), 12, + [64484] = 2, + ACTIONS(10885), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164053,7 +168912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 43, + ACTIONS(10883), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -164073,10 +168932,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -164096,9 +168955,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [61403] = 2, - ACTIONS(11014), 12, + [64545] = 2, + ACTIONS(10889), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164111,7 +168971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 43, + ACTIONS(10887), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -164134,9 +168994,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -164154,9 +169014,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [61463] = 2, - ACTIONS(10968), 12, + [64606] = 2, + ACTIONS(10893), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164169,7 +169030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 43, + ACTIONS(10891), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -164189,10 +169050,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -164212,9 +169073,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [61523] = 2, - ACTIONS(10972), 12, + [64667] = 2, + ACTIONS(10897), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164227,7 +169089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 43, + ACTIONS(10895), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -164247,10 +169109,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -164270,9 +169132,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [61583] = 2, - ACTIONS(10976), 12, + [64728] = 2, + ACTIONS(10901), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164285,7 +169148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 43, + ACTIONS(10899), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -164305,10 +169168,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -164328,9 +169191,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [61643] = 2, - ACTIONS(10980), 12, + [64789] = 2, + ACTIONS(10905), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164343,7 +169207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 43, + ACTIONS(10903), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -164363,10 +169227,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -164386,9 +169250,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [61703] = 2, - ACTIONS(10984), 12, + [64850] = 2, + ACTIONS(10909), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164401,7 +169266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 43, + ACTIONS(10907), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -164421,10 +169286,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -164444,9 +169309,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [61763] = 2, - ACTIONS(11000), 12, + [64911] = 2, + ACTIONS(10869), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164459,7 +169325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 43, + ACTIONS(10867), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -164474,12 +169340,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -164502,9 +169368,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [61823] = 2, - ACTIONS(10988), 12, + [64972] = 2, + ACTIONS(10913), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164517,7 +169384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 43, + ACTIONS(10911), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -164537,10 +169404,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -164560,9 +169427,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [61883] = 2, - ACTIONS(10992), 12, + [65033] = 2, + ACTIONS(10917), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164575,7 +169443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 43, + ACTIONS(10915), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -164595,10 +169463,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -164618,9 +169486,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [61943] = 2, - ACTIONS(10996), 12, + [65094] = 2, + ACTIONS(10997), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164633,7 +169502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 43, + ACTIONS(10995), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -164653,10 +169522,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -164676,9 +169545,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [62003] = 2, - ACTIONS(11004), 12, + [65155] = 2, + ACTIONS(10921), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164691,7 +169561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 43, + ACTIONS(10919), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -164711,10 +169581,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -164734,9 +169604,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [62063] = 2, - ACTIONS(10710), 12, + [65216] = 2, + ACTIONS(10925), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164749,7 +169620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 43, + ACTIONS(10923), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -164792,9 +169663,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [62123] = 2, - ACTIONS(10888), 12, + [65277] = 2, + ACTIONS(10929), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164807,7 +169679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 43, + ACTIONS(10927), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -164826,11 +169698,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -164850,9 +169722,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [62183] = 2, - ACTIONS(11024), 12, + [65338] = 2, + ACTIONS(10933), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164865,7 +169738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 43, + ACTIONS(10931), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -164884,11 +169757,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -164908,9 +169781,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [62243] = 2, - ACTIONS(10714), 12, + [65399] = 2, + ACTIONS(10937), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164923,7 +169797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 43, + ACTIONS(10935), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -164966,9 +169840,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [62303] = 2, - ACTIONS(10718), 12, + [65460] = 2, + ACTIONS(10941), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164981,7 +169856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 43, + ACTIONS(10939), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -165024,9 +169899,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [62363] = 2, - ACTIONS(10722), 12, + [65521] = 2, + ACTIONS(10945), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165039,7 +169915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 43, + ACTIONS(10943), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -165082,9 +169958,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [62423] = 2, - ACTIONS(10802), 12, + [65582] = 2, + ACTIONS(10949), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165097,7 +169974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 43, + ACTIONS(10947), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -165140,9 +170017,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [62483] = 2, - ACTIONS(10884), 12, + [65643] = 2, + ACTIONS(11021), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165155,7 +170033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 43, + ACTIONS(11019), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -165198,9 +170076,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [62543] = 2, - ACTIONS(10726), 12, + [65704] = 2, + ACTIONS(10953), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165213,7 +170092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 43, + ACTIONS(10951), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -165256,9 +170135,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [62603] = 2, - ACTIONS(10730), 12, + [65765] = 2, + ACTIONS(10957), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165271,7 +170151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 43, + ACTIONS(10955), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -165314,9 +170194,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [62663] = 2, - ACTIONS(10880), 12, + [65826] = 2, + ACTIONS(10961), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165329,7 +170210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 43, + ACTIONS(10959), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -165348,11 +170229,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -165372,22 +170253,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [62723] = 2, - ACTIONS(10734), 12, + [65887] = 5, + ACTIONS(11404), 1, + aux_sym__text_token3, + ACTIONS(11401), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(1722), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10705), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10732), 43, + ACTIONS(10703), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -165396,10 +170283,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -165410,7 +170297,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -165430,9 +170316,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [62783] = 2, - ACTIONS(10738), 12, + aux_sym_alpine_js_token1, + [65954] = 2, + ACTIONS(10965), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165445,7 +170331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 43, + ACTIONS(10963), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -165488,9 +170374,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [62843] = 2, - ACTIONS(10742), 12, + [66015] = 2, + ACTIONS(10969), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165503,7 +170390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 43, + ACTIONS(10967), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -165546,9 +170433,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [62903] = 2, - ACTIONS(10746), 12, + [66076] = 2, + ACTIONS(11151), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165561,7 +170449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 43, + ACTIONS(11149), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -165584,10 +170472,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -165604,9 +170492,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [62963] = 2, - ACTIONS(10750), 12, + [66137] = 2, + ACTIONS(10973), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165619,7 +170508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 43, + ACTIONS(10971), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -165662,9 +170551,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [63023] = 2, - ACTIONS(10754), 12, + [66198] = 2, + ACTIONS(10977), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165677,7 +170567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 43, + ACTIONS(10975), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -165720,9 +170610,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [63083] = 2, - ACTIONS(10758), 12, + [66259] = 2, + ACTIONS(10981), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165735,7 +170626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 43, + ACTIONS(10979), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -165778,9 +170669,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [63143] = 2, - ACTIONS(10762), 12, + [66320] = 2, + ACTIONS(11017), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165793,7 +170685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 43, + ACTIONS(11015), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -165812,11 +170704,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -165836,9 +170728,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [63203] = 2, - ACTIONS(10766), 12, + [66381] = 2, + ACTIONS(10985), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165851,7 +170744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 43, + ACTIONS(10983), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -165894,9 +170787,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [63263] = 2, - ACTIONS(10770), 12, + [66442] = 2, + ACTIONS(10989), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165909,7 +170803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 43, + ACTIONS(10987), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -165952,9 +170846,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [63323] = 2, - ACTIONS(10774), 12, + [66503] = 2, + ACTIONS(10993), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165967,7 +170862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 43, + ACTIONS(10991), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -166010,9 +170905,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [63383] = 2, - ACTIONS(10778), 12, + [66564] = 2, + ACTIONS(11087), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166025,7 +170921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 43, + ACTIONS(11085), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -166068,9 +170964,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [63443] = 2, - ACTIONS(10782), 12, + [66625] = 2, + ACTIONS(11001), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166083,7 +170980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 43, + ACTIONS(10999), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -166126,9 +171023,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [63503] = 2, - ACTIONS(10786), 12, + [66686] = 2, + ACTIONS(11005), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166141,7 +171039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 43, + ACTIONS(11003), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -166184,9 +171082,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [63563] = 2, - ACTIONS(10790), 12, + [66747] = 2, + ACTIONS(11009), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166199,7 +171098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 43, + ACTIONS(11007), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -166242,27 +171141,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [63623] = 5, - ACTIONS(11225), 1, - aux_sym__text_token3, - ACTIONS(11222), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(1702), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10536), 9, + [66808] = 2, + ACTIONS(11013), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 41, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11011), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -166271,10 +171166,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -166285,6 +171180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -166304,8 +171200,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [63689] = 2, - ACTIONS(10794), 12, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [66869] = 2, + ACTIONS(11017), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166318,7 +171216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 43, + ACTIONS(11015), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -166361,9 +171259,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [63749] = 2, - ACTIONS(10798), 12, + [66930] = 2, + ACTIONS(11021), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166376,7 +171275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 43, + ACTIONS(11019), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -166419,9 +171318,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [63809] = 2, - ACTIONS(10936), 12, + [66991] = 2, + ACTIONS(11025), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166434,7 +171334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 43, + ACTIONS(11023), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -166457,10 +171357,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -166477,9 +171377,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [63869] = 2, - ACTIONS(10806), 12, + [67052] = 2, + ACTIONS(11031), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166492,7 +171393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 43, + ACTIONS(11029), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -166535,9 +171436,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [63929] = 2, - ACTIONS(10810), 12, + [67113] = 2, + ACTIONS(11035), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166550,7 +171452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 43, + ACTIONS(11033), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -166593,9 +171495,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [63989] = 2, - ACTIONS(10814), 12, + [67174] = 2, + ACTIONS(11039), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166608,7 +171511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 43, + ACTIONS(11037), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -166651,9 +171554,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [64049] = 2, - ACTIONS(10856), 12, + [67235] = 2, + ACTIONS(11043), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166666,7 +171570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 43, + ACTIONS(11041), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -166685,11 +171589,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -166709,9 +171613,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [64109] = 2, - ACTIONS(10818), 12, + [67296] = 2, + ACTIONS(11047), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166724,7 +171629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 43, + ACTIONS(11045), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -166767,9 +171672,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [64169] = 2, - ACTIONS(10824), 12, + [67357] = 2, + ACTIONS(11051), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166782,7 +171688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 43, + ACTIONS(11049), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -166825,9 +171731,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [64229] = 2, - ACTIONS(10828), 12, + [67418] = 2, + ACTIONS(11055), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166840,7 +171747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 43, + ACTIONS(11053), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -166883,9 +171790,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [64289] = 2, - ACTIONS(10832), 12, + [67479] = 2, + ACTIONS(11059), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166898,7 +171806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 43, + ACTIONS(11057), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -166941,9 +171849,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [64349] = 2, - ACTIONS(10836), 12, + [67540] = 2, + ACTIONS(11063), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166956,7 +171865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 43, + ACTIONS(11061), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -166999,9 +171908,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [64409] = 2, - ACTIONS(10840), 12, + [67601] = 2, + ACTIONS(11067), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167014,7 +171924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 43, + ACTIONS(11065), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -167057,9 +171967,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [64469] = 2, - ACTIONS(10678), 12, + [67662] = 2, + ACTIONS(11071), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167072,7 +171983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 43, + ACTIONS(11069), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -167115,9 +172026,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [64529] = 2, - ACTIONS(10844), 12, + [67723] = 2, + ACTIONS(11075), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167130,7 +172042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 43, + ACTIONS(11073), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -167173,9 +172085,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [64589] = 2, - ACTIONS(10848), 12, + [67784] = 2, + ACTIONS(11079), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167188,7 +172101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 43, + ACTIONS(11077), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -167231,9 +172144,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [64649] = 2, - ACTIONS(10852), 12, + [67845] = 2, + ACTIONS(11083), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167246,7 +172160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 43, + ACTIONS(11081), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -167289,9 +172203,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [64709] = 2, - ACTIONS(10856), 12, + [67906] = 2, + ACTIONS(11155), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167304,7 +172219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 43, + ACTIONS(11153), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -167347,9 +172262,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [64769] = 2, - ACTIONS(10860), 12, + [67967] = 2, + ACTIONS(11091), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167362,7 +172278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 43, + ACTIONS(11089), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -167405,9 +172321,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [64829] = 2, - ACTIONS(10864), 12, + [68028] = 2, + ACTIONS(11095), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167420,7 +172337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 43, + ACTIONS(11093), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -167463,9 +172380,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [64889] = 2, - ACTIONS(10868), 12, + [68089] = 2, + ACTIONS(11099), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167478,7 +172396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 43, + ACTIONS(11097), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -167521,9 +172439,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [64949] = 2, - ACTIONS(10872), 12, + [68150] = 2, + ACTIONS(11103), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167536,7 +172455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 43, + ACTIONS(11101), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -167579,9 +172498,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [65009] = 2, - ACTIONS(10876), 12, + [68211] = 2, + ACTIONS(11107), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167594,7 +172514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 43, + ACTIONS(11105), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -167637,9 +172557,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [65069] = 2, - ACTIONS(10880), 12, + [68272] = 2, + ACTIONS(11111), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167652,7 +172573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 43, + ACTIONS(11109), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -167695,9 +172616,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [65129] = 2, - ACTIONS(10884), 12, + [68333] = 2, + ACTIONS(11115), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167710,7 +172632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 43, + ACTIONS(11113), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -167753,9 +172675,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [65189] = 2, - ACTIONS(11024), 12, + [68394] = 2, + ACTIONS(11119), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167768,7 +172691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 43, + ACTIONS(11117), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -167811,9 +172734,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [65249] = 2, - ACTIONS(10888), 12, + [68455] = 2, + ACTIONS(11123), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167826,7 +172750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 43, + ACTIONS(11121), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -167869,9 +172793,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [65309] = 2, - ACTIONS(10892), 12, + [68516] = 2, + ACTIONS(11127), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167884,7 +172809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 43, + ACTIONS(11125), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -167927,9 +172852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [65369] = 2, - ACTIONS(10896), 12, + [68577] = 2, + ACTIONS(11131), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167942,7 +172868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 43, + ACTIONS(11129), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -167985,9 +172911,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [65429] = 2, - ACTIONS(10900), 12, + [68638] = 2, + ACTIONS(11135), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168000,7 +172927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 43, + ACTIONS(11133), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -168043,9 +172970,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [65489] = 2, - ACTIONS(10904), 12, + [68699] = 2, + ACTIONS(11197), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168058,7 +172986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 43, + ACTIONS(11195), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -168081,10 +173009,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -168101,9 +173029,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [65549] = 2, - ACTIONS(10908), 12, + [68760] = 2, + ACTIONS(11139), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168116,7 +173045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 43, + ACTIONS(11137), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -168159,9 +173088,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [65609] = 2, - ACTIONS(10912), 12, + [68821] = 2, + ACTIONS(11143), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168174,7 +173104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 43, + ACTIONS(11141), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -168217,9 +173147,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [65669] = 2, - ACTIONS(10916), 12, + [68882] = 2, + ACTIONS(11147), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168232,7 +173163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 43, + ACTIONS(11145), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -168275,9 +173206,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [65729] = 2, - ACTIONS(10920), 12, + [68943] = 2, + ACTIONS(11187), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168290,7 +173222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 43, + ACTIONS(11185), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -168333,9 +173265,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [65789] = 2, - ACTIONS(10924), 12, + [69004] = 2, + ACTIONS(11159), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168348,7 +173281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 43, + ACTIONS(11157), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -168391,9 +173324,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [65849] = 2, - ACTIONS(10928), 12, + [69065] = 2, + ACTIONS(11163), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168406,7 +173340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 43, + ACTIONS(11161), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -168449,9 +173383,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [65909] = 2, - ACTIONS(10932), 12, + [69126] = 2, + ACTIONS(11167), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168464,7 +173399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 43, + ACTIONS(11165), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -168507,9 +173442,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [65969] = 2, - ACTIONS(10940), 12, + [69187] = 2, + ACTIONS(11171), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168522,7 +173458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 43, + ACTIONS(11169), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -168565,9 +173501,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [66029] = 2, - ACTIONS(10944), 12, + [69248] = 2, + ACTIONS(11175), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168580,7 +173517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 43, + ACTIONS(11173), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -168623,9 +173560,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [66089] = 2, - ACTIONS(10948), 12, + [69309] = 2, + ACTIONS(11179), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168638,7 +173576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 43, + ACTIONS(11177), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -168681,9 +173619,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [66149] = 2, - ACTIONS(10952), 12, + [69370] = 2, + ACTIONS(11183), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168696,7 +173635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 43, + ACTIONS(11181), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -168739,9 +173678,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [66209] = 2, - ACTIONS(10956), 12, + [69431] = 2, + ACTIONS(10853), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168754,7 +173694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 43, + ACTIONS(10851), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -168777,7 +173717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -168797,9 +173737,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [66269] = 2, - ACTIONS(10960), 12, + [69492] = 2, + ACTIONS(11013), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168812,7 +173753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 43, + ACTIONS(11011), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -168831,11 +173772,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -168855,9 +173796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [66329] = 2, - ACTIONS(10964), 12, + [69553] = 2, + ACTIONS(11009), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168870,7 +173812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 43, + ACTIONS(11007), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -168889,11 +173831,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -168913,9 +173855,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [66389] = 2, - ACTIONS(11014), 12, + [69614] = 2, + ACTIONS(10885), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168928,7 +173871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 43, + ACTIONS(10883), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -168951,10 +173894,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -168971,9 +173914,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [66449] = 2, - ACTIONS(10968), 12, + [69675] = 2, + ACTIONS(10889), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168986,7 +173930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 43, + ACTIONS(10887), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -169009,7 +173953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -169029,9 +173973,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [66509] = 2, - ACTIONS(10972), 12, + [69736] = 2, + ACTIONS(10893), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169044,7 +173989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 43, + ACTIONS(10891), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -169067,7 +174012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -169087,9 +174032,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [66569] = 2, - ACTIONS(10976), 12, + [69797] = 2, + ACTIONS(10897), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169102,7 +174048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 43, + ACTIONS(10895), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -169125,7 +174071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -169145,9 +174091,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [66629] = 2, - ACTIONS(10980), 12, + [69858] = 2, + ACTIONS(10901), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169160,7 +174107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 43, + ACTIONS(10899), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -169183,7 +174130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -169203,9 +174150,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [66689] = 2, - ACTIONS(10984), 12, + [69919] = 2, + ACTIONS(10905), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169218,7 +174166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 43, + ACTIONS(10903), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -169241,7 +174189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -169261,9 +174209,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [66749] = 2, - ACTIONS(11000), 12, + [69980] = 2, + ACTIONS(10909), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169276,7 +174225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 43, + ACTIONS(10907), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -169299,7 +174248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -169319,9 +174268,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [66809] = 2, - ACTIONS(10988), 12, + [70041] = 2, + ACTIONS(11005), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169334,7 +174284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 43, + ACTIONS(11003), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -169353,11 +174303,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -169377,9 +174327,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [66869] = 2, - ACTIONS(10992), 12, + [70102] = 2, + ACTIONS(10913), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169392,7 +174343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 43, + ACTIONS(10911), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -169415,7 +174366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -169435,9 +174386,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [66929] = 2, - ACTIONS(10996), 12, + [70163] = 2, + ACTIONS(10917), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169450,7 +174402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 43, + ACTIONS(10915), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -169473,7 +174425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -169493,9 +174445,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [66989] = 2, - ACTIONS(11004), 12, + [70224] = 2, + ACTIONS(10997), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169508,7 +174461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 43, + ACTIONS(10995), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -169531,7 +174484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -169551,9 +174504,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [67049] = 2, - ACTIONS(10710), 12, + [70285] = 2, + ACTIONS(10921), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169566,7 +174520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 43, + ACTIONS(10919), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -169609,9 +174563,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [67109] = 2, - ACTIONS(10872), 12, + [70346] = 2, + ACTIONS(10925), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169624,7 +174579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 43, + ACTIONS(10923), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -169643,11 +174598,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -169667,9 +174622,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [67169] = 2, - ACTIONS(10868), 12, + [70407] = 2, + ACTIONS(10929), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169682,7 +174638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 43, + ACTIONS(10927), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -169701,11 +174657,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -169725,9 +174681,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [67229] = 2, - ACTIONS(10714), 12, + [70468] = 2, + ACTIONS(10933), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169740,7 +174697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 43, + ACTIONS(10931), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -169783,9 +174740,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [67289] = 2, - ACTIONS(10718), 12, + [70529] = 2, + ACTIONS(10937), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169798,7 +174756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 43, + ACTIONS(10935), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -169841,9 +174799,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [67349] = 2, - ACTIONS(10722), 12, + [70590] = 2, + ACTIONS(10941), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169856,7 +174815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 43, + ACTIONS(10939), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -169899,9 +174858,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [67409] = 2, - ACTIONS(10802), 12, + [70651] = 2, + ACTIONS(10945), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169914,7 +174874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 43, + ACTIONS(10943), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -169957,9 +174917,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [67469] = 2, - ACTIONS(10674), 12, + [70712] = 2, + ACTIONS(10949), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169972,7 +174933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 43, + ACTIONS(10947), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -170015,9 +174976,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [67529] = 2, - ACTIONS(10726), 12, + [70773] = 2, + ACTIONS(10849), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170030,7 +174992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 43, + ACTIONS(10847), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -170073,9 +175035,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [67589] = 2, - ACTIONS(10730), 12, + [70834] = 2, + ACTIONS(10953), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170088,7 +175051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 43, + ACTIONS(10951), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -170131,9 +175094,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [67649] = 2, - ACTIONS(10864), 12, + [70895] = 2, + ACTIONS(10957), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170146,7 +175110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 43, + ACTIONS(10955), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -170165,11 +175129,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -170189,9 +175153,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [67709] = 2, - ACTIONS(10734), 12, + [70956] = 2, + ACTIONS(10961), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170204,7 +175169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 43, + ACTIONS(10959), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -170247,22 +175212,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [67769] = 2, - ACTIONS(10738), 12, + [71017] = 5, + ACTIONS(11410), 1, + aux_sym__text_token3, + ACTIONS(11407), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(1806), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10705), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10736), 43, + ACTIONS(10703), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -170272,9 +175243,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -170285,7 +175256,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -170305,9 +175275,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [67829] = 2, - ACTIONS(10742), 12, + aux_sym_alpine_js_token1, + [71084] = 2, + ACTIONS(10965), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170320,7 +175290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 43, + ACTIONS(10963), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -170363,9 +175333,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [67889] = 2, - ACTIONS(10746), 12, + [71145] = 2, + ACTIONS(10969), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170378,7 +175349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 43, + ACTIONS(10967), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -170421,9 +175392,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [67949] = 2, - ACTIONS(10750), 12, + [71206] = 2, + ACTIONS(11151), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170436,7 +175408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 43, + ACTIONS(11149), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -170459,11 +175431,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -170479,9 +175451,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [68009] = 2, - ACTIONS(10754), 12, + [71267] = 2, + ACTIONS(10973), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170494,7 +175467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 43, + ACTIONS(10971), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -170537,9 +175510,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [68069] = 2, - ACTIONS(10758), 12, + [71328] = 2, + ACTIONS(10977), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170552,7 +175526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 43, + ACTIONS(10975), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -170595,9 +175569,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [68129] = 2, - ACTIONS(10762), 12, + [71389] = 2, + ACTIONS(10981), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170610,7 +175585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 43, + ACTIONS(10979), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -170653,9 +175628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [68189] = 2, - ACTIONS(10766), 12, + [71450] = 2, + ACTIONS(10985), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170668,7 +175644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 43, + ACTIONS(10983), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -170687,11 +175663,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -170711,9 +175687,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [68249] = 2, - ACTIONS(10770), 12, + [71511] = 2, + ACTIONS(10985), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170726,7 +175703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 43, + ACTIONS(10983), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -170769,9 +175746,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [68309] = 2, - ACTIONS(10774), 12, + [71572] = 2, + ACTIONS(10989), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170784,7 +175762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 43, + ACTIONS(10987), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -170827,9 +175805,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [68369] = 2, - ACTIONS(10778), 12, + [71633] = 2, + ACTIONS(10993), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170842,7 +175821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 43, + ACTIONS(10991), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -170885,9 +175864,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [68429] = 2, - ACTIONS(10782), 12, + [71694] = 2, + ACTIONS(11087), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170900,7 +175880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 43, + ACTIONS(11085), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -170943,9 +175923,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [68489] = 2, - ACTIONS(10786), 12, + [71755] = 2, + ACTIONS(11001), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170958,7 +175939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 43, + ACTIONS(10999), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -171001,9 +175982,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [68549] = 2, - ACTIONS(10790), 12, + [71816] = 2, + ACTIONS(11005), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171016,7 +175998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 43, + ACTIONS(11003), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -171059,27 +176041,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [68609] = 5, - ACTIONS(11231), 1, - aux_sym__text_token3, - ACTIONS(11228), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(1785), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10536), 9, + [71877] = 2, + ACTIONS(11009), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(10534), 41, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11007), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -171089,9 +176067,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -171102,6 +176080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -171121,8 +176100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [68675] = 2, - ACTIONS(10794), 12, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [71938] = 2, + ACTIONS(11013), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171135,7 +176116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 43, + ACTIONS(11011), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -171178,9 +176159,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [68735] = 2, - ACTIONS(10798), 12, + [71999] = 2, + ACTIONS(11017), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171193,7 +176175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 43, + ACTIONS(11015), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -171236,9 +176218,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [68795] = 2, - ACTIONS(10936), 12, + [72060] = 2, + ACTIONS(11021), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171251,7 +176234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 43, + ACTIONS(11019), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -171274,11 +176257,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -171294,9 +176277,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [68855] = 2, - ACTIONS(10806), 12, + [72121] = 2, + ACTIONS(11025), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171309,7 +176293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 43, + ACTIONS(11023), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -171352,9 +176336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [68915] = 2, - ACTIONS(10810), 12, + [72182] = 2, + ACTIONS(11031), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171367,7 +176352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 43, + ACTIONS(11029), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -171410,9 +176395,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [68975] = 2, - ACTIONS(10814), 12, + [72243] = 2, + ACTIONS(11035), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171425,7 +176411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 43, + ACTIONS(11033), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -171468,9 +176454,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [69035] = 2, - ACTIONS(10860), 12, + [72304] = 2, + ACTIONS(11039), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171483,7 +176470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 43, + ACTIONS(11037), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -171502,11 +176489,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -171526,9 +176513,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [69095] = 2, - ACTIONS(10818), 12, + [72365] = 2, + ACTIONS(11043), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171541,7 +176529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 43, + ACTIONS(11041), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -171584,9 +176572,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [69155] = 2, - ACTIONS(10824), 12, + [72426] = 2, + ACTIONS(11047), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171599,7 +176588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 43, + ACTIONS(11045), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -171642,9 +176631,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [69215] = 2, - ACTIONS(10828), 12, + [72487] = 2, + ACTIONS(11051), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171657,7 +176647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 43, + ACTIONS(11049), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -171700,9 +176690,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [69275] = 2, - ACTIONS(10832), 12, + [72548] = 2, + ACTIONS(11055), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171715,7 +176706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 43, + ACTIONS(11053), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -171758,9 +176749,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [69335] = 2, - ACTIONS(10836), 12, + [72609] = 2, + ACTIONS(11059), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171773,7 +176765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 43, + ACTIONS(11057), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -171816,9 +176808,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [69395] = 2, - ACTIONS(10840), 12, + [72670] = 2, + ACTIONS(11063), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171831,7 +176824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 43, + ACTIONS(11061), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -171874,9 +176867,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [69455] = 2, - ACTIONS(10678), 12, + [72731] = 2, + ACTIONS(11067), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171889,7 +176883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 43, + ACTIONS(11065), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -171932,9 +176926,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [69515] = 2, - ACTIONS(10844), 12, + [72792] = 2, + ACTIONS(11071), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171947,7 +176942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 43, + ACTIONS(11069), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -171990,9 +176985,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [69575] = 2, - ACTIONS(10848), 12, + [72853] = 2, + ACTIONS(11075), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172005,7 +177001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 43, + ACTIONS(11073), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -172048,9 +177044,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [69635] = 2, - ACTIONS(10852), 12, + [72914] = 2, + ACTIONS(11079), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172063,7 +177060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 43, + ACTIONS(11077), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -172106,9 +177103,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [69695] = 2, - ACTIONS(10856), 12, + [72975] = 2, + ACTIONS(11083), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172121,7 +177119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 43, + ACTIONS(11081), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -172164,9 +177162,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [69755] = 2, - ACTIONS(10860), 12, + [73036] = 2, + ACTIONS(11155), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172179,7 +177178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 43, + ACTIONS(11153), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -172222,9 +177221,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [69815] = 2, - ACTIONS(10864), 12, + [73097] = 2, + ACTIONS(11091), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172237,7 +177237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 43, + ACTIONS(11089), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -172280,9 +177280,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [69875] = 2, - ACTIONS(10868), 12, + [73158] = 2, + ACTIONS(11095), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172295,7 +177296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 43, + ACTIONS(11093), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -172338,9 +177339,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [69935] = 2, - ACTIONS(10872), 12, + [73219] = 2, + ACTIONS(11099), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172353,7 +177355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 43, + ACTIONS(11097), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -172396,9 +177398,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [69995] = 2, - ACTIONS(10876), 12, + [73280] = 2, + ACTIONS(11103), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172411,7 +177414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 43, + ACTIONS(11101), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -172454,9 +177457,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [70055] = 2, - ACTIONS(10880), 12, + [73341] = 2, + ACTIONS(11107), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172469,7 +177473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 43, + ACTIONS(11105), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -172512,9 +177516,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [70115] = 2, - ACTIONS(10884), 12, + [73402] = 2, + ACTIONS(11111), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172527,7 +177532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 43, + ACTIONS(11109), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -172570,9 +177575,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [70175] = 2, - ACTIONS(11024), 12, + [73463] = 2, + ACTIONS(11115), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172585,7 +177591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 43, + ACTIONS(11113), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -172628,9 +177634,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [70235] = 2, - ACTIONS(10888), 12, + [73524] = 2, + ACTIONS(11119), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172643,7 +177650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 43, + ACTIONS(11117), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -172686,9 +177693,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [70295] = 2, - ACTIONS(10892), 12, + [73585] = 2, + ACTIONS(11123), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172701,7 +177709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 43, + ACTIONS(11121), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -172744,9 +177752,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [70355] = 2, - ACTIONS(10896), 12, + [73646] = 2, + ACTIONS(11127), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172759,7 +177768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 43, + ACTIONS(11125), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -172802,9 +177811,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [70415] = 2, - ACTIONS(10900), 12, + [73707] = 2, + ACTIONS(11131), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172817,7 +177827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 43, + ACTIONS(11129), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -172860,9 +177870,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [70475] = 2, - ACTIONS(10904), 12, + [73768] = 2, + ACTIONS(11135), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172875,7 +177886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 43, + ACTIONS(11133), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -172918,9 +177929,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [70535] = 2, - ACTIONS(10908), 12, + [73829] = 2, + ACTIONS(11197), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172933,7 +177945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 43, + ACTIONS(11195), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -172956,11 +177968,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -172976,9 +177988,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [70595] = 2, - ACTIONS(10912), 12, + [73890] = 2, + ACTIONS(11139), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172991,7 +178004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 43, + ACTIONS(11137), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -173034,9 +178047,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [70655] = 2, - ACTIONS(10916), 12, + [73951] = 2, + ACTIONS(11143), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173049,7 +178063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 43, + ACTIONS(11141), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -173092,9 +178106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [70715] = 2, - ACTIONS(10920), 12, + [74012] = 2, + ACTIONS(11147), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173107,7 +178122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 43, + ACTIONS(11145), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -173150,9 +178165,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [70775] = 2, - ACTIONS(10924), 12, + [74073] = 2, + ACTIONS(11187), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173165,7 +178181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 43, + ACTIONS(11185), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -173208,9 +178224,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [70835] = 2, - ACTIONS(10928), 12, + [74134] = 2, + ACTIONS(11159), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173223,7 +178240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 43, + ACTIONS(11157), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -173266,9 +178283,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [70895] = 2, - ACTIONS(10932), 12, + [74195] = 2, + ACTIONS(11163), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173281,7 +178299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 43, + ACTIONS(11161), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -173324,9 +178342,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [70955] = 2, - ACTIONS(10940), 12, + [74256] = 2, + ACTIONS(11167), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173339,7 +178358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 43, + ACTIONS(11165), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -173382,9 +178401,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [71015] = 2, - ACTIONS(10944), 12, + [74317] = 2, + ACTIONS(11171), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173397,7 +178417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 43, + ACTIONS(11169), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -173440,9 +178460,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [71075] = 2, - ACTIONS(10948), 12, + [74378] = 2, + ACTIONS(11175), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173455,7 +178476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 43, + ACTIONS(11173), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -173498,9 +178519,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [71135] = 2, - ACTIONS(10952), 12, + [74439] = 2, + ACTIONS(11179), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173513,7 +178535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 43, + ACTIONS(11177), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -173556,9 +178578,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [71195] = 2, - ACTIONS(10956), 12, + [74500] = 2, + ACTIONS(11183), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173571,7 +178594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 43, + ACTIONS(11181), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -173614,9 +178637,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [71255] = 2, - ACTIONS(10960), 12, + [74561] = 2, + ACTIONS(10853), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173629,7 +178653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 43, + ACTIONS(10851), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -173652,8 +178676,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -173672,9 +178696,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [71315] = 2, - ACTIONS(10964), 12, + [74622] = 2, + ACTIONS(11087), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173687,7 +178712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 43, + ACTIONS(11085), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -173706,11 +178731,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -173730,9 +178755,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [71375] = 2, - ACTIONS(11014), 12, + [74683] = 2, + ACTIONS(10993), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173745,7 +178771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 43, + ACTIONS(10991), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -173764,6 +178790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -173772,7 +178799,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -173788,9 +178814,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [71435] = 2, - ACTIONS(10968), 12, + [74744] = 2, + ACTIONS(10885), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173803,7 +178830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 43, + ACTIONS(10883), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -173826,8 +178853,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -173846,9 +178873,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [71495] = 2, - ACTIONS(10972), 12, + [74805] = 2, + ACTIONS(10889), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173861,7 +178889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 43, + ACTIONS(10887), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -173884,8 +178912,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -173904,9 +178932,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [71555] = 2, - ACTIONS(10976), 12, + [74866] = 2, + ACTIONS(10893), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173919,7 +178948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 43, + ACTIONS(10891), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -173942,8 +178971,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -173962,9 +178991,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [71615] = 2, - ACTIONS(10980), 12, + [74927] = 2, + ACTIONS(10897), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173977,7 +179007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 43, + ACTIONS(10895), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -174000,8 +179030,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -174020,9 +179050,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [71675] = 2, - ACTIONS(10984), 12, + [74988] = 2, + ACTIONS(10901), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174035,7 +179066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 43, + ACTIONS(10899), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -174058,8 +179089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -174078,9 +179109,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [71735] = 2, - ACTIONS(11000), 12, + [75049] = 2, + ACTIONS(10905), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174093,7 +179125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 43, + ACTIONS(10903), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -174116,8 +179148,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -174136,9 +179168,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [71795] = 2, - ACTIONS(10988), 12, + [75110] = 2, + ACTIONS(10909), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174151,7 +179184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 43, + ACTIONS(10907), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -174174,8 +179207,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -174194,9 +179227,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [71855] = 2, - ACTIONS(10992), 12, + [75171] = 2, + ACTIONS(10989), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174209,7 +179243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 43, + ACTIONS(10987), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -174228,11 +179262,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -174252,9 +179286,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [71915] = 2, - ACTIONS(10996), 12, + [75232] = 2, + ACTIONS(10913), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174267,7 +179302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 43, + ACTIONS(10911), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -174290,8 +179325,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -174310,9 +179345,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [71975] = 2, - ACTIONS(11004), 12, + [75293] = 2, + ACTIONS(10917), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174325,7 +179361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 43, + ACTIONS(10915), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -174348,8 +179384,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -174368,9 +179404,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [72035] = 2, - ACTIONS(10710), 12, + [75354] = 2, + ACTIONS(10997), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174383,7 +179420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 43, + ACTIONS(10995), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -174426,9 +179463,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [72095] = 2, - ACTIONS(10840), 12, + [75415] = 2, + ACTIONS(10921), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174441,7 +179479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 43, + ACTIONS(10919), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -174460,12 +179498,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -174484,9 +179522,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [72155] = 2, - ACTIONS(10688), 12, + [75476] = 2, + ACTIONS(10925), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174499,7 +179538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10686), 43, + ACTIONS(10923), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -174514,7 +179553,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -174524,6 +179562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -174542,9 +179581,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [72215] = 2, - ACTIONS(10714), 12, + [75537] = 2, + ACTIONS(10929), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174557,7 +179597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 43, + ACTIONS(10927), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -174600,9 +179640,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [72275] = 2, - ACTIONS(10718), 12, + [75598] = 2, + ACTIONS(10933), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174615,7 +179656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 43, + ACTIONS(10931), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -174658,9 +179699,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [72335] = 2, - ACTIONS(10722), 12, + [75659] = 2, + ACTIONS(10937), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174673,7 +179715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 43, + ACTIONS(10935), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -174716,9 +179758,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [72395] = 2, - ACTIONS(10802), 12, + [75720] = 2, + ACTIONS(10941), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174731,7 +179774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 43, + ACTIONS(10939), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -174774,9 +179817,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [72455] = 2, - ACTIONS(10674), 12, + [75781] = 2, + ACTIONS(10945), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174789,7 +179833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 43, + ACTIONS(10943), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -174832,9 +179876,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [72515] = 2, - ACTIONS(10726), 12, + [75842] = 2, + ACTIONS(10949), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174847,7 +179892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 43, + ACTIONS(10947), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -174890,9 +179935,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [72575] = 2, - ACTIONS(10730), 12, + [75903] = 2, + ACTIONS(10849), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174905,7 +179951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 43, + ACTIONS(10847), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -174948,9 +179994,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [72635] = 2, - ACTIONS(10852), 12, + [75964] = 2, + ACTIONS(10953), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174963,7 +180010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 43, + ACTIONS(10951), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -174982,12 +180029,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -175006,9 +180053,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [72695] = 2, - ACTIONS(10734), 12, + [76025] = 2, + ACTIONS(10957), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175021,7 +180069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 43, + ACTIONS(10955), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -175064,9 +180112,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [72755] = 2, - ACTIONS(10738), 12, + [76086] = 2, + ACTIONS(10961), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175079,7 +180128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 43, + ACTIONS(10959), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -175122,80 +180171,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [72815] = 2, - ACTIONS(10742), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, + [76147] = 5, + ACTIONS(11416), 1, + aux_sym__text_token3, + ACTIONS(11413), 2, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 43, - sym_comment, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATendcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [72875] = 2, - ACTIONS(10746), 12, + STATE(1890), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10705), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10744), 43, + ACTIONS(10703), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -175206,8 +180203,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -175219,7 +180216,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -175238,9 +180234,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [72935] = 2, - ACTIONS(10750), 12, + aux_sym_alpine_js_token1, + [76214] = 2, + ACTIONS(10965), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175253,7 +180249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 43, + ACTIONS(10963), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -175296,9 +180292,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [72995] = 2, - ACTIONS(10754), 12, + [76275] = 2, + ACTIONS(10969), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175311,7 +180308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 43, + ACTIONS(10967), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -175354,9 +180351,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [73055] = 2, - ACTIONS(10758), 12, + [76336] = 2, + ACTIONS(10965), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175369,7 +180367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 43, + ACTIONS(10963), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -175388,12 +180386,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -175412,9 +180410,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [73115] = 2, - ACTIONS(10762), 12, + [76397] = 2, + ACTIONS(10973), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175427,7 +180426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 43, + ACTIONS(10971), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -175470,9 +180469,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [73175] = 2, - ACTIONS(10766), 12, + [76458] = 2, + ACTIONS(10977), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175485,7 +180485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 43, + ACTIONS(10975), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -175528,9 +180528,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [73235] = 2, - ACTIONS(10770), 12, + [76519] = 2, + ACTIONS(10981), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175543,7 +180544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 43, + ACTIONS(10979), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -175586,9 +180587,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [73295] = 2, - ACTIONS(10774), 12, + [76580] = 2, + ACTIONS(10985), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175601,7 +180603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 43, + ACTIONS(10983), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -175644,9 +180646,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [73355] = 2, - ACTIONS(10778), 12, + [76641] = 2, + ACTIONS(10989), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175659,7 +180662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 43, + ACTIONS(10987), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -175702,9 +180705,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [73415] = 2, - ACTIONS(10782), 12, + [76702] = 2, + ACTIONS(10993), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175717,7 +180721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 43, + ACTIONS(10991), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -175760,9 +180764,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [73475] = 2, - ACTIONS(10786), 12, + [76763] = 2, + ACTIONS(11087), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175775,7 +180780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 43, + ACTIONS(11085), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -175818,9 +180823,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [73535] = 2, - ACTIONS(10790), 12, + [76824] = 2, + ACTIONS(11001), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175833,7 +180839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 43, + ACTIONS(10999), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -175876,70 +180882,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [73595] = 5, - ACTIONS(11237), 1, - aux_sym__text_token3, - ACTIONS(11234), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(1868), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(10536), 9, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(10534), 41, - sym_comment, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATendPushIf, - anon_sym_ATprependOnce, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [73661] = 2, - ACTIONS(10794), 12, + [76885] = 2, + ACTIONS(11005), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175952,7 +180898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 43, + ACTIONS(11003), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -175995,9 +180941,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [73721] = 2, - ACTIONS(10798), 12, + [76946] = 2, + ACTIONS(11009), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176010,7 +180957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 43, + ACTIONS(11007), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -176053,9 +181000,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [73781] = 2, - ACTIONS(10806), 12, + [77007] = 2, + ACTIONS(11013), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176068,7 +181016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 43, + ACTIONS(11011), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -176111,9 +181059,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [73841] = 2, - ACTIONS(10810), 12, + [77068] = 2, + ACTIONS(11017), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176126,7 +181075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 43, + ACTIONS(11015), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -176169,9 +181118,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [73901] = 2, - ACTIONS(10814), 12, + [77129] = 2, + ACTIONS(11021), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176184,7 +181134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 43, + ACTIONS(11019), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -176227,9 +181177,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [73961] = 2, - ACTIONS(10818), 12, + [77190] = 2, + ACTIONS(11025), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176242,7 +181193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 43, + ACTIONS(11023), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -176285,9 +181236,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [74021] = 2, - ACTIONS(10824), 12, + [77251] = 2, + ACTIONS(11031), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176300,7 +181252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 43, + ACTIONS(11029), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -176343,9 +181295,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [74081] = 2, - ACTIONS(10828), 12, + [77312] = 2, + ACTIONS(11035), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176358,7 +181311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 43, + ACTIONS(11033), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -176401,9 +181354,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [74141] = 2, - ACTIONS(10832), 12, + [77373] = 2, + ACTIONS(11039), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176416,7 +181370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 43, + ACTIONS(11037), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -176459,9 +181413,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [74201] = 2, - ACTIONS(10836), 12, + [77434] = 2, + ACTIONS(11043), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176474,7 +181429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 43, + ACTIONS(11041), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -176517,9 +181472,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [74261] = 2, - ACTIONS(10840), 12, + [77495] = 2, + ACTIONS(11047), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176532,7 +181488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 43, + ACTIONS(11045), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -176575,9 +181531,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [74321] = 2, - ACTIONS(10678), 12, + [77556] = 2, + ACTIONS(11051), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176590,7 +181547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 43, + ACTIONS(11049), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -176633,9 +181590,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [74381] = 2, - ACTIONS(10844), 12, + [77617] = 2, + ACTIONS(11055), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176648,7 +181606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 43, + ACTIONS(11053), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -176691,9 +181649,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [74441] = 2, - ACTIONS(10848), 12, + [77678] = 2, + ACTIONS(11059), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176706,7 +181665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 43, + ACTIONS(11057), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -176749,9 +181708,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [74501] = 2, - ACTIONS(10852), 12, + [77739] = 2, + ACTIONS(11063), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176764,7 +181724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 43, + ACTIONS(11061), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -176807,9 +181767,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [74561] = 2, - ACTIONS(10856), 12, + [77800] = 2, + ACTIONS(11067), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176822,7 +181783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 43, + ACTIONS(11065), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -176865,9 +181826,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [74621] = 2, - ACTIONS(10860), 12, + [77861] = 2, + ACTIONS(11071), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176880,7 +181842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 43, + ACTIONS(11069), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -176923,9 +181885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [74681] = 2, - ACTIONS(10864), 12, + [77922] = 2, + ACTIONS(11075), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176938,7 +181901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 43, + ACTIONS(11073), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -176981,9 +181944,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [74741] = 2, - ACTIONS(10868), 12, + [77983] = 2, + ACTIONS(11079), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176996,7 +181960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 43, + ACTIONS(11077), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -177039,9 +182003,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [74801] = 2, - ACTIONS(10872), 12, + [78044] = 2, + ACTIONS(11083), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177054,7 +182019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 43, + ACTIONS(11081), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -177097,9 +182062,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [74861] = 2, - ACTIONS(10876), 12, + [78105] = 2, + ACTIONS(11155), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177112,7 +182078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 43, + ACTIONS(11153), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -177155,9 +182121,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [74921] = 2, - ACTIONS(10880), 12, + [78166] = 2, + ACTIONS(11091), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177170,7 +182137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 43, + ACTIONS(11089), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -177213,9 +182180,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [74981] = 2, - ACTIONS(10884), 12, + [78227] = 2, + ACTIONS(11095), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177228,7 +182196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 43, + ACTIONS(11093), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -177271,9 +182239,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [75041] = 2, - ACTIONS(11024), 12, + [78288] = 2, + ACTIONS(11099), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177286,7 +182255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 43, + ACTIONS(11097), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -177329,9 +182298,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [75101] = 2, - ACTIONS(10888), 12, + [78349] = 2, + ACTIONS(11103), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177344,7 +182314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 43, + ACTIONS(11101), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -177387,9 +182357,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [75161] = 2, - ACTIONS(10892), 12, + [78410] = 2, + ACTIONS(11107), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177402,7 +182373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 43, + ACTIONS(11105), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -177445,9 +182416,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [75221] = 2, - ACTIONS(10896), 12, + [78471] = 2, + ACTIONS(11111), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177460,7 +182432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 43, + ACTIONS(11109), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -177503,9 +182475,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [75281] = 2, - ACTIONS(10900), 12, + [78532] = 2, + ACTIONS(11115), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177518,7 +182491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 43, + ACTIONS(11113), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -177561,9 +182534,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [75341] = 2, - ACTIONS(10904), 12, + [78593] = 2, + ACTIONS(11119), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177576,7 +182550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 43, + ACTIONS(11117), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -177619,9 +182593,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [75401] = 2, - ACTIONS(10908), 12, + [78654] = 2, + ACTIONS(11123), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177634,7 +182609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 43, + ACTIONS(11121), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -177677,9 +182652,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [75461] = 2, - ACTIONS(10912), 12, + [78715] = 2, + ACTIONS(11127), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177692,7 +182668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 43, + ACTIONS(11125), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -177735,9 +182711,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [75521] = 2, - ACTIONS(10916), 12, + [78776] = 2, + ACTIONS(11131), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177750,7 +182727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 43, + ACTIONS(11129), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -177793,9 +182770,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [75581] = 2, - ACTIONS(10920), 12, + [78837] = 2, + ACTIONS(11135), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177808,7 +182786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 43, + ACTIONS(11133), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -177851,9 +182829,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [75641] = 2, - ACTIONS(10924), 12, + [78898] = 2, + ACTIONS(11139), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177866,7 +182845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 43, + ACTIONS(11137), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -177909,9 +182888,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [75701] = 2, - ACTIONS(10928), 12, + [78959] = 2, + ACTIONS(11143), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177924,7 +182904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 43, + ACTIONS(11141), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -177967,9 +182947,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [75761] = 2, - ACTIONS(10932), 12, + [79020] = 2, + ACTIONS(11147), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177982,7 +182963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 43, + ACTIONS(11145), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -178025,9 +183006,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [75821] = 2, - ACTIONS(10940), 12, + [79081] = 2, + ACTIONS(11187), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -178040,7 +183022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 43, + ACTIONS(11185), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -178083,9 +183065,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [75881] = 2, - ACTIONS(10944), 12, + [79142] = 2, + ACTIONS(11159), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -178098,7 +183081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 43, + ACTIONS(11157), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -178141,9 +183124,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [75941] = 2, - ACTIONS(10948), 12, + [79203] = 2, + ACTIONS(11163), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -178156,7 +183140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 43, + ACTIONS(11161), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -178199,9 +183183,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [76001] = 2, - ACTIONS(10952), 12, + [79264] = 2, + ACTIONS(11167), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -178214,7 +183199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 43, + ACTIONS(11165), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -178257,9 +183242,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [76061] = 2, - ACTIONS(10956), 12, + [79325] = 2, + ACTIONS(11171), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -178272,7 +183258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 43, + ACTIONS(11169), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -178315,9 +183301,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [76121] = 2, - ACTIONS(10960), 12, + [79386] = 2, + ACTIONS(11175), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -178330,7 +183317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 43, + ACTIONS(11173), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -178373,9 +183360,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [76181] = 2, - ACTIONS(10964), 12, + [79447] = 2, + ACTIONS(11179), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -178388,7 +183376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 43, + ACTIONS(11177), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -178431,9 +183419,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [76241] = 2, - ACTIONS(10968), 12, + [79508] = 2, + ACTIONS(11183), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -178446,7 +183435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 43, + ACTIONS(11181), 44, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -178489,9 +183478,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [76301] = 2, - ACTIONS(10972), 12, + [79569] = 2, + ACTIONS(11151), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -178504,7 +183494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 43, + ACTIONS(11149), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -178528,7 +183518,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -178547,9 +183536,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [76361] = 2, - ACTIONS(10976), 12, + [79629] = 2, + ACTIONS(11197), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -178562,7 +183552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 43, + ACTIONS(11195), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -178586,7 +183576,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -178605,22 +183594,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [76421] = 2, - ACTIONS(10980), 12, + [79689] = 2, + ACTIONS(11079), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 43, + ACTIONS(11077), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -178632,7 +183621,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -178644,7 +183632,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -178652,6 +183639,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -178663,34 +183651,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [76481] = 2, - ACTIONS(10984), 12, + [79748] = 2, + ACTIONS(10957), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 43, + ACTIONS(10955), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -178702,7 +183690,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -178721,22 +183708,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [76541] = 2, - ACTIONS(11000), 12, + [79807] = 2, + ACTIONS(11013), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 43, + ACTIONS(11011), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -178748,7 +183736,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -178760,7 +183747,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -178779,22 +183765,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [76601] = 2, - ACTIONS(10988), 12, + [79866] = 2, + ACTIONS(11087), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 43, + ACTIONS(11085), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -178806,7 +183793,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -178818,7 +183804,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -178837,22 +183822,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [76661] = 2, - ACTIONS(10992), 12, + [79925] = 2, + ACTIONS(11017), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 43, + ACTIONS(11015), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -178864,7 +183850,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -178876,7 +183861,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -178895,22 +183879,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [76721] = 2, - ACTIONS(10996), 12, + [79984] = 2, + ACTIONS(11197), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 43, + ACTIONS(11195), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -178921,8 +183905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -178934,7 +183918,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -178953,22 +183936,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [76781] = 2, - ACTIONS(11004), 12, + [80043] = 2, + ACTIONS(11001), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 43, + ACTIONS(10999), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -178980,7 +183964,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -178992,7 +183975,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -179011,22 +183993,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [76841] = 2, - ACTIONS(10710), 12, + [80102] = 2, + ACTIONS(11021), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 43, + ACTIONS(11019), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -179038,7 +184021,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -179051,7 +184033,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -179069,22 +184050,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [76901] = 2, - ACTIONS(10848), 12, + [80161] = 2, + ACTIONS(11139), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 43, + ACTIONS(11137), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -179095,15 +184076,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -179127,22 +184107,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [76961] = 2, - ACTIONS(10844), 12, + [80220] = 2, + ACTIONS(11183), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 43, + ACTIONS(11181), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -179154,14 +184134,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -179185,22 +184164,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [77021] = 2, - ACTIONS(10714), 12, + [80279] = 2, + ACTIONS(11179), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 43, + ACTIONS(11177), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -179212,7 +184191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -179225,7 +184204,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -179243,22 +184221,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [77081] = 2, - ACTIONS(10718), 12, + [80338] = 2, + ACTIONS(11175), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 43, + ACTIONS(11173), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -179270,7 +184248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -179283,7 +184261,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -179301,22 +184278,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [77141] = 2, - ACTIONS(10722), 12, + [80397] = 2, + ACTIONS(11171), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 43, + ACTIONS(11169), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -179328,7 +184305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -179341,7 +184318,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -179359,22 +184335,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [77201] = 2, - ACTIONS(10802), 12, + [80456] = 2, + ACTIONS(11167), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 43, + ACTIONS(11165), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -179386,7 +184362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -179399,7 +184375,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -179417,22 +184392,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [77261] = 2, - ACTIONS(10674), 12, + [80515] = 2, + ACTIONS(11163), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 43, + ACTIONS(11161), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -179444,7 +184419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -179457,7 +184432,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -179475,22 +184449,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [77321] = 2, - ACTIONS(10726), 12, + [80574] = 2, + ACTIONS(11159), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 43, + ACTIONS(11157), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -179502,7 +184476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -179515,7 +184489,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -179533,22 +184506,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [77381] = 2, - ACTIONS(10730), 12, + [80633] = 2, + ACTIONS(11187), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 43, + ACTIONS(11185), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -179560,7 +184533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -179573,7 +184546,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -179591,22 +184563,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [77441] = 2, - ACTIONS(10936), 12, + [80692] = 2, + ACTIONS(11147), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 42, + ACTIONS(11145), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -179618,7 +184590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -179648,22 +184620,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [77500] = 2, - ACTIONS(11014), 12, + [80751] = 2, + ACTIONS(11143), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 42, + ACTIONS(11141), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -179675,7 +184647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -179705,9 +184677,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [77559] = 2, - ACTIONS(10798), 11, + [80810] = 2, + ACTIONS(11139), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -179719,7 +184692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 42, + ACTIONS(11137), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -179731,6 +184704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -179758,12 +184732,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [77617] = 2, - ACTIONS(10936), 11, + [80869] = 2, + ACTIONS(11135), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -179775,8 +184749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 42, - ts_builtin_sym_end, + ACTIONS(11133), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -179788,6 +184761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -179817,9 +184791,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [77675] = 2, - ACTIONS(10710), 11, + [80928] = 2, + ACTIONS(11131), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -179831,8 +184806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 42, - ts_builtin_sym_end, + ACTIONS(11129), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -179844,6 +184818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -179873,9 +184848,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [77733] = 2, - ACTIONS(10848), 11, + [80987] = 2, + ACTIONS(11127), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -179887,19 +184863,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 42, + ACTIONS(11125), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -179929,9 +184905,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [77791] = 2, - ACTIONS(10714), 11, + [81046] = 2, + ACTIONS(11123), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -179943,8 +184920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 42, - ts_builtin_sym_end, + ACTIONS(11121), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -179956,6 +184932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -179985,9 +184962,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [77849] = 2, - ACTIONS(10718), 11, + [81105] = 2, + ACTIONS(11119), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -179999,8 +184977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 42, - ts_builtin_sym_end, + ACTIONS(11117), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -180012,6 +184989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -180041,9 +185019,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [77907] = 2, - ACTIONS(10722), 11, + [81164] = 2, + ACTIONS(11115), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180055,8 +185034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 42, - ts_builtin_sym_end, + ACTIONS(11113), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -180068,6 +185046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -180097,9 +185076,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [77965] = 2, - ACTIONS(11014), 11, + [81223] = 2, + ACTIONS(11111), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180111,7 +185091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 42, + ACTIONS(11109), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -180122,8 +185102,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -180153,9 +185133,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [78023] = 2, - ACTIONS(10984), 11, + [81282] = 2, + ACTIONS(11107), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180167,7 +185148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 42, + ACTIONS(11105), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -180209,9 +185190,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [78081] = 2, - ACTIONS(10710), 11, + [81341] = 2, + ACTIONS(11103), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180223,19 +185205,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 42, + ACTIONS(11101), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -180265,9 +185247,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [78139] = 2, - ACTIONS(11004), 11, + [81400] = 2, + ACTIONS(11099), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180279,7 +185262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 42, + ACTIONS(11097), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -180321,9 +185304,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [78197] = 2, - ACTIONS(10996), 11, + [81459] = 2, + ACTIONS(11151), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180335,7 +185319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 42, + ACTIONS(11149), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -180347,7 +185331,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -180364,6 +185347,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -180377,9 +185361,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [78255] = 2, - ACTIONS(10992), 11, + [81518] = 2, + ACTIONS(11095), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180391,7 +185376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 42, + ACTIONS(11093), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -180433,9 +185418,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [78313] = 2, - ACTIONS(10988), 11, + [81577] = 2, + ACTIONS(11091), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180447,7 +185433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 42, + ACTIONS(11089), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -180489,9 +185475,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [78371] = 2, - ACTIONS(11000), 11, + [81636] = 2, + ACTIONS(11155), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180503,7 +185490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 42, + ACTIONS(11153), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -180545,9 +185532,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [78429] = 2, - ACTIONS(10912), 11, + [81695] = 2, + ACTIONS(11083), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180559,7 +185547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 42, + ACTIONS(11081), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -180570,8 +185558,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -180601,9 +185589,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [78487] = 2, - ACTIONS(10980), 11, + [81754] = 2, + ACTIONS(11079), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180615,7 +185604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 42, + ACTIONS(11077), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -180657,9 +185646,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [78545] = 2, - ACTIONS(10976), 11, + [81813] = 2, + ACTIONS(11075), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180671,7 +185661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 42, + ACTIONS(11073), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -180713,9 +185703,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [78603] = 2, - ACTIONS(10972), 11, + [81872] = 2, + ACTIONS(11071), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180727,7 +185718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 42, + ACTIONS(11069), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -180769,9 +185760,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [78661] = 2, - ACTIONS(10968), 11, + [81931] = 2, + ACTIONS(11067), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180783,7 +185775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 42, + ACTIONS(11065), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -180825,9 +185817,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [78719] = 2, - ACTIONS(10964), 11, + [81990] = 2, + ACTIONS(11063), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180839,7 +185832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 42, + ACTIONS(11061), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -180881,9 +185874,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [78777] = 2, - ACTIONS(10936), 11, + [82049] = 2, + ACTIONS(11059), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180895,7 +185889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 42, + ACTIONS(11057), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -180907,6 +185901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -180923,7 +185918,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -180937,9 +185931,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [78835] = 2, - ACTIONS(10960), 11, + [82108] = 2, + ACTIONS(11055), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180951,7 +185946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 42, + ACTIONS(11053), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -180993,9 +185988,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [78893] = 2, - ACTIONS(10956), 11, + [82167] = 2, + ACTIONS(11051), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181007,7 +186003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 42, + ACTIONS(11049), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -181049,9 +186045,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [78951] = 2, - ACTIONS(10952), 11, + [82226] = 2, + ACTIONS(11047), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181063,7 +186060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 42, + ACTIONS(11045), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -181105,9 +186102,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [79009] = 2, - ACTIONS(10948), 11, + [82285] = 2, + ACTIONS(11043), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181119,7 +186117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 42, + ACTIONS(11041), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -181161,9 +186159,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [79067] = 2, - ACTIONS(10944), 11, + [82344] = 2, + ACTIONS(11039), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181175,7 +186174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 42, + ACTIONS(11037), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -181217,9 +186216,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [79125] = 2, - ACTIONS(10940), 11, + [82403] = 2, + ACTIONS(11035), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181231,7 +186231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 42, + ACTIONS(11033), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -181273,9 +186273,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [79183] = 2, - ACTIONS(10932), 11, + [82462] = 2, + ACTIONS(11031), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181287,7 +186288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 42, + ACTIONS(11029), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -181329,9 +186330,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [79241] = 2, - ACTIONS(10928), 11, + [82521] = 2, + ACTIONS(11025), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181343,7 +186345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 42, + ACTIONS(11023), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -181385,9 +186387,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [79299] = 2, - ACTIONS(10924), 11, + [82580] = 2, + ACTIONS(11021), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181399,7 +186402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 42, + ACTIONS(11019), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -181441,9 +186444,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [79357] = 2, - ACTIONS(10920), 11, + [82639] = 2, + ACTIONS(11017), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181455,7 +186459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 42, + ACTIONS(11015), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -181497,9 +186501,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [79415] = 2, - ACTIONS(10916), 11, + [82698] = 2, + ACTIONS(11013), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181511,7 +186516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 42, + ACTIONS(11011), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -181553,9 +186558,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [79473] = 2, - ACTIONS(10912), 11, + [82757] = 2, + ACTIONS(11009), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181567,7 +186573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 42, + ACTIONS(11007), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -181609,9 +186615,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [79531] = 2, - ACTIONS(10908), 11, + [82816] = 2, + ACTIONS(11005), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181623,7 +186630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 42, + ACTIONS(11003), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -181665,9 +186672,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [79589] = 2, - ACTIONS(10904), 11, + [82875] = 2, + ACTIONS(11001), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181679,7 +186687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 42, + ACTIONS(10999), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -181721,9 +186729,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [79647] = 2, - ACTIONS(10900), 11, + [82934] = 2, + ACTIONS(11087), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181735,7 +186744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 42, + ACTIONS(11085), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -181777,9 +186786,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [79705] = 2, - ACTIONS(10896), 11, + [82993] = 2, + ACTIONS(10993), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181791,7 +186801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 42, + ACTIONS(10991), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -181833,9 +186843,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [79763] = 2, - ACTIONS(10892), 11, + [83052] = 2, + ACTIONS(10989), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181847,7 +186858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 42, + ACTIONS(10987), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -181889,9 +186900,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [79821] = 2, - ACTIONS(10888), 11, + [83111] = 2, + ACTIONS(10985), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181903,7 +186915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 42, + ACTIONS(10983), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -181945,9 +186957,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [79879] = 2, - ACTIONS(11024), 11, + [83170] = 2, + ACTIONS(10981), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181959,7 +186972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 42, + ACTIONS(10979), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -182001,9 +187014,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [79937] = 2, - ACTIONS(10884), 11, + [83229] = 2, + ACTIONS(10977), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -182015,7 +187029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 42, + ACTIONS(10975), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -182057,9 +187071,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [79995] = 2, - ACTIONS(10880), 11, + [83288] = 2, + ACTIONS(10973), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -182071,7 +187086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 42, + ACTIONS(10971), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -182113,9 +187128,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [80053] = 2, - ACTIONS(10876), 11, + [83347] = 2, + ACTIONS(10969), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -182127,7 +187143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 42, + ACTIONS(10967), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -182169,9 +187185,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [80111] = 2, - ACTIONS(10872), 11, + [83406] = 2, + ACTIONS(10965), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -182183,7 +187200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 42, + ACTIONS(10963), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -182225,9 +187242,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [80169] = 2, - ACTIONS(10868), 11, + [83465] = 2, + ACTIONS(10993), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -182239,19 +187257,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 42, + ACTIONS(10991), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -182281,9 +187299,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [80227] = 2, - ACTIONS(10864), 11, + [83524] = 2, + ACTIONS(10961), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -182295,7 +187314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 42, + ACTIONS(10959), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -182337,9 +187356,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [80285] = 2, - ACTIONS(10860), 11, + [83583] = 2, + ACTIONS(10957), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -182351,7 +187371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 42, + ACTIONS(10955), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -182393,9 +187413,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [80343] = 2, - ACTIONS(10856), 11, + [83642] = 2, + ACTIONS(10953), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -182407,7 +187428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 42, + ACTIONS(10951), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -182449,9 +187470,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [80401] = 2, - ACTIONS(10852), 11, + [83701] = 2, + ACTIONS(10849), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -182463,7 +187485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 42, + ACTIONS(10847), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -182505,9 +187527,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [80459] = 2, - ACTIONS(10848), 11, + [83760] = 2, + ACTIONS(10949), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -182519,7 +187542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 42, + ACTIONS(10947), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -182561,9 +187584,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [80517] = 2, - ACTIONS(10844), 11, + [83819] = 2, + ACTIONS(10945), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -182575,7 +187599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 42, + ACTIONS(10943), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -182617,9 +187641,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [80575] = 2, - ACTIONS(10678), 11, + [83878] = 2, + ACTIONS(10941), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -182631,7 +187656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 42, + ACTIONS(10939), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -182673,9 +187698,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [80633] = 2, - ACTIONS(10840), 11, + [83937] = 2, + ACTIONS(11197), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -182687,7 +187713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 42, + ACTIONS(11195), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -182699,7 +187725,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -182716,6 +187741,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -182729,9 +187755,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [80691] = 2, - ACTIONS(10836), 11, + [83996] = 2, + ACTIONS(10937), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -182743,7 +187770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 42, + ACTIONS(10935), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -182785,9 +187812,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [80749] = 2, - ACTIONS(10832), 11, + [84055] = 2, + ACTIONS(10933), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -182799,7 +187827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 42, + ACTIONS(10931), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -182841,9 +187869,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [80807] = 2, - ACTIONS(10828), 11, + [84114] = 2, + ACTIONS(10929), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -182855,7 +187884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 42, + ACTIONS(10927), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -182897,9 +187926,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [80865] = 2, - ACTIONS(10824), 11, + [84173] = 2, + ACTIONS(10925), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -182911,7 +187941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 42, + ACTIONS(10923), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -182953,9 +187983,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [80923] = 2, - ACTIONS(10818), 11, + [84232] = 2, + ACTIONS(10921), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -182967,7 +187998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 42, + ACTIONS(10919), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -183009,9 +188040,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [80981] = 2, - ACTIONS(10714), 11, + [84291] = 2, + ACTIONS(10997), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -183023,19 +188055,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 42, + ACTIONS(10995), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -183065,9 +188097,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [81039] = 2, - ACTIONS(10814), 11, + [84350] = 2, + ACTIONS(10917), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -183079,7 +188112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 42, + ACTIONS(10915), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -183121,9 +188154,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [81097] = 2, - ACTIONS(10810), 11, + [84409] = 2, + ACTIONS(10913), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -183135,7 +188169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 42, + ACTIONS(10911), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -183177,9 +188211,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [81155] = 2, - ACTIONS(10806), 11, + [84468] = 2, + ACTIONS(10909), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -183191,7 +188226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 42, + ACTIONS(10907), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -183233,9 +188268,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [81213] = 2, - ACTIONS(11014), 11, + [84527] = 2, + ACTIONS(10905), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -183247,7 +188283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 42, + ACTIONS(10903), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -183259,6 +188295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -183275,7 +188312,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -183289,9 +188325,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [81271] = 2, - ACTIONS(10798), 11, + [84586] = 2, + ACTIONS(10901), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -183303,7 +188340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 42, + ACTIONS(10899), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -183345,9 +188382,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [81329] = 2, - ACTIONS(10794), 11, + [84645] = 2, + ACTIONS(10897), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -183359,7 +188397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 42, + ACTIONS(10895), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -183401,9 +188439,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [81387] = 2, - ACTIONS(10802), 11, + [84704] = 2, + ACTIONS(10893), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -183415,8 +188454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 42, - ts_builtin_sym_end, + ACTIONS(10891), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -183428,6 +188466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -183457,9 +188496,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [81445] = 2, - ACTIONS(10790), 11, + [84763] = 2, + ACTIONS(11151), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -183471,7 +188511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 42, + ACTIONS(11149), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -183482,8 +188522,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -183513,9 +188553,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [81503] = 2, - ACTIONS(10786), 11, + [84822] = 2, + ACTIONS(10889), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -183527,7 +188568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 42, + ACTIONS(10887), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -183569,9 +188610,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [81561] = 2, - ACTIONS(10782), 11, + [84881] = 2, + ACTIONS(10885), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -183583,7 +188625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 42, + ACTIONS(10883), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -183625,9 +188667,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [81619] = 2, - ACTIONS(10778), 11, + [84940] = 2, + ACTIONS(10853), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -183639,7 +188682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 42, + ACTIONS(10851), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -183681,9 +188724,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [81677] = 2, - ACTIONS(10774), 11, + [84999] = 2, + ACTIONS(11183), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -183695,7 +188739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 42, + ACTIONS(11181), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -183706,8 +188750,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -183737,9 +188781,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [81735] = 2, - ACTIONS(10770), 11, + [85058] = 2, + ACTIONS(11179), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -183751,7 +188796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 42, + ACTIONS(11177), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -183762,8 +188807,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -183793,9 +188838,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [81793] = 2, - ACTIONS(10766), 11, + [85117] = 2, + ACTIONS(11175), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -183807,7 +188853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 42, + ACTIONS(11173), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -183818,8 +188864,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -183849,9 +188895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [81851] = 2, - ACTIONS(10722), 11, + [85176] = 2, + ACTIONS(11171), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -183863,18 +188910,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 42, + ACTIONS(11169), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -183905,9 +188952,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [81909] = 2, - ACTIONS(10762), 11, + [85235] = 2, + ACTIONS(11167), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -183919,7 +188967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 42, + ACTIONS(11165), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -183930,8 +188978,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -183961,9 +189009,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [81967] = 2, - ACTIONS(10758), 11, + [85294] = 2, + ACTIONS(11163), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -183975,7 +189024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 42, + ACTIONS(11161), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -183986,8 +189035,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184017,9 +189066,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [82025] = 2, - ACTIONS(10802), 11, + [85353] = 2, + ACTIONS(11159), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -184031,18 +189081,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 42, + ACTIONS(11157), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -184073,9 +189123,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [82083] = 2, - ACTIONS(10754), 11, + [85412] = 2, + ACTIONS(11187), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -184087,7 +189138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 42, + ACTIONS(11185), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -184098,8 +189149,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184129,9 +189180,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [82141] = 2, - ACTIONS(10750), 11, + [85471] = 2, + ACTIONS(11147), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -184143,7 +189195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 42, + ACTIONS(11145), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -184154,8 +189206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184185,9 +189237,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [82199] = 2, - ACTIONS(10746), 11, + [85530] = 2, + ACTIONS(11143), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -184199,7 +189252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 42, + ACTIONS(11141), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -184210,8 +189263,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184241,9 +189294,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [82257] = 2, - ACTIONS(10742), 11, + [85589] = 2, + ACTIONS(11035), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -184255,7 +189309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 42, + ACTIONS(11033), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -184266,8 +189320,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184297,9 +189351,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [82315] = 2, - ACTIONS(10738), 11, + [85648] = 2, + ACTIONS(11135), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -184311,7 +189366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 42, + ACTIONS(11133), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -184322,8 +189377,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184353,9 +189408,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [82373] = 2, - ACTIONS(10734), 11, + [85707] = 2, + ACTIONS(11131), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -184367,7 +189423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 42, + ACTIONS(11129), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -184378,8 +189434,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184409,9 +189465,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [82431] = 2, - ACTIONS(10730), 11, + [85766] = 2, + ACTIONS(11127), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -184423,7 +189480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 42, + ACTIONS(11125), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -184434,8 +189491,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184465,9 +189522,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [82489] = 2, - ACTIONS(10726), 11, + [85825] = 2, + ACTIONS(11123), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -184479,7 +189537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 42, + ACTIONS(11121), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -184490,8 +189548,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184521,9 +189579,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [82547] = 2, - ACTIONS(10674), 11, + [85884] = 2, + ACTIONS(11119), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -184535,7 +189594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 42, + ACTIONS(11117), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -184546,8 +189605,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184577,9 +189636,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [82605] = 2, - ACTIONS(10802), 11, + [85943] = 2, + ACTIONS(11115), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -184591,7 +189651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 42, + ACTIONS(11113), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -184602,8 +189662,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184633,9 +189693,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [82663] = 2, - ACTIONS(10722), 11, + [86002] = 2, + ACTIONS(11111), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -184647,7 +189708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 42, + ACTIONS(11109), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -184658,8 +189719,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184689,9 +189750,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [82721] = 2, - ACTIONS(10718), 11, + [86061] = 2, + ACTIONS(11107), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -184703,7 +189765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 42, + ACTIONS(11105), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -184714,8 +189776,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184745,9 +189807,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [82779] = 2, - ACTIONS(10714), 11, + [86120] = 2, + ACTIONS(11103), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -184759,7 +189822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 42, + ACTIONS(11101), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -184770,8 +189833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184801,9 +189864,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [82837] = 2, - ACTIONS(10674), 11, + [86179] = 2, + ACTIONS(11099), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -184815,18 +189879,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 42, + ACTIONS(11097), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -184857,9 +189921,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [82895] = 2, - ACTIONS(10710), 11, + [86238] = 2, + ACTIONS(11095), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -184871,7 +189936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 42, + ACTIONS(11093), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -184882,8 +189947,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184913,9 +189978,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [82953] = 2, - ACTIONS(11004), 11, + [86297] = 2, + ACTIONS(11091), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -184927,7 +189993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 42, + ACTIONS(11089), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -184969,9 +190035,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [83011] = 2, - ACTIONS(10996), 11, + [86356] = 2, + ACTIONS(11151), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -184983,7 +190050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 42, + ACTIONS(11149), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -184994,7 +190061,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -185013,6 +190079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -185025,9 +190092,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [83069] = 2, - ACTIONS(10992), 11, + [86415] = 2, + ACTIONS(11155), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185039,7 +190107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 42, + ACTIONS(11153), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -185081,9 +190149,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [83127] = 2, - ACTIONS(10988), 11, + [86474] = 2, + ACTIONS(11083), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185095,7 +190164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 42, + ACTIONS(11081), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -185137,9 +190206,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [83185] = 2, - ACTIONS(11000), 11, + [86533] = 2, + ACTIONS(11079), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185151,7 +190221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 42, + ACTIONS(11077), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -185193,9 +190263,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [83243] = 2, - ACTIONS(10984), 11, + [86592] = 2, + ACTIONS(11075), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185207,7 +190278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 42, + ACTIONS(11073), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -185249,9 +190320,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [83301] = 2, - ACTIONS(10980), 11, + [86651] = 2, + ACTIONS(11071), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185263,7 +190335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 42, + ACTIONS(11069), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -185305,9 +190377,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [83359] = 2, - ACTIONS(10976), 11, + [86710] = 2, + ACTIONS(11067), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185319,7 +190392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 42, + ACTIONS(11065), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -185361,9 +190434,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [83417] = 2, - ACTIONS(10972), 11, + [86769] = 2, + ACTIONS(11063), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185375,7 +190449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 42, + ACTIONS(11061), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -185417,9 +190491,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [83475] = 2, - ACTIONS(10968), 11, + [86828] = 2, + ACTIONS(11059), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185431,7 +190506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 42, + ACTIONS(11057), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -185473,9 +190548,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [83533] = 2, - ACTIONS(10936), 11, + [86887] = 2, + ACTIONS(11055), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185487,7 +190563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 42, + ACTIONS(11053), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -185498,6 +190574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -185516,7 +190593,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -185529,9 +190605,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [83591] = 2, - ACTIONS(10964), 11, + [86946] = 2, + ACTIONS(11051), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185543,7 +190620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 42, + ACTIONS(11049), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -185585,9 +190662,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [83649] = 2, - ACTIONS(10960), 11, + [87005] = 2, + ACTIONS(11047), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185599,7 +190677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 42, + ACTIONS(11045), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -185641,9 +190719,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [83707] = 2, - ACTIONS(10956), 11, + [87064] = 2, + ACTIONS(11043), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185655,7 +190734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 42, + ACTIONS(11041), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -185697,9 +190776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [83765] = 2, - ACTIONS(10952), 11, + [87123] = 2, + ACTIONS(11039), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185711,7 +190791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 42, + ACTIONS(11037), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -185753,9 +190833,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [83823] = 2, - ACTIONS(10948), 11, + [87182] = 2, + ACTIONS(10977), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185767,7 +190848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 42, + ACTIONS(10975), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -185778,7 +190859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -185809,9 +190890,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [83881] = 2, - ACTIONS(10944), 11, + [87241] = 2, + ACTIONS(11031), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185823,7 +190905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 42, + ACTIONS(11029), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -185865,9 +190947,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [83939] = 2, - ACTIONS(10940), 11, + [87300] = 2, + ACTIONS(11025), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185879,7 +190962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 42, + ACTIONS(11023), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -185921,9 +191004,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [83997] = 2, - ACTIONS(10932), 11, + [87359] = 2, + ACTIONS(11021), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185935,7 +191019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 42, + ACTIONS(11019), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -185977,9 +191061,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [84055] = 2, - ACTIONS(10928), 11, + [87418] = 2, + ACTIONS(11017), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185991,7 +191076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 42, + ACTIONS(11015), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -186033,9 +191118,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [84113] = 2, - ACTIONS(10924), 11, + [87477] = 2, + ACTIONS(11013), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186047,7 +191133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 42, + ACTIONS(11011), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -186089,9 +191175,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [84171] = 2, - ACTIONS(10920), 11, + [87536] = 2, + ACTIONS(11009), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186103,7 +191190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 42, + ACTIONS(11007), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -186145,9 +191232,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [84229] = 2, - ACTIONS(10916), 11, + [87595] = 2, + ACTIONS(11005), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186159,7 +191247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 42, + ACTIONS(11003), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -186201,9 +191289,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [84287] = 2, - ACTIONS(10818), 11, + [87654] = 2, + ACTIONS(11001), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186215,7 +191304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 42, + ACTIONS(10999), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -186257,9 +191346,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [84345] = 2, - ACTIONS(10908), 11, + [87713] = 2, + ACTIONS(11087), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186271,7 +191361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 42, + ACTIONS(11085), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -186313,9 +191403,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [84403] = 2, - ACTIONS(10904), 11, + [87772] = 2, + ACTIONS(10993), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186327,7 +191418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 42, + ACTIONS(10991), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -186369,9 +191460,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [84461] = 2, - ACTIONS(10900), 11, + [87831] = 2, + ACTIONS(10989), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186383,7 +191475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 42, + ACTIONS(10987), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -186425,9 +191517,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [84519] = 2, - ACTIONS(10896), 11, + [87890] = 2, + ACTIONS(10985), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186439,7 +191532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 42, + ACTIONS(10983), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -186481,9 +191574,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [84577] = 2, - ACTIONS(10892), 11, + [87949] = 2, + ACTIONS(10853), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186495,18 +191589,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 42, + ACTIONS(10851), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -186537,9 +191631,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [84635] = 2, - ACTIONS(10888), 11, + [88008] = 2, + ACTIONS(10981), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186551,7 +191646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 42, + ACTIONS(10979), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -186593,9 +191688,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [84693] = 2, - ACTIONS(11024), 11, + [88067] = 2, + ACTIONS(10977), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186607,7 +191703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 42, + ACTIONS(10975), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -186649,9 +191745,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [84751] = 2, - ACTIONS(10884), 11, + [88126] = 2, + ACTIONS(10973), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186663,7 +191760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 42, + ACTIONS(10971), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -186705,9 +191802,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [84809] = 2, - ACTIONS(10880), 11, + [88185] = 2, + ACTIONS(10969), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186719,7 +191817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 42, + ACTIONS(10967), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -186761,9 +191859,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [84867] = 2, - ACTIONS(10876), 11, + [88244] = 2, + ACTIONS(10965), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186775,7 +191874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 42, + ACTIONS(10963), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -186817,9 +191916,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [84925] = 2, - ACTIONS(10872), 11, + [88303] = 2, + ACTIONS(11005), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186831,7 +191931,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 42, + ACTIONS(11003), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -186842,7 +191943,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -186873,9 +191973,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [84983] = 2, - ACTIONS(10868), 11, + [88362] = 2, + ACTIONS(10961), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186887,7 +191988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 42, + ACTIONS(10959), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -186929,9 +192030,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [85041] = 2, - ACTIONS(10864), 11, + [88421] = 2, + ACTIONS(10957), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186943,7 +192045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 42, + ACTIONS(10955), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -186985,9 +192087,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [85099] = 2, - ACTIONS(10860), 11, + [88480] = 2, + ACTIONS(10953), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186999,7 +192102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 42, + ACTIONS(10951), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -187041,9 +192144,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [85157] = 2, - ACTIONS(10726), 11, + [88539] = 2, + ACTIONS(10849), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187055,18 +192159,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 42, + ACTIONS(10847), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -187097,9 +192201,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [85215] = 2, - ACTIONS(10856), 11, + [88598] = 2, + ACTIONS(10949), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187111,7 +192216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 42, + ACTIONS(10947), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -187153,9 +192258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [85273] = 2, - ACTIONS(10852), 11, + [88657] = 2, + ACTIONS(10945), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187167,7 +192273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 42, + ACTIONS(10943), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -187209,9 +192315,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [85331] = 2, - ACTIONS(10848), 11, + [88716] = 2, + ACTIONS(10941), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187223,7 +192330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 42, + ACTIONS(10939), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -187265,9 +192372,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [85389] = 2, - ACTIONS(10844), 11, + [88775] = 2, + ACTIONS(10885), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187279,18 +192387,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 42, + ACTIONS(10883), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -187321,9 +192429,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [85447] = 2, - ACTIONS(10730), 11, + [88834] = 2, + ACTIONS(11197), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187335,14 +192444,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 42, + ACTIONS(11195), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -187365,6 +192473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -187377,9 +192486,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [85505] = 2, - ACTIONS(10678), 11, + [88893] = 2, + ACTIONS(10889), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187391,18 +192501,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 42, + ACTIONS(10887), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -187433,9 +192543,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [85563] = 2, - ACTIONS(10840), 11, + [88952] = 2, + ACTIONS(10937), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187447,7 +192558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 42, + ACTIONS(10935), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -187489,9 +192600,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [85621] = 2, - ACTIONS(10836), 11, + [89011] = 2, + ACTIONS(10933), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187503,7 +192615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 42, + ACTIONS(10931), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -187545,9 +192657,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [85679] = 2, - ACTIONS(10832), 11, + [89070] = 2, + ACTIONS(10893), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187559,18 +192672,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 42, + ACTIONS(10891), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -187601,9 +192714,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [85737] = 2, - ACTIONS(10828), 11, + [89129] = 2, + ACTIONS(10929), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187615,7 +192729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 42, + ACTIONS(10927), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -187657,9 +192771,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [85795] = 2, - ACTIONS(10824), 11, + [89188] = 2, + ACTIONS(10925), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187671,7 +192786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 42, + ACTIONS(10923), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -187713,9 +192828,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [85853] = 2, - ACTIONS(10674), 11, + [89247] = 2, + ACTIONS(10921), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187727,8 +192843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 42, - ts_builtin_sym_end, + ACTIONS(10919), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -187739,6 +192854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -187769,9 +192885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [85911] = 2, - ACTIONS(10814), 11, + [89306] = 2, + ACTIONS(10997), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187783,7 +192900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 42, + ACTIONS(10995), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -187825,9 +192942,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [85969] = 2, - ACTIONS(11014), 11, + [89365] = 2, + ACTIONS(10917), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187839,7 +192957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 42, + ACTIONS(10915), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -187850,6 +192968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -187868,7 +192987,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -187881,9 +192999,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [86027] = 2, - ACTIONS(10734), 11, + [89424] = 2, + ACTIONS(10913), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187895,18 +193014,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 42, + ACTIONS(10911), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -187937,9 +193056,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [86085] = 2, - ACTIONS(10810), 11, + [89483] = 2, + ACTIONS(10909), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187951,7 +193071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 42, + ACTIONS(10907), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -187993,9 +193113,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [86143] = 2, - ACTIONS(10806), 11, + [89542] = 2, + ACTIONS(10905), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188007,7 +193128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 42, + ACTIONS(10903), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -188049,9 +193170,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [86201] = 2, - ACTIONS(10798), 11, + [89601] = 2, + ACTIONS(10901), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188063,7 +193185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 42, + ACTIONS(10899), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -188105,9 +193227,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [86259] = 2, - ACTIONS(10794), 11, + [89660] = 2, + ACTIONS(10897), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188119,7 +193242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 42, + ACTIONS(10895), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -188161,9 +193284,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [86317] = 2, - ACTIONS(10726), 11, + [89719] = 2, + ACTIONS(10893), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188175,8 +193299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 42, - ts_builtin_sym_end, + ACTIONS(10891), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -188187,6 +193310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -188217,9 +193341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [86375] = 2, - ACTIONS(10790), 11, + [89778] = 2, + ACTIONS(10889), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188231,7 +193356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 42, + ACTIONS(10887), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -188273,9 +193398,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [86433] = 2, - ACTIONS(10786), 11, + [89837] = 2, + ACTIONS(10885), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188287,7 +193413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 42, + ACTIONS(10883), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -188329,9 +193455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [86491] = 2, - ACTIONS(10782), 11, + [89896] = 2, + ACTIONS(10897), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188343,18 +193470,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 42, + ACTIONS(10895), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -188385,9 +193512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [86549] = 2, - ACTIONS(10778), 11, + [89955] = 2, + ACTIONS(10853), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188399,7 +193527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 42, + ACTIONS(10851), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -188441,9 +193569,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [86607] = 2, - ACTIONS(10774), 11, + [90014] = 2, + ACTIONS(11183), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188455,7 +193584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 42, + ACTIONS(11181), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -188466,7 +193595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -188497,9 +193626,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [86665] = 2, - ACTIONS(10770), 11, + [90073] = 2, + ACTIONS(11179), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188511,7 +193641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 42, + ACTIONS(11177), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -188522,7 +193652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -188553,9 +193683,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [86723] = 2, - ACTIONS(10766), 11, + [90132] = 2, + ACTIONS(11175), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188567,7 +193698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 42, + ACTIONS(11173), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -188578,7 +193709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -188609,9 +193740,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [86781] = 2, - ACTIONS(10852), 11, + [90191] = 2, + ACTIONS(11171), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188623,18 +193755,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 42, + ACTIONS(11169), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -188665,9 +193797,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [86839] = 2, - ACTIONS(10738), 11, + [90250] = 2, + ACTIONS(11167), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188679,18 +193812,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 42, + ACTIONS(11165), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -188721,9 +193854,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [86897] = 2, - ACTIONS(10762), 11, + [90309] = 2, + ACTIONS(11163), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188735,7 +193869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 42, + ACTIONS(11161), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -188746,7 +193880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -188777,9 +193911,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [86955] = 2, - ACTIONS(10758), 11, + [90368] = 2, + ACTIONS(11159), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188791,7 +193926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 42, + ACTIONS(11157), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -188802,7 +193937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -188833,9 +193968,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [87013] = 2, - ACTIONS(10742), 11, + [90427] = 2, + ACTIONS(11187), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188847,18 +193983,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 42, + ACTIONS(11185), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -188889,9 +194025,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [87071] = 2, - ACTIONS(10754), 11, + [90486] = 2, + ACTIONS(11147), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188903,7 +194040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 42, + ACTIONS(11145), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -188914,7 +194051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -188945,9 +194082,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [87129] = 2, - ACTIONS(10750), 11, + [90545] = 2, + ACTIONS(11143), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188959,7 +194097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 42, + ACTIONS(11141), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -188970,7 +194108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -189001,9 +194139,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [87187] = 2, - ACTIONS(10746), 11, + [90604] = 2, + ACTIONS(11139), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189015,7 +194154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 42, + ACTIONS(11137), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -189026,7 +194165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -189057,9 +194196,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [87245] = 2, - ACTIONS(10742), 11, + [90663] = 2, + ACTIONS(11135), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189071,7 +194211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 42, + ACTIONS(11133), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -189082,7 +194222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -189113,9 +194253,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [87303] = 2, - ACTIONS(10738), 11, + [90722] = 2, + ACTIONS(11131), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189127,7 +194268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 42, + ACTIONS(11129), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -189138,7 +194279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -189169,9 +194310,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [87361] = 2, - ACTIONS(10734), 11, + [90781] = 2, + ACTIONS(11127), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189183,7 +194325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 42, + ACTIONS(11125), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -189194,7 +194336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -189225,9 +194367,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [87419] = 2, - ACTIONS(10730), 11, + [90840] = 2, + ACTIONS(11123), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189239,7 +194382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 42, + ACTIONS(11121), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -189250,7 +194393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -189281,9 +194424,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [87477] = 2, - ACTIONS(10726), 11, + [90899] = 2, + ACTIONS(11119), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189295,7 +194439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 42, + ACTIONS(11117), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -189306,7 +194450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -189337,9 +194481,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [87535] = 2, - ACTIONS(10674), 11, + [90958] = 2, + ACTIONS(11115), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189351,7 +194496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 42, + ACTIONS(11113), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -189362,7 +194507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -189393,9 +194538,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [87593] = 2, - ACTIONS(10802), 11, + [91017] = 2, + ACTIONS(11111), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189407,7 +194553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 42, + ACTIONS(11109), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -189418,7 +194564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -189449,9 +194595,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [87651] = 2, - ACTIONS(10722), 11, + [91076] = 2, + ACTIONS(11107), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189463,7 +194610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 42, + ACTIONS(11105), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -189474,7 +194621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -189505,9 +194652,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [87709] = 2, - ACTIONS(10718), 11, + [91135] = 2, + ACTIONS(11103), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189519,7 +194667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 42, + ACTIONS(11101), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -189530,7 +194678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -189561,9 +194709,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [87767] = 2, - ACTIONS(10714), 11, + [91194] = 2, + ACTIONS(11099), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189575,7 +194724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 42, + ACTIONS(11097), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -189586,7 +194735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -189617,9 +194766,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [87825] = 2, - ACTIONS(10718), 11, + [91253] = 2, + ACTIONS(11151), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189631,14 +194781,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 42, + ACTIONS(11149), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -189662,6 +194811,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -189673,9 +194823,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [87883] = 2, - ACTIONS(10710), 11, + [91312] = 2, + ACTIONS(11095), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189687,7 +194838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 42, + ACTIONS(11093), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -189698,7 +194849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -189729,9 +194880,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [87941] = 2, - ACTIONS(11004), 11, + [91371] = 2, + ACTIONS(11091), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189743,7 +194895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 42, + ACTIONS(11089), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -189785,9 +194937,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [87999] = 2, - ACTIONS(10996), 11, + [91430] = 2, + ACTIONS(11155), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189799,7 +194952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 42, + ACTIONS(11153), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -189841,9 +194994,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [88057] = 2, - ACTIONS(10992), 11, + [91489] = 2, + ACTIONS(11083), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189855,7 +195009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 42, + ACTIONS(11081), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -189897,9 +195051,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [88115] = 2, - ACTIONS(10988), 11, + [91548] = 2, + ACTIONS(11079), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189911,7 +195066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 42, + ACTIONS(11077), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -189953,9 +195108,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [88173] = 2, - ACTIONS(11000), 11, + [91607] = 2, + ACTIONS(11075), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189967,7 +195123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 42, + ACTIONS(11073), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -190009,9 +195165,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [88231] = 2, - ACTIONS(10984), 11, + [91666] = 2, + ACTIONS(11071), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190023,7 +195180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 42, + ACTIONS(11069), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -190065,9 +195222,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [88289] = 2, - ACTIONS(10936), 11, + [91725] = 2, + ACTIONS(11067), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190079,7 +195237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 42, + ACTIONS(11065), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -190090,6 +195248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -190109,7 +195268,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -190121,9 +195279,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [88347] = 2, - ACTIONS(10980), 11, + [91784] = 2, + ACTIONS(11063), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190135,7 +195294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 42, + ACTIONS(11061), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -190177,9 +195336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [88405] = 2, - ACTIONS(10976), 11, + [91843] = 2, + ACTIONS(11059), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190191,7 +195351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 42, + ACTIONS(11057), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -190233,9 +195393,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [88463] = 2, - ACTIONS(10972), 11, + [91902] = 2, + ACTIONS(11009), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190247,7 +195408,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 42, + ACTIONS(11007), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -190258,7 +195420,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -190289,9 +195450,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [88521] = 2, - ACTIONS(10968), 11, + [91961] = 2, + ACTIONS(11051), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190303,7 +195465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 42, + ACTIONS(11049), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -190345,9 +195507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [88579] = 2, - ACTIONS(10964), 11, + [92020] = 2, + ACTIONS(11047), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190359,7 +195522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 42, + ACTIONS(11045), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -190401,9 +195564,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [88637] = 2, - ACTIONS(10960), 11, + [92079] = 2, + ACTIONS(11043), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190415,7 +195579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 42, + ACTIONS(11041), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -190457,9 +195621,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [88695] = 2, - ACTIONS(10956), 11, + [92138] = 2, + ACTIONS(11039), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190471,7 +195636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 42, + ACTIONS(11037), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -190513,9 +195678,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [88753] = 2, - ACTIONS(10952), 11, + [92197] = 2, + ACTIONS(11035), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190527,7 +195693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 42, + ACTIONS(11033), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -190569,9 +195735,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [88811] = 2, - ACTIONS(10948), 11, + [92256] = 2, + ACTIONS(11031), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190583,7 +195750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 42, + ACTIONS(11029), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -190625,9 +195792,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [88869] = 2, - ACTIONS(10944), 11, + [92315] = 2, + ACTIONS(10901), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190639,18 +195807,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 42, + ACTIONS(10899), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -190681,9 +195849,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [88927] = 2, - ACTIONS(10940), 11, + [92374] = 2, + ACTIONS(11025), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190695,7 +195864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 42, + ACTIONS(11023), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -190737,9 +195906,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [88985] = 2, - ACTIONS(10932), 11, + [92433] = 2, + ACTIONS(11021), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190751,7 +195921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 42, + ACTIONS(11019), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -190793,9 +195963,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [89043] = 2, - ACTIONS(10928), 11, + [92492] = 2, + ACTIONS(11017), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190807,7 +195978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 42, + ACTIONS(11015), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -190849,9 +196020,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [89101] = 2, - ACTIONS(10924), 11, + [92551] = 2, + ACTIONS(11013), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190863,7 +196035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 42, + ACTIONS(11011), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -190905,9 +196077,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [89159] = 2, - ACTIONS(10920), 11, + [92610] = 2, + ACTIONS(11009), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190919,7 +196092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 42, + ACTIONS(11007), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -190961,9 +196134,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [89217] = 2, - ACTIONS(10916), 11, + [92669] = 2, + ACTIONS(11005), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190975,7 +196149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 42, + ACTIONS(11003), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -191017,9 +196191,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [89275] = 2, - ACTIONS(10912), 11, + [92728] = 2, + ACTIONS(11001), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191031,7 +196206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 42, + ACTIONS(10999), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -191073,9 +196248,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [89333] = 2, - ACTIONS(10908), 11, + [92787] = 2, + ACTIONS(11087), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191087,7 +196263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 42, + ACTIONS(11085), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -191129,9 +196305,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [89391] = 2, - ACTIONS(10904), 11, + [92846] = 2, + ACTIONS(10993), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191143,7 +196320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 42, + ACTIONS(10991), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -191185,9 +196362,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [89449] = 2, - ACTIONS(10900), 11, + [92905] = 2, + ACTIONS(10989), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191199,7 +196377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 42, + ACTIONS(10987), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -191241,9 +196419,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [89507] = 2, - ACTIONS(10896), 11, + [92964] = 2, + ACTIONS(10985), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191255,7 +196434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 42, + ACTIONS(10983), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -191297,9 +196476,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [89565] = 2, - ACTIONS(10892), 11, + [93023] = 2, + ACTIONS(10909), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191311,18 +196491,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 42, + ACTIONS(10907), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -191353,9 +196533,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [89623] = 2, - ACTIONS(10888), 11, + [93082] = 2, + ACTIONS(10981), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191367,7 +196548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 42, + ACTIONS(10979), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -191409,9 +196590,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [89681] = 2, - ACTIONS(11024), 11, + [93141] = 2, + ACTIONS(10933), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191423,7 +196605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 42, + ACTIONS(10931), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -191465,9 +196647,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [89739] = 2, - ACTIONS(10884), 11, + [93200] = 2, + ACTIONS(10973), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191479,7 +196662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 42, + ACTIONS(10971), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -191521,9 +196704,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [89797] = 2, - ACTIONS(10880), 11, + [93259] = 2, + ACTIONS(10969), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191535,7 +196719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 42, + ACTIONS(10967), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -191577,9 +196761,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [89855] = 2, - ACTIONS(10876), 11, + [93318] = 2, + ACTIONS(10965), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191591,7 +196776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 42, + ACTIONS(10963), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -191633,9 +196818,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [89913] = 2, - ACTIONS(10872), 11, + [93377] = 2, + ACTIONS(11025), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191647,7 +196833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 42, + ACTIONS(11023), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -191658,7 +196845,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -191689,9 +196875,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [89971] = 2, - ACTIONS(10868), 11, + [93436] = 2, + ACTIONS(10961), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191703,7 +196890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 42, + ACTIONS(10959), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -191745,9 +196932,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [90029] = 2, - ACTIONS(10864), 11, + [93495] = 2, + ACTIONS(10957), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191759,7 +196947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 42, + ACTIONS(10955), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -191801,9 +196989,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [90087] = 2, - ACTIONS(10860), 11, + [93554] = 2, + ACTIONS(10953), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191815,7 +197004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 42, + ACTIONS(10951), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -191857,9 +197046,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [90145] = 2, - ACTIONS(10750), 11, + [93613] = 2, + ACTIONS(10849), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191871,18 +197061,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 42, + ACTIONS(10847), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -191913,9 +197103,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [90203] = 2, - ACTIONS(10856), 11, + [93672] = 2, + ACTIONS(10949), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191927,7 +197118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 42, + ACTIONS(10947), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -191969,9 +197160,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [90261] = 2, - ACTIONS(10852), 11, + [93731] = 2, + ACTIONS(11197), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191983,7 +197175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 42, + ACTIONS(11195), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -191994,7 +197186,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -192014,6 +197205,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -192025,9 +197217,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [90319] = 2, - ACTIONS(10848), 11, + [93790] = 2, + ACTIONS(10945), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192039,7 +197232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 42, + ACTIONS(10943), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -192081,9 +197274,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [90377] = 2, - ACTIONS(10844), 11, + [93849] = 2, + ACTIONS(10941), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192095,7 +197289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 42, + ACTIONS(10939), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -192137,9 +197331,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [90435] = 2, - ACTIONS(10754), 11, + [93908] = 2, + ACTIONS(10913), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192151,7 +197346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 42, + ACTIONS(10911), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -192193,9 +197388,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [90493] = 2, - ACTIONS(10678), 11, + [93967] = 2, + ACTIONS(10993), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192207,7 +197403,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 42, + ACTIONS(10991), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -192218,7 +197415,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -192249,9 +197445,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [90551] = 2, - ACTIONS(10840), 11, + [94026] = 2, + ACTIONS(10937), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192263,7 +197460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 42, + ACTIONS(10935), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -192305,9 +197502,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [90609] = 2, - ACTIONS(10836), 11, + [94085] = 2, + ACTIONS(10889), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192319,7 +197517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 42, + ACTIONS(10887), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -192361,9 +197559,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [90667] = 2, - ACTIONS(10832), 11, + [94144] = 2, + ACTIONS(10917), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192375,18 +197574,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 42, + ACTIONS(10915), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -192417,9 +197616,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [90725] = 2, - ACTIONS(11014), 11, + [94203] = 2, + ACTIONS(10929), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192431,7 +197631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 42, + ACTIONS(10927), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -192442,6 +197642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -192461,7 +197662,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -192473,9 +197673,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [90783] = 2, - ACTIONS(10828), 11, + [94262] = 2, + ACTIONS(10925), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192487,7 +197688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 42, + ACTIONS(10923), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -192529,9 +197730,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [90841] = 2, - ACTIONS(10824), 11, + [94321] = 2, + ACTIONS(10921), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192543,7 +197745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 42, + ACTIONS(10919), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -192585,9 +197787,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [90899] = 2, - ACTIONS(10818), 11, + [94380] = 2, + ACTIONS(10997), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192599,7 +197802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 42, + ACTIONS(10995), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -192641,9 +197844,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [90957] = 2, - ACTIONS(10758), 11, + [94439] = 2, + ACTIONS(10853), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192655,14 +197859,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 42, + ACTIONS(10851), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -192684,6 +197887,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -192697,9 +197901,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [91015] = 2, - ACTIONS(10814), 11, + [94498] = 2, + ACTIONS(10917), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192711,7 +197916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 42, + ACTIONS(10915), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -192753,9 +197958,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [91073] = 2, - ACTIONS(10762), 11, + [94557] = 2, + ACTIONS(10913), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192767,18 +197973,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 42, + ACTIONS(10911), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -192809,9 +198015,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [91131] = 2, - ACTIONS(10810), 11, + [94616] = 2, + ACTIONS(10885), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192823,7 +198030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 42, + ACTIONS(10883), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -192834,7 +198041,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -192852,6 +198058,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -192865,9 +198072,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [91189] = 2, - ACTIONS(10806), 11, + [94675] = 2, + ACTIONS(10889), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192879,7 +198087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 42, + ACTIONS(10887), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -192890,7 +198098,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -192908,6 +198115,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -192921,9 +198129,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [91247] = 2, - ACTIONS(10798), 11, + [94734] = 2, + ACTIONS(10893), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192935,7 +198144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 42, + ACTIONS(10891), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -192946,7 +198155,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -192964,6 +198172,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -192977,9 +198186,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [91305] = 2, - ACTIONS(10794), 11, + [94793] = 2, + ACTIONS(10897), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192991,7 +198201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 42, + ACTIONS(10895), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -193002,7 +198212,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -193020,6 +198229,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -193033,9 +198243,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [91363] = 2, - ACTIONS(10710), 11, + [94852] = 2, + ACTIONS(10901), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193047,7 +198258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 42, + ACTIONS(10899), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -193089,9 +198300,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [91421] = 2, - ACTIONS(10782), 11, + [94911] = 2, + ACTIONS(10905), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193103,7 +198315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 42, + ACTIONS(10903), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -193114,7 +198326,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -193132,6 +198343,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -193145,9 +198357,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [91479] = 2, - ACTIONS(10790), 11, + [94970] = 2, + ACTIONS(10909), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193159,7 +198372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 42, + ACTIONS(10907), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -193170,7 +198383,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -193188,6 +198400,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -193201,9 +198414,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [91537] = 2, - ACTIONS(10714), 11, + [95029] = 2, + ACTIONS(10909), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193215,7 +198429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 42, + ACTIONS(10907), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -193226,6 +198440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -193243,7 +198458,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -193257,9 +198471,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [91595] = 2, - ACTIONS(10718), 11, + [95088] = 2, + ACTIONS(10913), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193271,7 +198486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 42, + ACTIONS(10911), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -193313,9 +198528,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [91653] = 2, - ACTIONS(10722), 11, + [95147] = 2, + ACTIONS(10917), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193327,7 +198543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 42, + ACTIONS(10915), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -193369,9 +198585,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [91711] = 2, - ACTIONS(10802), 11, + [95206] = 2, + ACTIONS(10997), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193383,7 +198600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 42, + ACTIONS(10995), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -193425,9 +198642,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [91769] = 2, - ACTIONS(10674), 11, + [95265] = 2, + ACTIONS(10921), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193439,7 +198657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 42, + ACTIONS(10919), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -193481,9 +198699,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [91827] = 2, - ACTIONS(10726), 11, + [95324] = 2, + ACTIONS(10925), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193495,7 +198714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 42, + ACTIONS(10923), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -193537,9 +198756,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [91885] = 2, - ACTIONS(10730), 11, + [95383] = 2, + ACTIONS(10929), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193551,7 +198771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 42, + ACTIONS(10927), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -193593,9 +198813,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [91943] = 2, - ACTIONS(10786), 11, + [95442] = 2, + ACTIONS(10933), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193607,7 +198828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 42, + ACTIONS(10931), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -193618,7 +198839,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -193636,6 +198856,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -193649,9 +198870,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [92001] = 2, - ACTIONS(10734), 11, + [95501] = 2, + ACTIONS(10937), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193663,7 +198885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 42, + ACTIONS(10935), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -193705,9 +198927,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [92059] = 2, - ACTIONS(10738), 11, + [95560] = 2, + ACTIONS(10941), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193719,7 +198942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 42, + ACTIONS(10939), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -193761,9 +198984,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [92117] = 2, - ACTIONS(10742), 11, + [95619] = 2, + ACTIONS(10945), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193775,7 +198999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 42, + ACTIONS(10943), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -193817,9 +199041,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [92175] = 2, - ACTIONS(10746), 11, + [95678] = 2, + ACTIONS(10949), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193831,7 +199056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 42, + ACTIONS(10947), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -193873,9 +199098,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [92233] = 2, - ACTIONS(10750), 11, + [95737] = 2, + ACTIONS(10849), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193887,7 +199113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 42, + ACTIONS(10847), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -193929,9 +199155,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [92291] = 2, - ACTIONS(10754), 11, + [95796] = 2, + ACTIONS(10953), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193943,7 +199170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 42, + ACTIONS(10951), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -193985,9 +199212,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [92349] = 2, - ACTIONS(10758), 11, + [95855] = 2, + ACTIONS(10957), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193999,7 +199227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 42, + ACTIONS(10955), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -194041,9 +199269,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [92407] = 2, - ACTIONS(10762), 11, + [95914] = 2, + ACTIONS(10961), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194055,7 +199284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 42, + ACTIONS(10959), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -194097,9 +199326,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [92465] = 2, - ACTIONS(10766), 11, + [95973] = 2, + ACTIONS(10905), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194111,7 +199341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 42, + ACTIONS(10903), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -194122,6 +199352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -194139,7 +199370,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -194153,9 +199383,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [92523] = 2, - ACTIONS(10770), 11, + [96032] = 2, + ACTIONS(10965), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194167,7 +199398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 42, + ACTIONS(10963), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -194209,9 +199440,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [92581] = 2, - ACTIONS(10774), 11, + [96091] = 2, + ACTIONS(10969), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194223,7 +199455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 42, + ACTIONS(10967), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -194265,9 +199497,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [92639] = 2, - ACTIONS(10778), 11, + [96150] = 2, + ACTIONS(11151), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194279,7 +199512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 42, + ACTIONS(11149), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -194307,10 +199540,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -194321,9 +199554,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [92697] = 2, - ACTIONS(10782), 11, + [96209] = 2, + ACTIONS(10973), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194335,7 +199569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 42, + ACTIONS(10971), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -194377,9 +199611,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [92755] = 2, - ACTIONS(10786), 11, + [96268] = 2, + ACTIONS(10977), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194391,7 +199626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 42, + ACTIONS(10975), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -194433,9 +199668,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [92813] = 2, - ACTIONS(10790), 11, + [96327] = 2, + ACTIONS(10981), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194447,7 +199683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 42, + ACTIONS(10979), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -194489,9 +199725,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [92871] = 2, - ACTIONS(10936), 11, + [96386] = 2, + ACTIONS(10985), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194503,7 +199740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 42, + ACTIONS(10983), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -194514,7 +199751,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -194532,6 +199768,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -194545,9 +199782,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [92929] = 2, - ACTIONS(10794), 11, + [96445] = 2, + ACTIONS(10989), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194559,7 +199797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 42, + ACTIONS(10987), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -194601,9 +199839,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [92987] = 2, - ACTIONS(10798), 11, + [96504] = 2, + ACTIONS(10993), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194615,7 +199854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 42, + ACTIONS(10991), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -194657,9 +199896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [93045] = 2, - ACTIONS(10936), 11, + [96563] = 2, + ACTIONS(11087), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194671,7 +199911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 42, + ACTIONS(11085), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -194699,10 +199939,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -194713,9 +199953,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [93103] = 2, - ACTIONS(10806), 11, + [96622] = 2, + ACTIONS(11001), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194727,7 +199968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 42, + ACTIONS(10999), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -194769,9 +200010,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [93161] = 2, - ACTIONS(10810), 11, + [96681] = 2, + ACTIONS(11005), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194783,7 +200025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 42, + ACTIONS(11003), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -194825,9 +200067,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [93219] = 2, - ACTIONS(10814), 11, + [96740] = 2, + ACTIONS(11009), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194839,7 +200082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 42, + ACTIONS(11007), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -194881,9 +200124,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [93277] = 2, - ACTIONS(10818), 11, + [96799] = 2, + ACTIONS(11013), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194895,7 +200139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 42, + ACTIONS(11011), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -194937,9 +200181,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [93335] = 2, - ACTIONS(10824), 11, + [96858] = 2, + ACTIONS(11017), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194951,7 +200196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 42, + ACTIONS(11015), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -194993,9 +200238,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [93393] = 2, - ACTIONS(10828), 11, + [96917] = 2, + ACTIONS(11021), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195007,7 +200253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 42, + ACTIONS(11019), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -195049,9 +200295,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [93451] = 2, - ACTIONS(10832), 11, + [96976] = 2, + ACTIONS(11025), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195063,7 +200310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 42, + ACTIONS(11023), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -195105,9 +200352,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [93509] = 2, - ACTIONS(10836), 11, + [97035] = 2, + ACTIONS(11031), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195119,7 +200367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 42, + ACTIONS(11029), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -195161,9 +200409,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [93567] = 2, - ACTIONS(10840), 11, + [97094] = 2, + ACTIONS(11035), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195175,7 +200424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 42, + ACTIONS(11033), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -195217,9 +200466,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [93625] = 2, - ACTIONS(10678), 11, + [97153] = 2, + ACTIONS(11039), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195231,7 +200481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 42, + ACTIONS(11037), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -195273,9 +200523,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [93683] = 2, - ACTIONS(10844), 11, + [97212] = 2, + ACTIONS(11043), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195287,7 +200538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 42, + ACTIONS(11041), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -195329,9 +200580,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [93741] = 2, - ACTIONS(10848), 11, + [97271] = 2, + ACTIONS(11047), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195343,7 +200595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 42, + ACTIONS(11045), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -195385,9 +200637,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [93799] = 2, - ACTIONS(10852), 11, + [97330] = 2, + ACTIONS(11051), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195399,7 +200652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 42, + ACTIONS(11049), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -195441,9 +200694,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [93857] = 2, - ACTIONS(10856), 11, + [97389] = 2, + ACTIONS(11055), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195455,7 +200709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 42, + ACTIONS(11053), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -195497,9 +200751,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [93915] = 2, - ACTIONS(10860), 11, + [97448] = 2, + ACTIONS(11059), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195511,7 +200766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 42, + ACTIONS(11057), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -195553,9 +200808,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [93973] = 2, - ACTIONS(10864), 11, + [97507] = 2, + ACTIONS(11063), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195567,7 +200823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 42, + ACTIONS(11061), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -195609,9 +200865,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [94031] = 2, - ACTIONS(10868), 11, + [97566] = 2, + ACTIONS(11067), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195623,7 +200880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 42, + ACTIONS(11065), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -195665,9 +200922,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [94089] = 2, - ACTIONS(10872), 11, + [97625] = 2, + ACTIONS(11071), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195679,7 +200937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 42, + ACTIONS(11069), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -195721,9 +200979,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [94147] = 2, - ACTIONS(10876), 11, + [97684] = 2, + ACTIONS(11075), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195735,7 +200994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 42, + ACTIONS(11073), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -195777,9 +201036,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [94205] = 2, - ACTIONS(10880), 11, + [97743] = 2, + ACTIONS(11079), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195791,7 +201051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 42, + ACTIONS(11077), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -195833,9 +201093,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [94263] = 2, - ACTIONS(10884), 11, + [97802] = 2, + ACTIONS(11083), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195847,7 +201108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 42, + ACTIONS(11081), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -195889,9 +201150,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [94321] = 2, - ACTIONS(11024), 11, + [97861] = 2, + ACTIONS(11155), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195903,7 +201165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 42, + ACTIONS(11153), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -195945,9 +201207,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [94379] = 2, - ACTIONS(10888), 11, + [97920] = 2, + ACTIONS(11091), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195959,7 +201222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 42, + ACTIONS(11089), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -196001,9 +201264,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [94437] = 2, - ACTIONS(10892), 11, + [97979] = 2, + ACTIONS(11095), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196015,7 +201279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 42, + ACTIONS(11093), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -196057,9 +201321,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [94495] = 2, - ACTIONS(10896), 11, + [98038] = 2, + ACTIONS(11099), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196071,7 +201336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 42, + ACTIONS(11097), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -196113,9 +201378,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [94553] = 2, - ACTIONS(10900), 11, + [98097] = 2, + ACTIONS(11103), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196127,7 +201393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 42, + ACTIONS(11101), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -196169,9 +201435,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [94611] = 2, - ACTIONS(10904), 11, + [98156] = 2, + ACTIONS(11107), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196183,7 +201450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 42, + ACTIONS(11105), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -196225,9 +201492,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [94669] = 2, - ACTIONS(10908), 11, + [98215] = 2, + ACTIONS(11111), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196239,7 +201507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 42, + ACTIONS(11109), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -196281,9 +201549,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [94727] = 2, - ACTIONS(10912), 11, + [98274] = 2, + ACTIONS(11115), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196295,7 +201564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 42, + ACTIONS(11113), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -196337,9 +201606,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [94785] = 2, - ACTIONS(10916), 11, + [98333] = 2, + ACTIONS(11119), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196351,7 +201621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 42, + ACTIONS(11117), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -196393,9 +201663,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [94843] = 2, - ACTIONS(10920), 11, + [98392] = 2, + ACTIONS(11123), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196407,7 +201678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 42, + ACTIONS(11121), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -196449,9 +201720,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [94901] = 2, - ACTIONS(10924), 11, + [98451] = 2, + ACTIONS(11127), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196463,7 +201735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 42, + ACTIONS(11125), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -196505,9 +201777,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [94959] = 2, - ACTIONS(10928), 11, + [98510] = 2, + ACTIONS(11131), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196519,7 +201792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 42, + ACTIONS(11129), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -196561,9 +201834,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [95017] = 2, - ACTIONS(10932), 11, + [98569] = 2, + ACTIONS(11135), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196575,7 +201849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 42, + ACTIONS(11133), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -196617,9 +201891,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [95075] = 2, - ACTIONS(10940), 11, + [98628] = 2, + ACTIONS(11197), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196631,7 +201906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 42, + ACTIONS(11195), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -196659,10 +201934,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -196673,9 +201948,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [95133] = 2, - ACTIONS(10944), 11, + [98687] = 2, + ACTIONS(11139), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196687,7 +201963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 42, + ACTIONS(11137), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -196729,9 +202005,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [95191] = 2, - ACTIONS(10948), 11, + [98746] = 2, + ACTIONS(11143), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196743,7 +202020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 42, + ACTIONS(11141), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -196785,9 +202062,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [95249] = 2, - ACTIONS(10952), 11, + [98805] = 2, + ACTIONS(11147), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196799,7 +202077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 42, + ACTIONS(11145), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -196841,9 +202119,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [95307] = 2, - ACTIONS(10956), 11, + [98864] = 2, + ACTIONS(11187), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196855,7 +202134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 42, + ACTIONS(11185), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -196897,9 +202176,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [95365] = 2, - ACTIONS(10960), 11, + [98923] = 2, + ACTIONS(11159), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196911,7 +202191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 42, + ACTIONS(11157), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -196953,9 +202233,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [95423] = 2, - ACTIONS(10964), 11, + [98982] = 2, + ACTIONS(11163), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196967,7 +202248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 42, + ACTIONS(11161), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -197009,9 +202290,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [95481] = 2, - ACTIONS(11014), 11, + [99041] = 2, + ACTIONS(11167), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197023,7 +202305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 42, + ACTIONS(11165), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -197051,10 +202333,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -197065,9 +202347,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [95539] = 2, - ACTIONS(10968), 11, + [99100] = 2, + ACTIONS(11171), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197079,7 +202362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 42, + ACTIONS(11169), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -197121,9 +202404,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [95597] = 2, - ACTIONS(10972), 11, + [99159] = 2, + ACTIONS(11175), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197135,7 +202419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 42, + ACTIONS(11173), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -197177,9 +202461,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [95655] = 2, - ACTIONS(10976), 11, + [99218] = 2, + ACTIONS(11179), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197191,7 +202476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 42, + ACTIONS(11177), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -197233,9 +202518,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [95713] = 2, - ACTIONS(10980), 11, + [99277] = 2, + ACTIONS(11183), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197247,7 +202533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 42, + ACTIONS(11181), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -197289,9 +202575,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [95771] = 2, - ACTIONS(10984), 11, + [99336] = 2, + ACTIONS(10853), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197303,7 +202590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 42, + ACTIONS(10851), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -197331,8 +202618,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -197345,9 +202632,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [95829] = 2, - ACTIONS(11000), 11, + [99395] = 2, + ACTIONS(10901), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197359,7 +202647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 42, + ACTIONS(10899), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -197370,6 +202658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -197387,7 +202676,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -197401,9 +202689,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [95887] = 2, - ACTIONS(10988), 11, + [99454] = 2, + ACTIONS(10897), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197415,7 +202704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 42, + ACTIONS(10895), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -197426,6 +202715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -197443,7 +202733,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -197457,9 +202746,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [95945] = 2, - ACTIONS(10992), 11, + [99513] = 2, + ACTIONS(10885), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197471,7 +202761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 42, + ACTIONS(10883), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -197499,8 +202789,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -197513,9 +202803,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [96003] = 2, - ACTIONS(10996), 11, + [99572] = 2, + ACTIONS(10889), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197527,7 +202818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 42, + ACTIONS(10887), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -197555,8 +202846,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -197569,9 +202860,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [96061] = 2, - ACTIONS(11004), 11, + [99631] = 2, + ACTIONS(10893), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197583,7 +202875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 42, + ACTIONS(10891), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -197611,8 +202903,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -197625,9 +202917,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [96119] = 2, - ACTIONS(10710), 11, + [99690] = 2, + ACTIONS(10897), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197639,7 +202932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 42, + ACTIONS(10895), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -197681,9 +202974,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [96177] = 2, - ACTIONS(10766), 11, + [99749] = 2, + ACTIONS(10901), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197695,7 +202989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 42, + ACTIONS(10899), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -197706,7 +203000,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -197725,6 +203018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -197737,9 +203031,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [96235] = 2, - ACTIONS(10778), 11, + [99808] = 2, + ACTIONS(10905), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197751,7 +203046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 42, + ACTIONS(10903), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -197762,7 +203057,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -197781,6 +203075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -197793,9 +203088,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [96293] = 2, - ACTIONS(10714), 11, + [99867] = 2, + ACTIONS(10909), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197807,7 +203103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 42, + ACTIONS(10907), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -197849,9 +203145,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [96351] = 2, - ACTIONS(10718), 11, + [99926] = 2, + ACTIONS(10893), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197863,7 +203160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 42, + ACTIONS(10891), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -197874,6 +203171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -197892,7 +203190,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -197905,9 +203202,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [96409] = 2, - ACTIONS(10722), 11, + [99985] = 2, + ACTIONS(10913), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197919,7 +203217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 42, + ACTIONS(10911), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -197961,9 +203259,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [96467] = 2, - ACTIONS(10802), 11, + [100044] = 2, + ACTIONS(10917), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197975,7 +203274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 42, + ACTIONS(10915), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -198017,9 +203316,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [96525] = 2, - ACTIONS(10674), 11, + [100103] = 2, + ACTIONS(10997), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198031,7 +203331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 42, + ACTIONS(10995), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -198073,9 +203373,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [96583] = 2, - ACTIONS(10726), 11, + [100162] = 2, + ACTIONS(10921), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198087,7 +203388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 42, + ACTIONS(10919), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -198129,9 +203430,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [96641] = 2, - ACTIONS(10730), 11, + [100221] = 2, + ACTIONS(10925), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198143,7 +203445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 42, + ACTIONS(10923), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -198185,9 +203487,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [96699] = 2, - ACTIONS(10774), 11, + [100280] = 2, + ACTIONS(10929), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198199,7 +203502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 42, + ACTIONS(10927), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -198210,7 +203513,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -198229,6 +203531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -198241,9 +203544,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [96757] = 2, - ACTIONS(10734), 11, + [100339] = 2, + ACTIONS(10933), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198255,7 +203559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 42, + ACTIONS(10931), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -198297,9 +203601,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [96815] = 2, - ACTIONS(10738), 11, + [100398] = 2, + ACTIONS(10937), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198311,7 +203616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 42, + ACTIONS(10935), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -198353,9 +203658,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [96873] = 2, - ACTIONS(10742), 11, + [100457] = 2, + ACTIONS(10941), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198367,7 +203673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 42, + ACTIONS(10939), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -198409,9 +203715,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [96931] = 2, - ACTIONS(10746), 11, + [100516] = 2, + ACTIONS(10945), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198423,7 +203730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 42, + ACTIONS(10943), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -198465,9 +203772,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [96989] = 2, - ACTIONS(10750), 11, + [100575] = 2, + ACTIONS(10949), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198479,7 +203787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 42, + ACTIONS(10947), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -198521,9 +203829,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [97047] = 2, - ACTIONS(10754), 11, + [100634] = 2, + ACTIONS(10849), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198535,7 +203844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 42, + ACTIONS(10847), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -198577,9 +203886,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [97105] = 2, - ACTIONS(10758), 11, + [100693] = 2, + ACTIONS(10953), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198591,7 +203901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 42, + ACTIONS(10951), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -198633,9 +203943,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [97163] = 2, - ACTIONS(10762), 11, + [100752] = 2, + ACTIONS(10957), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198647,7 +203958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 42, + ACTIONS(10955), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -198689,9 +204000,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [97221] = 2, - ACTIONS(10766), 11, + [100811] = 2, + ACTIONS(10961), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198703,7 +204015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 42, + ACTIONS(10959), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -198745,9 +204057,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [97279] = 2, - ACTIONS(10770), 11, + [100870] = 2, + ACTIONS(11179), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198759,7 +204072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 42, + ACTIONS(11177), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -198769,6 +204082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -198788,7 +204102,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -198801,9 +204114,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [97337] = 2, - ACTIONS(10774), 11, + [100929] = 2, + ACTIONS(10965), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198815,7 +204129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 42, + ACTIONS(10963), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -198857,9 +204171,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [97395] = 2, - ACTIONS(10778), 11, + [100988] = 2, + ACTIONS(10969), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198871,7 +204186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 42, + ACTIONS(10967), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -198913,9 +204228,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [97453] = 2, - ACTIONS(10782), 11, + [101047] = 2, + ACTIONS(11151), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198927,7 +204243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 42, + ACTIONS(11149), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -198956,11 +204272,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -198969,9 +204285,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [97511] = 2, - ACTIONS(10786), 11, + [101106] = 2, + ACTIONS(10973), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198983,7 +204300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 42, + ACTIONS(10971), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -199025,9 +204342,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [97569] = 2, - ACTIONS(10790), 11, + [101165] = 2, + ACTIONS(10977), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199039,7 +204357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 42, + ACTIONS(10975), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -199081,9 +204399,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [97627] = 2, - ACTIONS(10770), 11, + [101224] = 2, + ACTIONS(10981), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199095,7 +204414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 42, + ACTIONS(10979), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -199106,7 +204425,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -199125,6 +204443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -199137,9 +204456,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [97685] = 2, - ACTIONS(10794), 11, + [101283] = 2, + ACTIONS(10985), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199151,7 +204471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 42, + ACTIONS(10983), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -199193,9 +204513,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [97743] = 2, - ACTIONS(10798), 11, + [101342] = 2, + ACTIONS(10989), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199207,7 +204528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 42, + ACTIONS(10987), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -199249,9 +204570,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [97801] = 2, - ACTIONS(10936), 11, + [101401] = 2, + ACTIONS(10993), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199263,7 +204585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 42, + ACTIONS(10991), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -199292,11 +204614,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -199305,9 +204627,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [97859] = 2, - ACTIONS(10806), 11, + [101460] = 2, + ACTIONS(11087), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199319,7 +204642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 42, + ACTIONS(11085), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -199361,9 +204684,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [97917] = 2, - ACTIONS(10810), 11, + [101519] = 2, + ACTIONS(11001), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199375,7 +204699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 42, + ACTIONS(10999), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -199417,9 +204741,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [97975] = 2, - ACTIONS(10814), 11, + [101578] = 2, + ACTIONS(11005), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199431,7 +204756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 42, + ACTIONS(11003), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -199473,9 +204798,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [98033] = 2, - ACTIONS(10818), 11, + [101637] = 2, + ACTIONS(11009), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199487,7 +204813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 42, + ACTIONS(11007), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -199529,9 +204855,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [98091] = 2, - ACTIONS(10824), 11, + [101696] = 2, + ACTIONS(11013), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199543,7 +204870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 42, + ACTIONS(11011), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -199585,9 +204912,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [98149] = 2, - ACTIONS(10828), 11, + [101755] = 2, + ACTIONS(11017), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199599,7 +204927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 42, + ACTIONS(11015), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -199641,9 +204969,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [98207] = 2, - ACTIONS(10832), 11, + [101814] = 2, + ACTIONS(11021), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199655,7 +204984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 42, + ACTIONS(11019), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -199697,9 +205026,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [98265] = 2, - ACTIONS(10836), 11, + [101873] = 2, + ACTIONS(11025), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199711,7 +205041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 42, + ACTIONS(11023), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -199753,9 +205083,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [98323] = 2, - ACTIONS(10840), 11, + [101932] = 2, + ACTIONS(11031), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199767,7 +205098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 42, + ACTIONS(11029), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -199809,9 +205140,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [98381] = 2, - ACTIONS(10678), 11, + [101991] = 2, + ACTIONS(11035), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199823,7 +205155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 42, + ACTIONS(11033), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -199865,9 +205197,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [98439] = 2, - ACTIONS(10844), 11, + [102050] = 2, + ACTIONS(11039), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199879,7 +205212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 42, + ACTIONS(11037), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -199921,9 +205254,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [98497] = 2, - ACTIONS(10848), 11, + [102109] = 2, + ACTIONS(11043), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199935,7 +205269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 42, + ACTIONS(11041), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -199977,9 +205311,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [98555] = 2, - ACTIONS(10852), 11, + [102168] = 2, + ACTIONS(11047), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199991,7 +205326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 42, + ACTIONS(11045), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -200033,9 +205368,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [98613] = 2, - ACTIONS(10856), 11, + [102227] = 2, + ACTIONS(11051), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200047,7 +205383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 42, + ACTIONS(11049), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -200089,9 +205425,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [98671] = 2, - ACTIONS(10860), 11, + [102286] = 2, + ACTIONS(11055), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200103,7 +205440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 42, + ACTIONS(11053), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -200145,9 +205482,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [98729] = 2, - ACTIONS(10864), 11, + [102345] = 2, + ACTIONS(11059), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200159,7 +205497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 42, + ACTIONS(11057), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -200201,9 +205539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [98787] = 2, - ACTIONS(10868), 11, + [102404] = 2, + ACTIONS(11063), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200215,7 +205554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 42, + ACTIONS(11061), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -200257,9 +205596,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [98845] = 2, - ACTIONS(10872), 11, + [102463] = 2, + ACTIONS(11067), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200271,7 +205611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 42, + ACTIONS(11065), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -200313,9 +205653,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [98903] = 2, - ACTIONS(10876), 11, + [102522] = 2, + ACTIONS(11071), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200327,7 +205668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 42, + ACTIONS(11069), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -200369,9 +205710,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [98961] = 2, - ACTIONS(10880), 11, + [102581] = 2, + ACTIONS(11075), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200383,7 +205725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 42, + ACTIONS(11073), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -200425,9 +205767,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [99019] = 2, - ACTIONS(10884), 11, + [102640] = 2, + ACTIONS(11079), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200439,7 +205782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 42, + ACTIONS(11077), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -200481,9 +205824,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [99077] = 2, - ACTIONS(11024), 11, + [102699] = 2, + ACTIONS(11083), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200495,7 +205839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 42, + ACTIONS(11081), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -200537,9 +205881,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [99135] = 2, - ACTIONS(10888), 11, + [102758] = 2, + ACTIONS(11155), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200551,7 +205896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 42, + ACTIONS(11153), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -200593,9 +205938,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [99193] = 2, - ACTIONS(10892), 11, + [102817] = 2, + ACTIONS(11091), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200607,7 +205953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 42, + ACTIONS(11089), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -200649,9 +205995,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [99251] = 2, - ACTIONS(10896), 11, + [102876] = 2, + ACTIONS(11095), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200663,7 +206010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 42, + ACTIONS(11093), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -200705,9 +206052,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [99309] = 2, - ACTIONS(10900), 11, + [102935] = 2, + ACTIONS(11099), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200719,7 +206067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 42, + ACTIONS(11097), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -200761,9 +206109,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [99367] = 2, - ACTIONS(10904), 11, + [102994] = 2, + ACTIONS(11103), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200775,7 +206124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 42, + ACTIONS(11101), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -200817,9 +206166,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [99425] = 2, - ACTIONS(10908), 11, + [103053] = 2, + ACTIONS(11107), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200831,7 +206181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 42, + ACTIONS(11105), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -200873,9 +206223,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [99483] = 2, - ACTIONS(10912), 11, + [103112] = 2, + ACTIONS(11111), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200887,7 +206238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 42, + ACTIONS(11109), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -200929,9 +206280,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [99541] = 2, - ACTIONS(10916), 11, + [103171] = 2, + ACTIONS(11115), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200943,7 +206295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 42, + ACTIONS(11113), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -200985,9 +206337,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [99599] = 2, - ACTIONS(10920), 11, + [103230] = 2, + ACTIONS(11119), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200999,7 +206352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 42, + ACTIONS(11117), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -201041,9 +206394,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [99657] = 2, - ACTIONS(10924), 11, + [103289] = 2, + ACTIONS(11123), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201055,7 +206409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 42, + ACTIONS(11121), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -201097,9 +206451,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [99715] = 2, - ACTIONS(10928), 11, + [103348] = 2, + ACTIONS(11127), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201111,7 +206466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 42, + ACTIONS(11125), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -201153,9 +206508,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [99773] = 2, - ACTIONS(10932), 11, + [103407] = 2, + ACTIONS(11131), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201167,7 +206523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 42, + ACTIONS(11129), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -201209,9 +206565,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [99831] = 2, - ACTIONS(10940), 11, + [103466] = 2, + ACTIONS(11135), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201223,7 +206580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 42, + ACTIONS(11133), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -201265,9 +206622,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [99889] = 2, - ACTIONS(10944), 11, + [103525] = 2, + ACTIONS(11197), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201279,7 +206637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 42, + ACTIONS(11195), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -201308,11 +206666,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -201321,9 +206679,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [99947] = 2, - ACTIONS(10948), 11, + [103584] = 2, + ACTIONS(11139), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201335,7 +206694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 42, + ACTIONS(11137), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -201377,9 +206736,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [100005] = 2, - ACTIONS(10952), 11, + [103643] = 2, + ACTIONS(11143), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201391,7 +206751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 42, + ACTIONS(11141), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -201433,9 +206793,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [100063] = 2, - ACTIONS(10956), 11, + [103702] = 2, + ACTIONS(11147), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201447,7 +206808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 42, + ACTIONS(11145), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -201489,9 +206850,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [100121] = 2, - ACTIONS(10960), 11, + [103761] = 2, + ACTIONS(11187), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201503,7 +206865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 42, + ACTIONS(11185), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -201545,9 +206907,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [100179] = 2, - ACTIONS(10964), 11, + [103820] = 2, + ACTIONS(11159), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201559,7 +206922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 42, + ACTIONS(11157), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -201601,9 +206964,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [100237] = 2, - ACTIONS(11014), 11, + [103879] = 2, + ACTIONS(11163), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201615,7 +206979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 42, + ACTIONS(11161), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -201644,11 +207008,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -201657,9 +207021,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [100295] = 2, - ACTIONS(10968), 11, + [103938] = 2, + ACTIONS(11167), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201671,7 +207036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 42, + ACTIONS(11165), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -201713,9 +207078,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [100353] = 2, - ACTIONS(10972), 11, + [103997] = 2, + ACTIONS(11171), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201727,7 +207093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 42, + ACTIONS(11169), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -201769,9 +207135,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [100411] = 2, - ACTIONS(10976), 11, + [104056] = 2, + ACTIONS(11175), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201783,7 +207150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 42, + ACTIONS(11173), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -201825,9 +207192,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [100469] = 2, - ACTIONS(10980), 11, + [104115] = 2, + ACTIONS(11179), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201839,7 +207207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 42, + ACTIONS(11177), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -201881,9 +207249,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [100527] = 2, - ACTIONS(10984), 11, + [104174] = 2, + ACTIONS(11183), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201895,7 +207264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 42, + ACTIONS(11181), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -201937,9 +207306,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [100585] = 2, - ACTIONS(11000), 11, + [104233] = 2, + ACTIONS(10853), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201951,7 +207321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 42, + ACTIONS(10851), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -201980,8 +207350,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -201993,9 +207363,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [100643] = 2, - ACTIONS(10988), 11, + [104292] = 2, + ACTIONS(10885), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202007,7 +207378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 42, + ACTIONS(10883), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -202018,6 +207389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -202036,7 +207408,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -202049,9 +207420,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [100701] = 2, - ACTIONS(10992), 11, + [104351] = 2, + ACTIONS(10997), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202063,13 +207435,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 42, + ACTIONS(10995), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -202092,7 +207465,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -202105,9 +207477,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [100759] = 2, - ACTIONS(10996), 11, + [104410] = 2, + ACTIONS(10885), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202119,7 +207492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 42, + ACTIONS(10883), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -202148,8 +207521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -202161,9 +207534,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [100817] = 2, - ACTIONS(11004), 11, + [104469] = 2, + ACTIONS(10889), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202175,7 +207549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 42, + ACTIONS(10887), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -202204,8 +207578,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -202217,9 +207591,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [100875] = 2, - ACTIONS(10710), 11, + [104528] = 2, + ACTIONS(10893), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202231,7 +207606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 42, + ACTIONS(10891), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -202273,9 +207648,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [100933] = 2, - ACTIONS(10742), 11, + [104587] = 2, + ACTIONS(10897), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202287,7 +207663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 42, + ACTIONS(10895), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -202298,7 +207674,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -202318,6 +207693,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -202329,9 +207705,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [100991] = 2, - ACTIONS(10766), 11, + [104646] = 2, + ACTIONS(10901), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202343,14 +207720,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 42, + ACTIONS(10899), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -202374,6 +207750,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -202385,9 +207762,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [101049] = 2, - ACTIONS(10714), 11, + [104705] = 2, + ACTIONS(10905), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202399,7 +207777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 42, + ACTIONS(10903), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -202441,9 +207819,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [101107] = 2, - ACTIONS(10718), 11, + [104764] = 2, + ACTIONS(10909), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202455,7 +207834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 42, + ACTIONS(10907), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -202497,9 +207876,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [101165] = 2, - ACTIONS(10722), 11, + [104823] = 2, + ACTIONS(10853), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202511,7 +207891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 42, + ACTIONS(10851), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -202522,6 +207902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -202541,7 +207922,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -202553,9 +207933,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [101223] = 2, - ACTIONS(10802), 11, + [104882] = 2, + ACTIONS(10913), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202567,7 +207948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 42, + ACTIONS(10911), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -202609,9 +207990,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [101281] = 2, - ACTIONS(10674), 11, + [104941] = 2, + ACTIONS(10917), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202623,7 +208005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 42, + ACTIONS(10915), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -202665,9 +208047,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [101339] = 2, - ACTIONS(10726), 11, + [105000] = 2, + ACTIONS(10997), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202679,7 +208062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 42, + ACTIONS(10995), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -202721,9 +208104,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [101397] = 2, - ACTIONS(10730), 11, + [105059] = 2, + ACTIONS(10921), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202735,7 +208119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 42, + ACTIONS(10919), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -202777,9 +208161,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [101455] = 2, - ACTIONS(10762), 11, + [105118] = 2, + ACTIONS(10925), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202791,7 +208176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 42, + ACTIONS(10923), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -202802,7 +208187,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -202822,6 +208206,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -202833,9 +208218,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [101513] = 2, - ACTIONS(10734), 11, + [105177] = 2, + ACTIONS(10929), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202847,7 +208233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 42, + ACTIONS(10927), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -202889,9 +208275,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [101571] = 2, - ACTIONS(10738), 11, + [105236] = 2, + ACTIONS(10933), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202903,7 +208290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 42, + ACTIONS(10931), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -202945,9 +208332,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [101629] = 2, - ACTIONS(10742), 11, + [105295] = 2, + ACTIONS(10937), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202959,7 +208347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 42, + ACTIONS(10935), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -203001,9 +208389,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [101687] = 2, - ACTIONS(10746), 11, + [105354] = 2, + ACTIONS(10941), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203015,7 +208404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 42, + ACTIONS(10939), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -203057,9 +208446,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [101745] = 2, - ACTIONS(10750), 11, + [105413] = 2, + ACTIONS(10945), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203071,7 +208461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 42, + ACTIONS(10943), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -203113,9 +208503,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [101803] = 2, - ACTIONS(10754), 11, + [105472] = 2, + ACTIONS(10949), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203127,7 +208518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 42, + ACTIONS(10947), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -203169,9 +208560,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [101861] = 2, - ACTIONS(10758), 11, + [105531] = 2, + ACTIONS(10849), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203183,7 +208575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 42, + ACTIONS(10847), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -203225,9 +208617,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [101919] = 2, - ACTIONS(10762), 11, + [105590] = 2, + ACTIONS(10953), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203239,7 +208632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 42, + ACTIONS(10951), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -203281,9 +208674,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [101977] = 2, - ACTIONS(10766), 11, + [105649] = 2, + ACTIONS(10957), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203295,7 +208689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 42, + ACTIONS(10955), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -203337,9 +208731,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [102035] = 2, - ACTIONS(10770), 11, + [105708] = 2, + ACTIONS(10961), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203351,7 +208746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 42, + ACTIONS(10959), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -203393,9 +208788,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [102093] = 2, - ACTIONS(10774), 11, + [105767] = 2, + ACTIONS(11183), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203407,7 +208803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 42, + ACTIONS(11181), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -203417,6 +208813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -203437,7 +208834,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -203449,9 +208845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [102151] = 2, - ACTIONS(10778), 11, + [105826] = 2, + ACTIONS(10965), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203463,7 +208860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 42, + ACTIONS(10963), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -203505,9 +208902,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [102209] = 2, - ACTIONS(10782), 11, + [105885] = 2, + ACTIONS(10969), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203519,7 +208917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 42, + ACTIONS(10967), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -203561,9 +208959,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [102267] = 2, - ACTIONS(10786), 11, + [105944] = 2, + ACTIONS(11151), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203575,7 +208974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 42, + ACTIONS(11149), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -203605,11 +209004,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -203617,9 +209016,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [102325] = 2, - ACTIONS(10790), 11, + [106003] = 2, + ACTIONS(10973), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203631,7 +209031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 42, + ACTIONS(10971), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -203673,9 +209073,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [102383] = 2, - ACTIONS(10758), 11, + [106062] = 2, + ACTIONS(10977), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203687,7 +209088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 42, + ACTIONS(10975), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -203698,7 +209099,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -203718,6 +209118,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -203729,9 +209130,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [102441] = 2, - ACTIONS(10794), 11, + [106121] = 2, + ACTIONS(10981), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203743,7 +209145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 42, + ACTIONS(10979), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -203785,9 +209187,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [102499] = 2, - ACTIONS(10798), 11, + [106180] = 2, + ACTIONS(10985), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203799,7 +209202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 42, + ACTIONS(10983), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -203841,9 +209244,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [102557] = 2, - ACTIONS(10936), 11, + [106239] = 2, + ACTIONS(10989), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203855,7 +209259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 42, + ACTIONS(10987), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -203885,11 +209289,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -203897,9 +209301,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [102615] = 2, - ACTIONS(10806), 11, + [106298] = 2, + ACTIONS(10993), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203911,7 +209316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 42, + ACTIONS(10991), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -203953,9 +209358,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [102673] = 2, - ACTIONS(10810), 11, + [106357] = 2, + ACTIONS(11087), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203967,7 +209373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 42, + ACTIONS(11085), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -204009,9 +209415,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [102731] = 2, - ACTIONS(10814), 11, + [106416] = 2, + ACTIONS(11001), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204023,7 +209430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 42, + ACTIONS(10999), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -204065,9 +209472,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [102789] = 2, - ACTIONS(10818), 11, + [106475] = 2, + ACTIONS(11005), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204079,7 +209487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 42, + ACTIONS(11003), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -204121,9 +209529,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [102847] = 2, - ACTIONS(10824), 11, + [106534] = 2, + ACTIONS(11009), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204135,7 +209544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 42, + ACTIONS(11007), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -204177,9 +209586,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [102905] = 2, - ACTIONS(10828), 11, + [106593] = 2, + ACTIONS(11013), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204191,7 +209601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 42, + ACTIONS(11011), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -204233,9 +209643,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [102963] = 2, - ACTIONS(10832), 11, + [106652] = 2, + ACTIONS(11017), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204247,7 +209658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 42, + ACTIONS(11015), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -204289,9 +209700,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [103021] = 2, - ACTIONS(10836), 11, + [106711] = 2, + ACTIONS(11021), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204303,7 +209715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 42, + ACTIONS(11019), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -204345,9 +209757,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [103079] = 2, - ACTIONS(10840), 11, + [106770] = 2, + ACTIONS(11025), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204359,7 +209772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 42, + ACTIONS(11023), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -204401,9 +209814,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [103137] = 2, - ACTIONS(10678), 11, + [106829] = 2, + ACTIONS(11031), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204415,7 +209829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 42, + ACTIONS(11029), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -204457,9 +209871,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [103195] = 2, - ACTIONS(10844), 11, + [106888] = 2, + ACTIONS(11035), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204471,7 +209886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 42, + ACTIONS(11033), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -204513,9 +209928,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [103253] = 2, - ACTIONS(10848), 11, + [106947] = 2, + ACTIONS(11039), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204527,7 +209943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 42, + ACTIONS(11037), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -204569,9 +209985,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [103311] = 2, - ACTIONS(10852), 11, + [107006] = 2, + ACTIONS(11043), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204583,7 +210000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 42, + ACTIONS(11041), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -204625,9 +210042,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [103369] = 2, - ACTIONS(10856), 11, + [107065] = 2, + ACTIONS(11047), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204639,7 +210057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 42, + ACTIONS(11045), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -204681,9 +210099,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [103427] = 2, - ACTIONS(10860), 11, + [107124] = 2, + ACTIONS(11051), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204695,7 +210114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 42, + ACTIONS(11049), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -204737,9 +210156,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [103485] = 2, - ACTIONS(10864), 11, + [107183] = 2, + ACTIONS(11055), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204751,7 +210171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 42, + ACTIONS(11053), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -204793,9 +210213,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [103543] = 2, - ACTIONS(10868), 11, + [107242] = 2, + ACTIONS(11059), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204807,7 +210228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 42, + ACTIONS(11057), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -204849,9 +210270,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [103601] = 2, - ACTIONS(10872), 11, + [107301] = 2, + ACTIONS(11063), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204863,7 +210285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 42, + ACTIONS(11061), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -204905,9 +210327,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [103659] = 2, - ACTIONS(10876), 11, + [107360] = 2, + ACTIONS(11067), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204919,7 +210342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 42, + ACTIONS(11065), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -204961,9 +210384,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [103717] = 2, - ACTIONS(10880), 11, + [107419] = 2, + ACTIONS(11071), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204975,7 +210399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 42, + ACTIONS(11069), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -205017,9 +210441,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [103775] = 2, - ACTIONS(10884), 11, + [107478] = 2, + ACTIONS(11075), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205031,7 +210456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 42, + ACTIONS(11073), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -205073,9 +210498,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [103833] = 2, - ACTIONS(11024), 11, + [107537] = 2, + ACTIONS(10989), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205087,7 +210513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 42, + ACTIONS(10987), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -205117,7 +210544,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -205129,9 +210555,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [103891] = 2, - ACTIONS(10888), 11, + [107596] = 2, + ACTIONS(11083), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205143,7 +210570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 42, + ACTIONS(11081), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -205185,9 +210612,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [103949] = 2, - ACTIONS(10892), 11, + [107655] = 2, + ACTIONS(11155), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205199,7 +210627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 42, + ACTIONS(11153), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -205241,9 +210669,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [104007] = 2, - ACTIONS(10896), 11, + [107714] = 2, + ACTIONS(11091), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205255,7 +210684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 42, + ACTIONS(11089), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -205297,9 +210726,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [104065] = 2, - ACTIONS(10900), 11, + [107773] = 2, + ACTIONS(11095), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205311,7 +210741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 42, + ACTIONS(11093), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -205353,9 +210783,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [104123] = 2, - ACTIONS(10904), 11, + [107832] = 2, + ACTIONS(11099), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205367,7 +210798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 42, + ACTIONS(11097), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -205409,9 +210840,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [104181] = 2, - ACTIONS(10908), 11, + [107891] = 2, + ACTIONS(11103), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205423,7 +210855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 42, + ACTIONS(11101), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -205465,9 +210897,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [104239] = 2, - ACTIONS(10912), 11, + [107950] = 2, + ACTIONS(11107), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205479,7 +210912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 42, + ACTIONS(11105), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -205521,9 +210954,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [104297] = 2, - ACTIONS(10916), 11, + [108009] = 2, + ACTIONS(11111), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205535,7 +210969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 42, + ACTIONS(11109), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -205577,9 +211011,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [104355] = 2, - ACTIONS(10920), 11, + [108068] = 2, + ACTIONS(11115), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205591,7 +211026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 42, + ACTIONS(11113), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -205633,9 +211068,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [104413] = 2, - ACTIONS(10924), 11, + [108127] = 2, + ACTIONS(11119), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205647,7 +211083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 42, + ACTIONS(11117), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -205689,9 +211125,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [104471] = 2, - ACTIONS(10928), 11, + [108186] = 2, + ACTIONS(11123), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205703,7 +211140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 42, + ACTIONS(11121), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -205745,9 +211182,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [104529] = 2, - ACTIONS(10932), 11, + [108245] = 2, + ACTIONS(11127), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205759,7 +211197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 42, + ACTIONS(11125), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -205801,9 +211239,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [104587] = 2, - ACTIONS(10940), 11, + [108304] = 2, + ACTIONS(11131), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205815,7 +211254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 42, + ACTIONS(11129), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -205857,9 +211296,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [104645] = 2, - ACTIONS(10944), 11, + [108363] = 2, + ACTIONS(11135), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205871,7 +211311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 42, + ACTIONS(11133), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -205913,9 +211353,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [104703] = 2, - ACTIONS(10948), 11, + [108422] = 2, + ACTIONS(11197), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205927,7 +211368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 42, + ACTIONS(11195), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -205957,11 +211398,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -205969,9 +211410,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [104761] = 2, - ACTIONS(10952), 11, + [108481] = 2, + ACTIONS(11139), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205983,7 +211425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 42, + ACTIONS(11137), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -206025,9 +211467,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [104819] = 2, - ACTIONS(10956), 11, + [108540] = 2, + ACTIONS(11143), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206039,7 +211482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 42, + ACTIONS(11141), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -206081,9 +211524,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [104877] = 2, - ACTIONS(10960), 11, + [108599] = 2, + ACTIONS(11147), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206095,7 +211539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 42, + ACTIONS(11145), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -206137,9 +211581,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [104935] = 2, - ACTIONS(10964), 11, + [108658] = 2, + ACTIONS(11187), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206151,7 +211596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 42, + ACTIONS(11185), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -206193,9 +211638,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [104993] = 2, - ACTIONS(11014), 11, + [108717] = 2, + ACTIONS(11159), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206207,7 +211653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 42, + ACTIONS(11157), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -206237,11 +211683,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -206249,9 +211695,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [105051] = 2, - ACTIONS(10968), 11, + [108776] = 2, + ACTIONS(11163), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206263,7 +211710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 42, + ACTIONS(11161), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -206305,9 +211752,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [105109] = 2, - ACTIONS(10972), 11, + [108835] = 2, + ACTIONS(11167), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206319,7 +211767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 42, + ACTIONS(11165), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -206361,9 +211809,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [105167] = 2, - ACTIONS(10976), 11, + [108894] = 2, + ACTIONS(11171), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206375,7 +211824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 42, + ACTIONS(11169), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -206417,9 +211866,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [105225] = 2, - ACTIONS(10980), 11, + [108953] = 2, + ACTIONS(11175), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206431,7 +211881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 42, + ACTIONS(11173), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -206473,9 +211923,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [105283] = 2, - ACTIONS(10984), 11, + [109012] = 2, + ACTIONS(11179), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206487,7 +211938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 42, + ACTIONS(11177), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -206529,9 +211980,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [105341] = 2, - ACTIONS(11000), 11, + [109071] = 2, + ACTIONS(11183), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206543,7 +211995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 42, + ACTIONS(11181), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -206585,9 +212037,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [105399] = 2, - ACTIONS(10988), 11, + [109130] = 2, + ACTIONS(10853), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206599,7 +212052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 42, + ACTIONS(10851), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -206629,8 +212082,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -206641,9 +212094,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [105457] = 2, - ACTIONS(10992), 11, + [109189] = 2, + ACTIONS(11143), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206655,7 +212109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 42, + ACTIONS(11141), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -206665,6 +212119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -206685,7 +212140,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -206697,9 +212151,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [105515] = 2, - ACTIONS(10996), 11, + [109248] = 2, + ACTIONS(11175), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206711,7 +212166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 42, + ACTIONS(11173), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -206721,6 +212176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -206741,7 +212197,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -206753,9 +212208,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [105573] = 2, - ACTIONS(11004), 11, + [109307] = 2, + ACTIONS(10885), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206767,7 +212223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 42, + ACTIONS(10883), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -206797,8 +212253,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -206809,9 +212265,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [105631] = 2, - ACTIONS(10710), 11, + [109366] = 2, + ACTIONS(10889), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206823,7 +212280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 42, + ACTIONS(10887), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -206865,9 +212322,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [105689] = 2, - ACTIONS(10770), 11, + [109425] = 2, + ACTIONS(10893), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206879,14 +212337,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 42, + ACTIONS(10891), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -206911,6 +212368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -206921,9 +212379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [105747] = 2, - ACTIONS(10754), 11, + [109484] = 2, + ACTIONS(10897), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206935,7 +212394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 42, + ACTIONS(10895), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -206946,7 +212405,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -206967,6 +212425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -206977,9 +212436,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [105805] = 2, - ACTIONS(10714), 11, + [109543] = 2, + ACTIONS(10901), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206991,7 +212451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 42, + ACTIONS(10899), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -207033,9 +212493,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [105863] = 2, - ACTIONS(10718), 11, + [109602] = 2, + ACTIONS(10905), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207047,7 +212508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 42, + ACTIONS(10903), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -207089,9 +212550,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [105921] = 2, - ACTIONS(10722), 11, + [109661] = 2, + ACTIONS(10909), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207103,7 +212565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 42, + ACTIONS(10907), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -207145,9 +212607,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [105979] = 2, - ACTIONS(10802), 11, + [109720] = 2, + ACTIONS(11171), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207159,7 +212622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 42, + ACTIONS(11169), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -207169,6 +212632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -207190,7 +212654,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -207201,9 +212664,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [106037] = 2, - ACTIONS(10674), 11, + [109779] = 2, + ACTIONS(10913), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207215,7 +212679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 42, + ACTIONS(10911), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -207257,9 +212721,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [106095] = 2, - ACTIONS(10726), 11, + [109838] = 2, + ACTIONS(10917), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207271,7 +212736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 42, + ACTIONS(10915), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -207313,9 +212778,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [106153] = 2, - ACTIONS(10730), 11, + [109897] = 2, + ACTIONS(10997), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207327,7 +212793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 42, + ACTIONS(10995), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -207369,9 +212835,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [106211] = 2, - ACTIONS(10750), 11, + [109956] = 2, + ACTIONS(10921), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207383,7 +212850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 42, + ACTIONS(10919), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -207394,7 +212861,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -207415,6 +212881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -207425,9 +212892,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [106269] = 2, - ACTIONS(10734), 11, + [110015] = 2, + ACTIONS(10925), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207439,7 +212907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 42, + ACTIONS(10923), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -207481,9 +212949,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [106327] = 2, - ACTIONS(10738), 11, + [110074] = 2, + ACTIONS(10929), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207495,7 +212964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 42, + ACTIONS(10927), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -207537,9 +213006,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [106385] = 2, - ACTIONS(10742), 11, + [110133] = 2, + ACTIONS(10933), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207551,7 +213021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 42, + ACTIONS(10931), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -207593,9 +213063,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [106443] = 2, - ACTIONS(10746), 11, + [110192] = 2, + ACTIONS(10937), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207607,7 +213078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 42, + ACTIONS(10935), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -207649,9 +213120,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [106501] = 2, - ACTIONS(10750), 11, + [110251] = 2, + ACTIONS(10941), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207663,7 +213135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 42, + ACTIONS(10939), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -207705,9 +213177,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [106559] = 2, - ACTIONS(10754), 11, + [110310] = 2, + ACTIONS(10945), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207719,7 +213192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 42, + ACTIONS(10943), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -207761,9 +213234,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [106617] = 2, - ACTIONS(10758), 11, + [110369] = 2, + ACTIONS(10949), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207775,7 +213249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 42, + ACTIONS(10947), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -207817,9 +213291,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [106675] = 2, - ACTIONS(10762), 11, + [110428] = 2, + ACTIONS(10849), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207831,7 +213306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 42, + ACTIONS(10847), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -207873,9 +213348,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [106733] = 2, - ACTIONS(10766), 11, + [110487] = 2, + ACTIONS(10953), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207887,7 +213363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 42, + ACTIONS(10951), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -207929,9 +213405,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [106791] = 2, - ACTIONS(10770), 11, + [110546] = 2, + ACTIONS(10957), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207943,7 +213420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 42, + ACTIONS(10955), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -207985,9 +213462,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [106849] = 2, - ACTIONS(10774), 11, + [110605] = 2, + ACTIONS(10961), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207999,7 +213477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 42, + ACTIONS(10959), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -208041,9 +213519,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [106907] = 2, - ACTIONS(10778), 11, + [110664] = 2, + ACTIONS(11167), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208055,7 +213534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 42, + ACTIONS(11165), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -208065,6 +213544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -208086,7 +213566,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -208097,9 +213576,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [106965] = 2, - ACTIONS(10782), 11, + [110723] = 2, + ACTIONS(10965), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208111,7 +213591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 42, + ACTIONS(10963), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -208153,9 +213633,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [107023] = 2, - ACTIONS(10786), 11, + [110782] = 2, + ACTIONS(10969), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208167,7 +213648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 42, + ACTIONS(10967), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -208209,9 +213690,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [107081] = 2, - ACTIONS(10790), 11, + [110841] = 2, + ACTIONS(11151), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208223,7 +213705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 42, + ACTIONS(11149), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -208254,7 +213736,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -208263,11 +213744,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [107139] = 2, - ACTIONS(10746), 11, + [110900] = 2, + ACTIONS(10973), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208279,7 +213762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 42, + ACTIONS(10971), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -208290,7 +213773,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -208311,6 +213793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -208321,9 +213804,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [107197] = 2, - ACTIONS(10794), 11, + [110959] = 2, + ACTIONS(10977), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208335,7 +213819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 42, + ACTIONS(10975), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -208377,9 +213861,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [107255] = 2, - ACTIONS(10798), 11, + [111018] = 2, + ACTIONS(10981), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208391,7 +213876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 42, + ACTIONS(10979), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -208433,9 +213918,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [107313] = 2, - ACTIONS(10936), 11, + [111077] = 2, + ACTIONS(10985), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208447,7 +213933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 42, + ACTIONS(10983), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -208478,6 +213964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -208486,12 +213973,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [107371] = 2, - ACTIONS(10806), 11, + [111136] = 2, + ACTIONS(10989), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208503,7 +213990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 42, + ACTIONS(10987), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -208545,9 +214032,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [107429] = 2, - ACTIONS(10810), 11, + [111195] = 2, + ACTIONS(10993), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208559,7 +214047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 42, + ACTIONS(10991), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -208601,9 +214089,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [107487] = 2, - ACTIONS(10814), 11, + [111254] = 2, + ACTIONS(11087), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208615,7 +214104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 42, + ACTIONS(11085), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -208657,9 +214146,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [107545] = 2, - ACTIONS(10818), 11, + [111313] = 2, + ACTIONS(11001), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208671,7 +214161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 42, + ACTIONS(10999), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -208713,9 +214203,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [107603] = 2, - ACTIONS(10824), 11, + [111372] = 2, + ACTIONS(11005), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208727,7 +214218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 42, + ACTIONS(11003), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -208769,9 +214260,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [107661] = 2, - ACTIONS(10828), 11, + [111431] = 2, + ACTIONS(11009), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208783,7 +214275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 42, + ACTIONS(11007), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -208825,9 +214317,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [107719] = 2, - ACTIONS(10832), 11, + [111490] = 2, + ACTIONS(11013), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208839,7 +214332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 42, + ACTIONS(11011), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -208881,9 +214374,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [107777] = 2, - ACTIONS(10836), 11, + [111549] = 2, + ACTIONS(11017), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208895,7 +214389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 42, + ACTIONS(11015), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -208937,9 +214431,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [107835] = 2, - ACTIONS(10840), 11, + [111608] = 2, + ACTIONS(11021), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208951,7 +214446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 42, + ACTIONS(11019), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -208993,9 +214488,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [107893] = 2, - ACTIONS(10678), 11, + [111667] = 2, + ACTIONS(11025), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209007,7 +214503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 42, + ACTIONS(11023), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -209049,9 +214545,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [107951] = 2, - ACTIONS(10844), 11, + [111726] = 2, + ACTIONS(11031), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209063,7 +214560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 42, + ACTIONS(11029), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -209105,9 +214602,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [108009] = 2, - ACTIONS(10848), 11, + [111785] = 2, + ACTIONS(11035), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209119,7 +214617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 42, + ACTIONS(11033), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -209161,9 +214659,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [108067] = 2, - ACTIONS(10852), 11, + [111844] = 2, + ACTIONS(11039), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209175,7 +214674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 42, + ACTIONS(11037), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -209217,9 +214716,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [108125] = 2, - ACTIONS(10856), 11, + [111903] = 2, + ACTIONS(11043), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209231,7 +214731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 42, + ACTIONS(11041), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -209273,9 +214773,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [108183] = 2, - ACTIONS(10860), 11, + [111962] = 2, + ACTIONS(11047), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209287,7 +214788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 42, + ACTIONS(11045), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -209329,9 +214830,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [108241] = 2, - ACTIONS(10864), 11, + [112021] = 2, + ACTIONS(11051), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209343,7 +214845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 42, + ACTIONS(11049), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -209385,9 +214887,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [108299] = 2, - ACTIONS(10868), 11, + [112080] = 2, + ACTIONS(11055), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209399,7 +214902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 42, + ACTIONS(11053), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -209441,9 +214944,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [108357] = 2, - ACTIONS(10872), 11, + [112139] = 2, + ACTIONS(11059), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209455,7 +214959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 42, + ACTIONS(11057), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -209497,9 +215001,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [108415] = 2, - ACTIONS(10876), 11, + [112198] = 2, + ACTIONS(11063), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209511,7 +215016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 42, + ACTIONS(11061), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -209553,9 +215058,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [108473] = 2, - ACTIONS(10880), 11, + [112257] = 2, + ACTIONS(11067), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209567,7 +215073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 42, + ACTIONS(11065), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -209609,9 +215115,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [108531] = 2, - ACTIONS(10884), 11, + [112316] = 2, + ACTIONS(11071), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209623,7 +215130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 42, + ACTIONS(11069), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -209665,9 +215172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [108589] = 2, - ACTIONS(11024), 11, + [112375] = 2, + ACTIONS(11075), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209679,7 +215187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 42, + ACTIONS(11073), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -209721,9 +215229,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [108647] = 2, - ACTIONS(10888), 11, + [112434] = 2, + ACTIONS(11079), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209735,7 +215244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 42, + ACTIONS(11077), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -209777,9 +215286,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [108705] = 2, - ACTIONS(10892), 11, + [112493] = 2, + ACTIONS(11083), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209791,7 +215301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 42, + ACTIONS(11081), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -209833,9 +215343,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [108763] = 2, - ACTIONS(10896), 11, + [112552] = 2, + ACTIONS(11155), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209847,7 +215358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 42, + ACTIONS(11153), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -209889,9 +215400,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [108821] = 2, - ACTIONS(10900), 11, + [112611] = 2, + ACTIONS(11091), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209903,7 +215415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 42, + ACTIONS(11089), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -209945,9 +215457,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [108879] = 2, - ACTIONS(10904), 11, + [112670] = 2, + ACTIONS(11095), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209959,7 +215472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 42, + ACTIONS(11093), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -210001,9 +215514,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [108937] = 2, - ACTIONS(10908), 11, + [112729] = 2, + ACTIONS(11099), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210015,7 +215529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 42, + ACTIONS(11097), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -210057,9 +215571,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [108995] = 2, - ACTIONS(10912), 11, + [112788] = 2, + ACTIONS(11103), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210071,7 +215586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 42, + ACTIONS(11101), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -210113,9 +215628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [109053] = 2, - ACTIONS(10916), 11, + [112847] = 2, + ACTIONS(11107), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210127,7 +215643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 42, + ACTIONS(11105), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -210169,9 +215685,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [109111] = 2, - ACTIONS(10920), 11, + [112906] = 2, + ACTIONS(11111), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210183,7 +215700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 42, + ACTIONS(11109), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -210225,9 +215742,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [109169] = 2, - ACTIONS(10924), 11, + [112965] = 2, + ACTIONS(11115), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210239,7 +215757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 42, + ACTIONS(11113), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -210281,9 +215799,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [109227] = 2, - ACTIONS(10928), 11, + [113024] = 2, + ACTIONS(11119), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210295,7 +215814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 42, + ACTIONS(11117), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -210337,9 +215856,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [109285] = 2, - ACTIONS(10932), 11, + [113083] = 2, + ACTIONS(11123), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210351,7 +215871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 42, + ACTIONS(11121), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -210393,9 +215913,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [109343] = 2, - ACTIONS(10940), 11, + [113142] = 2, + ACTIONS(11127), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210407,7 +215928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 42, + ACTIONS(11125), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -210449,9 +215970,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [109401] = 2, - ACTIONS(10944), 11, + [113201] = 2, + ACTIONS(11131), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210463,7 +215985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 42, + ACTIONS(11129), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -210505,9 +216027,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [109459] = 2, - ACTIONS(10948), 11, + [113260] = 2, + ACTIONS(11135), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210519,7 +216042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 42, + ACTIONS(11133), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -210561,9 +216084,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [109517] = 2, - ACTIONS(10952), 11, + [113319] = 2, + ACTIONS(11197), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210575,7 +216099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 42, + ACTIONS(11195), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -210606,7 +216130,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -210615,11 +216138,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [109575] = 2, - ACTIONS(10956), 11, + [113378] = 2, + ACTIONS(11139), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210631,7 +216156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 42, + ACTIONS(11137), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -210673,9 +216198,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [109633] = 2, - ACTIONS(10960), 11, + [113437] = 2, + ACTIONS(11143), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210687,7 +216213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 42, + ACTIONS(11141), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -210729,9 +216255,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [109691] = 2, - ACTIONS(10964), 11, + [113496] = 2, + ACTIONS(11147), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210743,7 +216270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 42, + ACTIONS(11145), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -210785,9 +216312,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [109749] = 2, - ACTIONS(11014), 11, + [113555] = 2, + ACTIONS(11187), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210799,7 +216327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 42, + ACTIONS(11185), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -210830,6 +216358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -210838,12 +216367,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [109807] = 2, - ACTIONS(10968), 11, + [113614] = 2, + ACTIONS(11159), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210855,7 +216384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 42, + ACTIONS(11157), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -210897,9 +216426,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [109865] = 2, - ACTIONS(10972), 11, + [113673] = 2, + ACTIONS(11163), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210911,7 +216441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 42, + ACTIONS(11161), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -210953,9 +216483,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [109923] = 2, - ACTIONS(10976), 11, + [113732] = 2, + ACTIONS(11167), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210967,7 +216498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 42, + ACTIONS(11165), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -211009,9 +216540,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [109981] = 2, - ACTIONS(10980), 11, + [113791] = 2, + ACTIONS(11171), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211023,7 +216555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 42, + ACTIONS(11169), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -211065,9 +216597,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [110039] = 2, - ACTIONS(10984), 11, + [113850] = 2, + ACTIONS(11175), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211079,7 +216612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 42, + ACTIONS(11173), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -211121,9 +216654,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [110097] = 2, - ACTIONS(11000), 11, + [113909] = 2, + ACTIONS(11179), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211135,7 +216669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 42, + ACTIONS(11177), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -211177,9 +216711,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [110155] = 2, - ACTIONS(10988), 11, + [113968] = 2, + ACTIONS(11183), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211191,7 +216726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 42, + ACTIONS(11181), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -211233,9 +216768,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [110213] = 2, - ACTIONS(10992), 11, + [114027] = 2, + ACTIONS(10853), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211247,7 +216783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 42, + ACTIONS(10851), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -211278,9 +216814,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -211289,9 +216825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [110271] = 2, - ACTIONS(10996), 11, + [114086] = 2, + ACTIONS(11163), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211303,7 +216840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 42, + ACTIONS(11161), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -211313,6 +216850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -211334,7 +216872,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -211345,9 +216882,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [110329] = 2, - ACTIONS(11004), 11, + [114145] = 2, + ACTIONS(11159), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211359,7 +216897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 42, + ACTIONS(11157), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -211369,6 +216907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -211390,7 +216929,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -211401,9 +216939,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [110387] = 2, - ACTIONS(10710), 11, + [114204] = 2, + ACTIONS(10885), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211415,7 +216954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 42, + ACTIONS(10883), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -211457,9 +216996,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [110445] = 2, - ACTIONS(10802), 11, + [114263] = 2, + ACTIONS(10889), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211471,7 +217011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 42, + ACTIONS(10887), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -211482,7 +217022,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -211505,6 +217044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -211513,9 +217053,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [110503] = 2, - ACTIONS(10738), 11, + [114322] = 2, + ACTIONS(10893), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211527,7 +217068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 42, + ACTIONS(10891), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -211538,7 +217079,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -211561,6 +217101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -211569,9 +217110,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [110561] = 2, - ACTIONS(10714), 11, + [114381] = 2, + ACTIONS(10897), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211583,7 +217125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 42, + ACTIONS(10895), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -211625,9 +217167,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [110619] = 2, - ACTIONS(10718), 11, + [114440] = 2, + ACTIONS(10901), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211639,7 +217182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 42, + ACTIONS(10899), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -211681,9 +217224,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [110677] = 2, - ACTIONS(10722), 11, + [114499] = 2, + ACTIONS(10905), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211695,7 +217239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 42, + ACTIONS(10903), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -211737,9 +217281,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [110735] = 2, - ACTIONS(10802), 11, + [114558] = 2, + ACTIONS(10909), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211751,7 +217296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 42, + ACTIONS(10907), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -211793,9 +217338,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [110793] = 2, - ACTIONS(10674), 11, + [114617] = 2, + ACTIONS(11187), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211807,7 +217353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 42, + ACTIONS(11185), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -211817,6 +217363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -211840,7 +217387,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -211849,9 +217395,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [110851] = 2, - ACTIONS(10726), 11, + [114676] = 2, + ACTIONS(10913), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211863,7 +217410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 42, + ACTIONS(10911), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -211905,9 +217452,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [110909] = 2, - ACTIONS(10730), 11, + [114735] = 2, + ACTIONS(10917), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211919,7 +217467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 42, + ACTIONS(10915), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -211961,9 +217509,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [110967] = 2, - ACTIONS(10734), 11, + [114794] = 2, + ACTIONS(10997), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211975,7 +217524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 42, + ACTIONS(10995), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -211986,7 +217535,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -212009,6 +217557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -212017,9 +217566,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [111025] = 2, - ACTIONS(10734), 11, + [114853] = 2, + ACTIONS(10921), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212031,7 +217581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 42, + ACTIONS(10919), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -212073,9 +217623,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [111083] = 2, - ACTIONS(10738), 11, + [114912] = 2, + ACTIONS(10925), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212087,7 +217638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 42, + ACTIONS(10923), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -212129,9 +217680,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [111141] = 2, - ACTIONS(10742), 11, + [114971] = 2, + ACTIONS(10929), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212143,7 +217695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 42, + ACTIONS(10927), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -212185,9 +217737,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [111199] = 2, - ACTIONS(10746), 11, + [115030] = 2, + ACTIONS(10933), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212199,7 +217752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 42, + ACTIONS(10931), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -212241,9 +217794,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [111257] = 2, - ACTIONS(10750), 11, + [115089] = 2, + ACTIONS(10937), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212255,7 +217809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 42, + ACTIONS(10935), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -212297,9 +217851,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [111315] = 2, - ACTIONS(10754), 11, + [115148] = 2, + ACTIONS(10941), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212311,7 +217866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 42, + ACTIONS(10939), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -212353,9 +217908,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [111373] = 2, - ACTIONS(10758), 11, + [115207] = 2, + ACTIONS(10945), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212367,7 +217923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 42, + ACTIONS(10943), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -212409,9 +217965,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [111431] = 2, - ACTIONS(10762), 11, + [115266] = 2, + ACTIONS(10949), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212423,7 +217980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 42, + ACTIONS(10947), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -212465,9 +218022,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [111489] = 2, - ACTIONS(10766), 11, + [115325] = 2, + ACTIONS(10849), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212479,7 +218037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 42, + ACTIONS(10847), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -212521,9 +218079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [111547] = 2, - ACTIONS(10770), 11, + [115384] = 2, + ACTIONS(10953), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212535,7 +218094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 42, + ACTIONS(10951), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -212577,9 +218136,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [111605] = 2, - ACTIONS(10774), 11, + [115443] = 2, + ACTIONS(10957), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212591,7 +218151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 42, + ACTIONS(10955), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -212633,9 +218193,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [111663] = 2, - ACTIONS(10778), 11, + [115502] = 2, + ACTIONS(10961), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212647,7 +218208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 42, + ACTIONS(10959), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -212689,9 +218250,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [111721] = 2, - ACTIONS(10782), 11, + [115561] = 2, + ACTIONS(11147), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212703,7 +218265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 42, + ACTIONS(11145), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -212713,6 +218275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -212736,7 +218299,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -212745,9 +218307,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [111779] = 2, - ACTIONS(10786), 11, + [115620] = 2, + ACTIONS(10965), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212759,7 +218322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 42, + ACTIONS(10963), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -212801,9 +218364,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [111837] = 2, - ACTIONS(10790), 11, + [115679] = 2, + ACTIONS(10969), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212815,7 +218379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 42, + ACTIONS(10967), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -212857,9 +218421,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [111895] = 2, - ACTIONS(10730), 11, + [115738] = 2, + ACTIONS(11151), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212871,7 +218436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 42, + ACTIONS(11149), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -212882,7 +218447,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -212912,10 +218476,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [111953] = 2, - ACTIONS(10794), 11, + [115797] = 2, + ACTIONS(10973), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212927,7 +218493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 42, + ACTIONS(10971), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -212969,9 +218535,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [112011] = 2, - ACTIONS(10798), 11, + [115856] = 2, + ACTIONS(10977), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212983,7 +218550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 42, + ACTIONS(10975), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -213025,9 +218592,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [112069] = 2, - ACTIONS(10936), 11, + [115915] = 2, + ACTIONS(10981), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213039,7 +218607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 42, + ACTIONS(10979), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -213072,6 +218640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -213079,11 +218648,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [112127] = 2, - ACTIONS(10806), 11, + [115974] = 2, + ACTIONS(10985), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213095,7 +218664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 42, + ACTIONS(10983), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -213137,9 +218706,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [112185] = 2, - ACTIONS(10810), 11, + [116033] = 2, + ACTIONS(10989), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213151,7 +218721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 42, + ACTIONS(10987), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -213193,9 +218763,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [112243] = 2, - ACTIONS(10814), 11, + [116092] = 2, + ACTIONS(10993), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213207,7 +218778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 42, + ACTIONS(10991), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -213249,9 +218820,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [112301] = 2, - ACTIONS(10818), 11, + [116151] = 2, + ACTIONS(11087), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213263,7 +218835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 42, + ACTIONS(11085), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -213305,9 +218877,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [112359] = 2, - ACTIONS(10824), 11, + [116210] = 2, + ACTIONS(11001), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213319,7 +218892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 42, + ACTIONS(10999), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -213361,9 +218934,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [112417] = 2, - ACTIONS(10828), 11, + [116269] = 2, + ACTIONS(11005), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213375,7 +218949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 42, + ACTIONS(11003), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -213417,9 +218991,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [112475] = 2, - ACTIONS(10832), 11, + [116328] = 2, + ACTIONS(11009), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213431,7 +219006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 42, + ACTIONS(11007), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -213473,9 +219048,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [112533] = 2, - ACTIONS(10836), 11, + [116387] = 2, + ACTIONS(11013), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213487,7 +219063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 42, + ACTIONS(11011), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -213529,9 +219105,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [112591] = 2, - ACTIONS(10840), 11, + [116446] = 2, + ACTIONS(11017), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213543,7 +219120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 42, + ACTIONS(11015), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -213585,9 +219162,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [112649] = 2, - ACTIONS(10678), 11, + [116505] = 2, + ACTIONS(11021), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213599,7 +219177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 42, + ACTIONS(11019), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -213641,9 +219219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [112707] = 2, - ACTIONS(10844), 11, + [116564] = 2, + ACTIONS(11025), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213655,7 +219234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 42, + ACTIONS(11023), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -213697,9 +219276,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [112765] = 2, - ACTIONS(10848), 11, + [116623] = 2, + ACTIONS(11031), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213711,7 +219291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 42, + ACTIONS(11029), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -213753,9 +219333,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [112823] = 2, - ACTIONS(10852), 11, + [116682] = 2, + ACTIONS(11035), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213767,7 +219348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 42, + ACTIONS(11033), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -213809,9 +219390,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [112881] = 2, - ACTIONS(10856), 11, + [116741] = 2, + ACTIONS(11039), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213823,7 +219405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 42, + ACTIONS(11037), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -213865,9 +219447,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [112939] = 2, - ACTIONS(10860), 11, + [116800] = 2, + ACTIONS(11043), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213879,7 +219462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 42, + ACTIONS(11041), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -213921,9 +219504,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [112997] = 2, - ACTIONS(10864), 11, + [116859] = 2, + ACTIONS(11047), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213935,7 +219519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 42, + ACTIONS(11045), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -213977,9 +219561,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [113055] = 2, - ACTIONS(10868), 11, + [116918] = 2, + ACTIONS(11051), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213991,7 +219576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 42, + ACTIONS(11049), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -214033,9 +219618,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [113113] = 2, - ACTIONS(10872), 11, + [116977] = 2, + ACTIONS(11055), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214047,7 +219633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 42, + ACTIONS(11053), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -214089,9 +219675,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [113171] = 2, - ACTIONS(10876), 11, + [117036] = 2, + ACTIONS(11059), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214103,7 +219690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 42, + ACTIONS(11057), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -214145,9 +219732,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [113229] = 2, - ACTIONS(10880), 11, + [117095] = 2, + ACTIONS(11063), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214159,7 +219747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 42, + ACTIONS(11061), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -214201,9 +219789,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [113287] = 2, - ACTIONS(10884), 11, + [117154] = 2, + ACTIONS(11067), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214215,7 +219804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 42, + ACTIONS(11065), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -214257,9 +219846,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [113345] = 2, - ACTIONS(11024), 11, + [117213] = 2, + ACTIONS(11071), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214271,7 +219861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 42, + ACTIONS(11069), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -214313,9 +219903,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [113403] = 2, - ACTIONS(10888), 11, + [117272] = 2, + ACTIONS(11075), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214327,7 +219918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 42, + ACTIONS(11073), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -214369,9 +219960,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [113461] = 2, - ACTIONS(10892), 11, + [117331] = 2, + ACTIONS(11079), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214383,7 +219975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 42, + ACTIONS(11077), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -214425,9 +220017,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [113519] = 2, - ACTIONS(10896), 11, + [117390] = 2, + ACTIONS(11083), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214439,7 +220032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 42, + ACTIONS(11081), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -214481,9 +220074,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [113577] = 2, - ACTIONS(10900), 11, + [117449] = 2, + ACTIONS(11155), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214495,7 +220089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 42, + ACTIONS(11153), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -214537,9 +220131,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [113635] = 2, - ACTIONS(10904), 11, + [117508] = 2, + ACTIONS(11091), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214551,7 +220146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 42, + ACTIONS(11089), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -214593,9 +220188,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [113693] = 2, - ACTIONS(10908), 11, + [117567] = 2, + ACTIONS(11095), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214607,7 +220203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 42, + ACTIONS(11093), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -214649,9 +220245,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [113751] = 2, - ACTIONS(10912), 11, + [117626] = 2, + ACTIONS(11099), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214663,7 +220260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 42, + ACTIONS(11097), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -214705,9 +220302,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [113809] = 2, - ACTIONS(10916), 11, + [117685] = 2, + ACTIONS(11103), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214719,7 +220317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 42, + ACTIONS(11101), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -214761,9 +220359,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [113867] = 2, - ACTIONS(10920), 11, + [117744] = 2, + ACTIONS(11107), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214775,7 +220374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 42, + ACTIONS(11105), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -214817,9 +220416,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [113925] = 2, - ACTIONS(10924), 11, + [117803] = 2, + ACTIONS(11111), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214831,7 +220431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 42, + ACTIONS(11109), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -214873,9 +220473,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [113983] = 2, - ACTIONS(10928), 11, + [117862] = 2, + ACTIONS(11115), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214887,7 +220488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 42, + ACTIONS(11113), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -214929,9 +220530,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [114041] = 2, - ACTIONS(10932), 11, + [117921] = 2, + ACTIONS(11119), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214943,7 +220545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 42, + ACTIONS(11117), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -214985,9 +220587,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [114099] = 2, - ACTIONS(10940), 11, + [117980] = 2, + ACTIONS(11123), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214999,7 +220602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 42, + ACTIONS(11121), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -215041,9 +220644,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [114157] = 2, - ACTIONS(10944), 11, + [118039] = 2, + ACTIONS(11127), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215055,7 +220659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 42, + ACTIONS(11125), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -215097,9 +220701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [114215] = 2, - ACTIONS(10948), 11, + [118098] = 2, + ACTIONS(11131), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215111,7 +220716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 42, + ACTIONS(11129), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -215153,9 +220758,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [114273] = 2, - ACTIONS(10952), 11, + [118157] = 2, + ACTIONS(11135), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215167,7 +220773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 42, + ACTIONS(11133), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -215209,9 +220815,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [114331] = 2, - ACTIONS(10956), 11, + [118216] = 2, + ACTIONS(11197), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215223,7 +220830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 42, + ACTIONS(11195), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -215256,7 +220863,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -215264,10 +220870,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [114389] = 2, - ACTIONS(10960), 11, + [118275] = 2, + ACTIONS(11139), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215279,7 +220887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 42, + ACTIONS(11137), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -215321,9 +220929,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [114447] = 2, - ACTIONS(10964), 11, + [118334] = 2, + ACTIONS(11143), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215335,7 +220944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 42, + ACTIONS(11141), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -215377,9 +220986,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [114505] = 2, - ACTIONS(11014), 11, + [118393] = 2, + ACTIONS(11147), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215391,7 +221001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 42, + ACTIONS(11145), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -215424,6 +221034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -215431,11 +221042,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [114563] = 2, - ACTIONS(10968), 11, + [118452] = 2, + ACTIONS(11187), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215447,7 +221058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 42, + ACTIONS(11185), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -215489,9 +221100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [114621] = 2, - ACTIONS(10972), 11, + [118511] = 2, + ACTIONS(11159), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215503,7 +221115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 42, + ACTIONS(11157), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -215545,9 +221157,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [114679] = 2, - ACTIONS(10976), 11, + [118570] = 2, + ACTIONS(11163), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215559,7 +221172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 42, + ACTIONS(11161), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -215601,9 +221214,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [114737] = 2, - ACTIONS(10980), 11, + [118629] = 2, + ACTIONS(11167), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215615,7 +221229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 42, + ACTIONS(11165), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -215657,9 +221271,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [114795] = 2, - ACTIONS(10984), 11, + [118688] = 2, + ACTIONS(11171), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215671,7 +221286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 42, + ACTIONS(11169), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -215713,9 +221328,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [114853] = 2, - ACTIONS(11000), 11, + [118747] = 2, + ACTIONS(11175), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215727,7 +221343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 42, + ACTIONS(11173), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -215769,9 +221385,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [114911] = 2, - ACTIONS(10988), 11, + [118806] = 2, + ACTIONS(11179), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215783,7 +221400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 42, + ACTIONS(11177), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -215825,9 +221442,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [114969] = 2, - ACTIONS(10992), 11, + [118865] = 2, + ACTIONS(11183), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215839,7 +221457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 42, + ACTIONS(11181), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -215881,9 +221499,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [115027] = 2, - ACTIONS(10996), 11, + [118924] = 2, + ACTIONS(10853), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215895,7 +221514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 42, + ACTIONS(10851), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -215928,8 +221547,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -215937,9 +221556,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [115085] = 2, - ACTIONS(11004), 11, + [118983] = 2, + ACTIONS(10985), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215951,7 +221571,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 42, + ACTIONS(10983), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -215984,7 +221605,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -215993,9 +221613,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [115143] = 2, - ACTIONS(10710), 11, + [119042] = 2, + ACTIONS(11131), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216007,7 +221628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 42, + ACTIONS(11129), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -216017,6 +221638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -216041,7 +221663,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -216049,9 +221670,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [115201] = 2, - ACTIONS(10726), 11, + [119101] = 2, + ACTIONS(10885), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216063,7 +221685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 42, + ACTIONS(10883), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -216074,7 +221696,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -216098,6 +221719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -216105,9 +221727,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [115259] = 2, - ACTIONS(10674), 11, + [119160] = 2, + ACTIONS(10889), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216119,7 +221742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 42, + ACTIONS(10887), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -216130,7 +221753,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -216154,6 +221776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -216161,9 +221784,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [115317] = 2, - ACTIONS(10714), 11, + [119219] = 2, + ACTIONS(10893), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216175,7 +221799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 42, + ACTIONS(10891), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -216217,9 +221841,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [115375] = 2, - ACTIONS(10718), 11, + [119278] = 2, + ACTIONS(10897), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216231,7 +221856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 42, + ACTIONS(10895), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -216273,9 +221898,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [115433] = 2, - ACTIONS(10722), 11, + [119337] = 2, + ACTIONS(10901), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216287,7 +221913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 42, + ACTIONS(10899), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -216329,9 +221955,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [115491] = 2, - ACTIONS(10802), 11, + [119396] = 2, + ACTIONS(10905), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216343,7 +221970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 42, + ACTIONS(10903), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -216385,9 +222012,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [115549] = 2, - ACTIONS(10674), 11, + [119455] = 2, + ACTIONS(10909), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216399,7 +222027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 42, + ACTIONS(10907), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -216441,9 +222069,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [115607] = 2, - ACTIONS(10726), 11, + [119514] = 2, + ACTIONS(11139), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216455,7 +222084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 42, + ACTIONS(11137), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -216465,6 +222094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -216489,7 +222119,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -216497,9 +222126,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [115665] = 2, - ACTIONS(10730), 11, + [119573] = 2, + ACTIONS(10913), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216511,7 +222141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 42, + ACTIONS(10911), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -216553,9 +222183,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [115723] = 2, - ACTIONS(10996), 11, + [119632] = 2, + ACTIONS(10917), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216567,7 +222198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 42, + ACTIONS(10915), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -216577,7 +222208,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -216602,6 +222232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -216609,9 +222240,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [115781] = 2, - ACTIONS(10734), 11, + [119691] = 2, + ACTIONS(10997), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216623,7 +222255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 42, + ACTIONS(10995), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -216665,9 +222297,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [115839] = 2, - ACTIONS(10738), 11, + [119750] = 2, + ACTIONS(10921), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216679,7 +222312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 42, + ACTIONS(10919), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -216721,9 +222354,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [115897] = 2, - ACTIONS(10742), 11, + [119809] = 2, + ACTIONS(10925), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216735,7 +222369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 42, + ACTIONS(10923), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -216777,9 +222411,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [115955] = 2, - ACTIONS(10746), 11, + [119868] = 2, + ACTIONS(10929), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216791,7 +222426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 42, + ACTIONS(10927), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -216833,9 +222468,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [116013] = 2, - ACTIONS(10750), 11, + [119927] = 2, + ACTIONS(10933), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216847,7 +222483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 42, + ACTIONS(10931), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -216889,9 +222525,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [116071] = 2, - ACTIONS(10754), 11, + [119986] = 2, + ACTIONS(10937), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216903,7 +222540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 42, + ACTIONS(10935), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -216945,9 +222582,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [116129] = 2, - ACTIONS(10758), 11, + [120045] = 2, + ACTIONS(10941), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216959,7 +222597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 42, + ACTIONS(10939), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -217001,9 +222639,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [116187] = 2, - ACTIONS(10762), 11, + [120104] = 2, + ACTIONS(10945), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217015,7 +222654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 42, + ACTIONS(10943), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -217057,9 +222696,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [116245] = 2, - ACTIONS(10766), 11, + [120163] = 2, + ACTIONS(10949), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217071,7 +222711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 42, + ACTIONS(10947), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -217113,9 +222753,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [116303] = 2, - ACTIONS(10770), 11, + [120222] = 2, + ACTIONS(10849), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217127,7 +222768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 42, + ACTIONS(10847), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -217169,9 +222810,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [116361] = 2, - ACTIONS(10774), 11, + [120281] = 2, + ACTIONS(10953), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217183,7 +222825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 42, + ACTIONS(10951), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -217225,9 +222867,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [116419] = 2, - ACTIONS(10778), 11, + [120340] = 2, + ACTIONS(10957), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217239,7 +222882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 42, + ACTIONS(10955), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -217281,9 +222924,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [116477] = 2, - ACTIONS(10782), 11, + [120399] = 2, + ACTIONS(10961), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217295,7 +222939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 42, + ACTIONS(10959), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -217337,9 +222981,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [116535] = 2, - ACTIONS(10786), 11, + [120458] = 2, + ACTIONS(11135), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217351,7 +222996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 42, + ACTIONS(11133), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -217361,6 +223006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -217385,7 +223031,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -217393,9 +223038,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [116593] = 2, - ACTIONS(10790), 11, + [120517] = 2, + ACTIONS(10965), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217407,7 +223053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 42, + ACTIONS(10963), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -217449,9 +223095,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [116651] = 2, - ACTIONS(10722), 11, + [120576] = 2, + ACTIONS(10969), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217463,7 +223110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 42, + ACTIONS(10967), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -217474,7 +223121,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -217498,6 +223144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -217505,9 +223152,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [116709] = 2, - ACTIONS(10794), 11, + [120635] = 2, + ACTIONS(11151), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217519,7 +223167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 42, + ACTIONS(11149), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -217553,7 +223201,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -217561,9 +223208,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [116767] = 2, - ACTIONS(10798), 11, + [120694] = 2, + ACTIONS(10973), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217575,7 +223224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 42, + ACTIONS(10971), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -217617,9 +223266,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [116825] = 2, - ACTIONS(10936), 11, + [120753] = 2, + ACTIONS(10977), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217631,7 +223281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 42, + ACTIONS(10975), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -217665,6 +223315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -217672,10 +223323,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [116883] = 2, - ACTIONS(10806), 11, + [120812] = 2, + ACTIONS(10981), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217687,7 +223338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 42, + ACTIONS(10979), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -217729,9 +223380,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [116941] = 2, - ACTIONS(10810), 11, + [120871] = 2, + ACTIONS(10985), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217743,7 +223395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 42, + ACTIONS(10983), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -217785,9 +223437,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [116999] = 2, - ACTIONS(10814), 11, + [120930] = 2, + ACTIONS(10989), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217799,7 +223452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 42, + ACTIONS(10987), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -217841,9 +223494,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [117057] = 2, - ACTIONS(10818), 11, + [120989] = 2, + ACTIONS(10993), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217855,7 +223509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 42, + ACTIONS(10991), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -217897,9 +223551,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [117115] = 2, - ACTIONS(10824), 11, + [121048] = 2, + ACTIONS(11087), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217911,7 +223566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 42, + ACTIONS(11085), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -217953,9 +223608,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [117173] = 2, - ACTIONS(10828), 11, + [121107] = 2, + ACTIONS(11001), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217967,7 +223623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 42, + ACTIONS(10999), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -218009,9 +223665,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [117231] = 2, - ACTIONS(10832), 11, + [121166] = 2, + ACTIONS(11005), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218023,7 +223680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 42, + ACTIONS(11003), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -218065,9 +223722,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [117289] = 2, - ACTIONS(10836), 11, + [121225] = 2, + ACTIONS(11009), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218079,7 +223737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 42, + ACTIONS(11007), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -218121,9 +223779,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [117347] = 2, - ACTIONS(10840), 11, + [121284] = 2, + ACTIONS(11013), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218135,7 +223794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 42, + ACTIONS(11011), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -218177,9 +223836,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [117405] = 2, - ACTIONS(10678), 11, + [121343] = 2, + ACTIONS(11017), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218191,7 +223851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 42, + ACTIONS(11015), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -218233,9 +223893,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [117463] = 2, - ACTIONS(10844), 11, + [121402] = 2, + ACTIONS(11021), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218247,7 +223908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 42, + ACTIONS(11019), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -218289,9 +223950,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [117521] = 2, - ACTIONS(10848), 11, + [121461] = 2, + ACTIONS(11025), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218303,7 +223965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 42, + ACTIONS(11023), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -218345,9 +224007,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [117579] = 2, - ACTIONS(10852), 11, + [121520] = 2, + ACTIONS(11031), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218359,7 +224022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 42, + ACTIONS(11029), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -218401,9 +224064,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [117637] = 2, - ACTIONS(10856), 11, + [121579] = 2, + ACTIONS(11035), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218415,7 +224079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 42, + ACTIONS(11033), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -218457,9 +224121,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [117695] = 2, - ACTIONS(10860), 11, + [121638] = 2, + ACTIONS(11039), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218471,7 +224136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 42, + ACTIONS(11037), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -218513,9 +224178,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [117753] = 2, - ACTIONS(10864), 11, + [121697] = 2, + ACTIONS(11043), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218527,7 +224193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 42, + ACTIONS(11041), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -218569,9 +224235,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [117811] = 2, - ACTIONS(10868), 11, + [121756] = 2, + ACTIONS(11047), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218583,7 +224250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 42, + ACTIONS(11045), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -218625,9 +224292,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [117869] = 2, - ACTIONS(10872), 11, + [121815] = 2, + ACTIONS(11051), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218639,7 +224307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 42, + ACTIONS(11049), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -218681,9 +224349,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [117927] = 2, - ACTIONS(10876), 11, + [121874] = 2, + ACTIONS(11055), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218695,7 +224364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 42, + ACTIONS(11053), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -218737,9 +224406,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [117985] = 2, - ACTIONS(10880), 11, + [121933] = 2, + ACTIONS(11059), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218751,7 +224421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 42, + ACTIONS(11057), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -218793,9 +224463,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [118043] = 2, - ACTIONS(10884), 11, + [121992] = 2, + ACTIONS(11063), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218807,7 +224478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 42, + ACTIONS(11061), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -218849,9 +224520,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [118101] = 2, - ACTIONS(11024), 11, + [122051] = 2, + ACTIONS(11067), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218863,7 +224535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 42, + ACTIONS(11065), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -218905,9 +224577,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [118159] = 2, - ACTIONS(10888), 11, + [122110] = 2, + ACTIONS(11071), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218919,7 +224592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 42, + ACTIONS(11069), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -218961,9 +224634,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [118217] = 2, - ACTIONS(10892), 11, + [122169] = 2, + ACTIONS(11075), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218975,7 +224649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 42, + ACTIONS(11073), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -219017,9 +224691,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [118275] = 2, - ACTIONS(10896), 11, + [122228] = 2, + ACTIONS(11079), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219031,7 +224706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 42, + ACTIONS(11077), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -219073,9 +224748,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [118333] = 2, - ACTIONS(10900), 11, + [122287] = 2, + ACTIONS(11083), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219087,7 +224763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 42, + ACTIONS(11081), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -219129,9 +224805,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [118391] = 2, - ACTIONS(10904), 11, + [122346] = 2, + ACTIONS(11155), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219143,7 +224820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 42, + ACTIONS(11153), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -219185,9 +224862,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [118449] = 2, - ACTIONS(10908), 11, + [122405] = 2, + ACTIONS(11091), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219199,7 +224877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 42, + ACTIONS(11089), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -219241,9 +224919,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [118507] = 2, - ACTIONS(10912), 11, + [122464] = 2, + ACTIONS(11095), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219255,7 +224934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 42, + ACTIONS(11093), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -219297,9 +224976,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [118565] = 2, - ACTIONS(10916), 11, + [122523] = 2, + ACTIONS(11099), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219311,7 +224991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 42, + ACTIONS(11097), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -219353,9 +225033,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [118623] = 2, - ACTIONS(10920), 11, + [122582] = 2, + ACTIONS(11103), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219367,7 +225048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 42, + ACTIONS(11101), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -219409,9 +225090,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [118681] = 2, - ACTIONS(10924), 11, + [122641] = 2, + ACTIONS(11107), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219423,7 +225105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 42, + ACTIONS(11105), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -219465,9 +225147,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [118739] = 2, - ACTIONS(10928), 11, + [122700] = 2, + ACTIONS(11111), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219479,7 +225162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 42, + ACTIONS(11109), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -219521,9 +225204,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [118797] = 2, - ACTIONS(10932), 11, + [122759] = 2, + ACTIONS(11115), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219535,7 +225219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 42, + ACTIONS(11113), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -219577,9 +225261,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [118855] = 2, - ACTIONS(10940), 11, + [122818] = 2, + ACTIONS(11119), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219591,7 +225276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 42, + ACTIONS(11117), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -219633,9 +225318,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [118913] = 2, - ACTIONS(10944), 11, + [122877] = 2, + ACTIONS(11123), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219647,7 +225333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 42, + ACTIONS(11121), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -219689,9 +225375,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [118971] = 2, - ACTIONS(10948), 11, + [122936] = 2, + ACTIONS(11127), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219703,7 +225390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 42, + ACTIONS(11125), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -219745,9 +225432,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [119029] = 2, - ACTIONS(10952), 11, + [122995] = 2, + ACTIONS(11131), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219759,7 +225447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 42, + ACTIONS(11129), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -219801,9 +225489,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [119087] = 2, - ACTIONS(10956), 11, + [123054] = 2, + ACTIONS(11135), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219815,7 +225504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 42, + ACTIONS(11133), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -219857,9 +225546,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [119145] = 2, - ACTIONS(10960), 11, + [123113] = 2, + ACTIONS(11197), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219871,7 +225561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 42, + ACTIONS(11195), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -219905,7 +225595,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -219913,9 +225602,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [119203] = 2, - ACTIONS(10964), 11, + [123172] = 2, + ACTIONS(11139), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219927,7 +225618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 42, + ACTIONS(11137), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -219969,9 +225660,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [119261] = 2, - ACTIONS(11014), 11, + [123231] = 2, + ACTIONS(11143), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219983,7 +225675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 42, + ACTIONS(11141), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -220017,6 +225709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -220024,10 +225717,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [119319] = 2, - ACTIONS(10968), 11, + [123290] = 2, + ACTIONS(11147), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220039,7 +225732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 42, + ACTIONS(11145), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -220081,9 +225774,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [119377] = 2, - ACTIONS(10972), 11, + [123349] = 2, + ACTIONS(11187), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220095,7 +225789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 42, + ACTIONS(11185), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -220137,9 +225831,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [119435] = 2, - ACTIONS(10976), 11, + [123408] = 2, + ACTIONS(11159), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220151,7 +225846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 42, + ACTIONS(11157), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -220193,9 +225888,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [119493] = 2, - ACTIONS(10980), 11, + [123467] = 2, + ACTIONS(11163), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220207,7 +225903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 42, + ACTIONS(11161), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -220249,9 +225945,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [119551] = 2, - ACTIONS(10984), 11, + [123526] = 2, + ACTIONS(11167), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220263,7 +225960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 42, + ACTIONS(11165), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -220305,9 +226002,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [119609] = 2, - ACTIONS(11000), 11, + [123585] = 2, + ACTIONS(11171), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220319,7 +226017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 42, + ACTIONS(11169), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -220361,9 +226059,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [119667] = 2, - ACTIONS(10988), 11, + [123644] = 2, + ACTIONS(11175), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220375,7 +226074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 42, + ACTIONS(11173), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -220417,9 +226116,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [119725] = 2, - ACTIONS(10992), 11, + [123703] = 2, + ACTIONS(11179), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220431,7 +226131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 42, + ACTIONS(11177), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -220473,9 +226173,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [119783] = 2, - ACTIONS(10996), 11, + [123762] = 2, + ACTIONS(11183), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220487,7 +226188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 42, + ACTIONS(11181), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -220529,9 +226230,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [119841] = 2, - ACTIONS(11004), 11, + [123821] = 2, + ACTIONS(10853), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220543,7 +226245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 42, + ACTIONS(10851), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -220577,17 +226279,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [119899] = 2, - ACTIONS(10710), 11, + [123880] = 2, + ACTIONS(11099), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220599,7 +226302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 42, + ACTIONS(11097), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -220609,6 +226312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -220638,12 +226342,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [119957] = 2, - ACTIONS(10718), 11, + [123939] = 2, + ACTIONS(11127), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220655,7 +226359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 42, + ACTIONS(11125), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -220665,8 +226369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -220697,9 +226401,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [120015] = 2, - ACTIONS(10714), 11, + [123998] = 2, + ACTIONS(10885), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220711,7 +226416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 42, + ACTIONS(10883), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -220722,7 +226427,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -220751,11 +226455,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [120073] = 2, - ACTIONS(10714), 11, + [124057] = 2, + ACTIONS(10889), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220767,7 +226473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 42, + ACTIONS(10887), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -220809,9 +226515,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [120131] = 2, - ACTIONS(10718), 11, + [124116] = 2, + ACTIONS(10893), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220823,7 +226530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 42, + ACTIONS(10891), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -220865,9 +226572,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [120189] = 2, - ACTIONS(10722), 11, + [124175] = 2, + ACTIONS(10897), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220879,7 +226587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 42, + ACTIONS(10895), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -220921,9 +226629,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [120247] = 2, - ACTIONS(10802), 11, + [124234] = 2, + ACTIONS(10901), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220935,7 +226644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 42, + ACTIONS(10899), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -220977,9 +226686,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [120305] = 2, - ACTIONS(10674), 11, + [124293] = 2, + ACTIONS(10905), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220991,7 +226701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 42, + ACTIONS(10903), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -221033,9 +226743,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [120363] = 2, - ACTIONS(10726), 11, + [124352] = 2, + ACTIONS(10909), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221047,7 +226758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 42, + ACTIONS(10907), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -221089,9 +226800,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [120421] = 2, - ACTIONS(10730), 11, + [124411] = 2, + ACTIONS(11123), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221103,7 +226815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 42, + ACTIONS(11121), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -221113,6 +226825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -221142,12 +226855,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [120479] = 2, - ACTIONS(10774), 11, + [124470] = 2, + ACTIONS(10913), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221159,14 +226872,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 42, + ACTIONS(10911), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -221199,11 +226911,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [120537] = 2, - ACTIONS(10734), 11, + [124529] = 2, + ACTIONS(10917), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221215,7 +226929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 42, + ACTIONS(10915), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -221257,9 +226971,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [120595] = 2, - ACTIONS(10738), 11, + [124588] = 2, + ACTIONS(10997), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221271,7 +226986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 42, + ACTIONS(10995), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -221313,9 +227028,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [120653] = 2, - ACTIONS(10742), 11, + [124647] = 2, + ACTIONS(10921), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221327,7 +227043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 42, + ACTIONS(10919), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -221369,9 +227085,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [120711] = 2, - ACTIONS(10746), 11, + [124706] = 2, + ACTIONS(10925), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221383,7 +227100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 42, + ACTIONS(10923), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -221425,9 +227142,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [120769] = 2, - ACTIONS(10750), 11, + [124765] = 2, + ACTIONS(10929), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221439,7 +227157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 42, + ACTIONS(10927), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -221481,9 +227199,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [120827] = 2, - ACTIONS(10754), 11, + [124824] = 2, + ACTIONS(10933), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221495,7 +227214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 42, + ACTIONS(10931), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -221537,9 +227256,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [120885] = 2, - ACTIONS(10758), 11, + [124883] = 2, + ACTIONS(10937), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221551,7 +227271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 42, + ACTIONS(10935), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -221593,9 +227313,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [120943] = 2, - ACTIONS(10762), 11, + [124942] = 2, + ACTIONS(10941), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221607,7 +227328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 42, + ACTIONS(10939), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -221649,9 +227370,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [121001] = 2, - ACTIONS(10766), 11, + [125001] = 2, + ACTIONS(10945), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221663,7 +227385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 42, + ACTIONS(10943), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -221705,9 +227427,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [121059] = 2, - ACTIONS(10770), 11, + [125060] = 2, + ACTIONS(10949), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221719,7 +227442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 42, + ACTIONS(10947), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -221761,9 +227484,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [121117] = 2, - ACTIONS(10774), 11, + [125119] = 2, + ACTIONS(10849), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221775,7 +227499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 42, + ACTIONS(10847), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -221817,9 +227541,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [121175] = 2, - ACTIONS(10778), 11, + [125178] = 2, + ACTIONS(10953), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221831,7 +227556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 42, + ACTIONS(10951), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -221873,9 +227598,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [121233] = 2, - ACTIONS(10782), 11, + [125237] = 2, + ACTIONS(10957), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221887,7 +227613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 42, + ACTIONS(10955), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -221929,9 +227655,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [121291] = 2, - ACTIONS(10786), 11, + [125296] = 2, + ACTIONS(10961), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221943,7 +227670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 42, + ACTIONS(10959), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -221985,9 +227712,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [121349] = 2, - ACTIONS(10790), 11, + [125355] = 2, + ACTIONS(11119), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221999,7 +227727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 42, + ACTIONS(11117), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -222009,6 +227737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -222038,12 +227767,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [121407] = 2, - ACTIONS(10710), 11, + [125414] = 2, + ACTIONS(10965), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222055,7 +227784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 42, + ACTIONS(10963), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -222066,7 +227795,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -222095,11 +227823,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [121465] = 2, - ACTIONS(10794), 11, + [125473] = 2, + ACTIONS(10969), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222111,7 +227841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 42, + ACTIONS(10967), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -222153,9 +227883,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [121523] = 2, - ACTIONS(11004), 11, + [125532] = 2, + ACTIONS(11151), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222167,7 +227898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 42, + ACTIONS(11149), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -222175,9 +227906,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -222209,9 +227940,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [121581] = 2, - ACTIONS(10936), 11, + [125591] = 2, + ACTIONS(10973), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222223,7 +227955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 42, + ACTIONS(10971), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -222231,7 +227963,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -222263,11 +227994,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [121639] = 2, - ACTIONS(10806), 11, + [125650] = 2, + ACTIONS(10977), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222279,7 +228012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 42, + ACTIONS(10975), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -222321,9 +228054,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [121697] = 2, - ACTIONS(10810), 11, + [125709] = 2, + ACTIONS(10981), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222335,7 +228069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 42, + ACTIONS(10979), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -222377,9 +228111,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [121755] = 2, - ACTIONS(10814), 11, + [125768] = 2, + ACTIONS(10985), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222391,7 +228126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 42, + ACTIONS(10983), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -222433,9 +228168,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [121813] = 2, - ACTIONS(10818), 11, + [125827] = 2, + ACTIONS(10989), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222447,7 +228183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 42, + ACTIONS(10987), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -222489,9 +228225,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [121871] = 2, - ACTIONS(10824), 11, + [125886] = 2, + ACTIONS(10993), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222503,7 +228240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 42, + ACTIONS(10991), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -222545,9 +228282,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [121929] = 2, - ACTIONS(10828), 11, + [125945] = 2, + ACTIONS(11087), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222559,7 +228297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 42, + ACTIONS(11085), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -222601,9 +228339,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [121987] = 2, - ACTIONS(10832), 11, + [126004] = 2, + ACTIONS(11001), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222615,7 +228354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 42, + ACTIONS(10999), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -222657,9 +228396,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [122045] = 2, - ACTIONS(10836), 11, + [126063] = 2, + ACTIONS(11005), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222671,7 +228411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 42, + ACTIONS(11003), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -222713,9 +228453,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [122103] = 2, - ACTIONS(10840), 11, + [126122] = 2, + ACTIONS(11009), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222727,7 +228468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 42, + ACTIONS(11007), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -222769,9 +228510,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [122161] = 2, - ACTIONS(10678), 11, + [126181] = 2, + ACTIONS(11013), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222783,7 +228525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 42, + ACTIONS(11011), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -222825,9 +228567,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [122219] = 2, - ACTIONS(10844), 11, + [126240] = 2, + ACTIONS(11017), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222839,7 +228582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 42, + ACTIONS(11015), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -222881,9 +228624,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [122277] = 2, - ACTIONS(10848), 11, + [126299] = 2, + ACTIONS(11021), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222895,7 +228639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 42, + ACTIONS(11019), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -222937,9 +228681,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [122335] = 2, - ACTIONS(10852), 11, + [126358] = 2, + ACTIONS(11025), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222951,7 +228696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 42, + ACTIONS(11023), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -222993,9 +228738,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [122393] = 2, - ACTIONS(10856), 11, + [126417] = 2, + ACTIONS(11031), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223007,7 +228753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 42, + ACTIONS(11029), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -223049,9 +228795,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [122451] = 2, - ACTIONS(10860), 11, + [126476] = 2, + ACTIONS(11035), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223063,7 +228810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 42, + ACTIONS(11033), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -223105,9 +228852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [122509] = 2, - ACTIONS(10864), 11, + [126535] = 2, + ACTIONS(11039), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223119,7 +228867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 42, + ACTIONS(11037), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -223161,9 +228909,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [122567] = 2, - ACTIONS(10868), 11, + [126594] = 2, + ACTIONS(11043), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223175,7 +228924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 42, + ACTIONS(11041), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -223217,9 +228966,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [122625] = 2, - ACTIONS(10872), 11, + [126653] = 2, + ACTIONS(11047), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223231,7 +228981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 42, + ACTIONS(11045), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -223273,9 +229023,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [122683] = 2, - ACTIONS(10734), 11, + [126712] = 2, + ACTIONS(11051), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223287,8 +229038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 42, - ts_builtin_sym_end, + ACTIONS(11049), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -223327,11 +229077,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [122741] = 2, - ACTIONS(10880), 11, + [126771] = 2, + ACTIONS(11055), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223343,7 +229095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 42, + ACTIONS(11053), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -223385,9 +229137,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [122799] = 2, - ACTIONS(10884), 11, + [126830] = 2, + ACTIONS(11059), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223399,7 +229152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 42, + ACTIONS(11057), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -223441,9 +229194,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [122857] = 2, - ACTIONS(11024), 11, + [126889] = 2, + ACTIONS(11063), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223455,7 +229209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 42, + ACTIONS(11061), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -223497,9 +229251,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [122915] = 2, - ACTIONS(10888), 11, + [126948] = 2, + ACTIONS(11067), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223511,7 +229266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 42, + ACTIONS(11065), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -223553,9 +229308,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [122973] = 2, - ACTIONS(10892), 11, + [127007] = 2, + ACTIONS(11071), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223567,7 +229323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 42, + ACTIONS(11069), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -223609,9 +229365,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [123031] = 2, - ACTIONS(10896), 11, + [127066] = 2, + ACTIONS(11075), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223623,7 +229380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 42, + ACTIONS(11073), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -223665,9 +229422,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [123089] = 2, - ACTIONS(10900), 11, + [127125] = 2, + ACTIONS(11079), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223679,7 +229437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 42, + ACTIONS(11077), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -223721,9 +229479,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [123147] = 2, - ACTIONS(10904), 11, + [127184] = 2, + ACTIONS(11083), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223735,7 +229494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 42, + ACTIONS(11081), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -223777,9 +229536,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [123205] = 2, - ACTIONS(10908), 11, + [127243] = 2, + ACTIONS(11155), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223791,7 +229551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 42, + ACTIONS(11153), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -223833,9 +229593,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [123263] = 2, - ACTIONS(10912), 11, + [127302] = 2, + ACTIONS(11091), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223847,7 +229608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 42, + ACTIONS(11089), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -223889,9 +229650,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [123321] = 2, - ACTIONS(10916), 11, + [127361] = 2, + ACTIONS(11095), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223903,7 +229665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 42, + ACTIONS(11093), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -223945,9 +229707,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [123379] = 2, - ACTIONS(10920), 11, + [127420] = 2, + ACTIONS(11099), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223959,7 +229722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 42, + ACTIONS(11097), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -224001,9 +229764,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [123437] = 2, - ACTIONS(10924), 11, + [127479] = 2, + ACTIONS(11103), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224015,7 +229779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 42, + ACTIONS(11101), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -224057,9 +229821,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [123495] = 2, - ACTIONS(10928), 11, + [127538] = 2, + ACTIONS(11107), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224071,7 +229836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 42, + ACTIONS(11105), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -224113,9 +229878,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [123553] = 2, - ACTIONS(10932), 11, + [127597] = 2, + ACTIONS(11111), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224127,7 +229893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 42, + ACTIONS(11109), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -224169,9 +229935,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [123611] = 2, - ACTIONS(10940), 11, + [127656] = 2, + ACTIONS(11115), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224183,7 +229950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 42, + ACTIONS(11113), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -224225,9 +229992,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [123669] = 2, - ACTIONS(10944), 11, + [127715] = 2, + ACTIONS(11119), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224239,7 +230007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 42, + ACTIONS(11117), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -224281,9 +230049,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [123727] = 2, - ACTIONS(10948), 11, + [127774] = 2, + ACTIONS(11123), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224295,7 +230064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 42, + ACTIONS(11121), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -224337,9 +230106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [123785] = 2, - ACTIONS(10952), 11, + [127833] = 2, + ACTIONS(11127), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224351,7 +230121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 42, + ACTIONS(11125), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -224393,9 +230163,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [123843] = 2, - ACTIONS(10956), 11, + [127892] = 2, + ACTIONS(11131), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224407,7 +230178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 42, + ACTIONS(11129), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -224449,9 +230220,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [123901] = 2, - ACTIONS(10960), 11, + [127951] = 2, + ACTIONS(11135), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224463,7 +230235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 42, + ACTIONS(11133), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -224505,9 +230277,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [123959] = 2, - ACTIONS(10964), 11, + [128010] = 2, + ACTIONS(11197), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224519,7 +230292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 42, + ACTIONS(11195), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -224527,6 +230300,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -224558,12 +230332,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [124017] = 2, - ACTIONS(11014), 11, + [128069] = 2, + ACTIONS(11139), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224575,7 +230349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 42, + ACTIONS(11137), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -224583,7 +230357,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -224615,11 +230388,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [124075] = 2, - ACTIONS(10968), 11, + [128128] = 2, + ACTIONS(11143), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224631,7 +230406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 42, + ACTIONS(11141), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -224673,9 +230448,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [124133] = 2, - ACTIONS(10972), 11, + [128187] = 2, + ACTIONS(11147), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224687,7 +230463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 42, + ACTIONS(11145), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -224729,9 +230505,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [124191] = 2, - ACTIONS(10976), 11, + [128246] = 2, + ACTIONS(11187), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224743,7 +230520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 42, + ACTIONS(11185), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -224785,9 +230562,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [124249] = 2, - ACTIONS(10980), 11, + [128305] = 2, + ACTIONS(11159), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224799,7 +230577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 42, + ACTIONS(11157), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -224841,9 +230619,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [124307] = 2, - ACTIONS(10984), 11, + [128364] = 2, + ACTIONS(11163), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224855,7 +230634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 42, + ACTIONS(11161), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -224897,9 +230676,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [124365] = 2, - ACTIONS(11000), 11, + [128423] = 2, + ACTIONS(11167), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224911,7 +230691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 42, + ACTIONS(11165), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -224953,9 +230733,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [124423] = 2, - ACTIONS(10988), 11, + [128482] = 2, + ACTIONS(11171), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224967,7 +230748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 42, + ACTIONS(11169), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -225009,9 +230790,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [124481] = 2, - ACTIONS(10992), 11, + [128541] = 2, + ACTIONS(11175), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225023,7 +230805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 42, + ACTIONS(11173), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -225065,9 +230847,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [124539] = 2, - ACTIONS(10996), 11, + [128600] = 2, + ACTIONS(11179), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225079,7 +230862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 42, + ACTIONS(11177), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -225121,9 +230904,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [124597] = 2, - ACTIONS(11004), 11, + [128659] = 2, + ACTIONS(11183), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225135,7 +230919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 42, + ACTIONS(11181), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -225177,9 +230961,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [124655] = 2, - ACTIONS(10710), 11, + [128718] = 2, + ACTIONS(10853), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225191,7 +230976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 42, + ACTIONS(10851), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -225233,9 +231018,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [124713] = 2, - ACTIONS(10972), 11, + [128777] = 2, + ACTIONS(11115), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225247,7 +231033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 42, + ACTIONS(11113), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -225289,9 +231075,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [124771] = 2, - ACTIONS(10992), 11, + [128836] = 2, + ACTIONS(11111), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225303,7 +231090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 42, + ACTIONS(11109), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -225345,9 +231132,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [124829] = 2, - ACTIONS(10714), 11, + [128895] = 2, + ACTIONS(10885), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225359,7 +231147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 42, + ACTIONS(10883), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -225401,9 +231189,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [124887] = 2, - ACTIONS(10718), 11, + [128954] = 2, + ACTIONS(10889), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225415,7 +231204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 42, + ACTIONS(10887), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -225457,9 +231246,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [124945] = 2, - ACTIONS(10722), 11, + [129013] = 2, + ACTIONS(10893), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225471,7 +231261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 42, + ACTIONS(10891), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -225513,9 +231303,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [125003] = 2, - ACTIONS(10802), 11, + [129072] = 2, + ACTIONS(10897), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225527,7 +231318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 42, + ACTIONS(10895), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -225569,9 +231360,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [125061] = 2, - ACTIONS(10674), 11, + [129131] = 2, + ACTIONS(10901), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225583,7 +231375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 42, + ACTIONS(10899), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -225625,9 +231417,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [125119] = 2, - ACTIONS(10726), 11, + [129190] = 2, + ACTIONS(10905), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225639,7 +231432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 42, + ACTIONS(10903), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -225681,9 +231474,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [125177] = 2, - ACTIONS(10730), 11, + [129249] = 2, + ACTIONS(10909), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225695,7 +231489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 42, + ACTIONS(10907), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -225737,9 +231531,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [125235] = 2, - ACTIONS(10988), 11, + [129308] = 2, + ACTIONS(11107), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225751,7 +231546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 42, + ACTIONS(11105), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -225793,9 +231588,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [125293] = 2, - ACTIONS(10734), 11, + [129367] = 2, + ACTIONS(10913), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225807,7 +231603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 42, + ACTIONS(10911), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -225849,9 +231645,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [125351] = 2, - ACTIONS(10738), 11, + [129426] = 2, + ACTIONS(10917), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225863,7 +231660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 42, + ACTIONS(10915), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -225905,9 +231702,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [125409] = 2, - ACTIONS(10742), 11, + [129485] = 2, + ACTIONS(10997), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225919,7 +231717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 42, + ACTIONS(10995), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -225961,9 +231759,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [125467] = 2, - ACTIONS(10746), 11, + [129544] = 2, + ACTIONS(10921), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225975,7 +231774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 42, + ACTIONS(10919), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -226017,9 +231816,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [125525] = 2, - ACTIONS(10750), 11, + [129603] = 2, + ACTIONS(10925), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226031,7 +231831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 42, + ACTIONS(10923), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -226073,9 +231873,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [125583] = 2, - ACTIONS(10754), 11, + [129662] = 2, + ACTIONS(10929), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226087,7 +231888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 42, + ACTIONS(10927), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -226129,9 +231930,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [125641] = 2, - ACTIONS(10758), 11, + [129721] = 2, + ACTIONS(10933), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226143,7 +231945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 42, + ACTIONS(10931), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -226185,9 +231987,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [125699] = 2, - ACTIONS(10762), 11, + [129780] = 2, + ACTIONS(10937), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226199,7 +232002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 42, + ACTIONS(10935), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -226241,9 +232044,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [125757] = 2, - ACTIONS(10766), 11, + [129839] = 2, + ACTIONS(10941), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226255,7 +232059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 42, + ACTIONS(10939), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -226297,9 +232101,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [125815] = 2, - ACTIONS(10770), 11, + [129898] = 2, + ACTIONS(10945), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226311,7 +232116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 42, + ACTIONS(10943), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -226353,9 +232158,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [125873] = 2, - ACTIONS(10774), 11, + [129957] = 2, + ACTIONS(10949), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226367,7 +232173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 42, + ACTIONS(10947), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -226409,9 +232215,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [125931] = 2, - ACTIONS(10778), 11, + [130016] = 2, + ACTIONS(10849), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226423,7 +232230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 42, + ACTIONS(10847), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -226465,9 +232272,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [125989] = 2, - ACTIONS(10782), 11, + [130075] = 2, + ACTIONS(10953), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226479,7 +232287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 42, + ACTIONS(10951), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -226521,9 +232329,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [126047] = 2, - ACTIONS(10786), 11, + [130134] = 2, + ACTIONS(10957), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226535,7 +232344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 42, + ACTIONS(10955), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -226577,9 +232386,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [126105] = 2, - ACTIONS(10790), 11, + [130193] = 2, + ACTIONS(10961), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226591,7 +232401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 42, + ACTIONS(10959), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -226633,9 +232443,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [126163] = 2, - ACTIONS(11000), 11, + [130252] = 2, + ACTIONS(11103), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226647,7 +232458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 42, + ACTIONS(11101), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -226689,9 +232500,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [126221] = 2, - ACTIONS(10794), 11, + [130311] = 2, + ACTIONS(10965), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226703,7 +232515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 42, + ACTIONS(10963), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -226745,9 +232557,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [126279] = 2, - ACTIONS(10798), 11, + [130370] = 2, + ACTIONS(10969), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226759,7 +232572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 42, + ACTIONS(10967), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -226801,9 +232614,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [126337] = 2, - ACTIONS(10936), 11, + [130429] = 2, + ACTIONS(11151), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226815,7 +232629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 42, + ACTIONS(11149), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -226857,9 +232671,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [126395] = 2, - ACTIONS(10806), 11, + [130488] = 2, + ACTIONS(10973), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226871,7 +232686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 42, + ACTIONS(10971), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -226913,9 +232728,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [126453] = 2, - ACTIONS(10810), 11, + [130547] = 2, + ACTIONS(10977), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226927,7 +232743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 42, + ACTIONS(10975), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -226969,9 +232785,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [126511] = 2, - ACTIONS(10814), 11, + [130606] = 2, + ACTIONS(10981), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226983,7 +232800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 42, + ACTIONS(10979), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -227025,9 +232842,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [126569] = 2, - ACTIONS(10818), 11, + [130665] = 2, + ACTIONS(10985), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227039,7 +232857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 42, + ACTIONS(10983), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -227081,9 +232899,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [126627] = 2, - ACTIONS(10824), 11, + [130724] = 2, + ACTIONS(10989), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227095,7 +232914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 42, + ACTIONS(10987), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -227137,9 +232956,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [126685] = 2, - ACTIONS(10828), 11, + [130783] = 2, + ACTIONS(10993), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227151,7 +232971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 42, + ACTIONS(10991), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -227193,9 +233013,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [126743] = 2, - ACTIONS(10832), 11, + [130842] = 2, + ACTIONS(11087), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227207,7 +233028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 42, + ACTIONS(11085), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -227249,9 +233070,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [126801] = 2, - ACTIONS(10836), 11, + [130901] = 2, + ACTIONS(11001), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227263,7 +233085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 42, + ACTIONS(10999), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -227305,9 +233127,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [126859] = 2, - ACTIONS(10840), 11, + [130960] = 2, + ACTIONS(11005), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227319,7 +233142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 42, + ACTIONS(11003), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -227361,9 +233184,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [126917] = 2, - ACTIONS(10678), 11, + [131019] = 2, + ACTIONS(11009), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227375,7 +233199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 42, + ACTIONS(11007), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -227417,9 +233241,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [126975] = 2, - ACTIONS(10844), 11, + [131078] = 2, + ACTIONS(11013), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227431,7 +233256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 42, + ACTIONS(11011), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -227473,9 +233298,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [127033] = 2, - ACTIONS(10848), 11, + [131137] = 2, + ACTIONS(11017), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227487,7 +233313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 42, + ACTIONS(11015), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -227529,9 +233355,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [127091] = 2, - ACTIONS(10852), 11, + [131196] = 2, + ACTIONS(11021), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227543,7 +233370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 42, + ACTIONS(11019), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -227585,9 +233412,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [127149] = 2, - ACTIONS(10856), 11, + [131255] = 2, + ACTIONS(11025), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227599,7 +233427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 42, + ACTIONS(11023), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -227641,9 +233469,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [127207] = 2, - ACTIONS(10860), 11, + [131314] = 2, + ACTIONS(11031), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227655,7 +233484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 42, + ACTIONS(11029), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -227697,9 +233526,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [127265] = 2, - ACTIONS(10864), 11, + [131373] = 2, + ACTIONS(11035), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227711,7 +233541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 42, + ACTIONS(11033), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -227753,9 +233583,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [127323] = 2, - ACTIONS(10868), 11, + [131432] = 2, + ACTIONS(11039), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227767,7 +233598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 42, + ACTIONS(11037), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -227809,9 +233640,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [127381] = 2, - ACTIONS(10872), 11, + [131491] = 2, + ACTIONS(11043), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227823,7 +233655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 42, + ACTIONS(11041), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -227865,9 +233697,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [127439] = 2, - ACTIONS(10876), 11, + [131550] = 2, + ACTIONS(11047), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227879,7 +233712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 42, + ACTIONS(11045), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -227921,9 +233754,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [127497] = 2, - ACTIONS(10880), 11, + [131609] = 2, + ACTIONS(11051), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227935,7 +233769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 42, + ACTIONS(11049), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -227977,9 +233811,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [127555] = 2, - ACTIONS(10884), 11, + [131668] = 2, + ACTIONS(11055), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227991,7 +233826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 42, + ACTIONS(11053), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -228033,9 +233868,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [127613] = 2, - ACTIONS(11024), 11, + [131727] = 2, + ACTIONS(11059), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228047,7 +233883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 42, + ACTIONS(11057), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -228089,9 +233925,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [127671] = 2, - ACTIONS(10888), 11, + [131786] = 2, + ACTIONS(11063), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228103,7 +233940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 42, + ACTIONS(11061), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -228145,9 +233982,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [127729] = 2, - ACTIONS(10892), 11, + [131845] = 2, + ACTIONS(11067), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228159,7 +233997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 42, + ACTIONS(11065), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -228201,9 +234039,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [127787] = 2, - ACTIONS(10896), 11, + [131904] = 2, + ACTIONS(11071), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228215,7 +234054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 42, + ACTIONS(11069), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -228257,9 +234096,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [127845] = 2, - ACTIONS(10900), 11, + [131963] = 2, + ACTIONS(11075), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228271,7 +234111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 42, + ACTIONS(11073), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -228313,9 +234153,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [127903] = 2, - ACTIONS(10904), 11, + [132022] = 2, + ACTIONS(11079), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228327,7 +234168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 42, + ACTIONS(11077), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -228369,9 +234210,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [127961] = 2, - ACTIONS(10908), 11, + [132081] = 2, + ACTIONS(11083), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228383,7 +234225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 42, + ACTIONS(11081), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -228425,9 +234267,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [128019] = 2, - ACTIONS(10912), 11, + [132140] = 2, + ACTIONS(11155), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228439,7 +234282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 42, + ACTIONS(11153), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -228481,9 +234324,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [128077] = 2, - ACTIONS(10916), 11, + [132199] = 2, + ACTIONS(11091), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228495,7 +234339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 42, + ACTIONS(11089), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -228537,9 +234381,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [128135] = 2, - ACTIONS(10920), 11, + [132258] = 2, + ACTIONS(11095), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228551,7 +234396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 42, + ACTIONS(11093), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -228593,9 +234438,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [128193] = 2, - ACTIONS(10924), 11, + [132317] = 2, + ACTIONS(11099), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228607,7 +234453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 42, + ACTIONS(11097), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -228649,9 +234495,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [128251] = 2, - ACTIONS(10928), 11, + [132376] = 2, + ACTIONS(11103), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228663,7 +234510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 42, + ACTIONS(11101), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -228705,9 +234552,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [128309] = 2, - ACTIONS(10932), 11, + [132435] = 2, + ACTIONS(11107), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228719,7 +234567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 42, + ACTIONS(11105), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -228761,9 +234609,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [128367] = 2, - ACTIONS(10940), 11, + [132494] = 2, + ACTIONS(11111), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228775,7 +234624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 42, + ACTIONS(11109), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -228817,9 +234666,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [128425] = 2, - ACTIONS(10944), 11, + [132553] = 2, + ACTIONS(11115), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228831,7 +234681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 42, + ACTIONS(11113), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -228873,9 +234723,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [128483] = 2, - ACTIONS(10948), 11, + [132612] = 2, + ACTIONS(11119), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228887,7 +234738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 42, + ACTIONS(11117), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -228929,9 +234780,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [128541] = 2, - ACTIONS(10952), 11, + [132671] = 2, + ACTIONS(11123), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228943,7 +234795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 42, + ACTIONS(11121), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -228985,9 +234837,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [128599] = 2, - ACTIONS(10956), 11, + [132730] = 2, + ACTIONS(11127), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228999,7 +234852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 42, + ACTIONS(11125), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -229041,9 +234894,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [128657] = 2, - ACTIONS(10960), 11, + [132789] = 2, + ACTIONS(11131), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229055,7 +234909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 42, + ACTIONS(11129), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -229097,9 +234951,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [128715] = 2, - ACTIONS(10964), 11, + [132848] = 2, + ACTIONS(11135), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229111,7 +234966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 42, + ACTIONS(11133), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -229153,9 +235008,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [128773] = 2, - ACTIONS(11014), 11, + [132907] = 2, + ACTIONS(11197), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229167,7 +235023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 42, + ACTIONS(11195), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -229209,9 +235065,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [128831] = 2, - ACTIONS(10968), 11, + [132966] = 2, + ACTIONS(11139), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229223,7 +235080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 42, + ACTIONS(11137), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -229265,9 +235122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [128889] = 2, - ACTIONS(10972), 11, + [133025] = 2, + ACTIONS(11143), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229279,7 +235137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 42, + ACTIONS(11141), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -229321,9 +235179,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [128947] = 2, - ACTIONS(10976), 11, + [133084] = 2, + ACTIONS(11147), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229335,7 +235194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 42, + ACTIONS(11145), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -229377,9 +235236,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [129005] = 2, - ACTIONS(10980), 11, + [133143] = 2, + ACTIONS(11187), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229391,7 +235251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 42, + ACTIONS(11185), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -229433,9 +235293,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [129063] = 2, - ACTIONS(10984), 11, + [133202] = 2, + ACTIONS(11159), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229447,7 +235308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 42, + ACTIONS(11157), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -229489,9 +235350,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [129121] = 2, - ACTIONS(11000), 11, + [133261] = 2, + ACTIONS(11163), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229503,7 +235365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 42, + ACTIONS(11161), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -229545,9 +235407,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [129179] = 2, - ACTIONS(10988), 11, + [133320] = 2, + ACTIONS(11167), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229559,7 +235422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 42, + ACTIONS(11165), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -229601,9 +235464,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [129237] = 2, - ACTIONS(10992), 11, + [133379] = 2, + ACTIONS(11171), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229615,7 +235479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 42, + ACTIONS(11169), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -229657,9 +235521,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [129295] = 2, - ACTIONS(10996), 11, + [133438] = 2, + ACTIONS(11175), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229671,7 +235536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 42, + ACTIONS(11173), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -229713,9 +235578,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [129353] = 2, - ACTIONS(11004), 11, + [133497] = 2, + ACTIONS(11179), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229727,7 +235593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 42, + ACTIONS(11177), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -229769,9 +235635,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [129411] = 2, - ACTIONS(10710), 11, + [133556] = 2, + ACTIONS(11183), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229783,7 +235650,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 42, + ACTIONS(11181), 43, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATendteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [133615] = 2, + ACTIONS(10853), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10851), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -229825,9 +235749,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [129469] = 2, - ACTIONS(10984), 11, + [133674] = 2, + ACTIONS(11075), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229839,7 +235764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 42, + ACTIONS(11073), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -229881,9 +235806,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [129527] = 2, - ACTIONS(10980), 11, + [133733] = 2, + ACTIONS(11095), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229895,7 +235821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 42, + ACTIONS(11093), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -229937,9 +235863,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [129585] = 2, - ACTIONS(10714), 11, + [133792] = 2, + ACTIONS(10885), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229951,7 +235878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 42, + ACTIONS(10883), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -229993,9 +235920,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [129643] = 2, - ACTIONS(10718), 11, + [133851] = 2, + ACTIONS(10889), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230007,7 +235935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 42, + ACTIONS(10887), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -230049,9 +235977,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [129701] = 2, - ACTIONS(10722), 11, + [133910] = 2, + ACTIONS(10893), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230063,7 +235992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 42, + ACTIONS(10891), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -230105,9 +236034,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [129759] = 2, - ACTIONS(10802), 11, + [133969] = 2, + ACTIONS(10897), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230119,7 +236049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 42, + ACTIONS(10895), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -230161,9 +236091,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [129817] = 2, - ACTIONS(10674), 11, + [134028] = 2, + ACTIONS(10901), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230175,7 +236106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 42, + ACTIONS(10899), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -230217,9 +236148,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [129875] = 2, - ACTIONS(10726), 11, + [134087] = 2, + ACTIONS(10905), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230231,7 +236163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 42, + ACTIONS(10903), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -230273,9 +236205,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [129933] = 2, - ACTIONS(10730), 11, + [134146] = 2, + ACTIONS(10909), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230287,7 +236220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 42, + ACTIONS(10907), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -230329,9 +236262,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [129991] = 2, - ACTIONS(10976), 11, + [134205] = 2, + ACTIONS(11091), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230343,7 +236277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 42, + ACTIONS(11089), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -230385,9 +236319,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [130049] = 2, - ACTIONS(10734), 11, + [134264] = 2, + ACTIONS(10913), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230399,7 +236334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 42, + ACTIONS(10911), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -230441,9 +236376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [130107] = 2, - ACTIONS(10738), 11, + [134323] = 2, + ACTIONS(10917), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230455,7 +236391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 42, + ACTIONS(10915), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -230497,9 +236433,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [130165] = 2, - ACTIONS(10742), 11, + [134382] = 2, + ACTIONS(10997), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230511,7 +236448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 42, + ACTIONS(10995), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -230553,9 +236490,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [130223] = 2, - ACTIONS(10746), 11, + [134441] = 2, + ACTIONS(10921), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230567,7 +236505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 42, + ACTIONS(10919), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -230609,9 +236547,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [130281] = 2, - ACTIONS(10750), 11, + [134500] = 2, + ACTIONS(10925), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230623,7 +236562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 42, + ACTIONS(10923), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -230665,9 +236604,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [130339] = 2, - ACTIONS(10754), 11, + [134559] = 2, + ACTIONS(10929), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230679,7 +236619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 42, + ACTIONS(10927), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -230721,9 +236661,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [130397] = 2, - ACTIONS(10758), 11, + [134618] = 2, + ACTIONS(10933), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230735,7 +236676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 42, + ACTIONS(10931), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -230777,9 +236718,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [130455] = 2, - ACTIONS(10762), 11, + [134677] = 2, + ACTIONS(10937), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230791,7 +236733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 42, + ACTIONS(10935), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -230833,9 +236775,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [130513] = 2, - ACTIONS(10766), 11, + [134736] = 2, + ACTIONS(10941), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230847,7 +236790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 42, + ACTIONS(10939), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -230889,9 +236832,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [130571] = 2, - ACTIONS(10770), 11, + [134795] = 2, + ACTIONS(10945), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230903,7 +236847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 42, + ACTIONS(10943), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -230945,9 +236889,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [130629] = 2, - ACTIONS(10774), 11, + [134854] = 2, + ACTIONS(10949), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230959,7 +236904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 42, + ACTIONS(10947), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -231001,9 +236946,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [130687] = 2, - ACTIONS(10778), 11, + [134913] = 2, + ACTIONS(10849), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231015,7 +236961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 42, + ACTIONS(10847), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -231057,9 +237003,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [130745] = 2, - ACTIONS(10782), 11, + [134972] = 2, + ACTIONS(10953), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231071,7 +237018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 42, + ACTIONS(10951), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -231113,9 +237060,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [130803] = 2, - ACTIONS(10786), 11, + [135031] = 2, + ACTIONS(10957), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231127,7 +237075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 42, + ACTIONS(10955), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -231169,9 +237117,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [130861] = 2, - ACTIONS(10790), 11, + [135090] = 2, + ACTIONS(10961), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231183,7 +237132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 42, + ACTIONS(10959), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -231225,9 +237174,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [130919] = 2, - ACTIONS(10738), 11, + [135149] = 2, + ACTIONS(11155), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231239,8 +237189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 42, - ts_builtin_sym_end, + ACTIONS(11153), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -231250,6 +237199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -231281,9 +237231,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [130977] = 2, - ACTIONS(10794), 11, + [135208] = 2, + ACTIONS(10965), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231295,7 +237246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 42, + ACTIONS(10963), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -231337,9 +237288,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [131035] = 2, - ACTIONS(10798), 11, + [135267] = 2, + ACTIONS(10969), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231351,7 +237303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 42, + ACTIONS(10967), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -231393,9 +237345,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [131093] = 2, - ACTIONS(10944), 11, + [135326] = 2, + ACTIONS(11083), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231407,7 +237360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 42, + ACTIONS(11081), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -231449,9 +237402,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [131151] = 2, - ACTIONS(10806), 11, + [135385] = 2, + ACTIONS(10973), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231463,7 +237417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 42, + ACTIONS(10971), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -231505,9 +237459,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [131209] = 2, - ACTIONS(10810), 11, + [135444] = 2, + ACTIONS(10977), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231519,7 +237474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 42, + ACTIONS(10975), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -231561,9 +237516,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [131267] = 2, - ACTIONS(10814), 11, + [135503] = 2, + ACTIONS(10981), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231575,7 +237531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 42, + ACTIONS(10979), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -231617,9 +237573,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [131325] = 2, - ACTIONS(10818), 11, + [135562] = 2, + ACTIONS(10985), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231631,7 +237588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 42, + ACTIONS(10983), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -231673,9 +237630,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [131383] = 2, - ACTIONS(10824), 11, + [135621] = 2, + ACTIONS(10989), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231687,7 +237645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 42, + ACTIONS(10987), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -231729,9 +237687,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [131441] = 2, - ACTIONS(10828), 11, + [135680] = 2, + ACTIONS(10993), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231743,7 +237702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 42, + ACTIONS(10991), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -231785,9 +237744,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [131499] = 2, - ACTIONS(10832), 11, + [135739] = 2, + ACTIONS(11087), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231799,7 +237759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 42, + ACTIONS(11085), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -231841,9 +237801,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [131557] = 2, - ACTIONS(10836), 11, + [135798] = 2, + ACTIONS(11001), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231855,7 +237816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 42, + ACTIONS(10999), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -231897,9 +237858,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [131615] = 2, - ACTIONS(10840), 11, + [135857] = 2, + ACTIONS(11005), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231911,7 +237873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 42, + ACTIONS(11003), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -231953,9 +237915,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [131673] = 2, - ACTIONS(10678), 11, + [135916] = 2, + ACTIONS(11009), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231967,7 +237930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 42, + ACTIONS(11007), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -232009,9 +237972,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [131731] = 2, - ACTIONS(10844), 11, + [135975] = 2, + ACTIONS(11013), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232023,7 +237987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 42, + ACTIONS(11011), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -232065,9 +238029,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [131789] = 2, - ACTIONS(10848), 11, + [136034] = 2, + ACTIONS(11017), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232079,7 +238044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 42, + ACTIONS(11015), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -232121,9 +238086,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [131847] = 2, - ACTIONS(10852), 11, + [136093] = 2, + ACTIONS(11021), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232135,7 +238101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 42, + ACTIONS(11019), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -232177,9 +238143,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [131905] = 2, - ACTIONS(10856), 11, + [136152] = 2, + ACTIONS(11025), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232191,7 +238158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 42, + ACTIONS(11023), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -232233,9 +238200,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [131963] = 2, - ACTIONS(10860), 11, + [136211] = 2, + ACTIONS(11031), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232247,7 +238215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 42, + ACTIONS(11029), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -232289,9 +238257,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [132021] = 2, - ACTIONS(10864), 11, + [136270] = 2, + ACTIONS(11035), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232303,7 +238272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 42, + ACTIONS(11033), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -232345,9 +238314,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [132079] = 2, - ACTIONS(10868), 11, + [136329] = 2, + ACTIONS(11039), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232359,7 +238329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 42, + ACTIONS(11037), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -232401,9 +238371,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [132137] = 2, - ACTIONS(10872), 11, + [136388] = 2, + ACTIONS(11043), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232415,7 +238386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 42, + ACTIONS(11041), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -232457,9 +238428,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [132195] = 2, - ACTIONS(10876), 11, + [136447] = 2, + ACTIONS(11047), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232471,7 +238443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 42, + ACTIONS(11045), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -232513,9 +238485,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [132253] = 2, - ACTIONS(10880), 11, + [136506] = 2, + ACTIONS(11051), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232527,7 +238500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 42, + ACTIONS(11049), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -232569,9 +238542,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [132311] = 2, - ACTIONS(10884), 11, + [136565] = 2, + ACTIONS(11055), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232583,7 +238557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 42, + ACTIONS(11053), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -232625,9 +238599,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [132369] = 2, - ACTIONS(11024), 11, + [136624] = 2, + ACTIONS(11059), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232639,7 +238614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 42, + ACTIONS(11057), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -232681,9 +238656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [132427] = 2, - ACTIONS(10888), 11, + [136683] = 2, + ACTIONS(11063), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232695,7 +238671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 42, + ACTIONS(11061), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -232737,9 +238713,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [132485] = 2, - ACTIONS(10892), 11, + [136742] = 2, + ACTIONS(11067), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232751,7 +238728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 42, + ACTIONS(11065), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -232793,9 +238770,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [132543] = 2, - ACTIONS(10896), 11, + [136801] = 2, + ACTIONS(11071), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232807,7 +238785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 42, + ACTIONS(11069), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -232849,9 +238827,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [132601] = 2, - ACTIONS(10900), 11, + [136860] = 2, + ACTIONS(11075), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232863,7 +238842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 42, + ACTIONS(11073), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -232905,9 +238884,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [132659] = 2, - ACTIONS(10904), 11, + [136919] = 2, + ACTIONS(11079), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232919,7 +238899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 42, + ACTIONS(11077), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -232961,9 +238941,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [132717] = 2, - ACTIONS(10908), 11, + [136978] = 2, + ACTIONS(11083), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232975,7 +238956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 42, + ACTIONS(11081), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -233017,9 +238998,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [132775] = 2, - ACTIONS(10912), 11, + [137037] = 2, + ACTIONS(11155), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233031,7 +239013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 42, + ACTIONS(11153), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -233073,9 +239055,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [132833] = 2, - ACTIONS(10916), 11, + [137096] = 2, + ACTIONS(11091), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233087,7 +239070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 42, + ACTIONS(11089), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -233129,9 +239112,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [132891] = 2, - ACTIONS(10920), 11, + [137155] = 2, + ACTIONS(11095), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233143,7 +239127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 42, + ACTIONS(11093), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -233185,9 +239169,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [132949] = 2, - ACTIONS(10924), 11, + [137214] = 2, + ACTIONS(11099), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233199,7 +239184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 42, + ACTIONS(11097), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -233241,9 +239226,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [133007] = 2, - ACTIONS(10928), 11, + [137273] = 2, + ACTIONS(11103), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233255,7 +239241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 42, + ACTIONS(11101), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -233297,9 +239283,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [133065] = 2, - ACTIONS(10932), 11, + [137332] = 2, + ACTIONS(11107), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233311,7 +239298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 42, + ACTIONS(11105), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -233353,9 +239340,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [133123] = 2, - ACTIONS(10940), 11, + [137391] = 2, + ACTIONS(11111), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233367,7 +239355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 42, + ACTIONS(11109), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -233409,9 +239397,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [133181] = 2, - ACTIONS(10944), 11, + [137450] = 2, + ACTIONS(11115), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233423,7 +239412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 42, + ACTIONS(11113), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -233465,9 +239454,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [133239] = 2, - ACTIONS(10948), 11, + [137509] = 2, + ACTIONS(11119), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233479,7 +239469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 42, + ACTIONS(11117), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -233521,9 +239511,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [133297] = 2, - ACTIONS(10952), 11, + [137568] = 2, + ACTIONS(11123), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233535,7 +239526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 42, + ACTIONS(11121), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -233577,9 +239568,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [133355] = 2, - ACTIONS(10956), 11, + [137627] = 2, + ACTIONS(11127), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233591,7 +239583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 42, + ACTIONS(11125), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -233633,9 +239625,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [133413] = 2, - ACTIONS(10960), 11, + [137686] = 2, + ACTIONS(11131), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233647,7 +239640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 42, + ACTIONS(11129), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -233689,9 +239682,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [133471] = 2, - ACTIONS(10964), 11, + [137745] = 2, + ACTIONS(11135), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233703,7 +239697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 42, + ACTIONS(11133), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -233745,9 +239739,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [133529] = 2, - ACTIONS(10968), 11, + [137804] = 2, + ACTIONS(11079), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233759,7 +239754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 42, + ACTIONS(11077), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -233801,9 +239796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [133587] = 2, - ACTIONS(10968), 11, + [137863] = 2, + ACTIONS(11139), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233815,7 +239811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 42, + ACTIONS(11137), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -233857,9 +239853,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [133645] = 2, - ACTIONS(10972), 11, + [137922] = 2, + ACTIONS(11143), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233871,7 +239868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 42, + ACTIONS(11141), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -233913,9 +239910,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [133703] = 2, - ACTIONS(10976), 11, + [137981] = 2, + ACTIONS(11147), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233927,7 +239925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 42, + ACTIONS(11145), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -233969,9 +239967,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [133761] = 2, - ACTIONS(10980), 11, + [138040] = 2, + ACTIONS(11187), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233983,7 +239982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 42, + ACTIONS(11185), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -234025,9 +240024,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [133819] = 2, - ACTIONS(10984), 11, + [138099] = 2, + ACTIONS(11159), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234039,7 +240039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 42, + ACTIONS(11157), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -234081,9 +240081,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [133877] = 2, - ACTIONS(11000), 11, + [138158] = 2, + ACTIONS(11163), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234095,7 +240096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 42, + ACTIONS(11161), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -234137,9 +240138,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [133935] = 2, - ACTIONS(10988), 11, + [138217] = 2, + ACTIONS(11167), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234151,7 +240153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 42, + ACTIONS(11165), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -234193,9 +240195,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [133993] = 2, - ACTIONS(10992), 11, + [138276] = 2, + ACTIONS(11171), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234207,7 +240210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 42, + ACTIONS(11169), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -234249,9 +240252,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [134051] = 2, - ACTIONS(10996), 11, + [138335] = 2, + ACTIONS(11175), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234263,7 +240267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 42, + ACTIONS(11173), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -234305,9 +240309,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [134109] = 2, - ACTIONS(11004), 11, + [138394] = 2, + ACTIONS(11179), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234319,7 +240324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 42, + ACTIONS(11177), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -234361,9 +240366,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [134167] = 2, - ACTIONS(10710), 11, + [138453] = 2, + ACTIONS(11183), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234375,14 +240381,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 42, + ACTIONS(11181), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -234417,9 +240422,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [134225] = 2, - ACTIONS(10964), 11, + [138512] = 2, + ACTIONS(10853), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234431,17 +240438,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 42, + ACTIONS(10851), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -234473,9 +240480,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [134283] = 2, - ACTIONS(10960), 11, + [138571] = 2, + ACTIONS(11035), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234487,7 +240495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 42, + ACTIONS(11033), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -234529,9 +240537,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [134341] = 2, - ACTIONS(10714), 11, + [138630] = 2, + ACTIONS(11071), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234543,17 +240552,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 42, + ACTIONS(11069), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -234585,9 +240594,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [134399] = 2, - ACTIONS(10718), 11, + [138689] = 2, + ACTIONS(10885), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234599,7 +240609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 42, + ACTIONS(10883), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -234641,9 +240651,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [134457] = 2, - ACTIONS(10722), 11, + [138748] = 2, + ACTIONS(10889), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234655,7 +240666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 42, + ACTIONS(10887), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -234697,9 +240708,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [134515] = 2, - ACTIONS(10802), 11, + [138807] = 2, + ACTIONS(10893), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234711,7 +240723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 42, + ACTIONS(10891), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -234753,9 +240765,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [134573] = 2, - ACTIONS(10674), 11, + [138866] = 2, + ACTIONS(10897), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234767,7 +240780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 42, + ACTIONS(10895), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -234809,9 +240822,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [134631] = 2, - ACTIONS(10726), 11, + [138925] = 2, + ACTIONS(10901), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234823,7 +240837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 42, + ACTIONS(10899), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -234865,9 +240879,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [134689] = 2, - ACTIONS(10730), 11, + [138984] = 2, + ACTIONS(10905), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234879,7 +240894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 42, + ACTIONS(10903), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -234921,9 +240936,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [134747] = 2, - ACTIONS(10956), 11, + [139043] = 2, + ACTIONS(10909), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234935,17 +240951,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 42, + ACTIONS(10907), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -234977,9 +240993,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [134805] = 2, - ACTIONS(10734), 11, + [139102] = 2, + ACTIONS(11067), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234991,17 +241008,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 42, + ACTIONS(11065), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -235033,9 +241050,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [134863] = 2, - ACTIONS(10738), 11, + [139161] = 2, + ACTIONS(10913), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235047,7 +241065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 42, + ACTIONS(10911), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -235089,9 +241107,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [134921] = 2, - ACTIONS(10742), 11, + [139220] = 2, + ACTIONS(10917), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235103,7 +241122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 42, + ACTIONS(10915), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -235145,9 +241164,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [134979] = 2, - ACTIONS(10746), 11, + [139279] = 2, + ACTIONS(10997), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235159,7 +241179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 42, + ACTIONS(10995), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -235201,9 +241221,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [135037] = 2, - ACTIONS(10750), 11, + [139338] = 2, + ACTIONS(10921), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235215,7 +241236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 42, + ACTIONS(10919), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -235257,9 +241278,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [135095] = 2, - ACTIONS(10754), 11, + [139397] = 2, + ACTIONS(10925), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235271,7 +241293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 42, + ACTIONS(10923), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -235313,9 +241335,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [135153] = 2, - ACTIONS(10758), 11, + [139456] = 2, + ACTIONS(10929), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235327,7 +241350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 42, + ACTIONS(10927), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -235369,9 +241392,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [135211] = 2, - ACTIONS(10762), 11, + [139515] = 2, + ACTIONS(10933), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235383,7 +241407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 42, + ACTIONS(10931), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -235425,9 +241449,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [135269] = 2, - ACTIONS(10766), 11, + [139574] = 2, + ACTIONS(10937), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235439,7 +241464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 42, + ACTIONS(10935), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -235481,9 +241506,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [135327] = 2, - ACTIONS(10770), 11, + [139633] = 2, + ACTIONS(10941), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235495,7 +241521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 42, + ACTIONS(10939), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -235537,9 +241563,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [135385] = 2, - ACTIONS(10774), 11, + [139692] = 2, + ACTIONS(10945), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235551,7 +241578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 42, + ACTIONS(10943), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -235593,9 +241620,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [135443] = 2, - ACTIONS(10778), 11, + [139751] = 2, + ACTIONS(10949), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235607,7 +241635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 42, + ACTIONS(10947), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -235649,9 +241677,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [135501] = 2, - ACTIONS(10782), 11, + [139810] = 2, + ACTIONS(10849), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235663,7 +241692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 42, + ACTIONS(10847), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -235705,9 +241734,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [135559] = 2, - ACTIONS(10786), 11, + [139869] = 2, + ACTIONS(10953), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235719,7 +241749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 42, + ACTIONS(10951), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -235761,9 +241791,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [135617] = 2, - ACTIONS(10790), 11, + [139928] = 2, + ACTIONS(10957), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235775,7 +241806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 42, + ACTIONS(10955), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -235817,9 +241848,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [135675] = 2, - ACTIONS(10952), 11, + [139987] = 2, + ACTIONS(10961), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235831,17 +241863,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 42, + ACTIONS(10959), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -235873,9 +241905,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [135733] = 2, - ACTIONS(10794), 11, + [140046] = 2, + ACTIONS(11063), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235887,17 +241920,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 42, + ACTIONS(11061), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -235929,9 +241962,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [135791] = 2, - ACTIONS(10798), 11, + [140105] = 2, + ACTIONS(10965), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235943,7 +241977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 42, + ACTIONS(10963), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -235985,9 +242019,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [135849] = 2, - ACTIONS(10948), 11, + [140164] = 2, + ACTIONS(10969), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235999,17 +242034,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 42, + ACTIONS(10967), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -236041,9 +242076,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [135907] = 2, - ACTIONS(10806), 11, + [140223] = 2, + ACTIONS(11059), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236055,17 +242091,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 42, + ACTIONS(11057), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -236097,9 +242133,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [135965] = 2, - ACTIONS(10810), 11, + [140282] = 2, + ACTIONS(10973), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236111,7 +242148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 42, + ACTIONS(10971), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -236153,9 +242190,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [136023] = 2, - ACTIONS(10814), 11, + [140341] = 2, + ACTIONS(10977), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236167,7 +242205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 42, + ACTIONS(10975), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -236209,9 +242247,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [136081] = 2, - ACTIONS(10818), 11, + [140400] = 2, + ACTIONS(10981), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236223,7 +242262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 42, + ACTIONS(10979), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -236265,9 +242304,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [136139] = 2, - ACTIONS(10824), 11, + [140459] = 2, + ACTIONS(10985), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236279,7 +242319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 42, + ACTIONS(10983), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -236321,9 +242361,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [136197] = 2, - ACTIONS(10828), 11, + [140518] = 2, + ACTIONS(10989), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236335,7 +242376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 42, + ACTIONS(10987), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -236377,9 +242418,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [136255] = 2, - ACTIONS(10832), 11, + [140577] = 2, + ACTIONS(10993), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236391,7 +242433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 42, + ACTIONS(10991), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -236433,9 +242475,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [136313] = 2, - ACTIONS(10836), 11, + [140636] = 2, + ACTIONS(11087), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236447,7 +242490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 42, + ACTIONS(11085), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -236489,9 +242532,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [136371] = 2, - ACTIONS(10840), 11, + [140695] = 2, + ACTIONS(11001), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236503,7 +242547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 42, + ACTIONS(10999), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -236545,9 +242589,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [136429] = 2, - ACTIONS(10678), 11, + [140754] = 2, + ACTIONS(11005), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236559,7 +242604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 42, + ACTIONS(11003), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -236601,9 +242646,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [136487] = 2, - ACTIONS(10844), 11, + [140813] = 2, + ACTIONS(11009), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236615,7 +242661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 42, + ACTIONS(11007), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -236657,9 +242703,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [136545] = 2, - ACTIONS(10848), 11, + [140872] = 2, + ACTIONS(11013), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236671,7 +242718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 42, + ACTIONS(11011), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -236713,9 +242760,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [136603] = 2, - ACTIONS(10852), 11, + [140931] = 2, + ACTIONS(11017), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236727,7 +242775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 42, + ACTIONS(11015), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -236769,9 +242817,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [136661] = 2, - ACTIONS(10856), 11, + [140990] = 2, + ACTIONS(11021), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236783,7 +242832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 42, + ACTIONS(11019), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -236825,9 +242874,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [136719] = 2, - ACTIONS(10860), 11, + [141049] = 2, + ACTIONS(11025), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236839,7 +242889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 42, + ACTIONS(11023), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -236881,9 +242931,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [136777] = 2, - ACTIONS(10864), 11, + [141108] = 2, + ACTIONS(11031), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236895,7 +242946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 42, + ACTIONS(11029), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -236937,9 +242988,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [136835] = 2, - ACTIONS(10868), 11, + [141167] = 2, + ACTIONS(11035), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236951,7 +243003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 42, + ACTIONS(11033), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -236993,9 +243045,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [136893] = 2, - ACTIONS(10872), 11, + [141226] = 2, + ACTIONS(11039), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237007,7 +243060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 42, + ACTIONS(11037), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -237049,9 +243102,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [136951] = 2, - ACTIONS(10876), 11, + [141285] = 2, + ACTIONS(11043), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237063,7 +243117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 42, + ACTIONS(11041), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -237105,9 +243159,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [137009] = 2, - ACTIONS(10880), 11, + [141344] = 2, + ACTIONS(11047), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237119,7 +243174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 42, + ACTIONS(11045), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -237161,9 +243216,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [137067] = 2, - ACTIONS(10884), 11, + [141403] = 2, + ACTIONS(11051), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237175,7 +243231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 42, + ACTIONS(11049), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -237217,9 +243273,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [137125] = 2, - ACTIONS(11024), 11, + [141462] = 2, + ACTIONS(11055), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237231,7 +243288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 42, + ACTIONS(11053), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -237273,9 +243330,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [137183] = 2, - ACTIONS(10888), 11, + [141521] = 2, + ACTIONS(11059), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237287,7 +243345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 42, + ACTIONS(11057), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -237329,9 +243387,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [137241] = 2, - ACTIONS(10892), 11, + [141580] = 2, + ACTIONS(11063), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237343,7 +243402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 42, + ACTIONS(11061), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -237385,9 +243444,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [137299] = 2, - ACTIONS(10896), 11, + [141639] = 2, + ACTIONS(11067), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237399,7 +243459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 42, + ACTIONS(11065), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -237441,9 +243501,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [137357] = 2, - ACTIONS(10900), 11, + [141698] = 2, + ACTIONS(11071), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237455,7 +243516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 42, + ACTIONS(11069), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -237497,9 +243558,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [137415] = 2, - ACTIONS(10904), 11, + [141757] = 2, + ACTIONS(11075), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237511,7 +243573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 42, + ACTIONS(11073), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -237553,9 +243615,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [137473] = 2, - ACTIONS(10908), 11, + [141816] = 2, + ACTIONS(11079), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237567,7 +243630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 42, + ACTIONS(11077), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -237609,9 +243672,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [137531] = 2, - ACTIONS(10912), 11, + [141875] = 2, + ACTIONS(11083), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237623,7 +243687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 42, + ACTIONS(11081), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -237665,9 +243729,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [137589] = 2, - ACTIONS(10916), 11, + [141934] = 2, + ACTIONS(11155), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237679,7 +243744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 42, + ACTIONS(11153), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -237721,9 +243786,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [137647] = 2, - ACTIONS(10920), 11, + [141993] = 2, + ACTIONS(11091), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237735,7 +243801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 42, + ACTIONS(11089), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -237777,9 +243843,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [137705] = 2, - ACTIONS(10924), 11, + [142052] = 2, + ACTIONS(11095), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237791,7 +243858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 42, + ACTIONS(11093), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -237833,9 +243900,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [137763] = 2, - ACTIONS(10928), 11, + [142111] = 2, + ACTIONS(11099), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237847,7 +243915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 42, + ACTIONS(11097), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -237889,9 +243957,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [137821] = 2, - ACTIONS(10932), 11, + [142170] = 2, + ACTIONS(11103), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237903,7 +243972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 42, + ACTIONS(11101), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -237945,9 +244014,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [137879] = 2, - ACTIONS(10940), 11, + [142229] = 2, + ACTIONS(11107), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237959,7 +244029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 42, + ACTIONS(11105), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -238001,9 +244071,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [137937] = 2, - ACTIONS(10944), 11, + [142288] = 2, + ACTIONS(11111), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238015,7 +244086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 42, + ACTIONS(11109), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -238057,9 +244128,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [137995] = 2, - ACTIONS(10948), 11, + [142347] = 2, + ACTIONS(11115), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238071,7 +244143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 42, + ACTIONS(11113), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -238113,9 +244185,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [138053] = 2, - ACTIONS(10952), 11, + [142406] = 2, + ACTIONS(11119), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238127,7 +244200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 42, + ACTIONS(11117), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -238169,9 +244242,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [138111] = 2, - ACTIONS(10956), 11, + [142465] = 2, + ACTIONS(11123), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238183,7 +244257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 42, + ACTIONS(11121), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -238225,9 +244299,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [138169] = 2, - ACTIONS(10960), 11, + [142524] = 2, + ACTIONS(11127), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238239,7 +244314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 42, + ACTIONS(11125), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -238281,9 +244356,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [138227] = 2, - ACTIONS(10964), 11, + [142583] = 2, + ACTIONS(11131), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238295,7 +244371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 42, + ACTIONS(11129), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -238337,9 +244413,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [138285] = 2, - ACTIONS(10900), 11, + [142642] = 2, + ACTIONS(11135), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238351,17 +244428,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 42, + ACTIONS(11133), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -238393,9 +244470,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [138343] = 2, - ACTIONS(10968), 11, + [142701] = 2, + ACTIONS(11055), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238407,17 +244485,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 42, + ACTIONS(11053), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -238449,9 +244527,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [138401] = 2, - ACTIONS(10972), 11, + [142760] = 2, + ACTIONS(11139), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238463,7 +244542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 42, + ACTIONS(11137), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -238505,9 +244584,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [138459] = 2, - ACTIONS(10976), 11, + [142819] = 2, + ACTIONS(11143), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238519,7 +244599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 42, + ACTIONS(11141), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -238561,9 +244641,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [138517] = 2, - ACTIONS(10980), 11, + [142878] = 2, + ACTIONS(11147), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238575,7 +244656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 42, + ACTIONS(11145), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -238617,9 +244698,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [138575] = 2, - ACTIONS(10984), 11, + [142937] = 2, + ACTIONS(11187), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238631,7 +244713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 42, + ACTIONS(11185), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -238673,9 +244755,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [138633] = 2, - ACTIONS(11000), 11, + [142996] = 2, + ACTIONS(11159), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238687,7 +244770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 42, + ACTIONS(11157), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -238729,9 +244812,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [138691] = 2, - ACTIONS(10988), 11, + [143055] = 2, + ACTIONS(11163), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238743,7 +244827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 42, + ACTIONS(11161), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -238785,9 +244869,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [138749] = 2, - ACTIONS(10992), 11, + [143114] = 2, + ACTIONS(11167), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238799,7 +244884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 42, + ACTIONS(11165), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -238841,9 +244926,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [138807] = 2, - ACTIONS(10996), 11, + [143173] = 2, + ACTIONS(11171), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238855,7 +244941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 42, + ACTIONS(11169), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -238897,9 +244983,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [138865] = 2, - ACTIONS(11004), 11, + [143232] = 2, + ACTIONS(11175), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238911,7 +244998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 42, + ACTIONS(11173), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -238953,9 +245040,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [138923] = 2, - ACTIONS(10710), 11, + [143291] = 2, + ACTIONS(11179), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238967,13 +245055,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 42, + ACTIONS(11177), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -238994,7 +245083,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -239009,9 +245097,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [138981] = 2, - ACTIONS(10940), 11, + [143350] = 2, + ACTIONS(11183), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239023,17 +245112,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 42, + ACTIONS(11181), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -239065,9 +245154,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [139039] = 2, - ACTIONS(10932), 11, + [143409] = 2, + ACTIONS(10853), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239079,7 +245169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 42, + ACTIONS(10851), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -239089,7 +245179,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -239107,6 +245196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -239121,9 +245211,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [139097] = 2, - ACTIONS(10714), 11, + [143468] = 2, + ACTIONS(11051), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239135,7 +245226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 42, + ACTIONS(11049), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -239145,6 +245236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -239162,7 +245254,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -239177,9 +245268,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [139155] = 2, - ACTIONS(10718), 11, + [143527] = 2, + ACTIONS(11047), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239191,7 +245283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 42, + ACTIONS(11045), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -239201,6 +245293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -239218,7 +245311,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -239233,9 +245325,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [139213] = 2, - ACTIONS(10722), 11, + [143586] = 2, + ACTIONS(10885), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239247,7 +245340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 42, + ACTIONS(10883), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -239289,9 +245382,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [139271] = 2, - ACTIONS(10802), 11, + [143645] = 2, + ACTIONS(10889), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239303,7 +245397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 42, + ACTIONS(10887), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -239345,9 +245439,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [139329] = 2, - ACTIONS(10674), 11, + [143704] = 2, + ACTIONS(10893), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239359,7 +245454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 42, + ACTIONS(10891), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -239401,9 +245496,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [139387] = 2, - ACTIONS(10726), 11, + [143763] = 2, + ACTIONS(10897), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239415,7 +245511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 42, + ACTIONS(10895), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -239457,9 +245553,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [139445] = 2, - ACTIONS(10730), 11, + [143822] = 2, + ACTIONS(10901), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239471,7 +245568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 42, + ACTIONS(10899), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -239513,9 +245610,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [139503] = 2, - ACTIONS(10928), 11, + [143881] = 2, + ACTIONS(10905), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239527,7 +245625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 42, + ACTIONS(10903), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -239537,7 +245635,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -239555,6 +245652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -239569,9 +245667,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [139561] = 2, - ACTIONS(10734), 11, + [143940] = 2, + ACTIONS(10909), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239583,7 +245682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 42, + ACTIONS(10907), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -239625,9 +245724,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [139619] = 2, - ACTIONS(10738), 11, + [143999] = 2, + ACTIONS(11031), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239639,7 +245739,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 42, + ACTIONS(11029), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -239666,7 +245767,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -239681,9 +245781,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [139677] = 2, - ACTIONS(10742), 11, + [144058] = 2, + ACTIONS(10913), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239695,7 +245796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 42, + ACTIONS(10911), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -239737,9 +245838,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [139735] = 2, - ACTIONS(10746), 11, + [144117] = 2, + ACTIONS(10917), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239751,7 +245853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 42, + ACTIONS(10915), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -239793,9 +245895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [139793] = 2, - ACTIONS(10750), 11, + [144176] = 2, + ACTIONS(10997), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239807,7 +245910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 42, + ACTIONS(10995), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -239849,9 +245952,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [139851] = 2, - ACTIONS(10754), 11, + [144235] = 2, + ACTIONS(10921), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239863,7 +245967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 42, + ACTIONS(10919), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -239905,9 +246009,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [139909] = 2, - ACTIONS(10758), 11, + [144294] = 2, + ACTIONS(10925), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239919,7 +246024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 42, + ACTIONS(10923), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -239961,9 +246066,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [139967] = 2, - ACTIONS(10762), 11, + [144353] = 2, + ACTIONS(10929), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239975,7 +246081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 42, + ACTIONS(10927), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -240017,9 +246123,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [140025] = 2, - ACTIONS(10766), 11, + [144412] = 2, + ACTIONS(10933), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240031,7 +246138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 42, + ACTIONS(10931), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -240073,9 +246180,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [140083] = 2, - ACTIONS(10770), 11, + [144471] = 2, + ACTIONS(10937), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240087,7 +246195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 42, + ACTIONS(10935), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -240129,9 +246237,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [140141] = 2, - ACTIONS(10774), 11, + [144530] = 2, + ACTIONS(10941), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240143,7 +246252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 42, + ACTIONS(10939), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -240185,9 +246294,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [140199] = 2, - ACTIONS(10778), 11, + [144589] = 2, + ACTIONS(10945), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240199,7 +246309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 42, + ACTIONS(10943), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -240241,9 +246351,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [140257] = 2, - ACTIONS(10782), 11, + [144648] = 2, + ACTIONS(10949), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240255,7 +246366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 42, + ACTIONS(10947), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -240297,9 +246408,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [140315] = 2, - ACTIONS(10786), 11, + [144707] = 2, + ACTIONS(10849), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240311,7 +246423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 42, + ACTIONS(10847), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -240353,9 +246465,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [140373] = 2, - ACTIONS(10790), 11, + [144766] = 2, + ACTIONS(10953), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240367,7 +246480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 42, + ACTIONS(10951), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -240409,9 +246522,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [140431] = 2, - ACTIONS(10924), 11, + [144825] = 2, + ACTIONS(10957), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240423,7 +246537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 42, + ACTIONS(10955), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -240433,7 +246547,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -240451,6 +246564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -240465,9 +246579,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [140489] = 2, - ACTIONS(10794), 11, + [144884] = 2, + ACTIONS(10961), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240479,7 +246594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 42, + ACTIONS(10959), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -240521,9 +246636,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [140547] = 2, - ACTIONS(10798), 11, + [144943] = 2, + ACTIONS(11043), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240535,7 +246651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 42, + ACTIONS(11041), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -240545,6 +246661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -240562,7 +246679,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -240577,9 +246693,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [140605] = 2, - ACTIONS(10920), 11, + [145002] = 2, + ACTIONS(10965), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240591,7 +246708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 42, + ACTIONS(10963), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -240601,7 +246718,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -240619,6 +246735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -240633,9 +246750,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [140663] = 2, - ACTIONS(10806), 11, + [145061] = 2, + ACTIONS(10969), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240647,7 +246765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 42, + ACTIONS(10967), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -240689,9 +246807,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [140721] = 2, - ACTIONS(10810), 11, + [145120] = 2, + ACTIONS(11039), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240703,7 +246822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 42, + ACTIONS(11037), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -240713,6 +246832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -240730,7 +246850,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -240745,9 +246864,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [140779] = 2, - ACTIONS(10814), 11, + [145179] = 2, + ACTIONS(10973), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240759,7 +246879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 42, + ACTIONS(10971), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -240801,9 +246921,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [140837] = 2, - ACTIONS(10818), 11, + [145238] = 2, + ACTIONS(10977), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240815,7 +246936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 42, + ACTIONS(10975), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -240857,9 +246978,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [140895] = 2, - ACTIONS(10824), 11, + [145297] = 2, + ACTIONS(10981), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240871,7 +246993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 42, + ACTIONS(10979), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -240913,9 +247035,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [140953] = 2, - ACTIONS(10828), 11, + [145356] = 2, + ACTIONS(10985), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240927,7 +247050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 42, + ACTIONS(10983), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -240969,9 +247092,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [141011] = 2, - ACTIONS(10832), 11, + [145415] = 2, + ACTIONS(10989), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240983,7 +247107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 42, + ACTIONS(10987), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -241025,9 +247149,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [141069] = 2, - ACTIONS(10836), 11, + [145474] = 2, + ACTIONS(10993), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241039,7 +247164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 42, + ACTIONS(10991), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -241081,9 +247206,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [141127] = 2, - ACTIONS(10840), 11, + [145533] = 2, + ACTIONS(11087), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241095,7 +247221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 42, + ACTIONS(11085), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -241137,9 +247263,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [141185] = 2, - ACTIONS(10678), 11, + [145592] = 2, + ACTIONS(11001), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241151,7 +247278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 42, + ACTIONS(10999), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -241193,9 +247320,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [141243] = 2, - ACTIONS(10844), 11, + [145651] = 2, + ACTIONS(11005), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241207,7 +247335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 42, + ACTIONS(11003), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -241249,9 +247377,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [141301] = 2, - ACTIONS(10848), 11, + [145710] = 2, + ACTIONS(11009), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241263,7 +247392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 42, + ACTIONS(11007), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -241305,9 +247434,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [141359] = 2, - ACTIONS(10852), 11, + [145769] = 2, + ACTIONS(11013), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241319,7 +247449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 42, + ACTIONS(11011), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -241361,9 +247491,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [141417] = 2, - ACTIONS(10856), 11, + [145828] = 2, + ACTIONS(11017), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241375,7 +247506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 42, + ACTIONS(11015), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -241417,9 +247548,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [141475] = 2, - ACTIONS(10860), 11, + [145887] = 2, + ACTIONS(11021), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241431,7 +247563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 42, + ACTIONS(11019), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -241473,9 +247605,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [141533] = 2, - ACTIONS(10864), 11, + [145946] = 2, + ACTIONS(11025), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241487,7 +247620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 42, + ACTIONS(11023), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -241529,9 +247662,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [141591] = 2, - ACTIONS(10868), 11, + [146005] = 2, + ACTIONS(11031), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241543,7 +247677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 42, + ACTIONS(11029), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -241585,9 +247719,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [141649] = 2, - ACTIONS(10872), 11, + [146064] = 2, + ACTIONS(11035), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241599,7 +247734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 42, + ACTIONS(11033), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -241641,9 +247776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [141707] = 2, - ACTIONS(10876), 11, + [146123] = 2, + ACTIONS(11039), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241655,7 +247791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 42, + ACTIONS(11037), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -241697,9 +247833,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [141765] = 2, - ACTIONS(10880), 11, + [146182] = 2, + ACTIONS(11043), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241711,7 +247848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 42, + ACTIONS(11041), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -241753,9 +247890,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [141823] = 2, - ACTIONS(10884), 11, + [146241] = 2, + ACTIONS(11047), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241767,7 +247905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 42, + ACTIONS(11045), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -241809,9 +247947,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [141881] = 2, - ACTIONS(11024), 11, + [146300] = 2, + ACTIONS(11051), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241823,7 +247962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 42, + ACTIONS(11049), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -241865,9 +248004,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [141939] = 2, - ACTIONS(10888), 11, + [146359] = 2, + ACTIONS(11055), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241879,7 +248019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 42, + ACTIONS(11053), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -241921,9 +248061,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [141997] = 2, - ACTIONS(10892), 11, + [146418] = 2, + ACTIONS(11059), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241935,7 +248076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 42, + ACTIONS(11057), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -241977,9 +248118,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [142055] = 2, - ACTIONS(10896), 11, + [146477] = 2, + ACTIONS(11063), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241991,7 +248133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 42, + ACTIONS(11061), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -242033,9 +248175,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [142113] = 2, - ACTIONS(10900), 11, + [146536] = 2, + ACTIONS(11067), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242047,7 +248190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 42, + ACTIONS(11065), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -242089,9 +248232,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [142171] = 2, - ACTIONS(10904), 11, + [146595] = 2, + ACTIONS(11071), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242103,7 +248247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 42, + ACTIONS(11069), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -242145,9 +248289,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [142229] = 2, - ACTIONS(10908), 11, + [146654] = 2, + ACTIONS(11075), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242159,7 +248304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 42, + ACTIONS(11073), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -242201,9 +248346,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [142287] = 2, - ACTIONS(10912), 11, + [146713] = 2, + ACTIONS(11079), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242215,7 +248361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 42, + ACTIONS(11077), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -242257,9 +248403,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [142345] = 2, - ACTIONS(10916), 11, + [146772] = 2, + ACTIONS(11083), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242271,7 +248418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 42, + ACTIONS(11081), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -242313,9 +248460,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [142403] = 2, - ACTIONS(10920), 11, + [146831] = 2, + ACTIONS(11155), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242327,7 +248475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 42, + ACTIONS(11153), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -242369,9 +248517,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [142461] = 2, - ACTIONS(10924), 11, + [146890] = 2, + ACTIONS(11091), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242383,7 +248532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 42, + ACTIONS(11089), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -242425,9 +248574,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [142519] = 2, - ACTIONS(10928), 11, + [146949] = 2, + ACTIONS(11095), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242439,7 +248589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 42, + ACTIONS(11093), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -242481,9 +248631,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [142577] = 2, - ACTIONS(10932), 11, + [147008] = 2, + ACTIONS(11099), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242495,7 +248646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 42, + ACTIONS(11097), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -242537,9 +248688,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [142635] = 2, - ACTIONS(10940), 11, + [147067] = 2, + ACTIONS(11103), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242551,7 +248703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 42, + ACTIONS(11101), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -242593,9 +248745,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [142693] = 2, - ACTIONS(10944), 11, + [147126] = 2, + ACTIONS(11107), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242607,7 +248760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 42, + ACTIONS(11105), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -242649,9 +248802,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [142751] = 2, - ACTIONS(10948), 11, + [147185] = 2, + ACTIONS(11111), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242663,7 +248817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 42, + ACTIONS(11109), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -242705,9 +248859,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [142809] = 2, - ACTIONS(10952), 11, + [147244] = 2, + ACTIONS(11115), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242719,7 +248874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 42, + ACTIONS(11113), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -242761,9 +248916,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [142867] = 2, - ACTIONS(10956), 11, + [147303] = 2, + ACTIONS(11119), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242775,7 +248931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 42, + ACTIONS(11117), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -242817,9 +248973,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [142925] = 2, - ACTIONS(10960), 11, + [147362] = 2, + ACTIONS(11123), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242831,7 +248988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 42, + ACTIONS(11121), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -242873,9 +249030,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [142983] = 2, - ACTIONS(10964), 11, + [147421] = 2, + ACTIONS(11127), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242887,7 +249045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 42, + ACTIONS(11125), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -242929,9 +249087,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [143041] = 2, - ACTIONS(10916), 11, + [147480] = 2, + ACTIONS(11131), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242943,7 +249102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 42, + ACTIONS(11129), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -242953,7 +249112,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -242971,6 +249129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -242985,9 +249144,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [143099] = 2, - ACTIONS(10968), 11, + [147539] = 2, + ACTIONS(11135), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242999,7 +249159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 42, + ACTIONS(11133), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -243041,9 +249201,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [143157] = 2, - ACTIONS(10972), 11, + [147598] = 2, + ACTIONS(11009), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243055,7 +249216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 42, + ACTIONS(11007), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -243065,6 +249226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -243082,7 +249244,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -243097,9 +249258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [143215] = 2, - ACTIONS(10976), 11, + [147657] = 2, + ACTIONS(11139), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243111,7 +249273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 42, + ACTIONS(11137), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -243153,9 +249315,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [143273] = 2, - ACTIONS(10980), 11, + [147716] = 2, + ACTIONS(11143), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243167,7 +249330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 42, + ACTIONS(11141), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -243209,9 +249372,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [143331] = 2, - ACTIONS(10984), 11, + [147775] = 2, + ACTIONS(11147), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243223,7 +249387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 42, + ACTIONS(11145), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -243265,9 +249429,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [143389] = 2, - ACTIONS(11000), 11, + [147834] = 2, + ACTIONS(11187), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243279,7 +249444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 42, + ACTIONS(11185), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -243321,9 +249486,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [143447] = 2, - ACTIONS(10988), 11, + [147893] = 2, + ACTIONS(11159), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243335,7 +249501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 42, + ACTIONS(11157), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -243377,9 +249543,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [143505] = 2, - ACTIONS(10992), 11, + [147952] = 2, + ACTIONS(11163), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243391,7 +249558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 42, + ACTIONS(11161), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -243433,9 +249600,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [143563] = 2, - ACTIONS(10996), 11, + [148011] = 2, + ACTIONS(11167), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243447,7 +249615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 42, + ACTIONS(11165), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -243489,9 +249657,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [143621] = 2, - ACTIONS(11004), 11, + [148070] = 2, + ACTIONS(11171), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243503,7 +249672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 42, + ACTIONS(11169), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -243545,9 +249714,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [143679] = 2, - ACTIONS(10710), 12, + [148129] = 2, + ACTIONS(11175), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243556,11 +249726,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 41, + ACTIONS(11173), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -243587,7 +249756,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + anon_sym_ATendswitch, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -243601,9 +249771,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [143737] = 2, - ACTIONS(10912), 11, + [148188] = 2, + ACTIONS(11179), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243615,7 +249786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 42, + ACTIONS(11177), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -243625,7 +249796,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -243643,6 +249813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -243657,9 +249828,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [143795] = 2, - ACTIONS(10908), 11, + [148247] = 2, + ACTIONS(11183), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243671,7 +249843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 42, + ACTIONS(11181), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -243681,7 +249853,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -243699,6 +249870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -243713,9 +249885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [143853] = 2, - ACTIONS(10714), 12, + [148306] = 2, + ACTIONS(10853), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243728,7 +249901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 41, + ACTIONS(10851), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -243769,9 +249942,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [143911] = 2, - ACTIONS(10718), 12, + [148365] = 2, + ACTIONS(11031), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243780,11 +249954,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 41, + ACTIONS(11029), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -243794,6 +249967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -243811,7 +249985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -243825,9 +249999,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [143969] = 2, - ACTIONS(10722), 12, + [148424] = 2, + ACTIONS(10921), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243836,17 +250011,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 41, + ACTIONS(10919), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -243867,7 +250042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -243881,9 +250056,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [144027] = 2, - ACTIONS(10802), 12, + [148483] = 2, + ACTIONS(10885), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243896,7 +250072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 41, + ACTIONS(10883), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -243937,9 +250113,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [144085] = 2, - ACTIONS(10674), 12, + [148542] = 2, + ACTIONS(10889), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243952,7 +250129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 41, + ACTIONS(10887), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -243993,9 +250170,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [144143] = 2, - ACTIONS(10726), 12, + [148601] = 2, + ACTIONS(10893), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244008,7 +250186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 41, + ACTIONS(10891), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -244049,9 +250227,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [144201] = 2, - ACTIONS(10730), 12, + [148660] = 2, + ACTIONS(10897), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244064,7 +250243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 41, + ACTIONS(10895), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -244105,9 +250284,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [144259] = 2, - ACTIONS(10742), 11, + [148719] = 2, + ACTIONS(10901), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244116,11 +250296,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 42, - ts_builtin_sym_end, + ACTIONS(10899), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -244147,7 +250327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -244161,9 +250341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [144317] = 2, - ACTIONS(10734), 12, + [148778] = 2, + ACTIONS(10905), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244176,7 +250357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 41, + ACTIONS(10903), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -244217,9 +250398,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [144375] = 2, - ACTIONS(10738), 12, + [148837] = 2, + ACTIONS(10909), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244232,7 +250414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 41, + ACTIONS(10907), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -244273,9 +250455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [144433] = 2, - ACTIONS(10742), 12, + [148896] = 2, + ACTIONS(11025), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244284,11 +250467,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 41, + ACTIONS(11023), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -244298,6 +250480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -244315,7 +250498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -244329,9 +250512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [144491] = 2, - ACTIONS(10746), 12, + [148955] = 2, + ACTIONS(10913), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244344,7 +250528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 41, + ACTIONS(10911), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -244385,9 +250569,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [144549] = 2, - ACTIONS(10750), 12, + [149014] = 2, + ACTIONS(10917), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244400,7 +250585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 41, + ACTIONS(10915), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -244441,9 +250626,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [144607] = 2, - ACTIONS(10754), 12, + [149073] = 2, + ACTIONS(10997), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244456,7 +250642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 41, + ACTIONS(10995), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -244497,9 +250683,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [144665] = 2, - ACTIONS(10758), 12, + [149132] = 2, + ACTIONS(10921), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244512,7 +250699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 41, + ACTIONS(10919), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -244553,9 +250740,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [144723] = 2, - ACTIONS(10762), 12, + [149191] = 2, + ACTIONS(10925), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244568,7 +250756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 41, + ACTIONS(10923), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -244609,9 +250797,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [144781] = 2, - ACTIONS(10766), 12, + [149250] = 2, + ACTIONS(10929), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244624,7 +250813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 41, + ACTIONS(10927), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -244665,9 +250854,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [144839] = 2, - ACTIONS(10770), 12, + [149309] = 2, + ACTIONS(10933), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244680,7 +250870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 41, + ACTIONS(10931), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -244721,9 +250911,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [144897] = 2, - ACTIONS(10774), 12, + [149368] = 2, + ACTIONS(10937), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244736,7 +250927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 41, + ACTIONS(10935), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -244777,9 +250968,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [144955] = 2, - ACTIONS(10778), 12, + [149427] = 2, + ACTIONS(10941), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244792,7 +250984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 41, + ACTIONS(10939), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -244833,9 +251025,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [145013] = 2, - ACTIONS(10782), 12, + [149486] = 2, + ACTIONS(10945), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244848,7 +251041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 41, + ACTIONS(10943), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -244889,9 +251082,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [145071] = 2, - ACTIONS(10786), 12, + [149545] = 2, + ACTIONS(10949), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244904,7 +251098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 41, + ACTIONS(10947), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -244945,9 +251139,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [145129] = 2, - ACTIONS(10790), 12, + [149604] = 2, + ACTIONS(10849), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244960,7 +251155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 41, + ACTIONS(10847), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -245001,9 +251196,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [145187] = 2, - ACTIONS(10904), 11, + [149663] = 2, + ACTIONS(10953), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245012,10 +251208,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 42, + ACTIONS(10951), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -245025,7 +251222,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -245043,7 +251239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -245057,9 +251253,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [145245] = 2, - ACTIONS(10794), 12, + [149722] = 2, + ACTIONS(10957), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245072,7 +251269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 41, + ACTIONS(10955), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -245113,9 +251310,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [145303] = 2, - ACTIONS(10798), 12, + [149781] = 2, + ACTIONS(10961), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245128,7 +251326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 41, + ACTIONS(10959), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -245169,9 +251367,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [145361] = 2, - ACTIONS(10746), 11, + [149840] = 2, + ACTIONS(11021), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245183,8 +251382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 42, - ts_builtin_sym_end, + ACTIONS(11019), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -245194,6 +251392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -245225,9 +251424,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [145419] = 2, - ACTIONS(10806), 12, + [149899] = 2, + ACTIONS(10965), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245240,7 +251440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 41, + ACTIONS(10963), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -245281,9 +251481,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [145477] = 2, - ACTIONS(10810), 12, + [149958] = 2, + ACTIONS(10969), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245296,7 +251497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 41, + ACTIONS(10967), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -245337,9 +251538,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [145535] = 2, - ACTIONS(10814), 12, + [150017] = 2, + ACTIONS(11035), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245348,11 +251550,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 41, + ACTIONS(11033), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -245379,7 +251581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -245393,9 +251595,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [145593] = 2, - ACTIONS(10818), 12, + [150076] = 2, + ACTIONS(10973), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245408,7 +251611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 41, + ACTIONS(10971), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -245449,9 +251652,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [145651] = 2, - ACTIONS(10824), 12, + [150135] = 2, + ACTIONS(10977), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245464,7 +251668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 41, + ACTIONS(10975), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -245505,9 +251709,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [145709] = 2, - ACTIONS(10828), 12, + [150194] = 2, + ACTIONS(10981), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245520,7 +251725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 41, + ACTIONS(10979), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -245561,9 +251766,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [145767] = 2, - ACTIONS(10832), 12, + [150253] = 2, + ACTIONS(10985), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245576,7 +251782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 41, + ACTIONS(10983), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -245617,9 +251823,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [145825] = 2, - ACTIONS(10836), 12, + [150312] = 2, + ACTIONS(10989), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245632,7 +251839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 41, + ACTIONS(10987), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -245673,9 +251880,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [145883] = 2, - ACTIONS(10840), 12, + [150371] = 2, + ACTIONS(10993), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245688,7 +251896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 41, + ACTIONS(10991), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -245729,9 +251937,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [145941] = 2, - ACTIONS(10678), 12, + [150430] = 2, + ACTIONS(11087), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245744,7 +251953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 41, + ACTIONS(11085), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -245785,9 +251994,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [145999] = 2, - ACTIONS(10844), 12, + [150489] = 2, + ACTIONS(11001), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245800,7 +252010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 41, + ACTIONS(10999), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -245841,9 +252051,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [146057] = 2, - ACTIONS(10848), 12, + [150548] = 2, + ACTIONS(11005), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245856,7 +252067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 41, + ACTIONS(11003), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -245897,9 +252108,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [146115] = 2, - ACTIONS(10852), 12, + [150607] = 2, + ACTIONS(11009), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245912,7 +252124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 41, + ACTIONS(11007), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -245953,9 +252165,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [146173] = 2, - ACTIONS(10856), 12, + [150666] = 2, + ACTIONS(11013), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245968,7 +252181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 41, + ACTIONS(11011), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -246009,9 +252222,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [146231] = 2, - ACTIONS(10860), 12, + [150725] = 2, + ACTIONS(11017), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246024,7 +252238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 41, + ACTIONS(11015), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -246065,9 +252279,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [146289] = 2, - ACTIONS(10864), 12, + [150784] = 2, + ACTIONS(11021), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246080,7 +252295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 41, + ACTIONS(11019), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -246121,9 +252336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [146347] = 2, - ACTIONS(10868), 12, + [150843] = 2, + ACTIONS(11025), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246136,7 +252352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 41, + ACTIONS(11023), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -246177,9 +252393,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [146405] = 2, - ACTIONS(10872), 12, + [150902] = 2, + ACTIONS(11031), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246192,7 +252409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 41, + ACTIONS(11029), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -246233,9 +252450,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [146463] = 2, - ACTIONS(10876), 12, + [150961] = 2, + ACTIONS(11035), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246248,7 +252466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 41, + ACTIONS(11033), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -246289,9 +252507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [146521] = 2, - ACTIONS(10880), 12, + [151020] = 2, + ACTIONS(11039), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246304,7 +252523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 41, + ACTIONS(11037), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -246345,9 +252564,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [146579] = 2, - ACTIONS(10884), 12, + [151079] = 2, + ACTIONS(11043), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246360,7 +252580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 41, + ACTIONS(11041), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -246401,9 +252621,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [146637] = 2, - ACTIONS(11024), 12, + [151138] = 2, + ACTIONS(11047), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246416,7 +252637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 41, + ACTIONS(11045), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -246457,9 +252678,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [146695] = 2, - ACTIONS(10888), 12, + [151197] = 2, + ACTIONS(11051), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246472,7 +252694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 41, + ACTIONS(11049), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -246513,9 +252735,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [146753] = 2, - ACTIONS(10892), 12, + [151256] = 2, + ACTIONS(11055), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246528,7 +252751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 41, + ACTIONS(11053), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -246569,9 +252792,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [146811] = 2, - ACTIONS(10896), 12, + [151315] = 2, + ACTIONS(11059), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246584,7 +252808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 41, + ACTIONS(11057), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -246625,9 +252849,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [146869] = 2, - ACTIONS(10900), 12, + [151374] = 2, + ACTIONS(11063), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246640,7 +252865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 41, + ACTIONS(11061), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -246681,9 +252906,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [146927] = 2, - ACTIONS(10904), 12, + [151433] = 2, + ACTIONS(11067), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246696,7 +252922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 41, + ACTIONS(11065), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -246737,9 +252963,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [146985] = 2, - ACTIONS(10908), 12, + [151492] = 2, + ACTIONS(11071), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246752,7 +252979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 41, + ACTIONS(11069), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -246793,9 +253020,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [147043] = 2, - ACTIONS(10912), 12, + [151551] = 2, + ACTIONS(11075), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246808,7 +253036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 41, + ACTIONS(11073), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -246849,9 +253077,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [147101] = 2, - ACTIONS(10916), 12, + [151610] = 2, + ACTIONS(11079), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246864,7 +253093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 41, + ACTIONS(11077), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -246905,9 +253134,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [147159] = 2, - ACTIONS(10920), 12, + [151669] = 2, + ACTIONS(11083), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246920,7 +253150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 41, + ACTIONS(11081), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -246961,9 +253191,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [147217] = 2, - ACTIONS(10924), 12, + [151728] = 2, + ACTIONS(11155), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246976,7 +253207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 41, + ACTIONS(11153), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -247017,9 +253248,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [147275] = 2, - ACTIONS(10928), 12, + [151787] = 2, + ACTIONS(11091), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247032,7 +253264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 41, + ACTIONS(11089), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -247073,9 +253305,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [147333] = 2, - ACTIONS(10932), 12, + [151846] = 2, + ACTIONS(11095), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247088,7 +253321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 41, + ACTIONS(11093), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -247129,9 +253362,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [147391] = 2, - ACTIONS(10940), 12, + [151905] = 2, + ACTIONS(11099), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247144,7 +253378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 41, + ACTIONS(11097), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -247185,9 +253419,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [147449] = 2, - ACTIONS(10944), 12, + [151964] = 2, + ACTIONS(11103), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247200,7 +253435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 41, + ACTIONS(11101), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -247241,9 +253476,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [147507] = 2, - ACTIONS(10948), 12, + [152023] = 2, + ACTIONS(11107), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247256,7 +253492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 41, + ACTIONS(11105), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -247297,9 +253533,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [147565] = 2, - ACTIONS(10952), 12, + [152082] = 2, + ACTIONS(11111), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247312,7 +253549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 41, + ACTIONS(11109), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -247353,9 +253590,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [147623] = 2, - ACTIONS(10956), 12, + [152141] = 2, + ACTIONS(11115), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247368,7 +253606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 41, + ACTIONS(11113), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -247409,9 +253647,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [147681] = 2, - ACTIONS(10960), 12, + [152200] = 2, + ACTIONS(11119), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247424,7 +253663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 41, + ACTIONS(11117), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -247465,9 +253704,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [147739] = 2, - ACTIONS(10964), 12, + [152259] = 2, + ACTIONS(11123), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247480,7 +253720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 41, + ACTIONS(11121), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -247521,9 +253761,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [147797] = 2, - ACTIONS(10750), 11, + [152318] = 2, + ACTIONS(11127), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247532,11 +253773,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 42, - ts_builtin_sym_end, + ACTIONS(11125), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -247563,7 +253804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -247577,9 +253818,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [147855] = 2, - ACTIONS(10968), 12, + [152377] = 2, + ACTIONS(11131), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247592,7 +253834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 41, + ACTIONS(11129), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -247633,9 +253875,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [147913] = 2, - ACTIONS(10972), 12, + [152436] = 2, + ACTIONS(11135), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247648,7 +253891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 41, + ACTIONS(11133), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -247689,9 +253932,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [147971] = 2, - ACTIONS(10976), 12, + [152495] = 2, + ACTIONS(10981), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247700,11 +253944,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 41, + ACTIONS(10979), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -247731,7 +253975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -247745,9 +253989,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [148029] = 2, - ACTIONS(10980), 12, + [152554] = 2, + ACTIONS(11139), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247760,7 +254005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 41, + ACTIONS(11137), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -247801,9 +254046,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [148087] = 2, - ACTIONS(10984), 12, + [152613] = 2, + ACTIONS(11143), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247816,7 +254062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 41, + ACTIONS(11141), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -247857,9 +254103,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [148145] = 2, - ACTIONS(11000), 12, + [152672] = 2, + ACTIONS(11147), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247872,7 +254119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 41, + ACTIONS(11145), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -247913,9 +254160,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [148203] = 2, - ACTIONS(10988), 12, + [152731] = 2, + ACTIONS(11187), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247928,7 +254176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 41, + ACTIONS(11185), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -247969,9 +254217,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [148261] = 2, - ACTIONS(10992), 12, + [152790] = 2, + ACTIONS(11159), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247984,7 +254233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 41, + ACTIONS(11157), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -248025,9 +254274,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [148319] = 2, - ACTIONS(10996), 12, + [152849] = 2, + ACTIONS(11163), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248040,7 +254290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 41, + ACTIONS(11161), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -248081,9 +254331,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [148377] = 2, - ACTIONS(11004), 12, + [152908] = 2, + ACTIONS(11167), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248096,7 +254347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 41, + ACTIONS(11165), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -248137,9 +254388,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [148435] = 2, - ACTIONS(10746), 11, + [152967] = 2, + ACTIONS(11171), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248148,17 +254400,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 42, + ACTIONS(11169), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -248179,7 +254431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -248193,9 +254445,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [148493] = 2, - ACTIONS(10896), 11, + [153026] = 2, + ACTIONS(11175), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248204,10 +254457,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 42, + ACTIONS(11173), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -248217,7 +254471,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -248235,7 +254488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -248249,9 +254502,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [148551] = 2, - ACTIONS(10730), 11, + [153085] = 2, + ACTIONS(11179), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248260,11 +254514,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 42, - ts_builtin_sym_end, + ACTIONS(11177), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -248291,7 +254545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -248305,9 +254559,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [148609] = 2, - ACTIONS(10758), 11, + [153144] = 2, + ACTIONS(11183), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248316,11 +254571,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 42, - ts_builtin_sym_end, + ACTIONS(11181), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -248347,7 +254602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -248361,9 +254616,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [148667] = 2, - ACTIONS(10892), 11, + [153203] = 2, + ACTIONS(11039), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248375,7 +254631,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 42, + ACTIONS(11037), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -248385,7 +254642,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -248417,9 +254673,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [148725] = 2, - ACTIONS(10888), 11, + [153262] = 2, + ACTIONS(11017), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248431,7 +254688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 42, + ACTIONS(11015), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -248473,9 +254730,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [148783] = 2, - ACTIONS(10762), 11, + [153321] = 2, + ACTIONS(11043), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248487,7 +254745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 42, + ACTIONS(11041), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -248529,9 +254787,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [148841] = 2, - ACTIONS(10754), 11, + [153380] = 2, + ACTIONS(11047), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248543,7 +254802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 42, + ACTIONS(11045), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -248585,9 +254844,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [148899] = 2, - ACTIONS(11024), 11, + [153439] = 2, + ACTIONS(11013), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248599,7 +254859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 42, + ACTIONS(11011), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -248641,9 +254901,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [148957] = 2, - ACTIONS(10856), 11, + [153498] = 2, + ACTIONS(10925), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248655,7 +254916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 42, + ACTIONS(10923), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -248697,9 +254958,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [149015] = 2, - ACTIONS(10766), 11, + [153557] = 2, + ACTIONS(11051), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248711,7 +254973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 42, + ACTIONS(11049), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -248753,9 +255015,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [149073] = 2, - ACTIONS(10884), 11, + [153616] = 2, + ACTIONS(11055), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248767,7 +255030,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 42, + ACTIONS(11053), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -248777,7 +255041,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -248809,9 +255072,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [149131] = 2, - ACTIONS(10770), 11, + [153675] = 2, + ACTIONS(10905), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248823,14 +255087,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 42, - ts_builtin_sym_end, + ACTIONS(10903), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -248865,9 +255129,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [149189] = 2, - ACTIONS(10774), 11, + [153734] = 2, + ACTIONS(11005), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248879,8 +255144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 42, - ts_builtin_sym_end, + ACTIONS(11003), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -248890,6 +255154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -248921,9 +255186,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [149247] = 2, - ACTIONS(10880), 11, + [153793] = 2, + ACTIONS(11059), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248935,7 +255201,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 42, + ACTIONS(11057), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -248945,7 +255212,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -248977,9 +255243,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [149305] = 2, - ACTIONS(10936), 12, + [153852] = 2, + ACTIONS(11063), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248988,11 +255255,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 41, + ACTIONS(11061), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -249019,7 +255286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -249033,9 +255300,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [149363] = 2, - ACTIONS(11014), 12, + [153911] = 2, + ACTIONS(11001), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249044,11 +255312,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 41, + ACTIONS(10999), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -249058,6 +255325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -249075,7 +255343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -249089,9 +255357,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [149421] = 2, - ACTIONS(10876), 11, + [153970] = 2, + ACTIONS(11067), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249103,7 +255372,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 42, + ACTIONS(11065), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -249113,7 +255383,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -249145,9 +255414,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [149479] = 2, - ACTIONS(10936), 11, + [154029] = 2, + ACTIONS(10977), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249159,14 +255429,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 42, + ACTIONS(10975), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -249201,9 +255471,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [149537] = 2, - ACTIONS(11014), 11, + [154088] = 2, + ACTIONS(11087), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249215,17 +255486,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 42, + ACTIONS(11085), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -249257,9 +255528,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [149595] = 2, - ACTIONS(10872), 11, + [154147] = 2, + ACTIONS(11151), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249268,10 +255540,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 42, + ACTIONS(11149), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -249281,7 +255554,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -249299,7 +255571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -249313,9 +255585,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [149653] = 2, - ACTIONS(10936), 11, + [154206] = 2, + ACTIONS(11197), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249324,10 +255597,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 42, + ACTIONS(11195), 42, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -249354,8 +255628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -249369,9 +255642,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [149711] = 2, - ACTIONS(11014), 11, + [154265] = 2, + ACTIONS(10993), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249383,7 +255657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 42, + ACTIONS(10991), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -249393,6 +255667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -249410,7 +255685,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -249425,9 +255699,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [149769] = 2, - ACTIONS(10868), 11, + [154324] = 2, + ACTIONS(11151), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249439,17 +255714,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 42, + ACTIONS(11149), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -249481,9 +255756,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [149827] = 2, - ACTIONS(10778), 11, + [154383] = 2, + ACTIONS(11197), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249495,14 +255771,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 42, - ts_builtin_sym_end, + ACTIONS(11195), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -249537,9 +255813,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [149885] = 2, - ACTIONS(10864), 11, + [154442] = 2, + ACTIONS(10989), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249551,7 +255828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 42, + ACTIONS(10987), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -249593,9 +255870,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [149943] = 2, - ACTIONS(10860), 11, + [154501] = 2, + ACTIONS(11151), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249607,7 +255885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 42, + ACTIONS(11149), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -249617,7 +255895,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -249635,6 +255912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -249649,9 +255927,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [150001] = 2, - ACTIONS(10782), 11, + [154560] = 2, + ACTIONS(11197), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249663,8 +255942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 42, - ts_builtin_sym_end, + ACTIONS(11195), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -249691,6 +255969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -249705,9 +255984,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [150059] = 2, - ACTIONS(10786), 11, + [154619] = 2, + ACTIONS(10973), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249719,7 +255999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 42, + ACTIONS(10971), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -249761,9 +256041,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [150117] = 2, - ACTIONS(10790), 11, + [154678] = 2, + ACTIONS(10985), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249775,8 +256056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 42, - ts_builtin_sym_end, + ACTIONS(10983), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -249786,6 +256066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -249817,9 +256098,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [150175] = 2, - ACTIONS(10860), 11, + [154737] = 2, + ACTIONS(11151), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249831,14 +256113,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 42, + ACTIONS(11149), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -249873,9 +256155,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [150233] = 2, - ACTIONS(10794), 11, + [154796] = 2, + ACTIONS(10929), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249887,14 +256170,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 42, - ts_builtin_sym_end, + ACTIONS(10927), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -249929,9 +256212,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [150291] = 2, - ACTIONS(10778), 11, + [154855] = 2, + ACTIONS(10981), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249943,17 +256227,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 42, + ACTIONS(10979), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -249985,9 +256269,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [150349] = 2, - ACTIONS(10856), 11, + [154914] = 2, + ACTIONS(11071), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249999,7 +256284,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 42, + ACTIONS(11069), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -250009,7 +256295,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -250041,9 +256326,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [150407] = 2, - ACTIONS(10798), 11, + [154973] = 2, + ACTIONS(10969), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250055,7 +256341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 42, + ACTIONS(10967), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -250097,9 +256383,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [150465] = 2, - ACTIONS(10806), 11, + [155032] = 2, + ACTIONS(10965), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250111,7 +256398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 42, + ACTIONS(10963), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -250153,9 +256440,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [150523] = 2, - ACTIONS(10810), 11, + [155091] = 2, + ACTIONS(11075), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250167,7 +256455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 42, + ACTIONS(11073), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -250209,9 +256497,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [150581] = 2, - ACTIONS(10814), 11, + [155150] = 2, + ACTIONS(11079), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250223,7 +256512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 42, + ACTIONS(11077), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -250265,9 +256554,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [150639] = 2, - ACTIONS(10818), 11, + [155209] = 2, + ACTIONS(10933), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250279,14 +256569,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 42, - ts_builtin_sym_end, + ACTIONS(10931), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -250321,9 +256611,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [150697] = 2, - ACTIONS(10824), 11, + [155268] = 2, + ACTIONS(10977), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250335,8 +256626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 42, - ts_builtin_sym_end, + ACTIONS(10975), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -250346,6 +256636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -250377,9 +256668,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [150755] = 2, - ACTIONS(10828), 11, + [155327] = 2, + ACTIONS(11083), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250391,7 +256683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 42, + ACTIONS(11081), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -250433,9 +256725,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [150813] = 2, - ACTIONS(10832), 11, + [155386] = 2, + ACTIONS(11155), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250447,7 +256740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 42, + ACTIONS(11153), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -250489,9 +256782,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [150871] = 2, - ACTIONS(10836), 11, + [155445] = 2, + ACTIONS(11091), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250503,7 +256797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 42, + ACTIONS(11089), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -250545,9 +256839,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [150929] = 2, - ACTIONS(10840), 11, + [155504] = 2, + ACTIONS(11087), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250559,14 +256854,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 42, - ts_builtin_sym_end, + ACTIONS(11085), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -250601,9 +256896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [150987] = 2, - ACTIONS(10678), 11, + [155563] = 2, + ACTIONS(11099), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250615,7 +256911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 42, + ACTIONS(11097), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -250657,9 +256953,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [151045] = 2, - ACTIONS(10852), 11, + [155622] = 2, + ACTIONS(11103), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250671,7 +256968,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 42, + ACTIONS(11101), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -250681,7 +256979,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -250713,9 +257010,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [151103] = 2, - ACTIONS(10848), 11, + [155681] = 2, + ACTIONS(11107), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250727,7 +257025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 42, + ACTIONS(11105), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -250737,7 +257036,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -250769,9 +257067,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [151161] = 2, - ACTIONS(10844), 11, + [155740] = 2, + ACTIONS(11111), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250783,7 +257082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 42, + ACTIONS(11109), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -250825,9 +257124,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [151219] = 2, - ACTIONS(10848), 11, + [155799] = 2, + ACTIONS(10961), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250839,7 +257139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 42, + ACTIONS(10959), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -250881,9 +257181,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [151277] = 2, - ACTIONS(10852), 11, + [155858] = 2, + ACTIONS(10957), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250895,7 +257196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 42, + ACTIONS(10955), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -250937,9 +257238,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [151335] = 2, - ACTIONS(10864), 11, + [155917] = 2, + ACTIONS(11115), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250951,14 +257253,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 42, + ACTIONS(11113), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -250993,9 +257295,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [151393] = 2, - ACTIONS(10856), 11, + [155976] = 2, + ACTIONS(10973), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251007,8 +257310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 42, - ts_builtin_sym_end, + ACTIONS(10971), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -251018,6 +257320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -251049,9 +257352,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [151451] = 2, - ACTIONS(10860), 11, + [156035] = 2, + ACTIONS(10969), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251063,8 +257367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 42, - ts_builtin_sym_end, + ACTIONS(10967), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -251074,6 +257377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -251105,9 +257409,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [151509] = 2, - ACTIONS(10864), 11, + [156094] = 2, + ACTIONS(11119), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251119,7 +257424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 42, + ACTIONS(11117), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -251161,9 +257466,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [151567] = 2, - ACTIONS(10868), 11, + [156153] = 2, + ACTIONS(11123), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251175,7 +257481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 42, + ACTIONS(11121), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -251217,9 +257523,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [151625] = 2, - ACTIONS(10876), 11, + [156212] = 2, + ACTIONS(10953), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251231,7 +257538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 42, + ACTIONS(10951), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -251273,9 +257580,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [151683] = 2, - ACTIONS(10880), 11, + [156271] = 2, + ACTIONS(10849), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251287,7 +257595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 42, + ACTIONS(10847), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -251329,9 +257637,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [151741] = 2, - ACTIONS(10884), 11, + [156330] = 2, + ACTIONS(11127), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251343,7 +257652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 42, + ACTIONS(11125), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -251385,9 +257694,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [151799] = 2, - ACTIONS(10844), 11, + [156389] = 2, + ACTIONS(11131), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251399,7 +257709,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 42, + ACTIONS(11129), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -251409,7 +257720,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -251441,9 +257751,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [151857] = 2, - ACTIONS(11024), 11, + [156448] = 2, + ACTIONS(11135), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251455,7 +257766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 42, + ACTIONS(11133), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -251497,9 +257808,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [151915] = 2, - ACTIONS(10888), 11, + [156507] = 2, + ACTIONS(11197), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251511,7 +257823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 42, + ACTIONS(11195), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -251553,9 +257865,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [151973] = 2, - ACTIONS(10892), 11, + [156566] = 2, + ACTIONS(11139), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251567,7 +257880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 42, + ACTIONS(11137), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -251609,9 +257922,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [152031] = 2, - ACTIONS(10896), 11, + [156625] = 2, + ACTIONS(11143), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251623,7 +257937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 42, + ACTIONS(11141), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -251665,9 +257979,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [152089] = 2, - ACTIONS(10900), 11, + [156684] = 2, + ACTIONS(11095), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251679,7 +257994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 42, + ACTIONS(11093), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -251721,9 +258036,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [152147] = 2, - ACTIONS(10904), 11, + [156743] = 2, + ACTIONS(10965), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251735,8 +258051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 42, - ts_builtin_sym_end, + ACTIONS(10963), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -251746,6 +258061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -251777,9 +258093,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [152205] = 2, - ACTIONS(10908), 11, + [156802] = 2, + ACTIONS(11147), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251791,7 +258108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 42, + ACTIONS(11145), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -251833,9 +258150,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [152263] = 2, - ACTIONS(10912), 11, + [156861] = 2, + ACTIONS(11187), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251847,7 +258165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 42, + ACTIONS(11185), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -251889,9 +258207,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [152321] = 2, - ACTIONS(10916), 11, + [156920] = 2, + ACTIONS(11159), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251903,7 +258222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 42, + ACTIONS(11157), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -251945,9 +258264,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [152379] = 2, - ACTIONS(10920), 11, + [156979] = 2, + ACTIONS(11163), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251959,7 +258279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 42, + ACTIONS(11161), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -252001,9 +258321,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [152437] = 2, - ACTIONS(10924), 11, + [157038] = 2, + ACTIONS(11167), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252015,7 +258336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 42, + ACTIONS(11165), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -252057,9 +258378,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [152495] = 2, - ACTIONS(10928), 11, + [157097] = 2, + ACTIONS(10949), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252071,7 +258393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 42, + ACTIONS(10947), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -252113,9 +258435,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [152553] = 2, - ACTIONS(10932), 11, + [157156] = 2, + ACTIONS(11171), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252127,7 +258450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 42, + ACTIONS(11169), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -252169,9 +258492,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [152611] = 2, - ACTIONS(10940), 11, + [157215] = 2, + ACTIONS(11175), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252183,7 +258507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 42, + ACTIONS(11173), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -252225,9 +258549,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [152669] = 2, - ACTIONS(10944), 11, + [157274] = 2, + ACTIONS(11179), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252239,7 +258564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 42, + ACTIONS(11177), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -252281,9 +258606,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [152727] = 2, - ACTIONS(10948), 11, + [157333] = 2, + ACTIONS(11183), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252295,7 +258621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 42, + ACTIONS(11181), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -252337,9 +258663,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [152785] = 2, - ACTIONS(10872), 11, + [157392] = 2, + ACTIONS(10853), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252351,8 +258678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 42, - ts_builtin_sym_end, + ACTIONS(10851), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -252360,6 +258686,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -252393,9 +258720,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [152843] = 2, - ACTIONS(10956), 11, + [157451] = 2, + ACTIONS(11001), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252407,14 +258735,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 42, - ts_builtin_sym_end, + ACTIONS(10999), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -252449,9 +258777,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [152901] = 2, - ACTIONS(10960), 11, + [157510] = 2, + ACTIONS(10885), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252463,8 +258792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 42, - ts_builtin_sym_end, + ACTIONS(10883), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -252472,6 +258800,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -252505,9 +258834,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [152959] = 2, - ACTIONS(10964), 11, + [157569] = 2, + ACTIONS(10889), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252519,8 +258849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 42, - ts_builtin_sym_end, + ACTIONS(10887), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -252528,6 +258857,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -252561,9 +258891,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [153017] = 2, - ACTIONS(11014), 11, + [157628] = 2, + ACTIONS(10893), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252575,8 +258906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 42, - ts_builtin_sym_end, + ACTIONS(10891), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -252584,6 +258914,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -252617,9 +258948,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [153075] = 2, - ACTIONS(10968), 11, + [157687] = 2, + ACTIONS(10897), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252631,8 +258963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 42, - ts_builtin_sym_end, + ACTIONS(10895), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -252640,6 +258971,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -252673,9 +259005,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [153133] = 2, - ACTIONS(10972), 11, + [157746] = 2, + ACTIONS(10945), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252687,7 +259020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 42, + ACTIONS(10943), 43, ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, @@ -252729,9 +259062,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [153191] = 2, - ACTIONS(10976), 11, + [157805] = 2, + ACTIONS(10905), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252743,8 +259077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 42, - ts_builtin_sym_end, + ACTIONS(10903), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -252752,6 +259085,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -252785,9 +259119,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [153249] = 2, - ACTIONS(10980), 11, + [157864] = 2, + ACTIONS(10909), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252799,8 +259134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 42, - ts_builtin_sym_end, + ACTIONS(10907), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -252808,6 +259142,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -252841,9 +259176,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [153307] = 2, - ACTIONS(10984), 11, + [157923] = 2, + ACTIONS(11009), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252855,14 +259191,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 42, - ts_builtin_sym_end, + ACTIONS(11007), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -252897,9 +259233,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [153365] = 2, - ACTIONS(11000), 11, + [157982] = 2, + ACTIONS(10913), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252911,8 +259248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 42, - ts_builtin_sym_end, + ACTIONS(10911), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -252920,6 +259256,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -252953,9 +259290,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [153423] = 2, - ACTIONS(10936), 11, + [158041] = 2, + ACTIONS(10917), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252967,7 +259305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 42, + ACTIONS(10915), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -252975,11 +259313,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -253009,9 +259347,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [153481] = 2, - ACTIONS(10988), 11, + [158100] = 2, + ACTIONS(10997), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253023,8 +259362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 42, - ts_builtin_sym_end, + ACTIONS(10995), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -253032,6 +259370,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -253065,9 +259404,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [153539] = 2, - ACTIONS(10952), 11, + [158159] = 2, + ACTIONS(10921), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253079,8 +259419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 42, - ts_builtin_sym_end, + ACTIONS(10919), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -253088,6 +259427,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -253121,9 +259461,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [153597] = 2, - ACTIONS(10678), 11, + [158218] = 2, + ACTIONS(10925), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253135,7 +259476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 42, + ACTIONS(10923), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -253143,9 +259484,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -253177,9 +259518,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [153655] = 2, - ACTIONS(10992), 11, + [158277] = 2, + ACTIONS(10929), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253191,8 +259533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 42, - ts_builtin_sym_end, + ACTIONS(10927), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -253200,6 +259541,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -253233,9 +259575,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [153713] = 2, - ACTIONS(10996), 11, + [158336] = 2, + ACTIONS(10933), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253247,8 +259590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 42, - ts_builtin_sym_end, + ACTIONS(10931), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -253256,6 +259598,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -253289,9 +259632,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [153771] = 2, - ACTIONS(10840), 11, + [158395] = 2, + ACTIONS(10937), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253303,17 +259647,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 42, + ACTIONS(10935), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -253345,9 +259689,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [153829] = 2, - ACTIONS(11004), 11, + [158454] = 2, + ACTIONS(10937), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253359,8 +259704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 42, - ts_builtin_sym_end, + ACTIONS(10935), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -253368,6 +259712,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -253401,9 +259746,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [153887] = 2, - ACTIONS(10836), 11, + [158513] = 2, + ACTIONS(11005), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253415,17 +259761,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 42, + ACTIONS(11003), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -253457,9 +259803,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [153945] = 2, - ACTIONS(10710), 11, + [158572] = 2, + ACTIONS(10961), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253471,7 +259818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 42, + ACTIONS(10959), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -253479,9 +259826,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -253513,9 +259860,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [154003] = 2, - ACTIONS(10832), 11, + [158631] = 2, + ACTIONS(10941), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253527,7 +259875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 42, + ACTIONS(10939), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -253535,9 +259883,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -253569,9 +259917,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [154061] = 2, - ACTIONS(10828), 11, + [158690] = 2, + ACTIONS(10945), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253583,7 +259932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 42, + ACTIONS(10943), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -253591,9 +259940,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -253625,9 +259974,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [154119] = 2, - ACTIONS(10872), 11, + [158749] = 2, + ACTIONS(10949), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253639,15 +259989,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 42, + ACTIONS(10947), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -253681,9 +260031,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [154177] = 2, - ACTIONS(10824), 11, + [158808] = 2, + ACTIONS(10957), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253695,7 +260046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 42, + ACTIONS(10955), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -253737,9 +260088,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [154235] = 2, - ACTIONS(10714), 11, + [158867] = 2, + ACTIONS(10849), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253751,7 +260103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 42, + ACTIONS(10847), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -253793,9 +260145,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [154293] = 2, - ACTIONS(10818), 11, + [158926] = 2, + ACTIONS(10953), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253807,7 +260160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 42, + ACTIONS(10951), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -253849,9 +260202,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [154351] = 2, - ACTIONS(10718), 11, + [158985] = 2, + ACTIONS(10901), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253863,7 +260217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 42, + ACTIONS(10899), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -253905,9 +260259,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [154409] = 2, - ACTIONS(10722), 11, + [159044] = 2, + ACTIONS(10849), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253919,7 +260274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 42, + ACTIONS(10847), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -253927,9 +260282,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -253961,9 +260316,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [154467] = 2, - ACTIONS(10802), 11, + [159103] = 2, + ACTIONS(10949), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253975,7 +260331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 42, + ACTIONS(10947), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -253983,9 +260339,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -254017,9 +260373,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [154525] = 2, - ACTIONS(10674), 11, + [159162] = 2, + ACTIONS(10957), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254031,7 +260388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 42, + ACTIONS(10955), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -254073,9 +260430,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [154583] = 2, - ACTIONS(10726), 11, + [159221] = 2, + ACTIONS(11197), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254087,7 +260445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 42, + ACTIONS(11195), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -254095,10 +260453,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -254129,9 +260487,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [154641] = 2, - ACTIONS(10786), 11, + [159280] = 2, + ACTIONS(10961), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254143,15 +260502,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 42, + ACTIONS(10959), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -254185,9 +260544,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [154699] = 2, - ACTIONS(10814), 11, + [159339] = 2, + ACTIONS(10945), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254199,7 +260559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 42, + ACTIONS(10943), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -254241,9 +260601,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [154757] = 2, - ACTIONS(10730), 11, + [159398] = 2, + ACTIONS(10965), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254255,7 +260616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 42, + ACTIONS(10963), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -254297,9 +260658,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [154815] = 2, - ACTIONS(10876), 11, + [159457] = 2, + ACTIONS(10969), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254311,15 +260673,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 42, + ACTIONS(10967), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -254353,9 +260715,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [154873] = 2, - ACTIONS(10734), 11, + [159516] = 2, + ACTIONS(10953), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254367,7 +260730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 42, + ACTIONS(10951), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -254409,9 +260772,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [154931] = 2, - ACTIONS(10738), 11, + [159575] = 2, + ACTIONS(10973), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254423,7 +260787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 42, + ACTIONS(10971), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -254465,9 +260829,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [154989] = 2, - ACTIONS(10742), 11, + [159634] = 2, + ACTIONS(10977), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254479,7 +260844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 42, + ACTIONS(10975), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -254521,9 +260886,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [155047] = 2, - ACTIONS(10746), 11, + [159693] = 2, + ACTIONS(10941), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254535,7 +260901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 42, + ACTIONS(10939), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -254543,9 +260909,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -254577,9 +260943,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [155105] = 2, - ACTIONS(10750), 11, + [159752] = 2, + ACTIONS(10941), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254591,15 +260958,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 42, + ACTIONS(10939), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -254633,9 +261000,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [155163] = 2, - ACTIONS(10754), 11, + [159811] = 2, + ACTIONS(10981), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254647,7 +261015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 42, + ACTIONS(10979), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -254689,9 +261057,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [155221] = 2, - ACTIONS(10758), 11, + [159870] = 2, + ACTIONS(10985), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254703,7 +261072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 42, + ACTIONS(10983), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -254745,9 +261114,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [155279] = 2, - ACTIONS(10762), 11, + [159929] = 2, + ACTIONS(10989), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254759,7 +261129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 42, + ACTIONS(10987), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -254801,9 +261171,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [155337] = 2, - ACTIONS(10868), 11, + [159988] = 2, + ACTIONS(10993), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254815,15 +261186,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 42, + ACTIONS(10991), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -254857,9 +261228,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [155395] = 2, - ACTIONS(10790), 11, + [160047] = 2, + ACTIONS(11087), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254871,15 +261243,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 42, + ACTIONS(11085), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -254913,9 +261285,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [155453] = 2, - ACTIONS(10810), 11, + [160106] = 2, + ACTIONS(11001), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254927,7 +261300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 42, + ACTIONS(10999), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -254935,9 +261308,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -254969,9 +261342,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [155511] = 2, - ACTIONS(10766), 11, + [160165] = 2, + ACTIONS(11005), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254983,7 +261357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 42, + ACTIONS(11003), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -255025,9 +261399,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [155569] = 2, - ACTIONS(10770), 11, + [160224] = 2, + ACTIONS(11009), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255039,7 +261414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 42, + ACTIONS(11007), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -255081,9 +261456,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [155627] = 2, - ACTIONS(10778), 11, + [160283] = 2, + ACTIONS(11013), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255095,7 +261471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 42, + ACTIONS(11011), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -255137,9 +261513,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [155685] = 2, - ACTIONS(10782), 11, + [160342] = 2, + ACTIONS(11017), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255151,7 +261528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 42, + ACTIONS(11015), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -255193,9 +261570,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [155743] = 2, - ACTIONS(10786), 11, + [160401] = 2, + ACTIONS(11021), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255207,7 +261585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 42, + ACTIONS(11019), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -255249,9 +261627,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [155801] = 2, - ACTIONS(10790), 11, + [160460] = 2, + ACTIONS(10937), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255263,7 +261642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 42, + ACTIONS(10935), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -255271,9 +261650,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -255305,9 +261684,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [155859] = 2, - ACTIONS(10774), 11, + [160519] = 2, + ACTIONS(10933), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255319,7 +261699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 42, + ACTIONS(10931), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -255327,9 +261707,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -255361,9 +261741,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [155917] = 2, - ACTIONS(10794), 11, + [160578] = 2, + ACTIONS(10941), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255375,7 +261756,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 42, + ACTIONS(10939), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -255383,7 +261765,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -255417,9 +261798,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [155975] = 2, - ACTIONS(10798), 11, + [160637] = 2, + ACTIONS(11013), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255431,15 +261813,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 42, + ACTIONS(11011), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -255473,9 +261855,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [156033] = 2, - ACTIONS(10936), 11, + [160696] = 2, + ACTIONS(11025), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255487,15 +261870,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 42, + ACTIONS(11023), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -255529,9 +261912,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [156091] = 2, - ACTIONS(10806), 11, + [160755] = 2, + ACTIONS(11031), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255543,7 +261927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 42, + ACTIONS(11029), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -255585,9 +261969,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [156149] = 2, - ACTIONS(10806), 11, + [160814] = 2, + ACTIONS(11035), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255599,7 +261984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 42, + ACTIONS(11033), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -255607,9 +261992,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -255641,9 +262026,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [156207] = 2, - ACTIONS(10810), 11, + [160873] = 2, + ACTIONS(11039), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255655,7 +262041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 42, + ACTIONS(11037), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -255697,9 +262083,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [156265] = 2, - ACTIONS(10814), 11, + [160932] = 2, + ACTIONS(11043), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255711,7 +262098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 42, + ACTIONS(11041), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -255753,9 +262140,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [156323] = 2, - ACTIONS(10818), 11, + [160991] = 2, + ACTIONS(11047), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255767,7 +262155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 42, + ACTIONS(11045), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -255809,9 +262197,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [156381] = 2, - ACTIONS(10824), 11, + [161050] = 2, + ACTIONS(11051), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255823,7 +262212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 42, + ACTIONS(11049), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -255865,9 +262254,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [156439] = 2, - ACTIONS(10828), 11, + [161109] = 2, + ACTIONS(11055), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255879,7 +262269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 42, + ACTIONS(11053), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -255921,9 +262311,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, + aux_sym__text_token3, + [161168] = 2, + ACTIONS(11151), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11149), 43, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [156497] = 2, - ACTIONS(10832), 11, + [161227] = 2, + ACTIONS(11163), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255935,7 +262383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 42, + ACTIONS(11161), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -255943,8 +262391,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -255977,9 +262425,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [156555] = 2, - ACTIONS(10840), 11, + [161286] = 2, + ACTIONS(11059), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255991,7 +262440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 42, + ACTIONS(11057), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -256033,9 +262482,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [156613] = 2, - ACTIONS(10678), 11, + [161345] = 2, + ACTIONS(11063), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256047,7 +262497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 42, + ACTIONS(11061), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -256089,9 +262539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [156671] = 2, - ACTIONS(10844), 11, + [161404] = 2, + ACTIONS(11067), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256103,7 +262554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 42, + ACTIONS(11065), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -256145,9 +262596,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [156729] = 2, - ACTIONS(10848), 11, + [161463] = 2, + ACTIONS(11071), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256159,7 +262611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 42, + ACTIONS(11069), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -256201,9 +262653,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [156787] = 2, - ACTIONS(10852), 11, + [161522] = 2, + ACTIONS(11075), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256215,7 +262668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 42, + ACTIONS(11073), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -256257,9 +262710,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [156845] = 2, - ACTIONS(10880), 11, + [161581] = 2, + ACTIONS(11079), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256271,15 +262725,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 42, + ACTIONS(11077), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -256313,9 +262767,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [156903] = 2, - ACTIONS(10856), 11, + [161640] = 2, + ACTIONS(11083), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256327,7 +262782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 42, + ACTIONS(11081), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -256369,9 +262824,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [156961] = 2, - ACTIONS(10860), 11, + [161699] = 2, + ACTIONS(11155), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256383,7 +262839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 42, + ACTIONS(11153), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -256425,9 +262881,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [157019] = 2, - ACTIONS(10864), 11, + [161758] = 2, + ACTIONS(11091), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256439,7 +262896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 42, + ACTIONS(11089), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -256481,9 +262938,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [157077] = 2, - ACTIONS(10868), 11, + [161817] = 2, + ACTIONS(11095), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256495,7 +262953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 42, + ACTIONS(11093), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -256537,9 +262995,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [157135] = 2, - ACTIONS(10872), 11, + [161876] = 2, + ACTIONS(11099), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256551,7 +263010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 42, + ACTIONS(11097), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -256593,9 +263052,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [157193] = 2, - ACTIONS(10876), 11, + [161935] = 2, + ACTIONS(11103), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256607,7 +263067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 42, + ACTIONS(11101), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -256649,9 +263109,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [157251] = 2, - ACTIONS(10880), 11, + [161994] = 2, + ACTIONS(11107), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256663,7 +263124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 42, + ACTIONS(11105), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -256705,9 +263166,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [157309] = 2, - ACTIONS(10884), 11, + [162053] = 2, + ACTIONS(11111), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256719,7 +263181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 42, + ACTIONS(11109), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -256761,9 +263223,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [157367] = 2, - ACTIONS(11024), 11, + [162112] = 2, + ACTIONS(10989), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256775,15 +263238,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 42, + ACTIONS(10987), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -256817,9 +263280,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [157425] = 2, - ACTIONS(10888), 11, + [162171] = 2, + ACTIONS(11115), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256831,7 +263295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 42, + ACTIONS(11113), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -256873,9 +263337,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [157483] = 2, - ACTIONS(10892), 11, + [162230] = 2, + ACTIONS(11119), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256887,7 +263352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 42, + ACTIONS(11117), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -256929,9 +263394,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [157541] = 2, - ACTIONS(10896), 11, + [162289] = 2, + ACTIONS(11123), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256943,7 +263409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 42, + ACTIONS(11121), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -256985,9 +263451,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [157599] = 2, - ACTIONS(10900), 11, + [162348] = 2, + ACTIONS(11127), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256999,7 +263466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 42, + ACTIONS(11125), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -257041,9 +263508,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [157657] = 2, - ACTIONS(10904), 11, + [162407] = 2, + ACTIONS(11135), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257055,7 +263523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 42, + ACTIONS(11133), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -257097,9 +263565,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [157715] = 2, - ACTIONS(10908), 11, + [162466] = 2, + ACTIONS(11197), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257111,15 +263580,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 42, + ACTIONS(11195), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -257153,9 +263622,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [157773] = 2, - ACTIONS(11014), 11, + [162525] = 2, + ACTIONS(11139), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257167,7 +263637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 42, + ACTIONS(11137), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -257175,10 +263645,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -257209,9 +263679,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [157831] = 2, - ACTIONS(10836), 11, + [162584] = 2, + ACTIONS(11143), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257223,7 +263694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 42, + ACTIONS(11141), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -257265,9 +263736,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [157889] = 2, - ACTIONS(10798), 11, + [162643] = 2, + ACTIONS(11147), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257279,7 +263751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 42, + ACTIONS(11145), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -257287,9 +263759,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -257321,9 +263793,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [157947] = 2, - ACTIONS(10916), 11, + [162702] = 2, + ACTIONS(11187), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257335,7 +263808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 42, + ACTIONS(11185), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -257377,9 +263850,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [158005] = 2, - ACTIONS(10794), 11, + [162761] = 2, + ACTIONS(10925), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257391,7 +263865,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 42, + ACTIONS(10923), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -257401,7 +263876,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -257433,9 +263907,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [158063] = 2, - ACTIONS(10920), 11, + [162820] = 2, + ACTIONS(11159), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257447,7 +263922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 42, + ACTIONS(11157), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -257489,9 +263964,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [158121] = 2, - ACTIONS(10794), 11, + [162879] = 2, + ACTIONS(10929), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257503,17 +263979,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 42, + ACTIONS(10927), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -257545,9 +264021,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [158179] = 2, - ACTIONS(10924), 11, + [162938] = 2, + ACTIONS(11163), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257559,7 +264036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 42, + ACTIONS(11161), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -257601,9 +264078,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [158237] = 2, - ACTIONS(10790), 11, + [162997] = 2, + ACTIONS(10925), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257615,7 +264093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 42, + ACTIONS(10923), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -257657,9 +264135,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [158295] = 2, - ACTIONS(10786), 11, + [163056] = 2, + ACTIONS(11167), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257671,7 +264150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 42, + ACTIONS(11165), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -257679,9 +264158,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -257713,9 +264192,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [158353] = 2, - ACTIONS(10782), 11, + [163115] = 2, + ACTIONS(11171), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257727,7 +264207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 42, + ACTIONS(11169), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -257735,9 +264215,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -257769,9 +264249,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [158411] = 2, - ACTIONS(10928), 11, + [163174] = 2, + ACTIONS(10921), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257783,7 +264264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 42, + ACTIONS(10919), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -257791,9 +264272,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -257825,9 +264306,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [158469] = 2, - ACTIONS(10778), 11, + [163233] = 2, + ACTIONS(11175), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257839,7 +264321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 42, + ACTIONS(11173), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -257847,9 +264329,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -257881,9 +264363,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [158527] = 2, - ACTIONS(10932), 11, + [163292] = 2, + ACTIONS(10997), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257895,7 +264378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 42, + ACTIONS(10995), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -257903,9 +264386,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -257937,9 +264420,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [158585] = 2, - ACTIONS(10940), 11, + [163351] = 2, + ACTIONS(11179), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257951,7 +264435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 42, + ACTIONS(11177), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -257993,9 +264477,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [158643] = 2, - ACTIONS(10944), 11, + [163410] = 2, + ACTIONS(10917), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258007,7 +264492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 42, + ACTIONS(10915), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -258015,9 +264500,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -258049,9 +264534,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [158701] = 2, - ACTIONS(10948), 11, + [163469] = 2, + ACTIONS(11183), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258063,7 +264549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 42, + ACTIONS(11181), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -258105,9 +264591,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [158759] = 2, - ACTIONS(10952), 11, + [163528] = 2, + ACTIONS(10913), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258119,7 +264606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 42, + ACTIONS(10911), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -258127,9 +264614,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -258161,9 +264648,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [158817] = 2, - ACTIONS(10774), 11, + [163587] = 2, + ACTIONS(10853), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258175,7 +264663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 42, + ACTIONS(10851), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -258184,8 +264672,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -258217,9 +264705,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [158875] = 2, - ACTIONS(10770), 11, + [163646] = 2, + ACTIONS(10909), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258231,7 +264720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 42, + ACTIONS(10907), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -258273,9 +264762,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [158933] = 2, - ACTIONS(10956), 11, + [163705] = 2, + ACTIONS(11017), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258287,15 +264777,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 42, + ACTIONS(11015), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -258329,9 +264819,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [158991] = 2, - ACTIONS(10960), 11, + [163764] = 2, + ACTIONS(10885), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258343,7 +264834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 42, + ACTIONS(10883), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -258351,8 +264842,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -258385,9 +264876,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [159049] = 2, - ACTIONS(10964), 11, + [163823] = 2, + ACTIONS(10889), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258399,7 +264891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 42, + ACTIONS(10887), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -258407,8 +264899,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -258441,9 +264933,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [159107] = 2, - ACTIONS(11014), 11, + [163882] = 2, + ACTIONS(10893), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258455,16 +264948,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 42, + ACTIONS(10891), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -258497,9 +264990,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [159165] = 2, - ACTIONS(10968), 11, + [163941] = 2, + ACTIONS(10897), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258511,7 +265005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 42, + ACTIONS(10895), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -258519,8 +265013,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -258553,9 +265047,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [159223] = 2, - ACTIONS(10972), 11, + [164000] = 2, + ACTIONS(10905), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258567,7 +265062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 42, + ACTIONS(10903), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -258575,9 +265070,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -258609,9 +265104,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [159281] = 2, - ACTIONS(10976), 11, + [164059] = 2, + ACTIONS(10901), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258623,7 +265119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 42, + ACTIONS(10899), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -258631,9 +265127,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -258665,9 +265161,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [159339] = 2, - ACTIONS(10980), 11, + [164118] = 2, + ACTIONS(10937), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258679,7 +265176,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 42, + ACTIONS(10935), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -258687,7 +265185,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -258721,9 +265218,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [159397] = 2, - ACTIONS(10984), 11, + [164177] = 2, + ACTIONS(10933), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258735,7 +265233,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 42, + ACTIONS(10931), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -258743,7 +265242,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -258777,9 +265275,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [159455] = 2, - ACTIONS(11000), 11, + [164236] = 2, + ACTIONS(11131), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258791,7 +265290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 42, + ACTIONS(11129), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -258833,9 +265332,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [159513] = 2, - ACTIONS(10988), 11, + [164295] = 2, + ACTIONS(10905), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258847,7 +265347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 42, + ACTIONS(10903), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -258855,8 +265355,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -258889,9 +265389,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [159571] = 2, - ACTIONS(10766), 11, + [164354] = 2, + ACTIONS(10909), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258903,7 +265404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 42, + ACTIONS(10907), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -258912,8 +265413,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -258945,9 +265446,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [159629] = 2, - ACTIONS(10798), 11, + [164413] = 2, + ACTIONS(11025), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258959,7 +265461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 42, + ACTIONS(11023), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -259001,9 +265503,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [159687] = 2, - ACTIONS(10912), 11, + [164472] = 2, + ACTIONS(10913), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259015,7 +265518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 42, + ACTIONS(10911), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -259023,8 +265526,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -259057,9 +265560,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [159745] = 2, - ACTIONS(10996), 11, + [164531] = 2, + ACTIONS(10917), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259071,7 +265575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 42, + ACTIONS(10915), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -259079,8 +265583,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -259113,9 +265617,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [159803] = 2, - ACTIONS(11004), 11, + [164590] = 2, + ACTIONS(10997), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259127,7 +265632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 42, + ACTIONS(10995), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -259135,8 +265640,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -259169,9 +265674,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [159861] = 2, - ACTIONS(10710), 11, + [164649] = 2, + ACTIONS(10921), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259183,7 +265689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 42, + ACTIONS(10919), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -259225,9 +265731,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [159919] = 2, - ACTIONS(11024), 11, + [164708] = 2, + ACTIONS(10925), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259239,16 +265746,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 42, + ACTIONS(10923), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -259281,9 +265788,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [159977] = 2, - ACTIONS(10714), 11, + [164767] = 2, + ACTIONS(10897), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259295,7 +265803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 42, + ACTIONS(10895), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -259304,8 +265812,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -259337,9 +265845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [160035] = 2, - ACTIONS(10718), 11, + [164826] = 2, + ACTIONS(10893), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259351,7 +265860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 42, + ACTIONS(10891), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -259360,8 +265869,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -259393,9 +265902,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [160093] = 2, - ACTIONS(10722), 11, + [164885] = 2, + ACTIONS(10929), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259407,7 +265917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 42, + ACTIONS(10927), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -259449,9 +265959,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [160151] = 2, - ACTIONS(10802), 11, + [164944] = 2, + ACTIONS(10933), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259463,7 +265974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 42, + ACTIONS(10931), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -259505,9 +266016,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [160209] = 2, - ACTIONS(10674), 11, + [165003] = 2, + ACTIONS(10937), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259519,7 +266031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 42, + ACTIONS(10935), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -259561,9 +266073,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [160267] = 2, - ACTIONS(10726), 11, + [165062] = 2, + ACTIONS(10929), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259575,7 +266088,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 42, + ACTIONS(10927), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -259584,7 +266098,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -259617,9 +266130,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [160325] = 2, - ACTIONS(10992), 11, + [165121] = 2, + ACTIONS(11021), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259631,16 +266145,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 42, + ACTIONS(11019), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -259673,9 +266187,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [160383] = 2, - ACTIONS(10730), 11, + [165180] = 2, + ACTIONS(10941), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259687,7 +266202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 42, + ACTIONS(10939), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -259729,9 +266244,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [160441] = 2, - ACTIONS(10888), 11, + [165239] = 2, + ACTIONS(10945), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259743,16 +266259,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 42, + ACTIONS(10943), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -259785,9 +266301,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [160499] = 2, - ACTIONS(10734), 11, + [165298] = 2, + ACTIONS(10949), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259799,7 +266316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 42, + ACTIONS(10947), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -259841,9 +266358,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [160557] = 2, - ACTIONS(10738), 11, + [165357] = 2, + ACTIONS(10849), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259855,7 +266373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 42, + ACTIONS(10847), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -259897,9 +266415,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [160615] = 2, - ACTIONS(10742), 11, + [165416] = 2, + ACTIONS(10953), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259911,7 +266430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 42, + ACTIONS(10951), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -259953,9 +266472,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [160673] = 2, - ACTIONS(10746), 11, + [165475] = 2, + ACTIONS(10957), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259967,7 +266487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 42, + ACTIONS(10955), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -260009,9 +266529,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [160731] = 2, - ACTIONS(10750), 11, + [165534] = 2, + ACTIONS(10889), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260023,7 +266544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 42, + ACTIONS(10887), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -260032,8 +266553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -260065,9 +266586,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [160789] = 2, - ACTIONS(10754), 11, + [165593] = 2, + ACTIONS(10961), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260079,7 +266601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 42, + ACTIONS(10959), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -260121,9 +266643,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [160847] = 2, - ACTIONS(10758), 11, + [165652] = 2, + ACTIONS(10965), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260135,7 +266658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 42, + ACTIONS(10963), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -260177,9 +266700,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [160905] = 2, - ACTIONS(10762), 11, + [165711] = 2, + ACTIONS(10969), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260191,7 +266715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 42, + ACTIONS(10967), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -260233,9 +266757,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [160963] = 2, - ACTIONS(10884), 11, + [165770] = 2, + ACTIONS(10901), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260247,16 +266772,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 42, + ACTIONS(10899), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -260289,9 +266814,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [161021] = 2, - ACTIONS(10766), 11, + [165829] = 2, + ACTIONS(10905), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260303,7 +266829,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 42, + ACTIONS(10903), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -260312,7 +266839,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -260345,9 +266871,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [161079] = 2, - ACTIONS(10770), 11, + [165888] = 2, + ACTIONS(10921), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260359,7 +266886,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 42, + ACTIONS(10919), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -260368,7 +266896,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -260401,9 +266928,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [161137] = 2, - ACTIONS(10992), 11, + [165947] = 2, + ACTIONS(10973), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260415,7 +266943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 42, + ACTIONS(10971), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -260423,8 +266951,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -260457,9 +266985,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [161195] = 2, - ACTIONS(10778), 11, + [166006] = 2, + ACTIONS(10977), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260471,7 +267000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 42, + ACTIONS(10975), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -260513,9 +267042,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [161253] = 2, - ACTIONS(10782), 11, + [166065] = 2, + ACTIONS(10981), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260527,7 +267057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 42, + ACTIONS(10979), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -260569,9 +267099,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [161311] = 2, - ACTIONS(10786), 11, + [166124] = 2, + ACTIONS(10985), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260583,7 +267114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 42, + ACTIONS(10983), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -260625,9 +267156,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [161369] = 2, - ACTIONS(10790), 11, + [166183] = 2, + ACTIONS(10989), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260639,7 +267171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 42, + ACTIONS(10987), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -260681,9 +267213,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [161427] = 2, - ACTIONS(10794), 11, + [166242] = 2, + ACTIONS(10993), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260695,7 +267228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 42, + ACTIONS(10991), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -260737,9 +267270,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [161485] = 2, - ACTIONS(10798), 11, + [166301] = 2, + ACTIONS(11087), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260751,7 +267285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 42, + ACTIONS(11085), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -260793,9 +267327,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [161543] = 2, - ACTIONS(10936), 11, + [166360] = 2, + ACTIONS(11001), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260807,7 +267342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 42, + ACTIONS(10999), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -260816,7 +267351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -260849,9 +267384,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [161601] = 2, - ACTIONS(10806), 11, + [166419] = 2, + ACTIONS(11005), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260863,7 +267399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 42, + ACTIONS(11003), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -260905,9 +267441,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [161659] = 2, - ACTIONS(10810), 11, + [166478] = 2, + ACTIONS(11009), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260919,7 +267456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 42, + ACTIONS(11007), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -260961,9 +267498,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [161717] = 2, - ACTIONS(10814), 11, + [166537] = 2, + ACTIONS(11013), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260975,7 +267513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 42, + ACTIONS(11011), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -261017,9 +267555,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [161775] = 2, - ACTIONS(10818), 11, + [166596] = 2, + ACTIONS(11017), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261031,7 +267570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 42, + ACTIONS(11015), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -261073,9 +267612,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [161833] = 2, - ACTIONS(10824), 11, + [166655] = 2, + ACTIONS(11021), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261087,7 +267627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 42, + ACTIONS(11019), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -261129,9 +267669,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [161891] = 2, - ACTIONS(10828), 11, + [166714] = 2, + ACTIONS(10997), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261143,7 +267684,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 42, + ACTIONS(10995), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -261152,7 +267694,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -261185,9 +267726,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [161949] = 2, - ACTIONS(10762), 11, + [166773] = 2, + ACTIONS(11031), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261199,17 +267741,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 42, + ACTIONS(11029), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -261241,9 +267783,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [162007] = 2, - ACTIONS(10832), 11, + [166832] = 2, + ACTIONS(11025), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261255,7 +267798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 42, + ACTIONS(11023), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -261297,9 +267840,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [162065] = 2, - ACTIONS(10758), 11, + [166891] = 2, + ACTIONS(11151), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261311,7 +267855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 42, + ACTIONS(11149), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -261320,8 +267864,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -261353,9 +267897,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [162123] = 2, - ACTIONS(10836), 11, + [166950] = 2, + ACTIONS(11035), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261367,7 +267912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 42, + ACTIONS(11033), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -261409,9 +267954,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [162181] = 2, - ACTIONS(10806), 11, + [167009] = 2, + ACTIONS(11039), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261423,16 +267969,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 42, + ACTIONS(11037), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -261465,9 +268011,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [162239] = 2, - ACTIONS(10840), 11, + [167068] = 2, + ACTIONS(11043), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261479,7 +268026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 42, + ACTIONS(11041), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -261521,9 +268068,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [162297] = 2, - ACTIONS(10754), 11, + [167127] = 2, + ACTIONS(11047), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261535,7 +268083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 42, + ACTIONS(11045), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -261544,8 +268092,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -261577,9 +268125,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [162355] = 2, - ACTIONS(10678), 11, + [167186] = 2, + ACTIONS(10885), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261591,7 +268140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 42, + ACTIONS(10883), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -261600,8 +268149,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -261633,9 +268182,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [162413] = 2, - ACTIONS(10750), 11, + [167245] = 2, + ACTIONS(11051), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261647,7 +268197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 42, + ACTIONS(11049), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -261656,8 +268206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -261689,9 +268239,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [162471] = 2, - ACTIONS(10746), 11, + [167304] = 2, + ACTIONS(11055), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261703,7 +268254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 42, + ACTIONS(11053), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -261712,8 +268263,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -261745,9 +268296,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [162529] = 2, - ACTIONS(10742), 11, + [167363] = 2, + ACTIONS(11059), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261759,7 +268311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 42, + ACTIONS(11057), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -261768,8 +268320,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -261801,9 +268353,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [162587] = 2, - ACTIONS(10844), 11, + [167422] = 2, + ACTIONS(11031), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261815,7 +268368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 42, + ACTIONS(11029), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -261857,9 +268410,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [162645] = 2, - ACTIONS(10738), 11, + [167481] = 2, + ACTIONS(10949), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261871,17 +268425,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 42, + ACTIONS(10947), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -261913,9 +268467,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [162703] = 2, - ACTIONS(10848), 11, + [167540] = 2, + ACTIONS(10917), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261927,7 +268482,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 42, + ACTIONS(10915), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -261936,7 +268492,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -261969,9 +268524,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [162761] = 2, - ACTIONS(10852), 11, + [167599] = 2, + ACTIONS(10853), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261983,7 +268539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 42, + ACTIONS(10851), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -261992,8 +268548,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -262025,9 +268581,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [162819] = 2, - ACTIONS(10892), 11, + [167658] = 2, + ACTIONS(11067), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262039,16 +268596,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 42, + ACTIONS(11065), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -262081,9 +268638,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [162877] = 2, - ACTIONS(10856), 11, + [167717] = 2, + ACTIONS(11071), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262095,7 +268653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 42, + ACTIONS(11069), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -262137,9 +268695,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [162935] = 2, - ACTIONS(10860), 11, + [167776] = 2, + ACTIONS(11183), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262151,7 +268710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 42, + ACTIONS(11181), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -262160,7 +268719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -262193,9 +268752,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [162993] = 2, - ACTIONS(10864), 11, + [167835] = 2, + ACTIONS(11179), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262207,7 +268767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 42, + ACTIONS(11177), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -262216,7 +268776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -262249,9 +268809,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [163051] = 2, - ACTIONS(10774), 11, + [167894] = 2, + ACTIONS(11075), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262263,7 +268824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 42, + ACTIONS(11073), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -262305,9 +268866,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [163109] = 2, - ACTIONS(10872), 11, + [167953] = 2, + ACTIONS(11175), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262319,7 +268881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 42, + ACTIONS(11173), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -262328,7 +268890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -262361,9 +268923,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [163167] = 2, - ACTIONS(10876), 11, + [168012] = 2, + ACTIONS(11079), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262375,7 +268938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 42, + ACTIONS(11077), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -262417,9 +268980,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [163225] = 2, - ACTIONS(10868), 11, + [168071] = 2, + ACTIONS(11083), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262431,7 +268995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 42, + ACTIONS(11081), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -262473,9 +269037,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [163283] = 2, - ACTIONS(10880), 11, + [168130] = 2, + ACTIONS(11155), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262487,7 +269052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 42, + ACTIONS(11153), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -262529,9 +269094,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [163341] = 2, - ACTIONS(10884), 11, + [168189] = 2, + ACTIONS(11091), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262543,7 +269109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 42, + ACTIONS(11089), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -262585,9 +269151,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [163399] = 2, - ACTIONS(11024), 11, + [168248] = 2, + ACTIONS(11095), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262599,7 +269166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 42, + ACTIONS(11093), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -262641,9 +269208,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [163457] = 2, - ACTIONS(10888), 11, + [168307] = 2, + ACTIONS(11171), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262655,7 +269223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 42, + ACTIONS(11169), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -262664,7 +269232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -262697,9 +269265,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [163515] = 2, - ACTIONS(10892), 11, + [168366] = 2, + ACTIONS(11167), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262711,7 +269280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 42, + ACTIONS(11165), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -262720,7 +269289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -262753,9 +269322,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [163573] = 2, - ACTIONS(10896), 11, + [168425] = 2, + ACTIONS(11099), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262767,7 +269337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 42, + ACTIONS(11097), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -262809,9 +269379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [163631] = 2, - ACTIONS(10900), 11, + [168484] = 2, + ACTIONS(11103), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262823,7 +269394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 42, + ACTIONS(11101), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -262865,9 +269436,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [163689] = 2, - ACTIONS(10904), 11, + [168543] = 2, + ACTIONS(11107), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262879,7 +269451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 42, + ACTIONS(11105), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -262921,9 +269493,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [163747] = 2, - ACTIONS(10734), 11, + [168602] = 2, + ACTIONS(11111), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262935,7 +269508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 42, + ACTIONS(11109), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -262944,8 +269517,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -262977,9 +269550,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [163805] = 2, - ACTIONS(10908), 11, + [168661] = 2, + ACTIONS(11115), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262991,7 +269565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 42, + ACTIONS(11113), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -263033,9 +269607,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [163863] = 2, - ACTIONS(10912), 11, + [168720] = 2, + ACTIONS(10913), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263047,7 +269622,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 42, + ACTIONS(10911), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -263056,7 +269632,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -263089,9 +269664,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [163921] = 2, - ACTIONS(10916), 11, + [168779] = 2, + ACTIONS(10985), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263103,16 +269679,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 42, + ACTIONS(10983), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -263145,9 +269721,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [163979] = 2, - ACTIONS(10920), 11, + [168838] = 2, + ACTIONS(10909), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263159,7 +269736,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 42, + ACTIONS(10907), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -263168,7 +269746,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -263201,9 +269778,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [164037] = 2, - ACTIONS(10924), 11, + [168897] = 2, + ACTIONS(11119), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263215,7 +269793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 42, + ACTIONS(11117), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -263257,9 +269835,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [164095] = 2, - ACTIONS(10928), 11, + [168956] = 2, + ACTIONS(11123), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263271,7 +269850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 42, + ACTIONS(11121), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -263313,9 +269892,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [164153] = 2, - ACTIONS(10940), 11, + [169015] = 2, + ACTIONS(11127), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263327,7 +269907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 42, + ACTIONS(11125), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -263369,9 +269949,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [164211] = 2, - ACTIONS(10944), 11, + [169074] = 2, + ACTIONS(11119), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263383,7 +269964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 42, + ACTIONS(11117), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -263392,7 +269973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -263425,9 +270006,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [164269] = 2, - ACTIONS(10948), 11, + [169133] = 2, + ACTIONS(11159), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263439,7 +270021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 42, + ACTIONS(11157), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -263448,7 +270030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -263481,9 +270063,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [164327] = 2, - ACTIONS(10952), 11, + [169192] = 2, + ACTIONS(11131), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263495,7 +270078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 42, + ACTIONS(11129), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -263537,9 +270120,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [164385] = 2, - ACTIONS(10956), 11, + [169251] = 2, + ACTIONS(11135), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263551,7 +270135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 42, + ACTIONS(11133), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -263593,9 +270177,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [164443] = 2, - ACTIONS(10960), 11, + [169310] = 2, + ACTIONS(11197), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263607,7 +270192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 42, + ACTIONS(11195), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -263616,7 +270201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -263649,9 +270234,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [164501] = 2, - ACTIONS(10730), 11, + [169369] = 2, + ACTIONS(11139), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263663,7 +270249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 42, + ACTIONS(11137), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -263672,8 +270258,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -263705,9 +270291,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [164559] = 2, - ACTIONS(10964), 11, + [169428] = 2, + ACTIONS(11143), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263719,7 +270306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 42, + ACTIONS(11141), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -263761,9 +270348,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [164617] = 2, - ACTIONS(11014), 11, + [169487] = 2, + ACTIONS(11063), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263775,7 +270363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 42, + ACTIONS(11061), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -263784,7 +270372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -263817,9 +270405,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [164675] = 2, - ACTIONS(10968), 11, + [169546] = 2, + ACTIONS(10853), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263831,7 +270420,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 42, + ACTIONS(10851), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -263840,7 +270430,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -263873,9 +270462,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [164733] = 2, - ACTIONS(10972), 11, + [169605] = 2, + ACTIONS(11187), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263887,7 +270477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 42, + ACTIONS(11185), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -263929,9 +270519,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [164791] = 2, - ACTIONS(10976), 11, + [169664] = 2, + ACTIONS(11159), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263943,7 +270534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 42, + ACTIONS(11157), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -263985,9 +270576,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [164849] = 2, - ACTIONS(10980), 11, + [169723] = 2, + ACTIONS(11163), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263999,7 +270591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 42, + ACTIONS(11161), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -264041,9 +270633,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [164907] = 2, - ACTIONS(10984), 11, + [169782] = 2, + ACTIONS(11167), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264055,7 +270648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 42, + ACTIONS(11165), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -264097,9 +270690,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [164965] = 2, - ACTIONS(11000), 11, + [169841] = 2, + ACTIONS(11187), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264111,7 +270705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 42, + ACTIONS(11185), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -264120,7 +270714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -264153,9 +270747,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [165023] = 2, - ACTIONS(10988), 11, + [169900] = 2, + ACTIONS(10901), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264167,7 +270762,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 42, + ACTIONS(10899), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -264176,7 +270772,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -264209,9 +270804,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [165081] = 2, - ACTIONS(10992), 11, + [169959] = 2, + ACTIONS(10897), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264223,7 +270819,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 42, + ACTIONS(10895), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -264232,7 +270829,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -264265,9 +270861,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [165139] = 2, - ACTIONS(10996), 11, + [170018] = 2, + ACTIONS(11171), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264279,7 +270876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 42, + ACTIONS(11169), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -264321,9 +270918,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [165197] = 2, - ACTIONS(11004), 11, + [170077] = 2, + ACTIONS(11175), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264335,7 +270933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 42, + ACTIONS(11173), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -264377,9 +270975,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [165255] = 2, - ACTIONS(10900), 11, + [170136] = 2, + ACTIONS(11179), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264391,16 +270990,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 42, + ACTIONS(11177), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -264433,9 +271032,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [165313] = 2, - ACTIONS(10904), 11, + [170195] = 2, + ACTIONS(10893), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264447,14 +271047,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 42, + ACTIONS(10891), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -264489,9 +271089,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [165371] = 2, - ACTIONS(10908), 11, + [170254] = 2, + ACTIONS(10889), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264503,14 +271104,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 42, + ACTIONS(10887), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -264545,9 +271146,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [165429] = 2, - ACTIONS(10896), 11, + [170313] = 2, + ACTIONS(11183), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264559,16 +271161,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 42, + ACTIONS(11181), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -264601,9 +271203,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [165487] = 2, - ACTIONS(10932), 11, + [170372] = 2, + ACTIONS(11039), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264615,16 +271218,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 42, + ACTIONS(11037), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -264657,9 +271260,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [165545] = 2, - ACTIONS(10916), 11, + [170431] = 2, + ACTIONS(11043), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264671,7 +271275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 42, + ACTIONS(11041), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -264713,9 +271317,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [165603] = 2, - ACTIONS(10920), 11, + [170490] = 2, + ACTIONS(10885), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264727,14 +271332,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 42, + ACTIONS(10883), 43, + ts_builtin_sym_end, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -264769,9 +271374,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [165661] = 2, - ACTIONS(10924), 11, + [170549] = 2, + ACTIONS(11047), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264783,7 +271389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 42, + ACTIONS(11045), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -264825,9 +271431,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [165719] = 2, - ACTIONS(10928), 11, + [170608] = 2, + ACTIONS(11051), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264839,7 +271446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 42, + ACTIONS(11049), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -264881,9 +271488,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [165777] = 2, - ACTIONS(10932), 11, + [170667] = 2, + ACTIONS(11055), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264895,7 +271503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 42, + ACTIONS(11053), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -264937,9 +271545,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [165835] = 2, - ACTIONS(10940), 11, + [170726] = 2, + ACTIONS(11059), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264951,7 +271560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 42, + ACTIONS(11057), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -264993,9 +271602,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [165893] = 2, - ACTIONS(10944), 11, + [170785] = 2, + ACTIONS(11063), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265007,7 +271617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 42, + ACTIONS(11061), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -265049,9 +271659,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [165951] = 2, - ACTIONS(10948), 11, + [170844] = 2, + ACTIONS(11067), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265063,7 +271674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 42, + ACTIONS(11065), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -265105,9 +271716,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [166009] = 2, - ACTIONS(10952), 11, + [170903] = 2, + ACTIONS(11071), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265119,7 +271731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 42, + ACTIONS(11069), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -265161,9 +271773,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [166067] = 2, - ACTIONS(10956), 11, + [170962] = 2, + ACTIONS(11075), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265175,7 +271788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 42, + ACTIONS(11073), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -265217,9 +271830,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [166125] = 2, - ACTIONS(10726), 11, + [171021] = 2, + ACTIONS(11147), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265231,7 +271845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 42, + ACTIONS(11145), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -265240,8 +271854,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -265273,9 +271887,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [166183] = 2, - ACTIONS(10960), 11, + [171080] = 2, + ACTIONS(11079), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265287,7 +271902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 42, + ACTIONS(11077), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -265329,9 +271944,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [166241] = 2, - ACTIONS(10674), 11, + [171139] = 2, + ACTIONS(11035), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265343,17 +271959,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 42, + ACTIONS(11033), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -265385,9 +272001,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [166299] = 2, - ACTIONS(10964), 11, + [171198] = 2, + ACTIONS(11155), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265399,7 +272016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 42, + ACTIONS(11153), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -265441,9 +272058,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [166357] = 2, - ACTIONS(10802), 11, + [171257] = 2, + ACTIONS(11091), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265455,17 +272073,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 42, + ACTIONS(11089), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -265497,9 +272115,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [166415] = 2, - ACTIONS(11014), 11, + [171316] = 2, + ACTIONS(11095), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265511,19 +272130,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 42, + ACTIONS(11093), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -265553,9 +272172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [166473] = 2, - ACTIONS(10722), 11, + [171375] = 2, + ACTIONS(11099), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265567,17 +272187,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 42, + ACTIONS(11097), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -265609,9 +272229,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [166531] = 2, - ACTIONS(10968), 11, + [171434] = 2, + ACTIONS(11103), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265623,7 +272244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 42, + ACTIONS(11101), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -265665,9 +272286,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [166589] = 2, - ACTIONS(10718), 11, + [171493] = 2, + ACTIONS(11147), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265679,7 +272301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 42, + ACTIONS(11145), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -265688,8 +272310,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -265721,9 +272343,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [166647] = 2, - ACTIONS(10714), 11, + [171552] = 2, + ACTIONS(11107), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265735,17 +272358,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 42, + ACTIONS(11105), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -265777,9 +272400,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [166705] = 2, - ACTIONS(10810), 11, + [171611] = 2, + ACTIONS(11143), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265791,16 +272415,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 42, + ACTIONS(11141), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -265833,9 +272457,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [166763] = 2, - ACTIONS(10972), 11, + [171670] = 2, + ACTIONS(11111), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265847,7 +272472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 42, + ACTIONS(11109), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -265889,9 +272514,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [166821] = 2, - ACTIONS(10710), 11, + [171729] = 2, + ACTIONS(11115), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265903,17 +272529,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 42, + ACTIONS(11113), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -265945,9 +272571,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [166879] = 2, - ACTIONS(10976), 11, + [171788] = 2, + ACTIONS(11139), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265959,16 +272586,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 42, + ACTIONS(11137), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -266001,9 +272628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [166937] = 2, - ACTIONS(10980), 11, + [171847] = 2, + ACTIONS(11119), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266015,7 +272643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 42, + ACTIONS(11117), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -266057,9 +272685,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [166995] = 2, - ACTIONS(10984), 11, + [171906] = 2, + ACTIONS(11135), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266071,16 +272700,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 42, + ACTIONS(11133), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -266113,9 +272742,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [167053] = 2, - ACTIONS(11000), 11, + [171965] = 2, + ACTIONS(11123), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266127,7 +272757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 42, + ACTIONS(11121), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -266169,9 +272799,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [167111] = 2, - ACTIONS(10988), 11, + [172024] = 2, + ACTIONS(11131), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266183,16 +272814,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 42, + ACTIONS(11129), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -266225,9 +272856,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [167169] = 2, - ACTIONS(11004), 11, + [172083] = 2, + ACTIONS(11127), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266239,7 +272871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 42, + ACTIONS(11125), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -266281,9 +272913,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [167227] = 2, - ACTIONS(10996), 11, + [172142] = 2, + ACTIONS(11123), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266295,7 +272928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 42, + ACTIONS(11121), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -266337,9 +272970,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [167285] = 2, - ACTIONS(10992), 11, + [172201] = 2, + ACTIONS(11127), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266351,7 +272985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10990), 42, + ACTIONS(11125), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -266393,9 +273027,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [167343] = 2, - ACTIONS(10912), 11, + [172260] = 2, + ACTIONS(11083), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266407,16 +273042,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 42, + ACTIONS(11081), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -266449,9 +273084,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [167401] = 2, - ACTIONS(11004), 11, + [172319] = 2, + ACTIONS(11131), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266463,7 +273099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11002), 42, + ACTIONS(11129), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -266505,9 +273141,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [167459] = 2, - ACTIONS(10710), 11, + [172378] = 2, + ACTIONS(11135), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266519,16 +273156,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10708), 42, + ACTIONS(11133), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -266561,9 +273198,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [167517] = 2, - ACTIONS(10678), 11, + [172437] = 2, + ACTIONS(11151), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266575,17 +273213,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 42, + ACTIONS(11149), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -266617,9 +273255,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [167575] = 2, - ACTIONS(10714), 11, + [172496] = 2, + ACTIONS(11197), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266631,7 +273270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10712), 42, + ACTIONS(11195), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -266640,10 +273279,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -266673,9 +273312,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [167633] = 2, - ACTIONS(10718), 11, + [172555] = 2, + ACTIONS(11139), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266687,16 +273327,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10716), 42, + ACTIONS(11137), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -266729,9 +273369,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [167691] = 2, - ACTIONS(10722), 11, + [172614] = 2, + ACTIONS(11115), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266743,7 +273384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10720), 42, + ACTIONS(11113), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -266785,9 +273426,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [167749] = 2, - ACTIONS(10802), 11, + [172673] = 2, + ACTIONS(11111), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266799,7 +273441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10800), 42, + ACTIONS(11109), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -266841,9 +273483,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [167807] = 2, - ACTIONS(10674), 11, + [172732] = 2, + ACTIONS(11143), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266855,16 +273498,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10672), 42, + ACTIONS(11141), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -266897,9 +273540,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [167865] = 2, - ACTIONS(10726), 11, + [172791] = 2, + ACTIONS(11147), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266911,16 +273555,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10724), 42, + ACTIONS(11145), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -266953,9 +273597,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [167923] = 2, - ACTIONS(10984), 11, + [172850] = 2, + ACTIONS(11187), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266967,16 +273612,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10982), 42, + ACTIONS(11185), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -267009,9 +273654,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [167981] = 2, - ACTIONS(10988), 11, + [172909] = 2, + ACTIONS(11159), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267023,16 +273669,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10986), 42, + ACTIONS(11157), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -267065,9 +273711,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [168039] = 2, - ACTIONS(10730), 11, + [172968] = 2, + ACTIONS(11163), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267079,16 +273726,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10728), 42, + ACTIONS(11161), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -267121,9 +273768,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [168097] = 2, - ACTIONS(10734), 11, + [173027] = 2, + ACTIONS(11167), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267135,16 +273783,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10732), 42, + ACTIONS(11165), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -267177,9 +273825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [168155] = 2, - ACTIONS(10738), 11, + [173086] = 2, + ACTIONS(11083), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267191,16 +273840,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10736), 42, + ACTIONS(11081), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -267233,9 +273882,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [168213] = 2, - ACTIONS(10742), 11, + [173145] = 2, + ACTIONS(11175), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267247,16 +273897,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10740), 42, + ACTIONS(11173), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -267289,9 +273939,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [168271] = 2, - ACTIONS(10746), 11, + [173204] = 2, + ACTIONS(11179), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267303,16 +273954,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10744), 42, + ACTIONS(11177), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -267345,9 +273996,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [168329] = 2, - ACTIONS(10750), 11, + [173263] = 2, + ACTIONS(11183), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267359,16 +274011,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10748), 42, + ACTIONS(11181), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -267401,9 +274053,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [168387] = 2, - ACTIONS(10754), 11, + [173322] = 2, + ACTIONS(10853), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267415,7 +274068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10752), 42, + ACTIONS(10851), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -267457,9 +274110,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [168445] = 2, - ACTIONS(10782), 11, + [173381] = 2, + ACTIONS(11107), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267471,16 +274125,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 42, + ACTIONS(11105), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -267513,9 +274167,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [168503] = 2, - ACTIONS(10758), 11, + [173440] = 2, + ACTIONS(11103), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267527,7 +274182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10756), 42, + ACTIONS(11101), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -267569,9 +274224,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [168561] = 2, - ACTIONS(10762), 11, + [173499] = 2, + ACTIONS(10945), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267583,16 +274239,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10760), 42, + ACTIONS(10943), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -267625,9 +274281,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [168619] = 2, - ACTIONS(10996), 11, + [173558] = 2, + ACTIONS(10885), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267639,16 +274296,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10994), 42, + ACTIONS(10883), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -267681,9 +274338,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [168677] = 2, - ACTIONS(11000), 11, + [173617] = 2, + ACTIONS(10889), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267695,7 +274353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10998), 42, + ACTIONS(10887), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -267737,9 +274395,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [168735] = 2, - ACTIONS(10936), 11, + [173676] = 2, + ACTIONS(10893), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267751,7 +274410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 42, + ACTIONS(10891), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -267760,8 +274419,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -267793,9 +274452,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [168793] = 2, - ACTIONS(10836), 11, + [173735] = 2, + ACTIONS(10897), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267807,16 +274467,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 42, + ACTIONS(10895), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -267849,9 +274509,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [168851] = 2, - ACTIONS(10766), 11, + [173794] = 2, + ACTIONS(10901), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267863,7 +274524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10764), 42, + ACTIONS(10899), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -267905,9 +274566,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [168909] = 2, - ACTIONS(10770), 11, + [173853] = 2, + ACTIONS(10905), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267919,7 +274581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10768), 42, + ACTIONS(10903), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -267961,9 +274623,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [168967] = 2, - ACTIONS(10774), 11, + [173912] = 2, + ACTIONS(10909), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267975,7 +274638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10772), 42, + ACTIONS(10907), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -268017,9 +274680,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [169025] = 2, - ACTIONS(10778), 11, + [173971] = 2, + ACTIONS(10913), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268031,7 +274695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10776), 42, + ACTIONS(10911), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -268073,9 +274737,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [169083] = 2, - ACTIONS(10782), 11, + [174030] = 2, + ACTIONS(10917), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268087,7 +274752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10780), 42, + ACTIONS(10915), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -268129,9 +274794,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [169141] = 2, - ACTIONS(10786), 11, + [174089] = 2, + ACTIONS(10997), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268143,7 +274809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10784), 42, + ACTIONS(10995), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -268185,9 +274851,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [169199] = 2, - ACTIONS(10790), 11, + [174148] = 2, + ACTIONS(11151), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268199,7 +274866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10788), 42, + ACTIONS(11149), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -268208,9 +274875,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -268241,9 +274908,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [169257] = 2, - ACTIONS(10832), 11, + [174207] = 2, + ACTIONS(10921), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268255,16 +274923,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 42, + ACTIONS(10919), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -268297,9 +274965,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [169315] = 2, - ACTIONS(10794), 11, + [174266] = 2, + ACTIONS(10925), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268311,7 +274980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10792), 42, + ACTIONS(10923), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -268353,9 +275022,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [169373] = 2, - ACTIONS(10798), 11, + [174325] = 2, + ACTIONS(10929), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268367,7 +275037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10796), 42, + ACTIONS(10927), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -268409,9 +275079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [169431] = 2, - ACTIONS(10806), 11, + [174384] = 2, + ACTIONS(11171), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268423,16 +275094,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10804), 42, + ACTIONS(11169), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -268465,9 +275136,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [169489] = 2, - ACTIONS(10810), 11, + [174443] = 2, + ACTIONS(10933), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268479,7 +275151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10808), 42, + ACTIONS(10931), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -268521,9 +275193,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [169547] = 2, - ACTIONS(10828), 11, + [174502] = 2, + ACTIONS(10937), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268535,16 +275208,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 42, + ACTIONS(10935), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -268577,9 +275250,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [169605] = 2, - ACTIONS(10814), 11, + [174561] = 2, + ACTIONS(11151), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268591,7 +275265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 42, + ACTIONS(11149), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -268600,10 +275274,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -268633,9 +275307,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [169663] = 2, - ACTIONS(10824), 11, + [174620] = 2, + ACTIONS(10977), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268647,7 +275322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 42, + ACTIONS(10975), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -268689,9 +275364,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [169721] = 2, - ACTIONS(10818), 11, + [174679] = 2, + ACTIONS(11055), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268703,7 +275379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 42, + ACTIONS(11053), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -268712,9 +275388,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -268745,9 +275421,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [169779] = 2, - ACTIONS(10824), 11, + [174738] = 2, + ACTIONS(10969), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268759,16 +275436,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10822), 42, + ACTIONS(10967), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -268801,9 +275478,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [169837] = 2, - ACTIONS(10828), 11, + [174797] = 2, + ACTIONS(10941), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268815,7 +275493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10826), 42, + ACTIONS(10939), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -268857,9 +275535,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [169895] = 2, - ACTIONS(11014), 11, + [174856] = 2, + ACTIONS(10945), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268871,7 +275550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 42, + ACTIONS(10943), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -268880,8 +275559,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -268913,9 +275592,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [169953] = 2, - ACTIONS(10832), 11, + [174915] = 2, + ACTIONS(10949), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268927,7 +275607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10830), 42, + ACTIONS(10947), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -268969,9 +275649,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [170011] = 2, - ACTIONS(10836), 11, + [174974] = 2, + ACTIONS(10849), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268983,7 +275664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10834), 42, + ACTIONS(10847), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -269025,9 +275706,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [170069] = 2, - ACTIONS(10840), 11, + [175033] = 2, + ACTIONS(10953), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269039,7 +275721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 42, + ACTIONS(10951), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -269081,9 +275763,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [170127] = 2, - ACTIONS(10678), 11, + [175092] = 2, + ACTIONS(10957), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269095,7 +275778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10676), 42, + ACTIONS(10955), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -269137,9 +275820,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [170185] = 2, - ACTIONS(10840), 11, + [175151] = 2, + ACTIONS(10961), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269151,16 +275835,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10838), 42, + ACTIONS(10959), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -269193,9 +275877,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [170243] = 2, - ACTIONS(10908), 11, + [175210] = 2, + ACTIONS(10965), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269207,16 +275892,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10906), 42, + ACTIONS(10963), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -269249,9 +275934,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [170301] = 2, - ACTIONS(10844), 11, + [175269] = 2, + ACTIONS(11197), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269263,17 +275949,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 42, + ACTIONS(11195), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -269305,9 +275991,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [170359] = 2, - ACTIONS(10980), 11, + [175328] = 2, + ACTIONS(10981), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269319,16 +276006,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10978), 42, + ACTIONS(10979), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -269361,9 +276048,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [170417] = 2, - ACTIONS(10876), 11, + [175387] = 2, + ACTIONS(10965), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269375,7 +276063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 42, + ACTIONS(10963), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -269384,6 +276072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -269414,12 +276103,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [170475] = 2, - ACTIONS(10976), 11, + [175446] = 2, + ACTIONS(10969), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269431,7 +276120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10974), 42, + ACTIONS(10967), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -269473,9 +276162,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [170533] = 2, - ACTIONS(10844), 11, + [175505] = 2, + ACTIONS(10973), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269487,7 +276177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10842), 42, + ACTIONS(10971), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -269529,9 +276219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [170591] = 2, - ACTIONS(10972), 11, + [175564] = 2, + ACTIONS(10977), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269543,7 +276234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10970), 42, + ACTIONS(10975), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -269585,9 +276276,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [170649] = 2, - ACTIONS(10848), 11, + [175623] = 2, + ACTIONS(10961), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269599,16 +276291,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10846), 42, + ACTIONS(10959), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -269641,9 +276333,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [170707] = 2, - ACTIONS(10968), 11, + [175682] = 2, + ACTIONS(10981), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269655,7 +276348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10966), 42, + ACTIONS(10979), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -269697,9 +276390,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [170765] = 2, - ACTIONS(10964), 11, + [175741] = 2, + ACTIONS(11099), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269711,7 +276405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10962), 42, + ACTIONS(11097), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -269753,9 +276447,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [170823] = 2, - ACTIONS(10936), 11, + [175800] = 2, + ACTIONS(10985), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269767,7 +276462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10934), 42, + ACTIONS(10983), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -269776,9 +276471,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -269809,9 +276504,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [170881] = 2, - ACTIONS(10852), 11, + [175859] = 2, + ACTIONS(11095), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269823,7 +276519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10850), 42, + ACTIONS(11093), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -269865,9 +276561,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [170939] = 2, - ACTIONS(10960), 11, + [175918] = 2, + ACTIONS(10989), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269879,7 +276576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10958), 42, + ACTIONS(10987), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -269921,9 +276618,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [170997] = 2, - ACTIONS(10856), 11, + [175977] = 2, + ACTIONS(10993), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269935,7 +276633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10854), 42, + ACTIONS(10991), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -269977,9 +276675,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [171055] = 2, - ACTIONS(10814), 11, + [176036] = 2, + ACTIONS(11091), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269991,16 +276690,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10812), 42, + ACTIONS(11089), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -270033,9 +276732,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [171113] = 2, - ACTIONS(10860), 11, + [176095] = 2, + ACTIONS(11087), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270047,7 +276747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10858), 42, + ACTIONS(11085), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -270089,9 +276789,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [171171] = 2, - ACTIONS(10864), 11, + [176154] = 2, + ACTIONS(11155), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270103,7 +276804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10862), 42, + ACTIONS(11153), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -270145,9 +276846,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [171229] = 2, - ACTIONS(10868), 11, + [176213] = 2, + ACTIONS(11001), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270159,7 +276861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10866), 42, + ACTIONS(10999), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -270201,9 +276903,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [171287] = 2, - ACTIONS(10956), 11, + [176272] = 2, + ACTIONS(11005), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270215,7 +276918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10954), 42, + ACTIONS(11003), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -270257,9 +276960,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [171345] = 2, - ACTIONS(10952), 11, + [176331] = 2, + ACTIONS(11079), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270271,7 +276975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10950), 42, + ACTIONS(11077), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -270313,9 +277017,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [171403] = 2, - ACTIONS(10872), 11, + [176390] = 2, + ACTIONS(11075), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270327,7 +277032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10870), 42, + ACTIONS(11073), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -270369,9 +277074,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [171461] = 2, - ACTIONS(10876), 11, + [176449] = 2, + ACTIONS(10973), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270383,16 +277089,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10874), 42, + ACTIONS(10971), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -270425,9 +277131,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [171519] = 2, - ACTIONS(10880), 11, + [176508] = 2, + ACTIONS(11071), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270439,7 +277146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10878), 42, + ACTIONS(11069), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -270481,9 +277188,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [171577] = 2, - ACTIONS(10884), 11, + [176567] = 2, + ACTIONS(11009), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270495,7 +277203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10882), 42, + ACTIONS(11007), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -270537,9 +277245,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [171635] = 2, - ACTIONS(11024), 11, + [176626] = 2, + ACTIONS(10953), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270551,16 +277260,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11022), 42, + ACTIONS(10951), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -270593,9 +277302,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [171693] = 2, - ACTIONS(10888), 11, + [176685] = 2, + ACTIONS(11013), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270607,7 +277317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10886), 42, + ACTIONS(11011), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -270649,9 +277359,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [171751] = 2, - ACTIONS(10892), 11, + [176744] = 2, + ACTIONS(11017), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270663,7 +277374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10890), 42, + ACTIONS(11015), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -270705,9 +277416,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [171809] = 2, - ACTIONS(10896), 11, + [176803] = 2, + ACTIONS(11021), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270719,7 +277431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10894), 42, + ACTIONS(11019), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -270761,9 +277473,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [171867] = 2, - ACTIONS(10900), 11, + [176862] = 2, + ACTIONS(11067), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270775,7 +277488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10898), 42, + ACTIONS(11065), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -270817,9 +277530,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [171925] = 2, - ACTIONS(10904), 11, + [176921] = 2, + ACTIONS(11063), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270831,7 +277545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10902), 42, + ACTIONS(11061), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -270873,9 +277587,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [171983] = 2, - ACTIONS(10818), 11, + [176980] = 2, + ACTIONS(11025), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270887,16 +277602,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10816), 42, + ACTIONS(11023), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -270929,9 +277644,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [172041] = 2, - ACTIONS(10948), 11, + [177039] = 2, + ACTIONS(10849), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270943,16 +277659,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10946), 42, + ACTIONS(10847), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -270985,9 +277701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [172099] = 2, - ACTIONS(10944), 11, + [177098] = 2, + ACTIONS(11031), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270999,7 +277716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10942), 42, + ACTIONS(11029), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -271041,9 +277758,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [172157] = 2, - ACTIONS(10912), 11, + [177157] = 2, + ACTIONS(11035), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -271055,7 +277773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10910), 42, + ACTIONS(11033), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -271097,9 +277815,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [172215] = 2, - ACTIONS(10916), 11, + [177216] = 2, + ACTIONS(11039), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -271111,7 +277830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10914), 42, + ACTIONS(11037), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -271153,9 +277872,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [172273] = 2, - ACTIONS(10920), 11, + [177275] = 2, + ACTIONS(11043), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -271167,7 +277887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10918), 42, + ACTIONS(11041), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -271209,9 +277929,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [172331] = 2, - ACTIONS(10924), 11, + [177334] = 2, + ACTIONS(11047), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -271223,7 +277944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10922), 42, + ACTIONS(11045), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -271265,9 +277986,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [172389] = 2, - ACTIONS(10928), 11, + [177393] = 2, + ACTIONS(11051), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -271279,7 +278001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10926), 42, + ACTIONS(11049), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -271321,9 +278043,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [172447] = 2, - ACTIONS(10932), 11, + [177452] = 2, + ACTIONS(11055), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -271335,7 +278058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10930), 42, + ACTIONS(11053), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -271377,9 +278100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [172505] = 2, - ACTIONS(10940), 11, + [177511] = 2, + ACTIONS(11059), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -271391,7 +278115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10938), 42, + ACTIONS(11057), 43, sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -271433,36186 +278157,37094 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_alpine_js_token1, aux_sym__text_token3, - [172563] = 9, - ACTIONS(10510), 1, + [177570] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11240), 1, + ACTIONS(11419), 1, anon_sym_ATenderror, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(5450), 1, + STATE(6796), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3948), 3, + STATE(3785), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [172595] = 9, - ACTIONS(10510), 1, + [177602] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11248), 1, + ACTIONS(11427), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(5497), 1, + STATE(5968), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3850), 3, + STATE(3984), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [172627] = 9, - ACTIONS(10510), 1, + [177634] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11250), 1, + ACTIONS(11429), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(6355), 1, + STATE(5926), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3683), 3, + STATE(3956), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [172659] = 9, - ACTIONS(10510), 1, + [177666] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11252), 1, + ACTIONS(11431), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(6399), 1, + STATE(6647), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3821), 3, + STATE(3837), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [172691] = 9, - ACTIONS(10510), 1, + [177698] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11254), 1, + ACTIONS(11433), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(6542), 1, + STATE(6684), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3835), 3, + STATE(3728), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [172723] = 9, - ACTIONS(10510), 1, + [177730] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11256), 1, + ACTIONS(11435), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(6309), 1, + STATE(6425), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3753), 3, + STATE(3986), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [172755] = 9, - ACTIONS(10510), 1, + [177762] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11258), 1, + ACTIONS(11437), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(6260), 1, + STATE(6388), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3822), 3, + STATE(3904), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [172787] = 9, - ACTIONS(10510), 1, + [177794] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11260), 1, + ACTIONS(11439), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(6220), 1, + STATE(6007), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3839), 3, + STATE(3967), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [172819] = 9, - ACTIONS(10510), 1, + [177826] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11262), 1, + ACTIONS(11441), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(6437), 1, + STATE(6759), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3796), 3, + STATE(3992), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [172851] = 9, - ACTIONS(10510), 1, + [177858] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11264), 1, + ACTIONS(11443), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(6330), 1, + STATE(5887), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3708), 3, + STATE(3919), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [172883] = 9, - ACTIONS(10510), 1, + [177890] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11266), 1, + ACTIONS(11445), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(6182), 1, + STATE(5847), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3941), 3, + STATE(3891), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [172915] = 9, - ACTIONS(10510), 1, + [177922] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11268), 1, + ACTIONS(11447), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(6135), 1, + STATE(6011), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3921), 3, + STATE(3906), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [172947] = 9, - ACTIONS(10510), 1, + [177954] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11270), 1, + ACTIONS(11449), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(5821), 1, + STATE(6462), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3772), 3, + STATE(3914), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [172979] = 9, - ACTIONS(10510), 1, + [177986] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11272), 1, + ACTIONS(11451), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(6479), 1, + STATE(6721), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3936), 3, + STATE(3749), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173011] = 9, - ACTIONS(10510), 1, + [178018] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11274), 1, + ACTIONS(11453), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(6090), 1, + STATE(6349), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3898), 3, + STATE(3806), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173043] = 9, - ACTIONS(10510), 1, + [178050] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11276), 1, + ACTIONS(11455), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(6039), 1, + STATE(5808), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3875), 3, + STATE(3845), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173075] = 9, - ACTIONS(10510), 1, + [178082] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11278), 1, + ACTIONS(11457), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(5997), 1, + STATE(6086), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3855), 3, + STATE(3871), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173107] = 9, - ACTIONS(10510), 1, + [178114] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11280), 1, + ACTIONS(11459), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(6110), 1, + STATE(5767), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3906), 3, + STATE(3817), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173139] = 9, - ACTIONS(10510), 1, + [178146] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11282), 1, + ACTIONS(11461), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(5955), 1, + STATE(6499), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3829), 3, + STATE(3842), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173171] = 9, - ACTIONS(10510), 1, + [178178] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11284), 1, + ACTIONS(11463), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(6525), 1, + STATE(5726), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3865), 3, + STATE(3789), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173203] = 9, - ACTIONS(10510), 1, + [178210] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11286), 1, + ACTIONS(11465), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(5908), 1, + STATE(6124), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3804), 3, + STATE(3802), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173235] = 9, - ACTIONS(10510), 1, + [178242] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11288), 1, + ACTIONS(11467), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(5860), 1, + STATE(5687), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3786), 3, + STATE(3763), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173267] = 9, - ACTIONS(10510), 1, + [178274] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11290), 1, + ACTIONS(11469), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(5745), 1, + STATE(6536), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3771), 3, + STATE(3770), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173299] = 9, - ACTIONS(10510), 1, + [178306] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11292), 1, + ACTIONS(11471), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(6572), 1, + STATE(5569), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3794), 3, + STATE(3648), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173331] = 9, - ACTIONS(10510), 1, + [178338] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11294), 1, + ACTIONS(11473), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(5765), 1, + STATE(6610), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3735), 3, + STATE(3813), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173363] = 9, - ACTIONS(10510), 1, + [178370] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11296), 1, + ACTIONS(11475), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(5876), 1, + STATE(6573), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3795), 3, + STATE(3703), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173395] = 9, - ACTIONS(10510), 1, + [178402] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11298), 1, + ACTIONS(11477), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(5726), 1, + STATE(6162), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3716), 3, + STATE(3750), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173427] = 9, - ACTIONS(10510), 1, + [178434] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11300), 1, + ACTIONS(11479), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(5680), 1, + STATE(5900), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3695), 3, + STATE(3821), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173459] = 9, - ACTIONS(10510), 1, + [178466] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11302), 1, + ACTIONS(11481), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(6699), 1, + STATE(5609), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3902), 3, + STATE(3701), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173491] = 9, - ACTIONS(10510), 1, + [178498] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11304), 1, + ACTIONS(11483), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(6653), 1, + STATE(6275), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3655), 3, + STATE(3853), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173523] = 9, - ACTIONS(10510), 1, + [178530] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11306), 1, + ACTIONS(11485), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(5537), 1, + STATE(6238), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3645), 3, + STATE(3667), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173555] = 9, - ACTIONS(10510), 1, + [178562] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11308), 1, + ACTIONS(11487), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(5568), 1, + STATE(6312), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3638), 3, + STATE(3695), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173587] = 9, - ACTIONS(10510), 1, + [178594] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11310), 1, + ACTIONS(11489), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(6614), 1, + STATE(6201), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3723), 3, + STATE(3702), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173619] = 9, - ACTIONS(10510), 1, + [178626] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11312), 1, + ACTIONS(11491), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(5585), 1, + STATE(5641), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3641), 3, + STATE(3713), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173651] = 9, - ACTIONS(10510), 1, + [178658] = 9, + ACTIONS(10679), 1, anon_sym_LPAREN2, - ACTIONS(11242), 1, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11314), 1, + ACTIONS(11493), 1, anon_sym_ATenderror, - STATE(131), 1, + STATE(132), 1, sym__directive_parameter, - STATE(5638), 1, + STATE(5535), 1, sym__if_statement_directive_body, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3665), 3, + STATE(3861), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173683] = 6, - ACTIONS(11316), 1, - anon_sym_ATendfinished, - ACTIONS(11318), 1, - aux_sym__notification_token1, - ACTIONS(11322), 1, - aux_sym__text_token3, - ACTIONS(11320), 2, + [178690] = 8, + ACTIONS(11495), 1, + anon_sym_RPAREN, + ACTIONS(11497), 1, + anon_sym_COMMA, + ACTIONS(11499), 1, + aux_sym__section_parameter_token1, + ACTIONS(11501), 1, aux_sym__text_token1, + STATE(4674), 1, + sym_text, + STATE(5444), 1, + sym__section_parameter, + ACTIONS(11503), 2, aux_sym__text_token2, - STATE(4074), 2, + aux_sym__text_token3, + STATE(4103), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [173706] = 6, - ACTIONS(11318), 1, + [178717] = 6, + ACTIONS(11505), 1, + anon_sym_ATendafter, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11324), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3825), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173729] = 6, - ACTIONS(11326), 1, + [178740] = 6, + ACTIONS(11513), 1, anon_sym_ATendbefore, - ACTIONS(11328), 1, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11330), 2, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3673), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173752] = 6, - ACTIONS(11318), 1, + [178763] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11334), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11521), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3709), 3, + STATE(3681), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173775] = 6, - ACTIONS(11336), 1, + [178786] = 6, + ACTIONS(11523), 1, anon_sym_ATendsuccess, - ACTIONS(11338), 1, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11340), 2, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3797), 3, + STATE(3682), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173798] = 6, - ACTIONS(11344), 1, - anon_sym_ATendafter, - ACTIONS(11346), 1, + [178809] = 6, + ACTIONS(11531), 1, + anon_sym_ATendfinished, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11348), 2, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3684), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173821] = 6, - ACTIONS(11346), 1, + [178832] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11352), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11539), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3894), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173844] = 6, - ACTIONS(11328), 1, + [178855] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11354), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11541), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3954), 3, + STATE(3733), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173867] = 6, - ACTIONS(11338), 1, + [178878] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11356), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11543), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173890] = 6, - ACTIONS(11318), 1, + [178901] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11358), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11545), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173913] = 8, - ACTIONS(11360), 1, - anon_sym_RPAREN, - ACTIONS(11362), 1, - anon_sym_COMMA, - ACTIONS(11364), 1, - aux_sym__section_parameter_token1, - ACTIONS(11366), 1, - aux_sym__text_token1, - STATE(4415), 1, - sym_text, - STATE(5442), 1, - sym__section_parameter, - ACTIONS(11368), 2, - aux_sym__text_token2, - aux_sym__text_token3, - STATE(4067), 2, - sym__text, - aux_sym_php_only_repeat1, - [173940] = 6, - ACTIONS(11318), 1, + [178924] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11370), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11547), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173963] = 6, - ACTIONS(11328), 1, + [178947] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11372), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11549), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3679), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [173986] = 6, - ACTIONS(11374), 1, - anon_sym_ATenderror, - ACTIONS(11376), 1, + [178970] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11382), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11379), 2, + ACTIONS(11551), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3865), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174009] = 6, - ACTIONS(11338), 1, + [178993] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11385), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11553), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3991), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174032] = 6, - ACTIONS(11346), 1, + [179016] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11387), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11555), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3968), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174055] = 6, - ACTIONS(11328), 1, + [179039] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11389), 1, + ACTIONS(11557), 1, anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3668), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174078] = 8, - ACTIONS(11364), 1, - aux_sym__section_parameter_token1, - ACTIONS(11366), 1, - aux_sym__text_token1, - ACTIONS(11391), 1, - anon_sym_RPAREN, - ACTIONS(11393), 1, - anon_sym_COMMA, - STATE(4415), 1, - sym_text, - STATE(5437), 1, - sym__section_parameter, - ACTIONS(11368), 2, - aux_sym__text_token2, - aux_sym__text_token3, - STATE(4067), 2, - sym__text, - aux_sym_php_only_repeat1, - [174105] = 6, - ACTIONS(11318), 1, + [179062] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11395), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11559), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3669), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174128] = 6, - ACTIONS(11338), 1, + [179085] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11397), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11561), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3653), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174151] = 6, - ACTIONS(11346), 1, + [179108] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11399), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11563), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3670), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174174] = 8, - ACTIONS(11364), 1, - aux_sym__section_parameter_token1, - ACTIONS(11366), 1, - aux_sym__text_token1, - ACTIONS(11401), 1, - anon_sym_RPAREN, - ACTIONS(11403), 1, - anon_sym_COMMA, - STATE(4415), 1, - sym_text, - STATE(5385), 1, - sym__section_parameter, - ACTIONS(11368), 2, - aux_sym__text_token2, - aux_sym__text_token3, - STATE(4067), 2, - sym__text, - aux_sym_php_only_repeat1, - [174201] = 6, - ACTIONS(11328), 1, + [179131] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11405), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11565), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3652), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174224] = 6, - ACTIONS(11328), 1, + [179154] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11407), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11567), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3669), 3, + STATE(3671), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174247] = 6, - ACTIONS(11346), 1, + [179177] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11409), 1, + ACTIONS(11569), 1, anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3670), 3, + STATE(3651), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174270] = 6, - ACTIONS(11338), 1, - aux_sym__notification_token1, - ACTIONS(11342), 1, - aux_sym__text_token3, - ACTIONS(11411), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + [179200] = 8, + ACTIONS(11499), 1, + aux_sym__section_parameter_token1, + ACTIONS(11501), 1, aux_sym__text_token1, + ACTIONS(11571), 1, + anon_sym_RPAREN, + ACTIONS(11573), 1, + anon_sym_COMMA, + STATE(4674), 1, + sym_text, + STATE(5406), 1, + sym__section_parameter, + ACTIONS(11503), 2, aux_sym__text_token2, - STATE(4093), 2, + aux_sym__text_token3, + STATE(4103), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3671), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [174293] = 6, - ACTIONS(11318), 1, + [179227] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11413), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11575), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3672), 3, + STATE(3650), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174316] = 6, - ACTIONS(11328), 1, + [179250] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11415), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11577), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3640), 3, + STATE(3760), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174339] = 6, - ACTIONS(11346), 1, + [179273] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11417), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11579), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3642), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174362] = 6, - ACTIONS(11338), 1, + [179296] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11419), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11581), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3643), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174385] = 6, - ACTIONS(11318), 1, + [179319] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11421), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11583), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3644), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174408] = 6, - ACTIONS(11242), 1, + [179342] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11423), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(11585), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174431] = 6, - ACTIONS(11318), 1, + [179365] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11425), 1, + ACTIONS(11587), 1, anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3729), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174454] = 6, - ACTIONS(11328), 1, + [179388] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11427), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11589), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174477] = 6, - ACTIONS(11242), 1, + [179411] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11429), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(11591), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174500] = 6, - ACTIONS(11346), 1, + [179434] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11431), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11593), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174523] = 6, - ACTIONS(11338), 1, + [179457] = 6, + ACTIONS(11595), 1, + anon_sym_ATenderror, + ACTIONS(11597), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11603), 1, aux_sym__text_token3, - ACTIONS(11433), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11600), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174546] = 6, - ACTIONS(11318), 1, + [179480] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11435), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11606), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174569] = 6, - ACTIONS(11242), 1, + [179503] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11437), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(11608), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3716), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174592] = 6, - ACTIONS(11318), 1, + [179526] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11439), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11610), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3616), 3, + STATE(3717), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174615] = 6, - ACTIONS(11338), 1, + [179549] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11441), 1, + ACTIONS(11612), 1, anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3615), 3, + STATE(3718), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174638] = 6, - ACTIONS(11318), 1, + [179572] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11443), 1, + ACTIONS(11614), 1, anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3719), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174661] = 6, - ACTIONS(11346), 1, + [179595] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11445), 1, + ACTIONS(11616), 1, anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3612), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174684] = 6, - ACTIONS(11338), 1, + [179618] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11447), 1, + ACTIONS(11618), 1, anon_sym_ATendsuccess, - ACTIONS(11340), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4093), 2, - sym__text, - aux_sym_php_only_repeat1, - STATE(3889), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [174707] = 6, - ACTIONS(11318), 1, - aux_sym__notification_token1, - ACTIONS(11322), 1, - aux_sym__text_token3, - ACTIONS(11449), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3625), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174730] = 6, - ACTIONS(11338), 1, + [179641] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11451), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11620), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3626), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174753] = 6, - ACTIONS(11346), 1, + [179664] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11453), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11622), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3627), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174776] = 6, - ACTIONS(11328), 1, + [179687] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11455), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11624), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3629), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174799] = 6, - ACTIONS(11242), 1, + [179710] = 6, + ACTIONS(11595), 1, + anon_sym_ATendafter, + ACTIONS(11626), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11632), 1, aux_sym__text_token3, - ACTIONS(11457), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(11629), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174822] = 6, - ACTIONS(11328), 1, + [179733] = 6, + ACTIONS(11595), 1, + anon_sym_ATendfinished, + ACTIONS(11635), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11641), 1, aux_sym__text_token3, - ACTIONS(11459), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11638), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3609), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174845] = 6, - ACTIONS(11328), 1, + [179756] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11461), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11644), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3687), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174868] = 6, - ACTIONS(11346), 1, + [179779] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11463), 1, + ACTIONS(11646), 1, anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3688), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174891] = 6, - ACTIONS(11318), 1, + [179802] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11465), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11648), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174914] = 6, - ACTIONS(11338), 1, + [179825] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11467), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11650), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3706), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174937] = 6, - ACTIONS(11346), 1, + [179848] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11469), 1, + ACTIONS(11652), 1, anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3711), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [174960] = 6, - ACTIONS(11328), 1, - aux_sym__notification_token1, - ACTIONS(11332), 1, - aux_sym__text_token3, - ACTIONS(11471), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + [179871] = 8, + ACTIONS(11499), 1, + aux_sym__section_parameter_token1, + ACTIONS(11501), 1, aux_sym__text_token1, + ACTIONS(11654), 1, + anon_sym_RPAREN, + ACTIONS(11656), 1, + anon_sym_COMMA, + STATE(4674), 1, + sym_text, + STATE(5413), 1, + sym__section_parameter, + ACTIONS(11503), 2, aux_sym__text_token2, - STATE(4112), 2, + aux_sym__text_token3, + STATE(4103), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [174983] = 6, - ACTIONS(11346), 1, + [179898] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11473), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11658), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3712), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175006] = 6, - ACTIONS(11328), 1, + [179921] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11475), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11660), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175029] = 6, - ACTIONS(11242), 1, + [179944] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11477), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(11662), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3725), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175052] = 8, - ACTIONS(11364), 1, + [179967] = 8, + ACTIONS(11499), 1, aux_sym__section_parameter_token1, - ACTIONS(11366), 1, + ACTIONS(11501), 1, aux_sym__text_token1, - ACTIONS(11479), 1, + ACTIONS(11664), 1, anon_sym_RPAREN, - ACTIONS(11481), 1, + ACTIONS(11666), 1, anon_sym_COMMA, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5296), 1, + STATE(5415), 1, sym__section_parameter, - ACTIONS(11368), 2, + ACTIONS(11503), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4067), 2, + STATE(4103), 2, sym__text, aux_sym_php_only_repeat1, - [175079] = 6, - ACTIONS(11318), 1, + [179994] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11483), 1, + ACTIONS(11668), 1, anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3659), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175102] = 8, - ACTIONS(11364), 1, - aux_sym__section_parameter_token1, - ACTIONS(11366), 1, - aux_sym__text_token1, - ACTIONS(11485), 1, - anon_sym_RPAREN, - ACTIONS(11487), 1, - anon_sym_COMMA, - STATE(4415), 1, - sym_text, - STATE(5297), 1, - sym__section_parameter, - ACTIONS(11368), 2, - aux_sym__text_token2, - aux_sym__text_token3, - STATE(4067), 2, - sym__text, - aux_sym_php_only_repeat1, - [175129] = 6, - ACTIONS(11328), 1, + [180017] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11489), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11670), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175152] = 6, - ACTIONS(11346), 1, + [180040] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11491), 1, + ACTIONS(11672), 1, anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175175] = 6, - ACTIONS(11338), 1, + [180063] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11493), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11674), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175198] = 6, - ACTIONS(11318), 1, + [180086] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11495), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11676), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175221] = 6, - ACTIONS(11338), 1, + [180109] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11497), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11678), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3660), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175244] = 6, - ACTIONS(11346), 1, - aux_sym__notification_token1, - ACTIONS(11350), 1, - aux_sym__text_token3, + [180132] = 8, ACTIONS(11499), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + aux_sym__section_parameter_token1, + ACTIONS(11501), 1, aux_sym__text_token1, + ACTIONS(11680), 1, + anon_sym_RPAREN, + ACTIONS(11682), 1, + anon_sym_COMMA, + STATE(4674), 1, + sym_text, + STATE(5496), 1, + sym__section_parameter, + ACTIONS(11503), 2, aux_sym__text_token2, - STATE(4085), 2, + aux_sym__text_token3, + STATE(4103), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3661), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [175267] = 6, - ACTIONS(11328), 1, + [180159] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11501), 1, + ACTIONS(11684), 1, anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3662), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175290] = 6, - ACTIONS(11338), 1, + [180182] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11503), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11686), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3749), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175313] = 6, - ACTIONS(11338), 1, + [180205] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11505), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11688), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3689), 3, + STATE(3714), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175336] = 6, - ACTIONS(11346), 1, + [180228] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11507), 1, + ACTIONS(11690), 1, anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3765), 3, + STATE(3715), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175359] = 6, - ACTIONS(11328), 1, + [180251] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11509), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11692), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3720), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175382] = 6, - ACTIONS(11328), 1, + [180274] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11511), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11694), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3777), 3, + STATE(3734), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175405] = 6, - ACTIONS(11318), 1, + [180297] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11513), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11696), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3690), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175428] = 6, - ACTIONS(11346), 1, + [180320] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11515), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11698), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175451] = 6, - ACTIONS(11242), 1, + [180343] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11517), 1, + ACTIONS(11700), 1, anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175474] = 6, - ACTIONS(11338), 1, + [180366] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, - aux_sym__text_token3, ACTIONS(11519), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + aux_sym__text_token3, + ACTIONS(11702), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175497] = 6, - ACTIONS(11318), 1, + [180389] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11521), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11704), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175520] = 8, - ACTIONS(11364), 1, - aux_sym__section_parameter_token1, - ACTIONS(11366), 1, - aux_sym__text_token1, - ACTIONS(11523), 1, - anon_sym_RPAREN, - ACTIONS(11525), 1, - anon_sym_COMMA, - STATE(4415), 1, - sym_text, - STATE(5433), 1, - sym__section_parameter, - ACTIONS(11368), 2, - aux_sym__text_token2, - aux_sym__text_token3, - STATE(4067), 2, - sym__text, - aux_sym_php_only_repeat1, - [175547] = 6, - ACTIONS(11328), 1, + [180412] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11527), 1, + ACTIONS(11706), 1, anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175570] = 6, - ACTIONS(11346), 1, + [180435] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11529), 1, + ACTIONS(11708), 1, anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175593] = 6, - ACTIONS(11338), 1, + [180458] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11531), 1, + ACTIONS(11710), 1, anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175616] = 6, - ACTIONS(11318), 1, - aux_sym__notification_token1, - ACTIONS(11322), 1, - aux_sym__text_token3, + [180481] = 6, ACTIONS(11533), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4074), 2, - sym__text, - aux_sym_php_only_repeat1, - STATE(3958), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [175639] = 6, - ACTIONS(11318), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11535), 1, + ACTIONS(11712), 1, anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175662] = 6, - ACTIONS(11338), 1, + [180504] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11537), 1, + ACTIONS(11714), 1, anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175685] = 6, - ACTIONS(11346), 1, - aux_sym__notification_token1, - ACTIONS(11350), 1, - aux_sym__text_token3, - ACTIONS(11539), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4085), 2, - sym__text, - aux_sym_php_only_repeat1, - STATE(3866), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [175708] = 6, - ACTIONS(11328), 1, - aux_sym__notification_token1, - ACTIONS(11332), 1, - aux_sym__text_token3, - ACTIONS(11541), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4112), 2, - sym__text, - aux_sym_php_only_repeat1, - STATE(3816), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [175731] = 6, - ACTIONS(11242), 1, + [180527] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11543), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(11716), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3685), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175754] = 6, - ACTIONS(11328), 1, + [180550] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11545), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11718), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3737), 3, + STATE(3688), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175777] = 6, - ACTIONS(11346), 1, + [180573] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11547), 1, + ACTIONS(11720), 1, anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3738), 3, + STATE(3689), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175800] = 6, - ACTIONS(11338), 1, + [180596] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11549), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11722), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3739), 3, + STATE(3690), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175823] = 6, - ACTIONS(11318), 1, + [180619] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11551), 1, + ACTIONS(11724), 1, anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3740), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175846] = 8, - ACTIONS(11364), 1, + [180642] = 8, + ACTIONS(11499), 1, aux_sym__section_parameter_token1, - ACTIONS(11366), 1, + ACTIONS(11501), 1, aux_sym__text_token1, - ACTIONS(11553), 1, + ACTIONS(11726), 1, anon_sym_RPAREN, - ACTIONS(11555), 1, + ACTIONS(11728), 1, anon_sym_COMMA, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5299), 1, + STATE(5514), 1, sym__section_parameter, - ACTIONS(11368), 2, + ACTIONS(11503), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4067), 2, + STATE(4103), 2, sym__text, aux_sym_php_only_repeat1, - [175873] = 6, - ACTIONS(11318), 1, - aux_sym__notification_token1, - ACTIONS(11322), 1, - aux_sym__text_token3, - ACTIONS(11557), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + [180669] = 8, + ACTIONS(11499), 1, + aux_sym__section_parameter_token1, + ACTIONS(11501), 1, aux_sym__text_token1, + ACTIONS(11730), 1, + anon_sym_RPAREN, + ACTIONS(11732), 1, + anon_sym_COMMA, + STATE(4674), 1, + sym_text, + STATE(5512), 1, + sym__section_parameter, + ACTIONS(11503), 2, aux_sym__text_token2, - STATE(4074), 2, + aux_sym__text_token3, + STATE(4103), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3691), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [175896] = 6, - ACTIONS(11338), 1, + [180696] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11559), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11734), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3692), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175919] = 6, - ACTIONS(11346), 1, + [180719] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11561), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11736), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3693), 3, + STATE(3672), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175942] = 6, - ACTIONS(11328), 1, + [180742] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11563), 1, + ACTIONS(11738), 1, anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3694), 3, + STATE(3856), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175965] = 6, - ACTIONS(11338), 1, + [180765] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11565), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11740), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3676), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [175988] = 6, - ACTIONS(11328), 1, + [180788] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11567), 1, + ACTIONS(11742), 1, anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3664), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [176011] = 6, - ACTIONS(11346), 1, - aux_sym__notification_token1, - ACTIONS(11350), 1, - aux_sym__text_token3, - ACTIONS(11569), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4085), 2, - sym__text, - aux_sym_php_only_repeat1, - STATE(3663), 3, + STATE(3683), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176034] = 6, - ACTIONS(11242), 1, + [180811] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11571), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(11744), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176057] = 6, - ACTIONS(11318), 1, + [180834] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11573), 1, + ACTIONS(11746), 1, anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176080] = 6, - ACTIONS(11328), 1, + [180857] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11575), 1, + ACTIONS(11748), 1, anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3758), 3, + STATE(3755), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176103] = 6, - ACTIONS(11318), 1, - aux_sym__notification_token1, - ACTIONS(11322), 1, - aux_sym__text_token3, - ACTIONS(11577), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + [180880] = 8, + ACTIONS(11499), 1, + aux_sym__section_parameter_token1, + ACTIONS(11501), 1, aux_sym__text_token1, + ACTIONS(11750), 1, + anon_sym_RPAREN, + ACTIONS(11752), 1, + anon_sym_COMMA, + STATE(4674), 1, + sym_text, + STATE(5509), 1, + sym__section_parameter, + ACTIONS(11503), 2, aux_sym__text_token2, - STATE(4074), 2, + aux_sym__text_token3, + STATE(4103), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [176126] = 6, - ACTIONS(11338), 1, + [180907] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11579), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11754), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3854), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176149] = 6, - ACTIONS(11346), 1, + [180930] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11581), 1, + ACTIONS(11756), 1, anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3855), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176172] = 6, - ACTIONS(11328), 1, + [180953] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11583), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11758), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176195] = 8, - ACTIONS(11364), 1, - aux_sym__section_parameter_token1, - ACTIONS(11366), 1, - aux_sym__text_token1, - ACTIONS(11585), 1, - anon_sym_RPAREN, - ACTIONS(11587), 1, - anon_sym_COMMA, - STATE(4415), 1, - sym_text, - STATE(5309), 1, - sym__section_parameter, - ACTIONS(11368), 2, - aux_sym__text_token2, - aux_sym__text_token3, - STATE(4067), 2, - sym__text, - aux_sym_php_only_repeat1, - [176222] = 6, - ACTIONS(11242), 1, + [180976] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11589), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(11760), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3867), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176245] = 8, - ACTIONS(11364), 1, - aux_sym__section_parameter_token1, - ACTIONS(11366), 1, + [180999] = 6, + ACTIONS(11533), 1, + aux_sym__notification_token1, + ACTIONS(11537), 1, + aux_sym__text_token3, + ACTIONS(11762), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, - ACTIONS(11591), 1, - anon_sym_RPAREN, - ACTIONS(11593), 1, - anon_sym_COMMA, - STATE(4415), 1, - sym_text, - STATE(5313), 1, - sym__section_parameter, - ACTIONS(11368), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4067), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - [176272] = 6, - ACTIONS(11318), 1, + STATE(3866), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [181022] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11595), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11764), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3711), 3, + STATE(3773), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176295] = 6, - ACTIONS(11338), 1, + [181045] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11597), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11766), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3712), 3, + STATE(3784), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176318] = 6, - ACTIONS(11346), 1, + [181068] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11599), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11768), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3713), 3, + STATE(3698), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176341] = 6, - ACTIONS(11328), 1, + [181091] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11601), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11770), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3714), 3, + STATE(3786), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176364] = 6, - ACTIONS(11346), 1, + [181114] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11603), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11772), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3682), 3, + STATE(3787), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176387] = 6, - ACTIONS(11242), 1, + [181137] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11605), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(11774), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3869), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176410] = 6, - ACTIONS(11318), 1, + [181160] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11607), 1, + ACTIONS(11776), 1, anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3774), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176433] = 6, - ACTIONS(11338), 1, + [181183] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11609), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11778), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176456] = 6, - ACTIONS(11346), 1, + [181206] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11611), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11780), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176479] = 6, - ACTIONS(11328), 1, + [181229] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11613), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11782), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176502] = 8, - ACTIONS(11364), 1, + [181252] = 8, + ACTIONS(11499), 1, aux_sym__section_parameter_token1, - ACTIONS(11366), 1, + ACTIONS(11501), 1, aux_sym__text_token1, - ACTIONS(11615), 1, + ACTIONS(11784), 1, anon_sym_RPAREN, - ACTIONS(11617), 1, + ACTIONS(11786), 1, anon_sym_COMMA, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5314), 1, + STATE(5505), 1, sym__section_parameter, - ACTIONS(11368), 2, + ACTIONS(11503), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4067), 2, + STATE(4103), 2, sym__text, aux_sym_php_only_repeat1, - [176529] = 6, - ACTIONS(11318), 1, + [181279] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11619), 1, + ACTIONS(11788), 1, anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176552] = 6, - ACTIONS(11346), 1, + [181302] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11621), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11790), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3760), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176575] = 6, - ACTIONS(11318), 1, + [181325] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11623), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11792), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176598] = 6, - ACTIONS(11338), 1, + [181348] = 8, + ACTIONS(11499), 1, + aux_sym__section_parameter_token1, + ACTIONS(11501), 1, + aux_sym__text_token1, + ACTIONS(11794), 1, + anon_sym_RPAREN, + ACTIONS(11796), 1, + anon_sym_COMMA, + STATE(4674), 1, + sym_text, + STATE(5372), 1, + sym__section_parameter, + ACTIONS(11503), 2, + aux_sym__text_token2, + aux_sym__text_token3, + STATE(4103), 2, + sym__text, + aux_sym_php_only_repeat1, + [181375] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11625), 1, + ACTIONS(11798), 1, anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176621] = 6, - ACTIONS(11346), 1, + [181398] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11627), 1, + ACTIONS(11800), 1, anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176644] = 6, - ACTIONS(11328), 1, + [181421] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11629), 1, + ACTIONS(11802), 1, anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176667] = 6, - ACTIONS(11242), 1, + [181444] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11631), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(11804), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176690] = 6, - ACTIONS(11328), 1, - aux_sym__notification_token1, - ACTIONS(11332), 1, - aux_sym__text_token3, - ACTIONS(11633), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + [181467] = 8, + ACTIONS(11499), 1, + aux_sym__section_parameter_token1, + ACTIONS(11501), 1, aux_sym__text_token1, + ACTIONS(11806), 1, + anon_sym_RPAREN, + ACTIONS(11808), 1, + anon_sym_COMMA, + STATE(4674), 1, + sym_text, + STATE(5378), 1, + sym__section_parameter, + ACTIONS(11503), 2, aux_sym__text_token2, - STATE(4112), 2, + aux_sym__text_token3, + STATE(4103), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3815), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [176713] = 6, - ACTIONS(11328), 1, + [181494] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11635), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11810), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176736] = 6, - ACTIONS(11346), 1, + [181517] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11637), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11812), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176759] = 6, - ACTIONS(11338), 1, + [181540] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11639), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11814), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176782] = 6, - ACTIONS(11318), 1, + [181563] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11641), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11816), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176805] = 8, - ACTIONS(11364), 1, - aux_sym__section_parameter_token1, - ACTIONS(11366), 1, - aux_sym__text_token1, - ACTIONS(11643), 1, - anon_sym_RPAREN, - ACTIONS(11645), 1, - anon_sym_COMMA, - STATE(4415), 1, - sym_text, - STATE(5319), 1, - sym__section_parameter, - ACTIONS(11368), 2, - aux_sym__text_token2, - aux_sym__text_token3, - STATE(4067), 2, - sym__text, - aux_sym_php_only_repeat1, - [176832] = 6, - ACTIONS(11346), 1, + [181586] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11647), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11818), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3818), 3, + STATE(3754), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176855] = 6, - ACTIONS(11318), 1, + [181609] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11649), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11820), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3731), 3, + STATE(3757), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176878] = 6, - ACTIONS(11338), 1, + [181632] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11651), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11822), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3732), 3, + STATE(3758), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176901] = 6, - ACTIONS(11338), 1, + [181655] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11653), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11824), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3778), 3, + STATE(3759), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176924] = 6, - ACTIONS(11318), 1, + [181678] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11655), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11826), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3779), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176947] = 6, - ACTIONS(11346), 1, + [181701] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11657), 1, + ACTIONS(11828), 1, anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3733), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176970] = 6, - ACTIONS(11328), 1, + [181724] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11659), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11830), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3734), 3, + STATE(3858), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176993] = 6, - ACTIONS(11338), 1, + [181747] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11661), 1, + ACTIONS(11832), 1, anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177016] = 6, - ACTIONS(11338), 1, + [181770] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11663), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11834), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177039] = 6, - ACTIONS(11318), 1, + [181793] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11665), 1, + ACTIONS(11836), 1, anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3607), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177062] = 8, - ACTIONS(11364), 1, - aux_sym__section_parameter_token1, - ACTIONS(11366), 1, + [181816] = 6, + ACTIONS(11525), 1, + aux_sym__notification_token1, + ACTIONS(11529), 1, + aux_sym__text_token3, + ACTIONS(11838), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, - ACTIONS(11667), 1, - anon_sym_RPAREN, - ACTIONS(11669), 1, - anon_sym_COMMA, - STATE(4415), 1, - sym_text, - STATE(5426), 1, - sym__section_parameter, - ACTIONS(11368), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4067), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - [177089] = 6, - ACTIONS(11242), 1, + STATE(3883), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [181839] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11671), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(11840), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177112] = 6, - ACTIONS(11318), 1, + [181862] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11673), 1, + ACTIONS(11842), 1, anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177135] = 6, - ACTIONS(11338), 1, + [181885] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11675), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11844), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177158] = 6, - ACTIONS(11318), 1, + [181908] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11677), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11846), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3648), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177181] = 6, - ACTIONS(11346), 1, + [181931] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11679), 1, + ACTIONS(11848), 1, anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177204] = 6, - ACTIONS(11328), 1, + [181954] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11681), 1, + ACTIONS(11850), 1, anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177227] = 6, - ACTIONS(11318), 1, - aux_sym__notification_token1, - ACTIONS(11322), 1, - aux_sym__text_token3, - ACTIONS(11683), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + [181977] = 8, + ACTIONS(11499), 1, + aux_sym__section_parameter_token1, + ACTIONS(11501), 1, aux_sym__text_token1, + ACTIONS(11852), 1, + anon_sym_RPAREN, + ACTIONS(11854), 1, + anon_sym_COMMA, + STATE(4674), 1, + sym_text, + STATE(5373), 1, + sym__section_parameter, + ACTIONS(11503), 2, aux_sym__text_token2, - STATE(4074), 2, + aux_sym__text_token3, + STATE(4103), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [177250] = 6, - ACTIONS(11346), 1, + [182004] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11685), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11856), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177273] = 6, - ACTIONS(11338), 1, + [182027] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11687), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11858), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177296] = 6, - ACTIONS(11346), 1, + [182050] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11689), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11860), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177319] = 6, - ACTIONS(11328), 1, + [182073] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11691), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11862), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177342] = 6, - ACTIONS(11328), 1, + [182096] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11693), 1, + ACTIONS(11864), 1, anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177365] = 6, - ACTIONS(11346), 1, + [182119] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11695), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11866), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177388] = 8, - ACTIONS(11364), 1, - aux_sym__section_parameter_token1, - ACTIONS(11366), 1, - aux_sym__text_token1, - ACTIONS(11697), 1, - anon_sym_RPAREN, - ACTIONS(11699), 1, - anon_sym_COMMA, - STATE(4415), 1, - sym_text, - STATE(5315), 1, - sym__section_parameter, - ACTIONS(11368), 2, - aux_sym__text_token2, - aux_sym__text_token3, - STATE(4067), 2, - sym__text, - aux_sym_php_only_repeat1, - [177415] = 6, - ACTIONS(11328), 1, + [182142] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11701), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11868), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3837), 3, + STATE(3933), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177438] = 6, - ACTIONS(11346), 1, + [182165] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11703), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11870), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3809), 3, + STATE(3778), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177461] = 6, - ACTIONS(11338), 1, + [182188] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11705), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11872), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3810), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177484] = 6, - ACTIONS(11318), 1, + [182211] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11707), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11874), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3811), 3, + STATE(3804), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177507] = 6, - ACTIONS(11242), 1, + [182234] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11709), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(11876), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3780), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177530] = 6, - ACTIONS(11242), 1, + [182257] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11711), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(11878), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3781), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177553] = 6, - ACTIONS(11318), 1, + [182280] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11713), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11880), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3759), 3, + STATE(3782), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177576] = 6, - ACTIONS(11338), 1, + [182303] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11715), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11882), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3761), 3, + STATE(3807), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177599] = 6, - ACTIONS(11346), 1, + [182326] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11717), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11884), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3762), 3, + STATE(3934), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177622] = 6, - ACTIONS(11328), 1, + [182349] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11719), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11886), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3764), 3, + STATE(3814), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177645] = 6, - ACTIONS(11328), 1, + [182372] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11721), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11888), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, STATE(3816), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177668] = 6, - ACTIONS(11338), 1, + [182395] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11723), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11890), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177691] = 6, - ACTIONS(11318), 1, + [182418] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11725), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11892), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177714] = 8, - ACTIONS(11364), 1, + [182441] = 8, + ACTIONS(11499), 1, aux_sym__section_parameter_token1, - ACTIONS(11366), 1, + ACTIONS(11501), 1, aux_sym__text_token1, - ACTIONS(11727), 1, + ACTIONS(11894), 1, anon_sym_RPAREN, - ACTIONS(11729), 1, + ACTIONS(11896), 1, anon_sym_COMMA, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5337), 1, + STATE(5497), 1, sym__section_parameter, - ACTIONS(11368), 2, + ACTIONS(11503), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4067), 2, + STATE(4103), 2, sym__text, aux_sym_php_only_repeat1, - [177741] = 8, - ACTIONS(11364), 1, - aux_sym__section_parameter_token1, - ACTIONS(11366), 1, + [182468] = 6, + ACTIONS(11515), 1, + aux_sym__notification_token1, + ACTIONS(11519), 1, + aux_sym__text_token3, + ACTIONS(11898), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, - ACTIONS(11731), 1, - anon_sym_RPAREN, - ACTIONS(11733), 1, - anon_sym_COMMA, - STATE(4415), 1, - sym_text, - STATE(5422), 1, - sym__section_parameter, - ACTIONS(11368), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4067), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - [177768] = 6, - ACTIONS(11318), 1, + STATE(3935), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [182491] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11735), 1, + ACTIONS(11900), 1, anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177791] = 6, - ACTIONS(11338), 1, + [182514] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11737), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11902), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177814] = 6, - ACTIONS(11346), 1, + [182537] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11739), 1, + ACTIONS(11904), 1, anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177837] = 6, - ACTIONS(11328), 1, + [182560] = 8, + ACTIONS(11499), 1, + aux_sym__section_parameter_token1, + ACTIONS(11501), 1, + aux_sym__text_token1, + ACTIONS(11906), 1, + anon_sym_RPAREN, + ACTIONS(11908), 1, + anon_sym_COMMA, + STATE(4674), 1, + sym_text, + STATE(5495), 1, + sym__section_parameter, + ACTIONS(11503), 2, + aux_sym__text_token2, + aux_sym__text_token3, + STATE(4103), 2, + sym__text, + aux_sym_php_only_repeat1, + [182587] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11741), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11910), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177860] = 6, - ACTIONS(11242), 1, + [182610] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11743), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(11912), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177883] = 8, - ACTIONS(11364), 1, - aux_sym__section_parameter_token1, - ACTIONS(11366), 1, + [182633] = 6, + ACTIONS(11515), 1, + aux_sym__notification_token1, + ACTIONS(11519), 1, + aux_sym__text_token3, + ACTIONS(11914), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, - ACTIONS(11745), 1, - anon_sym_RPAREN, - ACTIONS(11747), 1, - anon_sym_COMMA, - STATE(4415), 1, - sym_text, - STATE(5341), 1, - sym__section_parameter, - ACTIONS(11368), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4067), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - [177910] = 8, - ACTIONS(11364), 1, + STATE(3935), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [182656] = 8, + ACTIONS(11499), 1, aux_sym__section_parameter_token1, - ACTIONS(11366), 1, + ACTIONS(11501), 1, aux_sym__text_token1, - ACTIONS(11749), 1, + ACTIONS(11916), 1, anon_sym_RPAREN, - ACTIONS(11751), 1, + ACTIONS(11918), 1, anon_sym_COMMA, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5339), 1, + STATE(5388), 1, sym__section_parameter, - ACTIONS(11368), 2, + ACTIONS(11503), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4067), 2, + STATE(4103), 2, sym__text, aux_sym_php_only_repeat1, - [177937] = 6, - ACTIONS(11318), 1, + [182683] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11753), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11920), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3782), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177960] = 6, - ACTIONS(11338), 1, + [182706] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11755), 1, + ACTIONS(11922), 1, anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3783), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177983] = 6, - ACTIONS(11346), 1, + [182729] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11757), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11924), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3784), 3, + STATE(3674), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178006] = 6, - ACTIONS(11328), 1, + [182752] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11759), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11926), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3785), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178029] = 6, - ACTIONS(11318), 1, + [182775] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11761), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11928), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178052] = 6, - ACTIONS(11242), 1, + [182798] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11763), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(11930), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3907), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178075] = 6, - ACTIONS(11242), 1, + [182821] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11765), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(11932), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3886), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178098] = 6, - ACTIONS(11242), 1, + [182844] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11767), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(11934), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3643), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178121] = 6, - ACTIONS(11338), 1, + [182867] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11769), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11936), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178144] = 6, - ACTIONS(11328), 1, - aux_sym__notification_token1, - ACTIONS(11332), 1, - aux_sym__text_token3, - ACTIONS(11771), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + [182890] = 8, + ACTIONS(11499), 1, + aux_sym__section_parameter_token1, + ACTIONS(11501), 1, aux_sym__text_token1, + ACTIONS(11938), 1, + anon_sym_RPAREN, + ACTIONS(11940), 1, + anon_sym_COMMA, + STATE(4674), 1, + sym_text, + STATE(5389), 1, + sym__section_parameter, + ACTIONS(11503), 2, aux_sym__text_token2, - STATE(4112), 2, + aux_sym__text_token3, + STATE(4103), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3831), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [178167] = 6, - ACTIONS(11318), 1, + [182917] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11773), 1, + ACTIONS(11942), 1, anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3805), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178190] = 6, - ACTIONS(11338), 1, + [182940] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11775), 1, + ACTIONS(11944), 1, anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3809), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178213] = 6, - ACTIONS(11346), 1, + [182963] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11777), 1, + ACTIONS(11946), 1, anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3810), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178236] = 6, - ACTIONS(11328), 1, + [182986] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11779), 1, + ACTIONS(11948), 1, anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3811), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178259] = 8, - ACTIONS(11364), 1, - aux_sym__section_parameter_token1, - ACTIONS(11366), 1, - aux_sym__text_token1, - ACTIONS(11781), 1, - anon_sym_RPAREN, - ACTIONS(11783), 1, - anon_sym_COMMA, - STATE(4415), 1, - sym_text, - STATE(5332), 1, - sym__section_parameter, - ACTIONS(11368), 2, - aux_sym__text_token2, - aux_sym__text_token3, - STATE(4067), 2, - sym__text, - aux_sym_php_only_repeat1, - [178286] = 6, - ACTIONS(11242), 1, + [183009] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11785), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(11950), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3699), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178309] = 6, - ACTIONS(11318), 1, + [183032] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11787), 1, + ACTIONS(11952), 1, anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3799), 3, + STATE(3936), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178332] = 6, - ACTIONS(11338), 1, - aux_sym__notification_token1, - ACTIONS(11342), 1, - aux_sym__text_token3, - ACTIONS(11789), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + [183055] = 8, + ACTIONS(11499), 1, + aux_sym__section_parameter_token1, + ACTIONS(11501), 1, aux_sym__text_token1, + ACTIONS(11954), 1, + anon_sym_RPAREN, + ACTIONS(11956), 1, + anon_sym_COMMA, + STATE(4674), 1, + sym_text, + STATE(5437), 1, + sym__section_parameter, + ACTIONS(11503), 2, aux_sym__text_token2, - STATE(4093), 2, + aux_sym__text_token3, + STATE(4103), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3800), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [178355] = 6, - ACTIONS(11346), 1, + [183082] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11791), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11958), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3801), 3, + STATE(3872), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178378] = 6, - ACTIONS(11346), 1, + [183105] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11793), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11960), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3827), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178401] = 6, - ACTIONS(11346), 1, + [183128] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11795), 1, + ACTIONS(11962), 1, anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3873), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178424] = 6, - ACTIONS(11338), 1, + [183151] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11797), 1, + ACTIONS(11964), 1, anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3874), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178447] = 6, - ACTIONS(11318), 1, + [183174] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11799), 1, + ACTIONS(11966), 1, anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3875), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178470] = 6, - ACTIONS(11328), 1, + [183197] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11801), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11968), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3802), 3, + STATE(3700), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178493] = 6, - ACTIONS(11328), 1, - aux_sym__notification_token1, - ACTIONS(11332), 1, - aux_sym__text_token3, - ACTIONS(11803), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + [183220] = 8, + ACTIONS(11499), 1, + aux_sym__section_parameter_token1, + ACTIONS(11501), 1, aux_sym__text_token1, + ACTIONS(11970), 1, + anon_sym_RPAREN, + ACTIONS(11972), 1, + anon_sym_COMMA, + STATE(4674), 1, + sym_text, + STATE(5397), 1, + sym__section_parameter, + ACTIONS(11503), 2, aux_sym__text_token2, - STATE(4112), 2, + aux_sym__text_token3, + STATE(4103), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3844), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [178516] = 6, - ACTIONS(11346), 1, + [183247] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11805), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11974), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3832), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178539] = 6, - ACTIONS(11328), 1, + [183270] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11807), 1, + ACTIONS(11976), 1, anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3705), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178562] = 6, - ACTIONS(11374), 1, - anon_sym_ATendbefore, - ACTIONS(11809), 1, + [183293] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11815), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11812), 2, + ACTIONS(11978), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3775), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178585] = 6, - ACTIONS(11338), 1, + [183316] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11818), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11980), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3838), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178608] = 6, - ACTIONS(11346), 1, + [183339] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11820), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11982), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178631] = 6, - ACTIONS(11318), 1, + [183362] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11822), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11984), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3845), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178654] = 6, - ACTIONS(11338), 1, + [183385] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11824), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11986), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178677] = 6, - ACTIONS(11242), 1, + [183408] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11826), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(11988), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178700] = 6, - ACTIONS(11242), 1, + [183431] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11828), 1, + ACTIONS(11990), 1, anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178723] = 8, - ACTIONS(11364), 1, + [183454] = 8, + ACTIONS(11499), 1, aux_sym__section_parameter_token1, - ACTIONS(11366), 1, + ACTIONS(11501), 1, aux_sym__text_token1, - ACTIONS(11830), 1, + ACTIONS(11992), 1, anon_sym_RPAREN, - ACTIONS(11832), 1, + ACTIONS(11994), 1, anon_sym_COMMA, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5417), 1, + STATE(5402), 1, sym__section_parameter, - ACTIONS(11368), 2, + ACTIONS(11503), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4067), 2, + STATE(4103), 2, sym__text, aux_sym_php_only_repeat1, - [178750] = 8, - ACTIONS(11364), 1, - aux_sym__section_parameter_token1, - ACTIONS(11366), 1, + [183481] = 6, + ACTIONS(11525), 1, + aux_sym__notification_token1, + ACTIONS(11529), 1, + aux_sym__text_token3, + ACTIONS(11996), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, - ACTIONS(11834), 1, - anon_sym_RPAREN, - ACTIONS(11836), 1, - anon_sym_COMMA, - STATE(4415), 1, - sym_text, - STATE(5352), 1, - sym__section_parameter, - ACTIONS(11368), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4067), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - [178777] = 6, - ACTIONS(11318), 1, + STATE(3776), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [183504] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11838), 1, + ACTIONS(11998), 1, anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3840), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178800] = 6, - ACTIONS(11338), 1, + [183527] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11840), 1, + ACTIONS(12000), 1, anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3841), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178823] = 6, - ACTIONS(11346), 1, + [183550] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11842), 1, + ACTIONS(12002), 1, anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3843), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178846] = 6, - ACTIONS(11328), 1, + [183573] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11844), 1, + ACTIONS(12004), 1, anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3844), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178869] = 6, - ACTIONS(11242), 1, + [183596] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11846), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(12006), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3777), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178892] = 8, - ACTIONS(11364), 1, - aux_sym__section_parameter_token1, - ACTIONS(11366), 1, + [183619] = 6, + ACTIONS(11421), 1, + aux_sym__notification_token1, + ACTIONS(11425), 1, + aux_sym__text_token3, + ACTIONS(12008), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, aux_sym__text_token1, - ACTIONS(11848), 1, - anon_sym_RPAREN, - ACTIONS(11850), 1, - anon_sym_COMMA, - STATE(4415), 1, - sym_text, - STATE(5356), 1, - sym__section_parameter, - ACTIONS(11368), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4067), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - [178919] = 6, - ACTIONS(11328), 1, + STATE(3675), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [183642] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11852), 1, + ACTIONS(12010), 1, anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178942] = 6, - ACTIONS(11346), 1, + [183665] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11854), 1, + ACTIONS(12012), 1, anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178965] = 6, - ACTIONS(11328), 1, + [183688] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11856), 1, + ACTIONS(12014), 1, anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3879), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178988] = 6, - ACTIONS(11338), 1, + [183711] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11858), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(12016), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3826), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179011] = 6, - ACTIONS(11242), 1, + [183734] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11860), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(12018), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179034] = 6, - ACTIONS(11346), 1, + [183757] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11862), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(12020), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179057] = 6, - ACTIONS(11328), 1, + [183780] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11864), 1, + ACTIONS(12022), 1, anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3788), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179080] = 6, - ACTIONS(11338), 1, + [183803] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11866), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(12024), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179103] = 6, - ACTIONS(11242), 1, + [183826] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11868), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(12026), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179126] = 6, - ACTIONS(11338), 1, + [183849] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11870), 1, + ACTIONS(12028), 1, anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3881), 3, + STATE(3883), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [183872] = 8, + ACTIONS(11499), 1, + aux_sym__section_parameter_token1, + ACTIONS(11501), 1, + aux_sym__text_token1, + ACTIONS(12030), 1, + anon_sym_RPAREN, + ACTIONS(12032), 1, + anon_sym_COMMA, + STATE(4674), 1, + sym_text, + STATE(5407), 1, + sym__section_parameter, + ACTIONS(11503), 2, + aux_sym__text_token2, + aux_sym__text_token3, + STATE(4103), 2, + sym__text, + aux_sym_php_only_repeat1, + [183899] = 6, + ACTIONS(11525), 1, + aux_sym__notification_token1, + ACTIONS(11529), 1, + aux_sym__text_token3, + ACTIONS(12034), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4137), 2, + sym__text, + aux_sym_php_only_repeat1, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179149] = 6, - ACTIONS(11318), 1, + [183922] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11872), 1, + ACTIONS(12036), 1, anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3882), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179172] = 6, - ACTIONS(11328), 1, + [183945] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11874), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(12038), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3828), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179195] = 8, - ACTIONS(11364), 1, + [183968] = 8, + ACTIONS(11499), 1, aux_sym__section_parameter_token1, - ACTIONS(11366), 1, + ACTIONS(11501), 1, aux_sym__text_token1, - ACTIONS(11876), 1, + ACTIONS(12040), 1, anon_sym_RPAREN, - ACTIONS(11878), 1, + ACTIONS(12042), 1, anon_sym_COMMA, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5358), 1, + STATE(5485), 1, sym__section_parameter, - ACTIONS(11368), 2, + ACTIONS(11503), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4067), 2, - sym__text, - aux_sym_php_only_repeat1, - [179222] = 6, - ACTIONS(11328), 1, - aux_sym__notification_token1, - ACTIONS(11332), 1, - aux_sym__text_token3, - ACTIONS(11880), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4112), 2, + STATE(4103), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [179245] = 6, - ACTIONS(11318), 1, + [183995] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11882), 1, + ACTIONS(12044), 1, anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179268] = 8, - ACTIONS(11364), 1, + [184018] = 8, + ACTIONS(11499), 1, aux_sym__section_parameter_token1, - ACTIONS(11366), 1, + ACTIONS(11501), 1, aux_sym__text_token1, - ACTIONS(11884), 1, + ACTIONS(12046), 1, anon_sym_RPAREN, - ACTIONS(11886), 1, + ACTIONS(12048), 1, anon_sym_COMMA, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5415), 1, + STATE(5438), 1, sym__section_parameter, - ACTIONS(11368), 2, + ACTIONS(11503), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4067), 2, + STATE(4103), 2, sym__text, aux_sym_php_only_repeat1, - [179295] = 6, - ACTIONS(11328), 1, + [184045] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11888), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(12050), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3763), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179318] = 6, - ACTIONS(11346), 1, + [184068] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11890), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(12052), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3757), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179341] = 6, - ACTIONS(11318), 1, + [184091] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11892), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(12054), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3618), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179364] = 6, - ACTIONS(11242), 1, + [184114] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11894), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(12056), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179387] = 6, - ACTIONS(11318), 1, + [184137] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11896), 1, + ACTIONS(12058), 1, anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179410] = 6, - ACTIONS(11338), 1, + [184160] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11898), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(12060), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179433] = 6, - ACTIONS(11346), 1, + [184183] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11900), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(12062), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179456] = 6, - ACTIONS(11328), 1, + [184206] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11902), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(12064), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179479] = 6, - ACTIONS(11242), 1, + [184229] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11904), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(12066), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179502] = 8, - ACTIONS(11364), 1, - aux_sym__section_parameter_token1, - ACTIONS(11366), 1, + [184252] = 6, + ACTIONS(11507), 1, + aux_sym__notification_token1, + ACTIONS(11511), 1, + aux_sym__text_token3, + ACTIONS(12068), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, - ACTIONS(11906), 1, - anon_sym_RPAREN, - ACTIONS(11908), 1, - anon_sym_COMMA, - STATE(4415), 1, - sym_text, - STATE(5365), 1, - sym__section_parameter, - ACTIONS(11368), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4067), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - [179529] = 6, - ACTIONS(11328), 1, + STATE(3686), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [184275] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11910), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(12070), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3928), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179552] = 6, - ACTIONS(11346), 1, + [184298] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11912), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(12072), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3929), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179575] = 6, - ACTIONS(11318), 1, + [184321] = 6, + ACTIONS(11595), 1, + anon_sym_ATendsuccess, + ACTIONS(12074), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(12080), 1, aux_sym__text_token3, - ACTIONS(11914), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(12077), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3851), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179598] = 6, - ACTIONS(11338), 1, + [184344] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11916), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(12083), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3852), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179621] = 6, - ACTIONS(11346), 1, + [184367] = 8, + ACTIONS(11499), 1, + aux_sym__section_parameter_token1, + ACTIONS(11501), 1, + aux_sym__text_token1, + ACTIONS(12085), 1, + anon_sym_RPAREN, + ACTIONS(12087), 1, + anon_sym_COMMA, + STATE(4674), 1, + sym_text, + STATE(5501), 1, + sym__section_parameter, + ACTIONS(11503), 2, + aux_sym__text_token2, + aux_sym__text_token3, + STATE(4103), 2, + sym__text, + aux_sym_php_only_repeat1, + [184394] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11918), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(12089), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3853), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179644] = 6, - ACTIONS(11328), 1, + [184417] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11920), 1, + ACTIONS(12091), 1, anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3854), 3, + STATE(3928), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179667] = 6, - ACTIONS(11338), 1, + [184440] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11922), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(12093), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3684), 3, + STATE(3929), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179690] = 6, - ACTIONS(11338), 1, + [184463] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11924), 1, + ACTIONS(12095), 1, anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, STATE(3930), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179713] = 6, - ACTIONS(11242), 1, + [184486] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11926), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(12097), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3931), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179736] = 6, - ACTIONS(11374), 1, - anon_sym_ATendafter, - ACTIONS(11928), 1, + [184509] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11934), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11931), 2, + ACTIONS(12099), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179759] = 6, - ACTIONS(11318), 1, + [184532] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11937), 1, + ACTIONS(12101), 1, anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3932), 3, + STATE(3859), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179782] = 6, - ACTIONS(11338), 1, + [184555] = 8, + ACTIONS(11499), 1, + aux_sym__section_parameter_token1, + ACTIONS(11501), 1, + aux_sym__text_token1, + ACTIONS(12103), 1, + anon_sym_RPAREN, + ACTIONS(12105), 1, + anon_sym_COMMA, + STATE(4674), 1, + sym_text, + STATE(5414), 1, + sym__section_parameter, + ACTIONS(11503), 2, + aux_sym__text_token2, + aux_sym__text_token3, + STATE(4103), 2, + sym__text, + aux_sym_php_only_repeat1, + [184582] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11939), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(12107), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3621), 3, + STATE(3908), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179805] = 6, - ACTIONS(11346), 1, + [184605] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11941), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(12109), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3622), 3, + STATE(3909), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179828] = 6, - ACTIONS(11318), 1, + [184628] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11943), 1, + ACTIONS(12111), 1, anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3876), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179851] = 6, - ACTIONS(11338), 1, + [184651] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11945), 1, + ACTIONS(12113), 1, anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3877), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179874] = 6, - ACTIONS(11346), 1, + [184674] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11947), 1, + ACTIONS(12115), 1, anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3881), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179897] = 6, - ACTIONS(11328), 1, + [184697] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11949), 1, + ACTIONS(12117), 1, anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3882), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179920] = 8, - ACTIONS(11364), 1, + [184720] = 8, + ACTIONS(11499), 1, aux_sym__section_parameter_token1, - ACTIONS(11366), 1, + ACTIONS(11501), 1, aux_sym__text_token1, - ACTIONS(11951), 1, + ACTIONS(12119), 1, anon_sym_RPAREN, - ACTIONS(11953), 1, + ACTIONS(12121), 1, anon_sym_COMMA, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5371), 1, + STATE(5476), 1, sym__section_parameter, - ACTIONS(11368), 2, + ACTIONS(11503), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4067), 2, + STATE(4103), 2, sym__text, aux_sym_php_only_repeat1, - [179947] = 6, - ACTIONS(11242), 1, + [184747] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11955), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(12123), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3857), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179970] = 8, - ACTIONS(11364), 1, + [184770] = 8, + ACTIONS(11499), 1, aux_sym__section_parameter_token1, - ACTIONS(11366), 1, + ACTIONS(11501), 1, aux_sym__text_token1, - ACTIONS(11957), 1, + ACTIONS(12125), 1, anon_sym_RPAREN, - ACTIONS(11959), 1, + ACTIONS(12127), 1, anon_sym_COMMA, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5405), 1, + STATE(5410), 1, sym__section_parameter, - ACTIONS(11368), 2, + ACTIONS(11503), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4067), 2, + STATE(4103), 2, sym__text, aux_sym_php_only_repeat1, - [179997] = 6, - ACTIONS(11318), 1, + [184797] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11961), 1, + ACTIONS(12129), 1, anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3870), 3, + STATE(3910), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180020] = 8, - ACTIONS(11364), 1, + [184820] = 6, + ACTIONS(11421), 1, + aux_sym__notification_token1, + ACTIONS(11425), 1, + aux_sym__text_token3, + ACTIONS(12131), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4125), 2, + sym__text, + aux_sym_php_only_repeat1, + STATE(3675), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [184843] = 8, + ACTIONS(11499), 1, aux_sym__section_parameter_token1, - ACTIONS(11366), 1, + ACTIONS(11501), 1, aux_sym__text_token1, - ACTIONS(11963), 1, + ACTIONS(12133), 1, anon_sym_RPAREN, - ACTIONS(11965), 1, + ACTIONS(12135), 1, anon_sym_COMMA, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5372), 1, + STATE(5475), 1, sym__section_parameter, - ACTIONS(11368), 2, + ACTIONS(11503), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4067), 2, + STATE(4103), 2, + sym__text, + aux_sym_php_only_repeat1, + [184870] = 6, + ACTIONS(11421), 1, + aux_sym__notification_token1, + ACTIONS(11425), 1, + aux_sym__text_token3, + ACTIONS(12137), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - [180047] = 6, - ACTIONS(11328), 1, + STATE(3675), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [184893] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11967), 1, + ACTIONS(12139), 1, anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180070] = 6, - ACTIONS(11346), 1, + [184916] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11969), 1, + ACTIONS(12141), 1, anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180093] = 6, - ACTIONS(11338), 1, + [184939] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11971), 1, + ACTIONS(12143), 1, anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180116] = 6, - ACTIONS(11318), 1, + [184962] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11973), 1, + ACTIONS(12145), 1, anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180139] = 6, - ACTIONS(11338), 1, + [184985] = 8, + ACTIONS(11499), 1, + aux_sym__section_parameter_token1, + ACTIONS(11501), 1, + aux_sym__text_token1, + ACTIONS(12147), 1, + anon_sym_RPAREN, + ACTIONS(12149), 1, + anon_sym_COMMA, + STATE(4674), 1, + sym_text, + STATE(5461), 1, + sym__section_parameter, + ACTIONS(11503), 2, + aux_sym__text_token2, + aux_sym__text_token3, + STATE(4103), 2, + sym__text, + aux_sym_php_only_repeat1, + [185012] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11975), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(12151), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3871), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180162] = 6, - ACTIONS(11346), 1, + [185035] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11977), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(12153), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3872), 3, + STATE(3751), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180185] = 6, - ACTIONS(11328), 1, + [185058] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(11979), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(12155), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3873), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180208] = 6, - ACTIONS(11318), 1, + [185081] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(11981), 1, + ACTIONS(12157), 1, anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3685), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180231] = 6, - ACTIONS(11318), 1, + [185104] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(11983), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(12159), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3724), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180254] = 6, - ACTIONS(11338), 1, + [185127] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(11985), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(12161), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3725), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180277] = 6, - ACTIONS(11374), 1, - anon_sym_ATendsuccess, - ACTIONS(11987), 1, + [185150] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11993), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(11990), 2, + ACTIONS(12163), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180300] = 8, - ACTIONS(11364), 1, + [185173] = 6, + ACTIONS(11421), 1, + aux_sym__notification_token1, + ACTIONS(11425), 1, + aux_sym__text_token3, + ACTIONS(12165), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4125), 2, + sym__text, + aux_sym_php_only_repeat1, + STATE(3675), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [185196] = 8, + ACTIONS(11499), 1, aux_sym__section_parameter_token1, - ACTIONS(11366), 1, + ACTIONS(11501), 1, aux_sym__text_token1, - ACTIONS(11996), 1, + ACTIONS(12167), 1, anon_sym_RPAREN, - ACTIONS(11998), 1, + ACTIONS(12169), 1, anon_sym_COMMA, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5362), 1, + STATE(5420), 1, sym__section_parameter, - ACTIONS(11368), 2, + ACTIONS(11503), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4067), 2, + STATE(4103), 2, sym__text, aux_sym_php_only_repeat1, - [180327] = 6, - ACTIONS(11346), 1, + [185223] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(12000), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(12171), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3726), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180350] = 6, - ACTIONS(11328), 1, + [185246] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(12002), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(12173), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3727), 3, + STATE(3915), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180373] = 6, - ACTIONS(11318), 1, + [185269] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(12004), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(12175), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3916), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180396] = 6, - ACTIONS(11346), 1, + [185292] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(12006), 1, + ACTIONS(12177), 1, anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3917), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180419] = 6, - ACTIONS(11338), 1, + [185315] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(12008), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(12179), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3918), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180442] = 6, - ACTIONS(11346), 1, + [185338] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(12010), 1, + ACTIONS(12181), 1, anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180465] = 6, - ACTIONS(11328), 1, + [185361] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(12012), 1, + ACTIONS(12183), 1, anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180488] = 6, - ACTIONS(11242), 1, + [185384] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(12014), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(12185), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180511] = 8, - ACTIONS(11364), 1, + [185407] = 6, + ACTIONS(11507), 1, + aux_sym__notification_token1, + ACTIONS(11511), 1, + aux_sym__text_token3, + ACTIONS(12187), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4153), 2, + sym__text, + aux_sym_php_only_repeat1, + STATE(3686), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [185430] = 6, + ACTIONS(11525), 1, + aux_sym__notification_token1, + ACTIONS(11529), 1, + aux_sym__text_token3, + ACTIONS(12189), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4137), 2, + sym__text, + aux_sym_php_only_repeat1, + STATE(3883), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [185453] = 6, + ACTIONS(11533), 1, + aux_sym__notification_token1, + ACTIONS(11537), 1, + aux_sym__text_token3, + ACTIONS(12191), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4144), 2, + sym__text, + aux_sym_php_only_repeat1, + STATE(3687), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [185476] = 8, + ACTIONS(11499), 1, aux_sym__section_parameter_token1, - ACTIONS(11366), 1, + ACTIONS(11501), 1, aux_sym__text_token1, - ACTIONS(12016), 1, + ACTIONS(12193), 1, anon_sym_RPAREN, - ACTIONS(12018), 1, + ACTIONS(12195), 1, anon_sym_COMMA, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5384), 1, + STATE(5429), 1, sym__section_parameter, - ACTIONS(11368), 2, + ACTIONS(11503), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4067), 2, + STATE(4103), 2, sym__text, aux_sym_php_only_repeat1, - [180538] = 6, - ACTIONS(11318), 1, + [185503] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(12020), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(12197), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3893), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180561] = 6, - ACTIONS(11338), 1, + [185526] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(12022), 1, + ACTIONS(12199), 1, anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3895), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180584] = 6, - ACTIONS(11242), 1, + [185549] = 6, + ACTIONS(11595), 1, + anon_sym_ATendbefore, + ACTIONS(12201), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(12207), 1, aux_sym__text_token3, - ACTIONS(12024), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(12204), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180607] = 6, - ACTIONS(11346), 1, + [185572] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(12026), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(12210), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3896), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180630] = 6, - ACTIONS(11328), 1, + [185595] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(12028), 1, + ACTIONS(12212), 1, anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3897), 3, + STATE(3970), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180653] = 6, - ACTIONS(11318), 1, + [185618] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(12030), 1, + ACTIONS(12214), 1, anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3793), 3, + STATE(3878), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180676] = 6, - ACTIONS(11242), 1, + [185641] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(12032), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(12216), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3879), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180699] = 6, - ACTIONS(11338), 1, + [185664] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(12034), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(12218), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3705), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180722] = 6, - ACTIONS(11338), 1, + [185687] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(12036), 1, + ACTIONS(12220), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4153), 2, + sym__text, + aux_sym_php_only_repeat1, + STATE(3926), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [185710] = 6, + ACTIONS(11525), 1, + aux_sym__notification_token1, + ACTIONS(11529), 1, + aux_sym__text_token3, + ACTIONS(12222), 1, anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3755), 3, + STATE(3921), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180745] = 6, - ACTIONS(11328), 1, + [185733] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(12038), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(12224), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3950), 3, + STATE(3912), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180768] = 6, - ACTIONS(11346), 1, + [185756] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(12040), 1, + ACTIONS(12226), 1, anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3951), 3, + STATE(3880), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180791] = 6, - ACTIONS(11338), 1, + [185779] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(12042), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(12228), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3952), 3, + STATE(3884), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180814] = 6, - ACTIONS(11318), 1, + [185802] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(12044), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(12230), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3953), 3, + STATE(3863), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180837] = 6, - ACTIONS(11318), 1, + [185825] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(12046), 1, + ACTIONS(12232), 1, anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3754), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180860] = 6, - ACTIONS(11328), 1, + [185848] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(12048), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(12234), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3956), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180883] = 6, - ACTIONS(11318), 1, + [185871] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(12050), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(12236), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180906] = 6, - ACTIONS(11338), 1, + [185894] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(12052), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(12238), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3971), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180929] = 6, - ACTIONS(11346), 1, + [185917] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(12054), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(12240), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3974), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180952] = 6, - ACTIONS(11328), 1, + [185940] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(12056), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(12242), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3983), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180975] = 6, - ACTIONS(11346), 1, + [185963] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(12058), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(12244), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3836), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180998] = 8, - ACTIONS(11364), 1, + [185986] = 8, + ACTIONS(11499), 1, aux_sym__section_parameter_token1, - ACTIONS(11366), 1, + ACTIONS(11501), 1, aux_sym__text_token1, - ACTIONS(12060), 1, + ACTIONS(12246), 1, anon_sym_RPAREN, - ACTIONS(12062), 1, + ACTIONS(12248), 1, + anon_sym_COMMA, + STATE(4674), 1, + sym_text, + STATE(5380), 1, + sym__section_parameter, + ACTIONS(11503), 2, + aux_sym__text_token2, + aux_sym__text_token3, + STATE(4103), 2, + sym__text, + aux_sym_php_only_repeat1, + [186013] = 8, + ACTIONS(11499), 1, + aux_sym__section_parameter_token1, + ACTIONS(11501), 1, + aux_sym__text_token1, + ACTIONS(12250), 1, + anon_sym_RPAREN, + ACTIONS(12252), 1, anon_sym_COMMA, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5392), 1, + STATE(5464), 1, sym__section_parameter, - ACTIONS(11368), 2, + ACTIONS(11503), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4067), 2, + STATE(4103), 2, sym__text, aux_sym_php_only_repeat1, - [181025] = 6, - ACTIONS(11242), 1, + [186040] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(12064), 1, + ACTIONS(12254), 1, anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181048] = 6, - ACTIONS(11318), 1, + [186063] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(12066), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(12256), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3915), 3, + STATE(3862), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181071] = 6, - ACTIONS(11338), 1, + [186086] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(12068), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(12258), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3916), 3, + STATE(3831), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181094] = 6, - ACTIONS(11346), 1, + [186109] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(12070), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(12260), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3917), 3, + STATE(3801), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181117] = 6, - ACTIONS(11328), 1, + [186132] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(12072), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(12262), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3918), 3, + STATE(3994), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181140] = 8, - ACTIONS(11364), 1, - aux_sym__section_parameter_token1, - ACTIONS(11366), 1, - aux_sym__text_token1, - ACTIONS(12074), 1, - anon_sym_RPAREN, - ACTIONS(12076), 1, - anon_sym_COMMA, - STATE(4415), 1, - sym_text, - STATE(5322), 1, - sym__section_parameter, - ACTIONS(11368), 2, - aux_sym__text_token2, - aux_sym__text_token3, - STATE(4067), 2, - sym__text, - aux_sym_php_only_repeat1, - [181167] = 6, - ACTIONS(11346), 1, + [186155] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(12078), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(12264), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3959), 3, + STATE(3993), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181190] = 6, - ACTIONS(11328), 1, + [186178] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(12080), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(12266), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3990), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181213] = 6, - ACTIONS(11346), 1, + [186201] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(12082), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(12268), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3947), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181236] = 6, - ACTIONS(11338), 1, + [186224] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(12084), 1, + ACTIONS(12270), 1, anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3948), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181259] = 6, - ACTIONS(11338), 1, + [186247] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(12086), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(12272), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3960), 3, + STATE(3949), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181282] = 6, - ACTIONS(11318), 1, + [186270] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(12088), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(12274), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3953), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181305] = 8, - ACTIONS(11364), 1, - aux_sym__section_parameter_token1, - ACTIONS(11366), 1, + [186293] = 6, + ACTIONS(11421), 1, + aux_sym__notification_token1, + ACTIONS(11425), 1, + aux_sym__text_token3, + ACTIONS(12276), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, aux_sym__text_token1, - ACTIONS(12090), 1, - anon_sym_RPAREN, - ACTIONS(12092), 1, - anon_sym_COMMA, - STATE(4415), 1, - sym_text, - STATE(5398), 1, - sym__section_parameter, - ACTIONS(11368), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4067), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - [181332] = 8, - ACTIONS(11364), 1, - aux_sym__section_parameter_token1, - ACTIONS(11366), 1, + STATE(3675), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [186316] = 6, + ACTIONS(11515), 1, + aux_sym__notification_token1, + ACTIONS(11519), 1, + aux_sym__text_token3, + ACTIONS(12278), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, - ACTIONS(12094), 1, - anon_sym_RPAREN, - ACTIONS(12096), 1, - anon_sym_COMMA, - STATE(4415), 1, - sym_text, - STATE(5399), 1, - sym__section_parameter, - ACTIONS(11368), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4067), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - [181359] = 6, - ACTIONS(11318), 1, + STATE(3935), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [186339] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(12098), 1, + ACTIONS(12280), 1, anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3961), 3, + STATE(3753), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181382] = 6, - ACTIONS(11242), 1, + [186362] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(12100), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(12282), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181405] = 6, - ACTIONS(11318), 1, + [186385] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(12102), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(12284), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181428] = 6, - ACTIONS(11338), 1, + [186408] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(12104), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(12286), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3792), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181451] = 6, - ACTIONS(11346), 1, + [186431] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(12106), 1, + ACTIONS(12288), 1, anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3779), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181474] = 6, - ACTIONS(11328), 1, + [186454] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(12108), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(12290), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181497] = 6, - ACTIONS(11242), 1, + [186477] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(12110), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(12292), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181520] = 8, - ACTIONS(11364), 1, - aux_sym__section_parameter_token1, - ACTIONS(11366), 1, - aux_sym__text_token1, - ACTIONS(12112), 1, - anon_sym_RPAREN, - ACTIONS(12114), 1, - anon_sym_COMMA, - STATE(4415), 1, - sym_text, - STATE(5401), 1, - sym__section_parameter, - ACTIONS(11368), 2, - aux_sym__text_token2, - aux_sym__text_token3, - STATE(4067), 2, - sym__text, - aux_sym_php_only_repeat1, - [181547] = 6, - ACTIONS(11328), 1, + [186500] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(12116), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(12294), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3623), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181570] = 6, - ACTIONS(11318), 1, + [186523] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(12118), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(12296), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3937), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181593] = 6, - ACTIONS(11338), 1, + [186546] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(12120), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(12298), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3938), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181616] = 6, - ACTIONS(11346), 1, + [186569] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(12122), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(12300), 1, + anon_sym_ATendbefore, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3939), 3, + STATE(3764), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181639] = 6, - ACTIONS(11328), 1, + [186592] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(12124), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(12302), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3940), 3, + STATE(3762), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181662] = 6, - ACTIONS(11242), 1, + [186615] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11246), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(12126), 1, - anon_sym_ATenderror, - ACTIONS(11244), 2, + ACTIONS(12304), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4109), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3620), 3, + STATE(3765), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181685] = 8, - ACTIONS(11364), 1, + [186638] = 8, + ACTIONS(11499), 1, aux_sym__section_parameter_token1, - ACTIONS(11366), 1, + ACTIONS(11501), 1, aux_sym__text_token1, - ACTIONS(12128), 1, + ACTIONS(12306), 1, anon_sym_RPAREN, - ACTIONS(12130), 1, + ACTIONS(12308), 1, anon_sym_COMMA, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5393), 1, + STATE(5447), 1, sym__section_parameter, - ACTIONS(11368), 2, + ACTIONS(11503), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4067), 2, + STATE(4103), 2, sym__text, aux_sym_php_only_repeat1, - [181712] = 6, - ACTIONS(11328), 1, + [186665] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(12132), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(12310), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181735] = 6, - ACTIONS(11346), 1, + [186688] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(12134), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(12312), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181758] = 6, - ACTIONS(11338), 1, + [186711] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(12136), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(12314), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3975), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181781] = 6, - ACTIONS(11318), 1, + [186734] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(12138), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(12316), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181804] = 6, - ACTIONS(11328), 1, + [186757] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(12140), 1, - anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(12318), 1, + anon_sym_ATendsuccess, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3976), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181827] = 6, - ACTIONS(11346), 1, + [186780] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(12142), 1, + ACTIONS(12320), 1, anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3880), 3, + STATE(3977), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181850] = 6, - ACTIONS(11328), 1, + [186803] = 6, + ACTIONS(11515), 1, aux_sym__notification_token1, - ACTIONS(11332), 1, + ACTIONS(11519), 1, aux_sym__text_token3, - ACTIONS(12144), 1, + ACTIONS(12322), 1, anon_sym_ATendbefore, - ACTIONS(11330), 2, + ACTIONS(11517), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4112), 2, + STATE(4158), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3978), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181873] = 6, - ACTIONS(11338), 1, + [186826] = 6, + ACTIONS(11533), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11537), 1, aux_sym__text_token3, - ACTIONS(12146), 1, - anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(12324), 1, + anon_sym_ATendfinished, + ACTIONS(11535), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4144), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3650), 3, + STATE(3687), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181896] = 6, - ACTIONS(11374), 1, - anon_sym_ATendfinished, - ACTIONS(12148), 1, + [186849] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(12154), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(12151), 2, + ACTIONS(12326), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181919] = 6, - ACTIONS(11346), 1, + [186872] = 6, + ACTIONS(11421), 1, aux_sym__notification_token1, - ACTIONS(11350), 1, + ACTIONS(11425), 1, aux_sym__text_token3, - ACTIONS(12157), 1, - anon_sym_ATendafter, - ACTIONS(11348), 2, + ACTIONS(12328), 1, + anon_sym_ATenderror, + ACTIONS(11423), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4085), 2, + STATE(4125), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3866), 3, + STATE(3675), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181942] = 6, - ACTIONS(11338), 1, + [186895] = 6, + ACTIONS(11525), 1, aux_sym__notification_token1, - ACTIONS(11342), 1, + ACTIONS(11529), 1, aux_sym__text_token3, - ACTIONS(12159), 1, + ACTIONS(12330), 1, anon_sym_ATendsuccess, - ACTIONS(11340), 2, + ACTIONS(11527), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4093), 2, + STATE(4137), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3889), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181965] = 6, - ACTIONS(11318), 1, + [186918] = 6, + ACTIONS(11507), 1, aux_sym__notification_token1, - ACTIONS(11322), 1, + ACTIONS(11511), 1, aux_sym__text_token3, - ACTIONS(12161), 1, - anon_sym_ATendfinished, - ACTIONS(11320), 2, + ACTIONS(12332), 1, + anon_sym_ATendafter, + ACTIONS(11509), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4074), 2, + STATE(4153), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181988] = 7, - ACTIONS(12163), 1, - anon_sym_RPAREN, - ACTIONS(12165), 1, + [186941] = 8, + ACTIONS(11499), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, + ACTIONS(11501), 1, aux_sym__text_token1, - STATE(4415), 1, + ACTIONS(12334), 1, + anon_sym_RPAREN, + ACTIONS(12336), 1, + anon_sym_COMMA, + STATE(4674), 1, sym_text, - STATE(6631), 1, + STATE(5454), 1, sym__section_parameter, - ACTIONS(12169), 2, + ACTIONS(11503), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4125), 2, + STATE(4103), 2, sym__text, aux_sym_php_only_repeat1, - [182012] = 7, - ACTIONS(12165), 1, + [186968] = 8, + ACTIONS(11499), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, + ACTIONS(11501), 1, aux_sym__text_token1, - ACTIONS(12171), 1, + ACTIONS(12338), 1, anon_sym_RPAREN, - STATE(4415), 1, + ACTIONS(12340), 1, + anon_sym_COMMA, + STATE(4674), 1, sym_text, - STATE(6160), 1, + STATE(5455), 1, sym__section_parameter, - ACTIONS(12169), 2, + ACTIONS(11503), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4125), 2, + STATE(4103), 2, sym__text, aux_sym_php_only_repeat1, - [182036] = 7, - ACTIONS(12165), 1, - aux_sym__section_parameter_token1, - ACTIONS(12167), 1, + [186995] = 7, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(12342), 1, + anon_sym_ATendphp, + ACTIONS(12346), 1, + aux_sym__text_token3, + STATE(2793), 1, + sym__directive_parameter, + STATE(5703), 1, + sym_php_only, + ACTIONS(12344), 2, aux_sym__text_token1, - ACTIONS(12173), 1, - anon_sym_RPAREN, - STATE(4415), 1, - sym_text, - STATE(6461), 1, - sym__section_parameter, - ACTIONS(12169), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4125), 2, + STATE(4243), 2, sym__text, aux_sym_php_only_repeat1, - [182060] = 7, - ACTIONS(12165), 1, - aux_sym__section_parameter_token1, - ACTIONS(12167), 1, + [187019] = 7, + ACTIONS(11327), 1, + anon_sym_LPAREN2, + ACTIONS(12346), 1, + aux_sym__text_token3, + ACTIONS(12348), 1, + anon_sym_ATendphp, + STATE(2544), 1, + sym__directive_parameter, + STATE(5824), 1, + sym_php_only, + ACTIONS(12344), 2, aux_sym__text_token1, - ACTIONS(12175), 1, - anon_sym_RPAREN, - STATE(4415), 1, - sym_text, - STATE(6457), 1, - sym__section_parameter, - ACTIONS(12169), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4125), 2, + STATE(4243), 2, sym__text, aux_sym_php_only_repeat1, - [182084] = 7, - ACTIONS(12165), 1, - aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12177), 1, + [187043] = 7, + ACTIONS(12350), 1, anon_sym_RPAREN, - STATE(4415), 1, + ACTIONS(12352), 1, + aux_sym__section_parameter_token1, + ACTIONS(12356), 1, + aux_sym__text_token2, + STATE(4674), 1, sym_text, - STATE(6203), 1, + STATE(5987), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [182108] = 7, - ACTIONS(10544), 1, + [187067] = 7, + ACTIONS(10717), 1, anon_sym_LPAREN2, - ACTIONS(12179), 1, - anon_sym_ATendphp, - ACTIONS(12183), 1, + ACTIONS(12346), 1, aux_sym__text_token3, - STATE(856), 1, + ACTIONS(12358), 1, + anon_sym_ATendphp, + STATE(858), 1, sym__directive_parameter, - STATE(6243), 1, + STATE(6700), 1, sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12344), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4243), 2, + sym__text, + aux_sym_php_only_repeat1, + [187091] = 7, + ACTIONS(12352), 1, + aux_sym__section_parameter_token1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12360), 1, + anon_sym_RPAREN, + STATE(4674), 1, + sym_text, + STATE(5947), 1, + sym__section_parameter, + ACTIONS(12354), 2, aux_sym__text_token1, + aux_sym__text_token3, + STATE(4190), 2, + sym__text, + aux_sym_php_only_repeat1, + [187115] = 7, + ACTIONS(12352), 1, + aux_sym__section_parameter_token1, + ACTIONS(12356), 1, aux_sym__text_token2, - STATE(4192), 2, + ACTIONS(12362), 1, + anon_sym_RPAREN, + STATE(4674), 1, + sym_text, + STATE(6257), 1, + sym__section_parameter, + ACTIONS(12354), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [182132] = 7, - ACTIONS(10662), 1, + [187139] = 7, + ACTIONS(11349), 1, anon_sym_LPAREN2, - ACTIONS(12183), 1, + ACTIONS(12346), 1, aux_sym__text_token3, - ACTIONS(12185), 1, + ACTIONS(12364), 1, anon_sym_ATendphp, - STATE(1773), 1, + STATE(2212), 1, sym__directive_parameter, - STATE(6198), 1, + STATE(5984), 1, sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12344), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4192), 2, + STATE(4243), 2, sym__text, aux_sym_php_only_repeat1, - [182156] = 7, - ACTIONS(12165), 1, + [187163] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12187), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12366), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(6202), 1, + STATE(6258), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [182180] = 7, - ACTIONS(12165), 1, + [187187] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12189), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12368), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(6201), 1, + STATE(5988), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [182204] = 7, - ACTIONS(10680), 1, - anon_sym_LPAREN2, - ACTIONS(12183), 1, - aux_sym__text_token3, - ACTIONS(12191), 1, - anon_sym_ATendphp, - STATE(3103), 1, - sym__directive_parameter, - STATE(6077), 1, - sym_php_only, - ACTIONS(12181), 2, - aux_sym__text_token1, + [187211] = 7, + ACTIONS(12352), 1, + aux_sym__section_parameter_token1, + ACTIONS(12356), 1, aux_sym__text_token2, - STATE(4192), 2, + ACTIONS(12370), 1, + anon_sym_RPAREN, + STATE(4674), 1, + sym_text, + STATE(5532), 1, + sym__section_parameter, + ACTIONS(12354), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [182228] = 7, - ACTIONS(12165), 1, + [187235] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12372), 1, + anon_sym_RPAREN, + STATE(4674), 1, + sym_text, + STATE(5533), 1, + sym__section_parameter, + ACTIONS(12354), 2, aux_sym__text_token1, - ACTIONS(12193), 1, + aux_sym__text_token3, + STATE(4190), 2, + sym__text, + aux_sym_php_only_repeat1, + [187259] = 7, + ACTIONS(12352), 1, + aux_sym__section_parameter_token1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12374), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5975), 1, + STATE(5948), 1, sym__section_parameter, - ACTIONS(12169), 2, + ACTIONS(12354), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4190), 2, + sym__text, + aux_sym_php_only_repeat1, + [187283] = 7, + ACTIONS(12352), 1, + aux_sym__section_parameter_token1, + ACTIONS(12356), 1, aux_sym__text_token2, + ACTIONS(12376), 1, + anon_sym_RPAREN, + STATE(4674), 1, + sym_text, + STATE(6408), 1, + sym__section_parameter, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [182252] = 7, - ACTIONS(10586), 1, + [187307] = 7, + ACTIONS(11291), 1, anon_sym_LPAREN2, - ACTIONS(12183), 1, + ACTIONS(12346), 1, aux_sym__text_token3, - ACTIONS(12195), 1, + ACTIONS(12378), 1, anon_sym_ATendphp, - STATE(1260), 1, + STATE(3042), 1, sym__directive_parameter, - STATE(6453), 1, + STATE(5550), 1, sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12344), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4192), 2, + STATE(4243), 2, sym__text, aux_sym_php_only_repeat1, - [182276] = 7, - ACTIONS(10500), 1, + [187331] = 7, + ACTIONS(10687), 1, anon_sym_LPAREN2, - ACTIONS(12183), 1, + ACTIONS(12346), 1, aux_sym__text_token3, - ACTIONS(12197), 1, + ACTIONS(12380), 1, anon_sym_ATendphp, - STATE(1856), 1, + STATE(1626), 1, sym__directive_parameter, - STATE(6155), 1, + STATE(6254), 1, sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12344), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4192), 2, + STATE(4243), 2, sym__text, aux_sym_php_only_repeat1, - [182300] = 7, - ACTIONS(12165), 1, - aux_sym__section_parameter_token1, - ACTIONS(12167), 1, + [187355] = 7, + ACTIONS(10667), 1, + anon_sym_LPAREN2, + ACTIONS(12346), 1, + aux_sym__text_token3, + ACTIONS(12382), 1, + anon_sym_ATendphp, + STATE(1540), 1, + sym__directive_parameter, + STATE(6291), 1, + sym_php_only, + ACTIONS(12344), 2, aux_sym__text_token1, - ACTIONS(12199), 1, - anon_sym_RPAREN, - STATE(4415), 1, - sym_text, - STATE(6117), 1, - sym__section_parameter, - ACTIONS(12169), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4125), 2, + STATE(4243), 2, sym__text, aux_sym_php_only_repeat1, - [182324] = 7, - ACTIONS(12165), 1, + [187379] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12201), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12384), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(6112), 1, + STATE(6593), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [182348] = 7, - ACTIONS(10594), 1, + [187403] = 7, + ACTIONS(11347), 1, anon_sym_LPAREN2, - ACTIONS(12183), 1, + ACTIONS(12346), 1, aux_sym__text_token3, - ACTIONS(12203), 1, + ACTIONS(12386), 1, anon_sym_ATendphp, - STATE(1356), 1, + STATE(2295), 1, sym__directive_parameter, - STATE(6107), 1, + STATE(5944), 1, sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12344), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4192), 2, + STATE(4243), 2, sym__text, aux_sym_php_only_repeat1, - [182372] = 7, - ACTIONS(11198), 1, + [187427] = 7, + ACTIONS(11297), 1, anon_sym_LPAREN2, - ACTIONS(12183), 1, + ACTIONS(12346), 1, aux_sym__text_token3, - ACTIONS(12205), 1, + ACTIONS(12388), 1, anon_sym_ATendphp, - STATE(2014), 1, + STATE(2959), 1, sym__directive_parameter, - STATE(6497), 1, + STATE(5570), 1, sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12344), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4192), 2, + STATE(4243), 2, sym__text, aux_sym_php_only_repeat1, - [182396] = 7, - ACTIONS(12165), 1, + [187451] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12207), 1, - anon_sym_RPAREN, - STATE(4415), 1, - sym_text, - STATE(6503), 1, - sym__section_parameter, - ACTIONS(12169), 2, + ACTIONS(12356), 1, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4125), 2, - sym__text, - aux_sym_php_only_repeat1, - [182420] = 7, - ACTIONS(12165), 1, - aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12209), 1, + ACTIONS(12390), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(6070), 1, + STATE(6407), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [182444] = 7, - ACTIONS(12165), 1, + [187475] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12211), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12392), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(6065), 1, + STATE(6592), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [182468] = 7, - ACTIONS(12165), 1, + [187499] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12213), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12394), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(6507), 1, + STATE(6294), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [182492] = 7, - ACTIONS(10512), 1, + [187523] = 7, + ACTIONS(10735), 1, anon_sym_LPAREN2, - ACTIONS(12183), 1, + ACTIONS(12346), 1, aux_sym__text_token3, - ACTIONS(12215), 1, + ACTIONS(12396), 1, anon_sym_ATendphp, - STATE(1163), 1, + STATE(979), 1, sym__directive_parameter, - STATE(6059), 1, + STATE(6663), 1, sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12344), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4192), 2, + STATE(4243), 2, sym__text, aux_sym_php_only_repeat1, - [182516] = 7, - ACTIONS(12165), 1, + [187547] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12217), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12398), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(6021), 1, + STATE(6703), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [182540] = 7, - ACTIONS(12165), 1, + [187571] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12219), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12400), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(6018), 1, + STATE(6295), 1, sym__section_parameter, - ACTIONS(12169), 2, + ACTIONS(12354), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4190), 2, + sym__text, + aux_sym_php_only_repeat1, + [187595] = 7, + ACTIONS(11027), 1, + anon_sym_LPAREN2, + ACTIONS(12346), 1, + aux_sym__text_token3, + ACTIONS(12402), 1, + anon_sym_ATendphp, + STATE(3550), 1, + sym__directive_parameter, + STATE(6589), 1, + sym_php_only, + ACTIONS(12344), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4243), 2, + sym__text, + aux_sym_php_only_repeat1, + [187619] = 7, + ACTIONS(12352), 1, + aux_sym__section_parameter_token1, + ACTIONS(12356), 1, aux_sym__text_token2, + ACTIONS(12404), 1, + anon_sym_RPAREN, + STATE(4674), 1, + sym_text, + STATE(6220), 1, + sym__section_parameter, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [182564] = 7, - ACTIONS(10510), 1, + [187643] = 7, + ACTIONS(10677), 1, anon_sym_LPAREN2, - ACTIONS(12183), 1, + ACTIONS(12346), 1, aux_sym__text_token3, - ACTIONS(12221), 1, + ACTIONS(12406), 1, anon_sym_ATendphp, - STATE(1690), 1, + STATE(1275), 1, sym__directive_parameter, - STATE(6194), 1, + STATE(6404), 1, sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12344), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4192), 2, + STATE(4243), 2, sym__text, aux_sym_php_only_repeat1, - [182588] = 7, - ACTIONS(10524), 1, + [187667] = 7, + ACTIONS(11379), 1, anon_sym_LPAREN2, - ACTIONS(12183), 1, + ACTIONS(12346), 1, aux_sym__text_token3, - ACTIONS(12223), 1, + ACTIONS(12408), 1, anon_sym_ATendphp, - STATE(1076), 1, + STATE(2025), 1, sym__directive_parameter, - STATE(6015), 1, + STATE(6441), 1, sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12344), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4192), 2, + STATE(4243), 2, sym__text, aux_sym_php_only_repeat1, - [182612] = 7, - ACTIONS(12165), 1, + [187691] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12225), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12410), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5978), 1, + STATE(5585), 1, sym__section_parameter, - ACTIONS(12169), 2, + ACTIONS(12354), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4190), 2, + sym__text, + aux_sym_php_only_repeat1, + [187715] = 7, + ACTIONS(12352), 1, + aux_sym__section_parameter_token1, + ACTIONS(12356), 1, aux_sym__text_token2, + ACTIONS(12412), 1, + anon_sym_RPAREN, + STATE(4674), 1, + sym_text, + STATE(5586), 1, + sym__section_parameter, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [182636] = 7, - ACTIONS(10596), 1, + [187739] = 7, + ACTIONS(11371), 1, anon_sym_LPAREN2, - ACTIONS(12183), 1, + ACTIONS(12346), 1, aux_sym__text_token3, - ACTIONS(12227), 1, + ACTIONS(12414), 1, anon_sym_ATendphp, - STATE(775), 1, + STATE(3113), 1, sym__directive_parameter, - STATE(6022), 1, + STATE(6626), 1, sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12344), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4192), 2, + STATE(4243), 2, sym__text, aux_sym_php_only_repeat1, - [182660] = 7, - ACTIONS(12165), 1, + [187763] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12229), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12416), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5976), 1, + STATE(5598), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [182684] = 7, - ACTIONS(12165), 1, + [187787] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12231), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12418), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(6239), 1, + STATE(6219), 1, sym__section_parameter, - ACTIONS(12169), 2, + ACTIONS(12354), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4190), 2, + sym__text, + aux_sym_php_only_repeat1, + [187811] = 7, + ACTIONS(12352), 1, + aux_sym__section_parameter_token1, + ACTIONS(12356), 1, aux_sym__text_token2, + ACTIONS(12420), 1, + anon_sym_RPAREN, + STATE(4674), 1, + sym_text, + STATE(5909), 1, + sym__section_parameter, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [182708] = 7, - ACTIONS(12165), 1, + [187835] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12422), 1, + anon_sym_RPAREN, + STATE(4674), 1, + sym_text, + STATE(5908), 1, + sym__section_parameter, + ACTIONS(12354), 2, aux_sym__text_token1, - ACTIONS(12233), 1, + aux_sym__text_token3, + STATE(4190), 2, + sym__text, + aux_sym_php_only_repeat1, + [187859] = 7, + ACTIONS(12352), 1, + aux_sym__section_parameter_token1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12424), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(6242), 1, + STATE(6444), 1, sym__section_parameter, - ACTIONS(12169), 2, + ACTIONS(12354), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4190), 2, + sym__text, + aux_sym_php_only_repeat1, + [187883] = 7, + ACTIONS(12352), 1, + aux_sym__section_parameter_token1, + ACTIONS(12356), 1, aux_sym__text_token2, + ACTIONS(12426), 1, + anon_sym_RPAREN, + STATE(4674), 1, + sym_text, + STATE(6704), 1, + sym__section_parameter, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [182732] = 7, - ACTIONS(12165), 1, + [187907] = 7, + ACTIONS(10679), 1, + anon_sym_LPAREN2, + ACTIONS(12346), 1, + aux_sym__text_token3, + ACTIONS(12428), 1, + anon_sym_ATendphp, + STATE(1710), 1, + sym__directive_parameter, + STATE(6216), 1, + sym_php_only, + ACTIONS(12344), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4243), 2, + sym__text, + aux_sym_php_only_repeat1, + [187931] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12430), 1, + anon_sym_RPAREN, + STATE(4674), 1, + sym_text, + STATE(5710), 1, + sym__section_parameter, + ACTIONS(12354), 2, aux_sym__text_token1, - ACTIONS(12235), 1, + aux_sym__text_token3, + STATE(4190), 2, + sym__text, + aux_sym_php_only_repeat1, + [187955] = 7, + ACTIONS(12352), 1, + aux_sym__section_parameter_token1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12432), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5977), 1, + STATE(6445), 1, sym__section_parameter, - ACTIONS(12169), 2, + ACTIONS(12354), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4190), 2, + sym__text, + aux_sym_php_only_repeat1, + [187979] = 7, + ACTIONS(12352), 1, + aux_sym__section_parameter_token1, + ACTIONS(12356), 1, aux_sym__text_token2, + ACTIONS(12434), 1, + anon_sym_RPAREN, + STATE(4674), 1, + sym_text, + STATE(5604), 1, + sym__section_parameter, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [182756] = 7, - ACTIONS(11180), 1, + [188003] = 7, + ACTIONS(11339), 1, anon_sym_LPAREN2, - ACTIONS(12183), 1, + ACTIONS(12346), 1, aux_sym__text_token3, - ACTIONS(12237), 1, + ACTIONS(12436), 1, anon_sym_ATendphp, - STATE(2186), 1, + STATE(2378), 1, sym__directive_parameter, - STATE(5972), 1, + STATE(5905), 1, sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12344), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4192), 2, + STATE(4243), 2, sym__text, aux_sym_php_only_repeat1, - [182780] = 7, - ACTIONS(12165), 1, - aux_sym__section_parameter_token1, - ACTIONS(12167), 1, + [188027] = 7, + ACTIONS(10693), 1, + anon_sym_LPAREN2, + ACTIONS(12346), 1, + aux_sym__text_token3, + ACTIONS(12438), 1, + anon_sym_ATendphp, + STATE(1073), 1, + sym__directive_parameter, + STATE(6023), 1, + sym_php_only, + ACTIONS(12344), 2, aux_sym__text_token1, - ACTIONS(12239), 1, + aux_sym__text_token2, + STATE(4243), 2, + sym__text, + aux_sym_php_only_repeat1, + [188051] = 7, + ACTIONS(12352), 1, + aux_sym__section_parameter_token1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12440), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5525), 1, + STATE(6666), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [182804] = 7, - ACTIONS(11154), 1, + [188075] = 7, + ACTIONS(11283), 1, anon_sym_LPAREN2, - ACTIONS(12183), 1, + ACTIONS(12346), 1, aux_sym__text_token3, - ACTIONS(12241), 1, + ACTIONS(12442), 1, anon_sym_ATendphp, - STATE(2514), 1, + STATE(3125), 1, sym__directive_parameter, - STATE(5781), 1, + STATE(5622), 1, sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12344), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4192), 2, + STATE(4243), 2, sym__text, aux_sym_php_only_repeat1, - [182828] = 7, - ACTIONS(11182), 1, + [188099] = 7, + ACTIONS(10871), 1, anon_sym_LPAREN2, - ACTIONS(12183), 1, + ACTIONS(12346), 1, aux_sym__text_token3, - ACTIONS(12243), 1, + ACTIONS(12444), 1, anon_sym_ATendphp, - STATE(2100), 1, + STATE(3278), 1, sym__directive_parameter, - STATE(6544), 1, + STATE(6812), 1, sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12344), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4192), 2, + STATE(4243), 2, sym__text, aux_sym_php_only_repeat1, - [182852] = 7, - ACTIONS(12165), 1, + [188123] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12245), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12446), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(6549), 1, + STATE(6556), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [182876] = 7, - ACTIONS(12165), 1, + [188147] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12247), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12448), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5935), 1, + STATE(6629), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [182900] = 7, - ACTIONS(12165), 1, + [188171] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12249), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12450), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5934), 1, + STATE(6183), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [182924] = 7, - ACTIONS(12165), 1, + [188195] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12251), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12452), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(6553), 1, + STATE(6182), 1, sym__section_parameter, - ACTIONS(12169), 2, + ACTIONS(12354), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4190), 2, + sym__text, + aux_sym_php_only_repeat1, + [188219] = 7, + ACTIONS(12352), 1, + aux_sym__section_parameter_token1, + ACTIONS(12356), 1, aux_sym__text_token2, + ACTIONS(12454), 1, + anon_sym_RPAREN, + STATE(4674), 1, + sym_text, + STATE(6026), 1, + sym__section_parameter, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [182948] = 7, - ACTIONS(11172), 1, + [188243] = 7, + ACTIONS(10877), 1, anon_sym_LPAREN2, - ACTIONS(12183), 1, + ACTIONS(12346), 1, aux_sym__text_token3, - ACTIONS(12253), 1, + ACTIONS(12456), 1, anon_sym_ATendphp, - STATE(2268), 1, + STATE(3388), 1, sym__directive_parameter, - STATE(5929), 1, + STATE(6775), 1, sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12344), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4192), 2, + STATE(4243), 2, sym__text, aux_sym_php_only_repeat1, - [182972] = 7, - ACTIONS(12165), 1, - aux_sym__section_parameter_token1, - ACTIONS(12167), 1, + [188267] = 7, + ACTIONS(11303), 1, + anon_sym_LPAREN2, + ACTIONS(12346), 1, + aux_sym__text_token3, + ACTIONS(12458), 1, + anon_sym_ATendphp, + STATE(2876), 1, + sym__directive_parameter, + STATE(5657), 1, + sym_php_only, + ACTIONS(12344), 2, aux_sym__text_token1, - ACTIONS(12255), 1, + aux_sym__text_token2, + STATE(4243), 2, + sym__text, + aux_sym_php_only_repeat1, + [188291] = 7, + ACTIONS(12352), 1, + aux_sym__section_parameter_token1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12460), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5890), 1, + STATE(6027), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [182996] = 7, - ACTIONS(12165), 1, + [188315] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12257), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12462), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5882), 1, + STATE(5870), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [183020] = 7, - ACTIONS(10518), 1, + [188339] = 7, + ACTIONS(10791), 1, anon_sym_LPAREN2, - ACTIONS(12183), 1, + ACTIONS(12346), 1, aux_sym__text_token3, - ACTIONS(12259), 1, + ACTIONS(12464), 1, anon_sym_ATendphp, - STATE(1607), 1, + STATE(1794), 1, sym__directive_parameter, - STATE(6280), 1, + STATE(6179), 1, sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12344), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4192), 2, + STATE(4243), 2, sym__text, aux_sym_php_only_repeat1, - [183044] = 7, - ACTIONS(12165), 1, + [188363] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12261), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12466), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(6285), 1, + STATE(6555), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, - aux_sym__text_token3, - STATE(4125), 2, - sym__text, - aux_sym_php_only_repeat1, - [183068] = 7, - ACTIONS(11166), 1, - anon_sym_LPAREN2, - ACTIONS(12183), 1, - aux_sym__text_token3, - ACTIONS(12263), 1, - anon_sym_ATendphp, - STATE(2350), 1, - sym__directive_parameter, - STATE(5878), 1, - sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12354), 2, aux_sym__text_token1, - aux_sym__text_token2, - STATE(4192), 2, + aux_sym__text_token3, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [183092] = 7, - ACTIONS(12165), 1, + [188387] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12265), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12468), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5840), 1, + STATE(5793), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [183116] = 7, - ACTIONS(12165), 1, + [188411] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12267), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12470), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(6290), 1, + STATE(6630), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [183140] = 7, - ACTIONS(12165), 1, + [188435] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12269), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12472), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5837), 1, + STATE(6778), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [183164] = 7, - ACTIONS(11160), 1, + [188459] = 7, + ACTIONS(11199), 1, anon_sym_LPAREN2, - ACTIONS(12183), 1, + ACTIONS(12346), 1, aux_sym__text_token3, - ACTIONS(12271), 1, + ACTIONS(12474), 1, anon_sym_ATendphp, - STATE(2432), 1, + STATE(3363), 1, sym__directive_parameter, - STATE(5810), 1, + STATE(6552), 1, sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12344), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4192), 2, + STATE(4243), 2, sym__text, aux_sym_php_only_repeat1, - [183188] = 7, - ACTIONS(11138), 1, + [188483] = 7, + ACTIONS(10723), 1, anon_sym_LPAREN2, - ACTIONS(12183), 1, + ACTIONS(12346), 1, aux_sym__text_token3, - ACTIONS(12273), 1, + ACTIONS(12476), 1, anon_sym_ATendphp, - STATE(2444), 1, + STATE(1454), 1, sym__directive_parameter, - STATE(6591), 1, + STATE(6328), 1, sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12344), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4192), 2, + STATE(4243), 2, sym__text, aux_sym_php_only_repeat1, - [183212] = 7, - ACTIONS(12165), 1, + [188507] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12275), 1, - anon_sym_RPAREN, - STATE(4415), 1, - sym_text, - STATE(5530), 1, - sym__section_parameter, - ACTIONS(12169), 2, + ACTIONS(12356), 1, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4125), 2, - sym__text, - aux_sym_php_only_repeat1, - [183236] = 7, - ACTIONS(12165), 1, - aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12277), 1, + ACTIONS(12478), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5792), 1, + STATE(6686), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [183260] = 7, - ACTIONS(12165), 1, + [188531] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12279), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12480), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(6680), 1, + STATE(5670), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [183284] = 7, - ACTIONS(12165), 1, - aux_sym__section_parameter_token1, - ACTIONS(12167), 1, + [188555] = 7, + ACTIONS(11333), 1, + anon_sym_LPAREN2, + ACTIONS(12346), 1, + aux_sym__text_token3, + ACTIONS(12482), 1, + anon_sym_ATendphp, + STATE(2461), 1, + sym__directive_parameter, + STATE(5863), 1, + sym_php_only, + ACTIONS(12344), 2, aux_sym__text_token1, - ACTIONS(12281), 1, - anon_sym_RPAREN, - STATE(4415), 1, - sym_text, - STATE(6161), 1, - sym__section_parameter, - ACTIONS(12169), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4125), 2, + STATE(4243), 2, sym__text, aux_sym_php_only_repeat1, - [183308] = 7, - ACTIONS(12165), 1, + [188579] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12283), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12484), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(6595), 1, + STATE(5665), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [183332] = 7, - ACTIONS(12165), 1, + [188603] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12285), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12486), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(6598), 1, + STATE(6331), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [183356] = 7, - ACTIONS(12165), 1, + [188627] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12287), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12488), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(6618), 1, + STATE(5676), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [183380] = 7, - ACTIONS(12165), 1, + [188651] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12289), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12490), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5748), 1, + STATE(6332), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [183404] = 7, - ACTIONS(12165), 1, + [188675] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12291), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12492), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5747), 1, + STATE(6145), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, - aux_sym__text_token3, - STATE(4125), 2, - sym__text, - aux_sym_php_only_repeat1, - [183428] = 7, - ACTIONS(10702), 1, - anon_sym_LPAREN2, - ACTIONS(12183), 1, - aux_sym__text_token3, - ACTIONS(12293), 1, - anon_sym_ATendphp, - STATE(3367), 1, - sym__directive_parameter, - STATE(5790), 1, - sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12354), 2, aux_sym__text_token1, - aux_sym__text_token2, - STATE(4192), 2, + aux_sym__text_token3, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [183452] = 7, - ACTIONS(11144), 1, + [188699] = 7, + ACTIONS(10681), 1, anon_sym_LPAREN2, - ACTIONS(12183), 1, + ACTIONS(12346), 1, aux_sym__text_token3, - ACTIONS(12295), 1, + ACTIONS(12494), 1, anon_sym_ATendphp, - STATE(2596), 1, + STATE(1163), 1, sym__directive_parameter, - STATE(5743), 1, + STATE(6062), 1, sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12344), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4192), 2, + STATE(4243), 2, sym__text, aux_sym_php_only_repeat1, - [183476] = 7, - ACTIONS(12165), 1, + [188723] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12297), 1, - anon_sym_RPAREN, - STATE(4415), 1, - sym_text, - STATE(5746), 1, - sym__section_parameter, - ACTIONS(12169), 2, + ACTIONS(12356), 1, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4125), 2, - sym__text, - aux_sym_php_only_repeat1, - [183500] = 7, - ACTIONS(12165), 1, - aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12299), 1, + ACTIONS(12496), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5707), 1, + STATE(6144), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [183524] = 7, - ACTIONS(12165), 1, + [188747] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12301), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12498), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5741), 1, + STATE(5706), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [183548] = 7, - ACTIONS(12165), 1, + [188771] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12303), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12500), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5704), 1, + STATE(5708), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [183572] = 7, - ACTIONS(10492), 1, + [188795] = 7, + ACTIONS(11359), 1, anon_sym_LPAREN2, - ACTIONS(12183), 1, + ACTIONS(12346), 1, aux_sym__text_token3, - ACTIONS(12305), 1, + ACTIONS(12502), 1, anon_sym_ATendphp, - STATE(1522), 1, + STATE(2110), 1, sym__directive_parameter, - STATE(6327), 1, + STATE(6478), 1, sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12344), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4192), 2, + STATE(4243), 2, sym__text, aux_sym_php_only_repeat1, - [183596] = 7, - ACTIONS(12165), 1, + [188819] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12307), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12504), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5454), 1, + STATE(5772), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [183620] = 7, - ACTIONS(12165), 1, + [188843] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12309), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12506), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(6421), 1, + STATE(6741), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [183644] = 7, - ACTIONS(11136), 1, + [188867] = 7, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(12183), 1, + ACTIONS(12346), 1, aux_sym__text_token3, - ACTIONS(12311), 1, + ACTIONS(12508), 1, anon_sym_ATendphp, - STATE(2678), 1, + STATE(1878), 1, sym__directive_parameter, - STATE(5700), 1, + STATE(6141), 1, sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12344), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4192), 2, + STATE(4243), 2, sym__text, aux_sym_php_only_repeat1, - [183668] = 7, - ACTIONS(12165), 1, + [188891] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12313), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12510), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5785), 1, + STATE(6068), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [183692] = 7, - ACTIONS(12165), 1, + [188915] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12315), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12512), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(6332), 1, + STATE(6519), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [183716] = 7, - ACTIONS(12165), 1, + [188939] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12317), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12514), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(6337), 1, + STATE(5637), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, - aux_sym__text_token3, - STATE(4125), 2, - sym__text, - aux_sym_php_only_repeat1, - [183740] = 7, - ACTIONS(11016), 1, - anon_sym_LPAREN2, - ACTIONS(12183), 1, - aux_sym__text_token3, - ACTIONS(12319), 1, - anon_sym_ATendphp, - STATE(3398), 1, - sym__directive_parameter, - STATE(6633), 1, - sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12354), 2, aux_sym__text_token1, - aux_sym__text_token2, - STATE(4192), 2, + aux_sym__text_token3, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [183764] = 7, - ACTIONS(12165), 1, + [188963] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12321), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12516), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(6420), 1, + STATE(6371), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [183788] = 7, - ACTIONS(10494), 1, + [188987] = 7, + ACTIONS(10799), 1, anon_sym_LPAREN2, - ACTIONS(12183), 1, + ACTIONS(12346), 1, aux_sym__text_token3, - ACTIONS(12323), 1, + ACTIONS(12518), 1, anon_sym_ATendphp, - STATE(974), 1, + STATE(775), 1, sym__directive_parameter, - STATE(6459), 1, + STATE(6738), 1, sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12344), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4192), 2, + STATE(4243), 2, sym__text, aux_sym_php_only_repeat1, - [183812] = 7, - ACTIONS(12165), 1, + [189011] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12325), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12520), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5564), 1, + STATE(6069), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [183836] = 7, - ACTIONS(12165), 1, + [189035] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12327), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12522), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5706), 1, + STATE(6518), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, - aux_sym__text_token3, - STATE(4125), 2, - sym__text, - aux_sym_php_only_repeat1, - [183860] = 7, - ACTIONS(11204), 1, - anon_sym_LPAREN2, - ACTIONS(12183), 1, - aux_sym__text_token3, - ACTIONS(12329), 1, - anon_sym_ATendphp, - STATE(3156), 1, - sym__directive_parameter, - STATE(6674), 1, - sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12354), 2, aux_sym__text_token1, - aux_sym__text_token2, - STATE(4192), 2, + aux_sym__text_token3, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [183884] = 7, - ACTIONS(12165), 1, + [189059] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12331), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12524), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5662), 1, + STATE(6667), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [183908] = 7, - ACTIONS(12165), 1, + [189083] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12333), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12526), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(6636), 1, + STATE(5749), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [183932] = 7, - ACTIONS(11130), 1, - anon_sym_LPAREN2, - ACTIONS(12183), 1, - aux_sym__text_token3, - ACTIONS(12335), 1, - anon_sym_ATendphp, - STATE(2760), 1, - sym__directive_parameter, - STATE(5657), 1, - sym_php_only, - ACTIONS(12181), 2, - aux_sym__text_token1, + [189107] = 7, + ACTIONS(12352), 1, + aux_sym__section_parameter_token1, + ACTIONS(12356), 1, aux_sym__text_token2, - STATE(4192), 2, - sym__text, - aux_sym_php_only_repeat1, - [183956] = 7, - ACTIONS(10566), 1, - anon_sym_LPAREN2, - ACTIONS(12183), 1, - aux_sym__text_token3, - ACTIONS(12337), 1, - anon_sym_ATendphp, - STATE(1349), 1, - sym__directive_parameter, - STATE(6415), 1, - sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12528), 1, + anon_sym_RPAREN, + STATE(4674), 1, + sym_text, + STATE(6779), 1, + sym__section_parameter, + ACTIONS(12354), 2, aux_sym__text_token1, - aux_sym__text_token2, - STATE(4192), 2, + aux_sym__text_token3, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [183980] = 7, - ACTIONS(12165), 1, + [189131] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12339), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12530), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(6637), 1, + STATE(6370), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [184004] = 7, - ACTIONS(12165), 1, + [189155] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12341), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12532), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5619), 1, + STATE(5828), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [184028] = 7, - ACTIONS(12165), 1, + [189179] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12343), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12534), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(6419), 1, + STATE(6430), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [184052] = 7, - ACTIONS(12165), 1, + [189203] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12345), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12536), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5615), 1, + STATE(5827), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [184076] = 7, - ACTIONS(12165), 1, + [189227] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12347), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12538), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5460), 1, + STATE(5750), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [184100] = 7, - ACTIONS(11112), 1, + [189251] = 7, + ACTIONS(11315), 1, anon_sym_LPAREN2, - ACTIONS(12183), 1, + ACTIONS(12346), 1, aux_sym__text_token3, - ACTIONS(12349), 1, + ACTIONS(12540), 1, anon_sym_ATendphp, - STATE(3006), 1, + STATE(2710), 1, sym__directive_parameter, - STATE(5478), 1, + STATE(5745), 1, sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12344), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4192), 2, + STATE(4243), 2, sym__text, aux_sym_php_only_repeat1, - [184124] = 7, - ACTIONS(11124), 1, + [189275] = 7, + ACTIONS(11341), 1, anon_sym_LPAREN2, - ACTIONS(12183), 1, + ACTIONS(12346), 1, aux_sym__text_token3, - ACTIONS(12351), 1, + ACTIONS(12542), 1, anon_sym_ATendphp, - STATE(2842), 1, + STATE(2196), 1, sym__directive_parameter, - STATE(5609), 1, + STATE(6515), 1, sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12344), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4192), 2, + STATE(4243), 2, sym__text, aux_sym_php_only_repeat1, - [184148] = 7, - ACTIONS(10696), 1, + [189299] = 7, + ACTIONS(11321), 1, anon_sym_LPAREN2, - ACTIONS(12183), 1, + ACTIONS(12346), 1, aux_sym__text_token3, - ACTIONS(12353), 1, + ACTIONS(12544), 1, anon_sym_ATendphp, - STATE(3270), 1, + STATE(2627), 1, sym__directive_parameter, - STATE(5461), 1, + STATE(5785), 1, sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12344), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4192), 2, + STATE(4243), 2, sym__text, aux_sym_php_only_repeat1, - [184172] = 7, - ACTIONS(12165), 1, - aux_sym__section_parameter_token1, - ACTIONS(12167), 1, + [189323] = 7, + ACTIONS(10741), 1, + anon_sym_LPAREN2, + ACTIONS(12346), 1, + aux_sym__text_token3, + ACTIONS(12546), 1, + anon_sym_ATendphp, + STATE(1365), 1, + sym__directive_parameter, + STATE(6367), 1, + sym_php_only, + ACTIONS(12344), 2, aux_sym__text_token1, - ACTIONS(12355), 1, + aux_sym__text_token2, + STATE(4243), 2, + sym__text, + aux_sym_php_only_repeat1, + [189347] = 7, + ACTIONS(12352), 1, + aux_sym__section_parameter_token1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12548), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5602), 1, + STATE(6106), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [184196] = 7, - ACTIONS(12165), 1, + [189371] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12357), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12550), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5596), 1, + STATE(5789), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [184220] = 7, - ACTIONS(10820), 1, - anon_sym_LPAREN2, - ACTIONS(12183), 1, - aux_sym__text_token3, - ACTIONS(12359), 1, - anon_sym_ATendphp, - STATE(3498), 1, - sym__directive_parameter, - STATE(6670), 1, - sym_php_only, - ACTIONS(12181), 2, - aux_sym__text_token1, + [189395] = 7, + ACTIONS(12352), 1, + aux_sym__section_parameter_token1, + ACTIONS(12356), 1, aux_sym__text_token2, - STATE(4192), 2, + ACTIONS(12552), 1, + anon_sym_RPAREN, + STATE(4674), 1, + sym_text, + STATE(6482), 1, + sym__section_parameter, + ACTIONS(12354), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [184244] = 7, - ACTIONS(10550), 1, + [189419] = 7, + ACTIONS(10763), 1, anon_sym_LPAREN2, - ACTIONS(12183), 1, + ACTIONS(12346), 1, aux_sym__text_token3, - ACTIONS(12361), 1, + ACTIONS(12554), 1, anon_sym_ATendphp, - STATE(1437), 1, + STATE(1253), 1, sym__directive_parameter, - STATE(6374), 1, + STATE(6103), 1, sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12344), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4192), 2, + STATE(4243), 2, sym__text, aux_sym_php_only_repeat1, - [184268] = 7, - ACTIONS(12165), 1, + [189443] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12363), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12556), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(5535), 1, + STATE(5788), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [184292] = 7, - ACTIONS(11100), 1, + [189467] = 7, + ACTIONS(10855), 1, anon_sym_LPAREN2, - ACTIONS(12183), 1, + ACTIONS(12346), 1, aux_sym__text_token3, - ACTIONS(12365), 1, + ACTIONS(12558), 1, anon_sym_ATendphp, - STATE(3088), 1, + STATE(3409), 1, sym__directive_parameter, - STATE(5549), 1, + STATE(6164), 1, sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12344), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4192), 2, + STATE(4243), 2, sym__text, aux_sym_php_only_repeat1, - [184316] = 7, - ACTIONS(12165), 1, + [189491] = 7, + ACTIONS(12352), 1, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12367), 1, + ACTIONS(12356), 1, + aux_sym__text_token2, + ACTIONS(12560), 1, anon_sym_RPAREN, - STATE(4415), 1, + STATE(4674), 1, sym_text, - STATE(6204), 1, + STATE(6107), 1, sym__section_parameter, - ACTIONS(12169), 2, - aux_sym__text_token2, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4190), 2, sym__text, aux_sym_php_only_repeat1, - [184340] = 7, - ACTIONS(12165), 1, - aux_sym__section_parameter_token1, - ACTIONS(12167), 1, + [189515] = 4, + ACTIONS(12562), 1, aux_sym__text_token1, - ACTIONS(12369), 1, - anon_sym_RPAREN, - STATE(4415), 1, - sym_text, - STATE(6379), 1, - sym__section_parameter, - ACTIONS(12169), 2, + ACTIONS(12565), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4125), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - [184364] = 7, - ACTIONS(12165), 1, + ACTIONS(10703), 3, + anon_sym_RPAREN, + anon_sym_COMMA, aux_sym__section_parameter_token1, - ACTIONS(12167), 1, + [189532] = 4, + ACTIONS(12568), 1, aux_sym__text_token1, - ACTIONS(12371), 1, - anon_sym_RPAREN, - STATE(4415), 1, - sym_text, - STATE(6418), 1, - sym__section_parameter, - ACTIONS(12169), 2, + ACTIONS(12570), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4125), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - [184388] = 7, - ACTIONS(12165), 1, - aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12373), 1, + ACTIONS(10669), 3, anon_sym_RPAREN, - STATE(4415), 1, - sym_text, - STATE(5663), 1, - sym__section_parameter, - ACTIONS(12169), 2, + anon_sym_COMMA, + aux_sym__section_parameter_token1, + [189549] = 5, + ACTIONS(12572), 1, + anon_sym_RBRACE_RBRACE, + ACTIONS(12576), 1, aux_sym__text_token2, + STATE(5619), 1, + sym_php_only, + ACTIONS(12574), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4226), 2, sym__text, aux_sym_php_only_repeat1, - [184412] = 7, - ACTIONS(12165), 1, - aux_sym__section_parameter_token1, - ACTIONS(12167), 1, + [189567] = 5, + ACTIONS(12578), 1, + anon_sym_ATendsetup, + ACTIONS(12582), 1, + aux_sym__text_token3, + STATE(5736), 1, + sym_php_only, + ACTIONS(12580), 2, aux_sym__text_token1, - ACTIONS(12375), 1, - anon_sym_RPAREN, - STATE(4415), 1, - sym_text, - STATE(6380), 1, - sym__section_parameter, - ACTIONS(12169), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4125), 2, + STATE(4230), 2, sym__text, aux_sym_php_only_repeat1, - [184436] = 7, - ACTIONS(12165), 1, - aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12377), 1, - anon_sym_RPAREN, - STATE(4415), 1, - sym_text, - STATE(6675), 1, - sym__section_parameter, - ACTIONS(12169), 2, + [189585] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, + ACTIONS(12584), 1, + anon_sym_RBRACE_RBRACE, + STATE(6256), 1, + sym_php_only, + ACTIONS(12574), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4226), 2, sym__text, aux_sym_php_only_repeat1, - [184460] = 7, - ACTIONS(11118), 1, - anon_sym_LPAREN2, - ACTIONS(12183), 1, + [189603] = 5, + ACTIONS(12582), 1, aux_sym__text_token3, - ACTIONS(12379), 1, - anon_sym_ATendphp, - STATE(2924), 1, - sym__directive_parameter, - STATE(5524), 1, + ACTIONS(12586), 1, + anon_sym_ATendsetup, + STATE(6711), 1, sym_php_only, - ACTIONS(12181), 2, + ACTIONS(12580), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4192), 2, + STATE(4230), 2, sym__text, aux_sym_php_only_repeat1, - [184484] = 7, - ACTIONS(12165), 1, - aux_sym__section_parameter_token1, - ACTIONS(12167), 1, - aux_sym__text_token1, - ACTIONS(12381), 1, - anon_sym_RPAREN, - STATE(4415), 1, - sym_text, - STATE(5531), 1, - sym__section_parameter, - ACTIONS(12169), 2, + [189621] = 5, + ACTIONS(12588), 1, + anon_sym_BANG_BANG_RBRACE, + ACTIONS(12592), 1, aux_sym__text_token2, + STATE(5985), 1, + sym_php_only, + ACTIONS(12590), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4266), 2, sym__text, aux_sym_php_only_repeat1, - [184508] = 4, - ACTIONS(12383), 1, - aux_sym__text_token1, - ACTIONS(12385), 2, + [189639] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, + ACTIONS(12594), 1, + anon_sym_RBRACE_RBRACE, + STATE(5826), 1, + sym_php_only, + ACTIONS(12574), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4068), 2, + STATE(4226), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(10502), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - aux_sym__section_parameter_token1, - [184525] = 4, - ACTIONS(12387), 1, + [189657] = 5, + ACTIONS(12582), 1, + aux_sym__text_token3, + ACTIONS(12596), 1, + anon_sym_ATendsetup, + STATE(6339), 1, + sym_php_only, + ACTIONS(12580), 2, aux_sym__text_token1, - ACTIONS(12390), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4068), 2, + STATE(4230), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(10534), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - aux_sym__section_parameter_token1, - [184542] = 5, - ACTIONS(12393), 1, - anon_sym_RBRACE_RBRACE, - ACTIONS(12397), 1, + [189675] = 5, + ACTIONS(12592), 1, aux_sym__text_token2, - STATE(6456), 1, + ACTIONS(12598), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(5825), 1, sym_php_only, - ACTIONS(12395), 2, + ACTIONS(12590), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4266), 2, sym__text, aux_sym_php_only_repeat1, - [184560] = 5, - ACTIONS(12399), 1, - anon_sym_BANG_BANG_RBRACE, - ACTIONS(12403), 1, - aux_sym__text_token2, - STATE(5547), 1, + [189693] = 5, + ACTIONS(12582), 1, + aux_sym__text_token3, + ACTIONS(12600), 1, + anon_sym_ATendsetup, + STATE(5796), 1, sym_php_only, - ACTIONS(12401), 2, + ACTIONS(12580), 2, aux_sym__text_token1, - aux_sym__text_token3, - STATE(4186), 2, + aux_sym__text_token2, + STATE(4230), 2, sym__text, aux_sym_php_only_repeat1, - [184578] = 4, - ACTIONS(12408), 1, + [189711] = 4, + ACTIONS(12605), 1, aux_sym__text_token3, - ACTIONS(10534), 2, - anon_sym_ATenderror, + ACTIONS(10703), 2, + anon_sym_ATendfinished, aux_sym__notification_token1, - ACTIONS(12405), 2, + ACTIONS(12602), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4113), 2, + sym__text, + aux_sym_php_only_repeat1, + [189727] = 5, + ACTIONS(12582), 1, + aux_sym__text_token3, + ACTIONS(12608), 1, + anon_sym_ATendsetup, + STATE(6674), 1, + sym_php_only, + ACTIONS(12580), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4230), 2, + sym__text, + aux_sym_php_only_repeat1, + [189745] = 5, + ACTIONS(12592), 1, + aux_sym__text_token2, + ACTIONS(12610), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(6198), 1, + sym_php_only, + ACTIONS(12590), 2, aux_sym__text_token1, + aux_sym__text_token3, + STATE(4266), 2, + sym__text, + aux_sym_php_only_repeat1, + [189763] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, - STATE(4071), 2, + ACTIONS(12612), 1, + anon_sym_RBRACE_RBRACE, + STATE(6231), 1, + sym_php_only, + ACTIONS(12574), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4226), 2, sym__text, aux_sym_php_only_repeat1, - [184594] = 5, - ACTIONS(12397), 1, + [189781] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, - ACTIONS(12411), 1, + ACTIONS(12614), 1, anon_sym_RBRACE_RBRACE, - STATE(5480), 1, + STATE(5787), 1, sym_php_only, - ACTIONS(12395), 2, + ACTIONS(12574), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4226), 2, + sym__text, + aux_sym_php_only_repeat1, + [189799] = 5, + ACTIONS(12582), 1, + aux_sym__text_token3, + ACTIONS(12616), 1, + anon_sym_ATendsetup, + STATE(6076), 1, + sym_php_only, + ACTIONS(12580), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4230), 2, sym__text, aux_sym_php_only_repeat1, - [184612] = 5, - ACTIONS(12403), 1, + [189817] = 5, + ACTIONS(12592), 1, aux_sym__text_token2, - ACTIONS(12413), 1, + ACTIONS(12618), 1, anon_sym_BANG_BANG_RBRACE, - STATE(6241), 1, + STATE(5786), 1, sym_php_only, - ACTIONS(12401), 2, + ACTIONS(12590), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4266), 2, sym__text, aux_sym_php_only_repeat1, - [184630] = 4, - ACTIONS(12419), 1, + [189835] = 5, + ACTIONS(12582), 1, aux_sym__text_token3, - ACTIONS(12415), 2, - anon_sym_ATendfinished, - aux_sym__notification_token1, - ACTIONS(12417), 2, + ACTIONS(12620), 1, + anon_sym_ATendsetup, + STATE(5757), 1, + sym_php_only, + ACTIONS(12580), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4139), 2, + STATE(4230), 2, sym__text, aux_sym_php_only_repeat1, - [184646] = 5, - ACTIONS(12397), 1, + [189853] = 5, + ACTIONS(12592), 1, aux_sym__text_token2, - ACTIONS(12421), 1, - anon_sym_RBRACE_RBRACE, - STATE(6240), 1, + ACTIONS(12622), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(6104), 1, sym_php_only, - ACTIONS(12395), 2, + ACTIONS(12590), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4266), 2, sym__text, aux_sym_php_only_repeat1, - [184664] = 5, - ACTIONS(12397), 1, + [189871] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, - ACTIONS(12423), 1, + ACTIONS(12624), 1, anon_sym_RBRACE_RBRACE, - STATE(6200), 1, + STATE(6105), 1, sym_php_only, - ACTIONS(12395), 2, + ACTIONS(12574), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4226), 2, sym__text, aux_sym_php_only_repeat1, - [184682] = 5, - ACTIONS(12425), 1, - anon_sym_ATendsetup, - ACTIONS(12429), 1, + [189889] = 4, + ACTIONS(12629), 1, aux_sym__text_token3, - STATE(5628), 1, - sym_php_only, - ACTIONS(12427), 2, + ACTIONS(10703), 2, + anon_sym_ATendsuccess, + aux_sym__notification_token1, + ACTIONS(12626), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4123), 2, sym__text, aux_sym_php_only_repeat1, - [184700] = 5, - ACTIONS(12403), 1, - aux_sym__text_token2, - ACTIONS(12431), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(6199), 1, - sym_php_only, - ACTIONS(12401), 2, + [189905] = 4, + ACTIONS(12635), 1, + aux_sym__text_token3, + ACTIONS(10703), 2, + anon_sym_ATendafter, + aux_sym__notification_token1, + ACTIONS(12632), 2, aux_sym__text_token1, + aux_sym__text_token2, + STATE(4124), 2, + sym__text, + aux_sym_php_only_repeat1, + [189921] = 4, + ACTIONS(12642), 1, aux_sym__text_token3, - STATE(4186), 2, + ACTIONS(12638), 2, + anon_sym_ATenderror, + aux_sym__notification_token1, + ACTIONS(12640), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4150), 2, sym__text, aux_sym_php_only_repeat1, - [184718] = 5, - ACTIONS(12429), 1, + [189937] = 5, + ACTIONS(12582), 1, aux_sym__text_token3, - ACTIONS(12433), 1, + ACTIONS(12644), 1, anon_sym_ATendsetup, - STATE(6170), 1, + STATE(5955), 1, sym_php_only, - ACTIONS(12427), 2, + ACTIONS(12580), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4230), 2, + sym__text, + aux_sym_php_only_repeat1, + [189955] = 4, + ACTIONS(12649), 1, + aux_sym__text_token3, + ACTIONS(10703), 2, + anon_sym_ATendbefore, + aux_sym__notification_token1, + ACTIONS(12646), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4127), 2, sym__text, aux_sym_php_only_repeat1, - [184736] = 5, - ACTIONS(12429), 1, + [189971] = 5, + ACTIONS(12582), 1, aux_sym__text_token3, - ACTIONS(12435), 1, + ACTIONS(12652), 1, anon_sym_ATendsetup, - STATE(6689), 1, + STATE(6489), 1, sym_php_only, - ACTIONS(12427), 2, + ACTIONS(12580), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4230), 2, sym__text, aux_sym_php_only_repeat1, - [184754] = 5, - ACTIONS(12403), 1, + [189989] = 5, + ACTIONS(12592), 1, aux_sym__text_token2, - ACTIONS(12437), 1, + ACTIONS(12654), 1, anon_sym_BANG_BANG_RBRACE, - STATE(5658), 1, + STATE(6739), 1, + sym_php_only, + ACTIONS(12590), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4266), 2, + sym__text, + aux_sym_php_only_repeat1, + [190007] = 5, + ACTIONS(12592), 1, + aux_sym__text_token2, + ACTIONS(12656), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(6516), 1, sym_php_only, - ACTIONS(12401), 2, + ACTIONS(12590), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4266), 2, sym__text, aux_sym_php_only_repeat1, - [184772] = 5, - ACTIONS(12397), 1, + [190025] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, - ACTIONS(12439), 1, + ACTIONS(12658), 1, anon_sym_RBRACE_RBRACE, - STATE(5659), 1, + STATE(6517), 1, sym_php_only, - ACTIONS(12395), 2, + ACTIONS(12574), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4226), 2, sym__text, aux_sym_php_only_repeat1, - [184790] = 4, - ACTIONS(12441), 1, + [190043] = 5, + ACTIONS(12576), 1, + aux_sym__text_token2, + ACTIONS(12660), 1, + anon_sym_RBRACE_RBRACE, + STATE(6369), 1, + sym_php_only, + ACTIONS(12574), 2, aux_sym__text_token1, - ACTIONS(10534), 2, - anon_sym_RPAREN, - aux_sym__section_parameter_token1, - ACTIONS(12444), 2, + aux_sym__text_token3, + STATE(4226), 2, + sym__text, + aux_sym_php_only_repeat1, + [190061] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, + ACTIONS(12662), 1, + anon_sym_RBRACE_RBRACE, + STATE(5547), 1, + sym_php_only, + ACTIONS(12574), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4083), 2, + STATE(4226), 2, sym__text, aux_sym_php_only_repeat1, - [184806] = 5, - ACTIONS(12429), 1, + [190079] = 5, + ACTIONS(12592), 1, + aux_sym__text_token2, + ACTIONS(12664), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(5548), 1, + sym_php_only, + ACTIONS(12590), 2, + aux_sym__text_token1, aux_sym__text_token3, - ACTIONS(12447), 1, - anon_sym_ATendsetup, - STATE(5464), 1, + STATE(4266), 2, + sym__text, + aux_sym_php_only_repeat1, + [190097] = 5, + ACTIONS(12576), 1, + aux_sym__text_token2, + ACTIONS(12666), 1, + anon_sym_RBRACE_RBRACE, + STATE(5747), 1, sym_php_only, - ACTIONS(12427), 2, + ACTIONS(12574), 2, aux_sym__text_token1, + aux_sym__text_token3, + STATE(4226), 2, + sym__text, + aux_sym_php_only_repeat1, + [190115] = 5, + ACTIONS(12592), 1, aux_sym__text_token2, - STATE(4195), 2, + ACTIONS(12668), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(5746), 1, + sym_php_only, + ACTIONS(12590), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4266), 2, sym__text, aux_sym_php_only_repeat1, - [184824] = 4, - ACTIONS(12451), 1, + [190133] = 4, + ACTIONS(12672), 1, aux_sym__text_token3, - ACTIONS(12415), 2, - anon_sym_ATendafter, + ACTIONS(12638), 2, + anon_sym_ATendsuccess, aux_sym__notification_token1, - ACTIONS(12449), 2, + ACTIONS(12670), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4096), 2, + STATE(4123), 2, sym__text, aux_sym_php_only_repeat1, - [184840] = 5, - ACTIONS(12397), 1, + [190149] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, - ACTIONS(12453), 1, + ACTIONS(12674), 1, anon_sym_RBRACE_RBRACE, - STATE(6635), 1, + STATE(6480), 1, sym_php_only, - ACTIONS(12395), 2, + ACTIONS(12574), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4226), 2, sym__text, aux_sym_php_only_repeat1, - [184858] = 5, - ACTIONS(12429), 1, + [190167] = 5, + ACTIONS(12582), 1, aux_sym__text_token3, - ACTIONS(12455), 1, + ACTIONS(12676), 1, anon_sym_ATendsetup, - STATE(6372), 1, + STATE(5716), 1, + sym_php_only, + ACTIONS(12580), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4230), 2, + sym__text, + aux_sym_php_only_repeat1, + [190185] = 5, + ACTIONS(12582), 1, + aux_sym__text_token3, + ACTIONS(12678), 1, + anon_sym_ATendsetup, + STATE(6114), 1, sym_php_only, - ACTIONS(12427), 2, + ACTIONS(12580), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4230), 2, sym__text, aux_sym_php_only_repeat1, - [184876] = 5, - ACTIONS(12403), 1, + [190203] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, - ACTIONS(12457), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(6578), 1, + ACTIONS(12680), 1, + anon_sym_RBRACE_RBRACE, + STATE(5986), 1, sym_php_only, - ACTIONS(12401), 2, + ACTIONS(12574), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4226), 2, sym__text, aux_sym_php_only_repeat1, - [184894] = 5, - ACTIONS(12397), 1, + [190221] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, - ACTIONS(12459), 1, + ACTIONS(12682), 1, anon_sym_RBRACE_RBRACE, - STATE(6455), 1, + STATE(6740), 1, sym_php_only, - ACTIONS(12395), 2, + ACTIONS(12574), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4226), 2, sym__text, aux_sym_php_only_repeat1, - [184912] = 5, - ACTIONS(12403), 1, + [190239] = 5, + ACTIONS(12592), 1, aux_sym__text_token2, - ACTIONS(12461), 1, + ACTIONS(12684), 1, anon_sym_BANG_BANG_RBRACE, - STATE(6673), 1, + STATE(6142), 1, sym_php_only, - ACTIONS(12401), 2, + ACTIONS(12590), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4266), 2, + sym__text, + aux_sym_php_only_repeat1, + [190257] = 4, + ACTIONS(12688), 1, + aux_sym__text_token3, + ACTIONS(12638), 2, + anon_sym_ATendfinished, + aux_sym__notification_token1, + ACTIONS(12686), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4113), 2, sym__text, aux_sym_php_only_repeat1, - [184930] = 5, - ACTIONS(12397), 1, + [190273] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, - ACTIONS(12463), 1, + ACTIONS(12690), 1, anon_sym_RBRACE_RBRACE, - STATE(6668), 1, + STATE(5946), 1, + sym_php_only, + ACTIONS(12574), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4226), 2, + sym__text, + aux_sym_php_only_repeat1, + [190291] = 5, + ACTIONS(12592), 1, + aux_sym__text_token2, + ACTIONS(12692), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(6479), 1, sym_php_only, - ACTIONS(12395), 2, + ACTIONS(12590), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4266), 2, sym__text, aux_sym_php_only_repeat1, - [184948] = 5, - ACTIONS(12429), 1, + [190309] = 5, + ACTIONS(12582), 1, aux_sym__text_token3, - ACTIONS(12465), 1, + ACTIONS(12694), 1, anon_sym_ATendsetup, - STATE(6604), 1, + STATE(6452), 1, sym_php_only, - ACTIONS(12427), 2, + ACTIONS(12580), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4230), 2, sym__text, aux_sym_php_only_repeat1, - [184966] = 4, - ACTIONS(12469), 1, - aux_sym__text_token3, - ACTIONS(12415), 2, - anon_sym_ATendsuccess, - aux_sym__notification_token1, - ACTIONS(12467), 2, + [190327] = 5, + ACTIONS(12576), 1, + aux_sym__text_token2, + ACTIONS(12696), 1, + anon_sym_RBRACE_RBRACE, + STATE(6143), 1, + sym_php_only, + ACTIONS(12574), 2, aux_sym__text_token1, + aux_sym__text_token3, + STATE(4226), 2, + sym__text, + aux_sym_php_only_repeat1, + [190345] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, - STATE(4095), 2, + ACTIONS(12698), 1, + anon_sym_RBRACE_RBRACE, + STATE(6067), 1, + sym_php_only, + ACTIONS(12574), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4226), 2, sym__text, aux_sym_php_only_repeat1, - [184982] = 4, - ACTIONS(12474), 1, + [190363] = 4, + ACTIONS(12703), 1, aux_sym__text_token3, - ACTIONS(10534), 2, - anon_sym_ATendbefore, + ACTIONS(10703), 2, + anon_sym_ATenderror, aux_sym__notification_token1, - ACTIONS(12471), 2, + ACTIONS(12700), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4094), 2, + STATE(4150), 2, sym__text, aux_sym_php_only_repeat1, - [184998] = 4, - ACTIONS(12480), 1, - aux_sym__text_token3, - ACTIONS(10534), 2, - anon_sym_ATendsuccess, - aux_sym__notification_token1, - ACTIONS(12477), 2, + [190379] = 5, + ACTIONS(12592), 1, + aux_sym__text_token2, + ACTIONS(12706), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(6063), 1, + sym_php_only, + ACTIONS(12590), 2, aux_sym__text_token1, + aux_sym__text_token3, + STATE(4266), 2, + sym__text, + aux_sym_php_only_repeat1, + [190397] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, - STATE(4095), 2, + ACTIONS(12708), 1, + anon_sym_RBRACE_RBRACE, + STATE(5705), 1, + sym_php_only, + ACTIONS(12574), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4226), 2, sym__text, aux_sym_php_only_repeat1, - [185014] = 4, - ACTIONS(12486), 1, + [190415] = 4, + ACTIONS(12712), 1, aux_sym__text_token3, - ACTIONS(10534), 2, + ACTIONS(12638), 2, anon_sym_ATendafter, aux_sym__notification_token1, - ACTIONS(12483), 2, + ACTIONS(12710), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4096), 2, + STATE(4124), 2, sym__text, aux_sym_php_only_repeat1, - [185030] = 5, - ACTIONS(12403), 1, + [190431] = 5, + ACTIONS(12592), 1, aux_sym__text_token2, - ACTIONS(12489), 1, + ACTIONS(12714), 1, anon_sym_BANG_BANG_RBRACE, - STATE(6454), 1, + STATE(5704), 1, sym_php_only, - ACTIONS(12401), 2, + ACTIONS(12590), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4266), 2, sym__text, aux_sym_php_only_repeat1, - [185048] = 5, - ACTIONS(12403), 1, + [190449] = 5, + ACTIONS(12592), 1, aux_sym__text_token2, - ACTIONS(12491), 1, + ACTIONS(12716), 1, anon_sym_BANG_BANG_RBRACE, - STATE(6139), 1, + STATE(6255), 1, sym_php_only, - ACTIONS(12401), 2, + ACTIONS(12590), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4266), 2, sym__text, aux_sym_php_only_repeat1, - [185066] = 5, - ACTIONS(12429), 1, + [190467] = 5, + ACTIONS(12582), 1, aux_sym__text_token3, - ACTIONS(12493), 1, + ACTIONS(12718), 1, anon_sym_ATendsetup, - STATE(6427), 1, + STATE(5677), 1, sym_php_only, - ACTIONS(12427), 2, + ACTIONS(12580), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4230), 2, sym__text, aux_sym_php_only_repeat1, - [185084] = 5, - ACTIONS(12429), 1, + [190485] = 5, + ACTIONS(12582), 1, aux_sym__text_token3, - ACTIONS(12495), 1, + ACTIONS(12720), 1, anon_sym_ATendsetup, - STATE(5670), 1, + STATE(5581), 1, sym_php_only, - ACTIONS(12427), 2, + ACTIONS(12580), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4230), 2, + sym__text, + aux_sym_php_only_repeat1, + [190503] = 4, + ACTIONS(12724), 1, + aux_sym__text_token3, + ACTIONS(12638), 2, + anon_sym_ATendbefore, + aux_sym__notification_token1, + ACTIONS(12722), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4127), 2, sym__text, aux_sym_php_only_repeat1, - [185102] = 5, - ACTIONS(12429), 1, + [190519] = 5, + ACTIONS(12582), 1, aux_sym__text_token3, - ACTIONS(12497), 1, + ACTIONS(12726), 1, anon_sym_ATendsetup, - STATE(6210), 1, + STATE(6036), 1, + sym_php_only, + ACTIONS(12580), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4230), 2, + sym__text, + aux_sym_php_only_repeat1, + [190537] = 5, + ACTIONS(12582), 1, + aux_sym__text_token3, + ACTIONS(12728), 1, + anon_sym_ATendsetup, + STATE(6265), 1, sym_php_only, - ACTIONS(12427), 2, + ACTIONS(12580), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4230), 2, sym__text, aux_sym_php_only_repeat1, - [185120] = 5, - ACTIONS(12403), 1, + [190555] = 5, + ACTIONS(12592), 1, aux_sym__text_token2, - ACTIONS(12499), 1, + ACTIONS(12730), 1, anon_sym_BANG_BANG_RBRACE, - STATE(5701), 1, + STATE(5918), 1, + sym_php_only, + ACTIONS(12590), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4266), 2, + sym__text, + aux_sym_php_only_repeat1, + [190573] = 5, + ACTIONS(12592), 1, + aux_sym__text_token2, + ACTIONS(12732), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(6701), 1, sym_php_only, - ACTIONS(12401), 2, + ACTIONS(12590), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4266), 2, sym__text, aux_sym_php_only_repeat1, - [185138] = 5, - ACTIONS(12397), 1, + [190591] = 5, + ACTIONS(12582), 1, + aux_sym__text_token3, + ACTIONS(12734), 1, + anon_sym_ATendsetup, + STATE(5837), 1, + sym_php_only, + ACTIONS(12580), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4230), 2, + sym__text, + aux_sym_php_only_repeat1, + [190609] = 5, + ACTIONS(12582), 1, + aux_sym__text_token3, + ACTIONS(12736), 1, + anon_sym_ATendsetup, + STATE(6526), 1, + sym_php_only, + ACTIONS(12580), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4230), 2, + sym__text, + aux_sym_php_only_repeat1, + [190627] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, - ACTIONS(12501), 1, + ACTIONS(12738), 1, anon_sym_RBRACE_RBRACE, - STATE(6157), 1, + STATE(6702), 1, sym_php_only, - ACTIONS(12395), 2, + ACTIONS(12574), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4226), 2, sym__text, aux_sym_php_only_repeat1, - [185156] = 5, - ACTIONS(12397), 1, + [190645] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, - ACTIONS(12503), 1, + ACTIONS(12740), 1, anon_sym_RBRACE_RBRACE, - STATE(5702), 1, + STATE(6330), 1, sym_php_only, - ACTIONS(12395), 2, + ACTIONS(12574), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4226), 2, sym__text, aux_sym_php_only_repeat1, - [185174] = 5, - ACTIONS(12403), 1, + [190663] = 5, + ACTIONS(12592), 1, aux_sym__text_token2, - ACTIONS(12505), 1, + ACTIONS(12742), 1, anon_sym_BANG_BANG_RBRACE, - STATE(6156), 1, + STATE(6329), 1, sym_php_only, - ACTIONS(12401), 2, + ACTIONS(12590), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4266), 2, sym__text, aux_sym_php_only_repeat1, - [185192] = 5, - ACTIONS(12397), 1, + [190681] = 5, + ACTIONS(12592), 1, aux_sym__text_token2, - ACTIONS(12507), 1, - anon_sym_RBRACE_RBRACE, - STATE(6171), 1, + ACTIONS(12744), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(5864), 1, + sym_php_only, + ACTIONS(12590), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4266), 2, + sym__text, + aux_sym_php_only_repeat1, + [190699] = 5, + ACTIONS(12582), 1, + aux_sym__text_token3, + ACTIONS(12746), 1, + anon_sym_ATendsetup, + STATE(5525), 1, + sym_php_only, + ACTIONS(12580), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4230), 2, + sym__text, + aux_sym_php_only_repeat1, + [190717] = 5, + ACTIONS(12582), 1, + aux_sym__text_token3, + ACTIONS(12748), 1, + anon_sym_ATendsetup, + STATE(6152), 1, sym_php_only, - ACTIONS(12395), 2, + ACTIONS(12580), 2, aux_sym__text_token1, + aux_sym__text_token2, + STATE(4230), 2, + sym__text, + aux_sym_php_only_repeat1, + [190735] = 5, + ACTIONS(12582), 1, aux_sym__text_token3, - STATE(4191), 2, + ACTIONS(12750), 1, + anon_sym_ATendsetup, + STATE(6637), 1, + sym_php_only, + ACTIONS(12580), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4230), 2, sym__text, aux_sym_php_only_repeat1, - [185210] = 5, - ACTIONS(12403), 1, + [190753] = 5, + ACTIONS(12592), 1, aux_sym__text_token2, - ACTIONS(12509), 1, + ACTIONS(12752), 1, anon_sym_BANG_BANG_RBRACE, - STATE(6237), 1, + STATE(6481), 1, sym_php_only, - ACTIONS(12401), 2, + ACTIONS(12590), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4266), 2, sym__text, aux_sym_php_only_repeat1, - [185228] = 5, - ACTIONS(12397), 1, + [190771] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, - ACTIONS(12511), 1, + ACTIONS(12754), 1, anon_sym_RBRACE_RBRACE, - STATE(6238), 1, + STATE(6554), 1, sym_php_only, - ACTIONS(12395), 2, + ACTIONS(12574), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4226), 2, sym__text, aux_sym_php_only_repeat1, - [185246] = 4, - ACTIONS(12515), 1, + [190789] = 5, + ACTIONS(12582), 1, aux_sym__text_token3, - ACTIONS(12415), 2, - anon_sym_ATenderror, - aux_sym__notification_token1, - ACTIONS(12513), 2, + ACTIONS(12756), 1, + anon_sym_ATendsetup, + STATE(6287), 1, + sym_php_only, + ACTIONS(12580), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4071), 2, + STATE(4230), 2, sym__text, aux_sym_php_only_repeat1, - [185262] = 5, - ACTIONS(12429), 1, + [190807] = 5, + ACTIONS(12582), 1, aux_sym__text_token3, - ACTIONS(12517), 1, + ACTIONS(12758), 1, anon_sym_ATendsetup, - STATE(6125), 1, + STATE(6786), 1, sym_php_only, - ACTIONS(12427), 2, + ACTIONS(12580), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4230), 2, sym__text, aux_sym_php_only_repeat1, - [185280] = 5, - ACTIONS(12403), 1, + [190825] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, - ACTIONS(12519), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(5526), 1, + ACTIONS(12760), 1, + anon_sym_RBRACE_RBRACE, + STATE(5865), 1, sym_php_only, - ACTIONS(12401), 2, + ACTIONS(12574), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4226), 2, sym__text, aux_sym_php_only_repeat1, - [185298] = 4, - ACTIONS(12523), 1, - aux_sym__text_token3, - ACTIONS(12415), 2, - anon_sym_ATendbefore, - aux_sym__notification_token1, - ACTIONS(12521), 2, + [190843] = 5, + ACTIONS(12592), 1, + aux_sym__text_token2, + ACTIONS(12762), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(6292), 1, + sym_php_only, + ACTIONS(12590), 2, aux_sym__text_token1, + aux_sym__text_token3, + STATE(4266), 2, + sym__text, + aux_sym_php_only_repeat1, + [190861] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, - STATE(4094), 2, + ACTIONS(12764), 1, + anon_sym_RBRACE_RBRACE, + STATE(5659), 1, + sym_php_only, + ACTIONS(12574), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4226), 2, sym__text, aux_sym_php_only_repeat1, - [185314] = 5, - ACTIONS(12397), 1, + [190879] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, - ACTIONS(12525), 1, + ACTIONS(12766), 1, anon_sym_RBRACE_RBRACE, - STATE(6376), 1, + STATE(6777), 1, + sym_php_only, + ACTIONS(12574), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4226), 2, + sym__text, + aux_sym_php_only_repeat1, + [190897] = 5, + ACTIONS(12592), 1, + aux_sym__text_token2, + ACTIONS(12768), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(5658), 1, sym_php_only, - ACTIONS(12395), 2, + ACTIONS(12590), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4266), 2, sym__text, aux_sym_php_only_repeat1, - [185332] = 5, - ACTIONS(12403), 1, + [190915] = 5, + ACTIONS(12592), 1, aux_sym__text_token2, - ACTIONS(12527), 1, + ACTIONS(12770), 1, anon_sym_BANG_BANG_RBRACE, - STATE(6375), 1, + STATE(6180), 1, sym_php_only, - ACTIONS(12401), 2, + ACTIONS(12590), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4266), 2, sym__text, aux_sym_php_only_repeat1, - [185350] = 5, - ACTIONS(12397), 1, + [190933] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, - ACTIONS(12529), 1, + ACTIONS(12772), 1, anon_sym_RBRACE_RBRACE, - STATE(5527), 1, + STATE(6181), 1, sym_php_only, - ACTIONS(12395), 2, + ACTIONS(12574), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4226), 2, sym__text, aux_sym_php_only_repeat1, - [185368] = 5, - ACTIONS(12397), 1, + [190951] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, - ACTIONS(12531), 1, + ACTIONS(12774), 1, anon_sym_RBRACE_RBRACE, - STATE(6109), 1, + STATE(6293), 1, sym_php_only, - ACTIONS(12395), 2, + ACTIONS(12574), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4226), 2, sym__text, aux_sym_php_only_repeat1, - [185386] = 5, - ACTIONS(12403), 1, + [190969] = 5, + ACTIONS(12592), 1, aux_sym__text_token2, - ACTIONS(12533), 1, + ACTIONS(12776), 1, anon_sym_BANG_BANG_RBRACE, - STATE(5476), 1, + STATE(6776), 1, sym_php_only, - ACTIONS(12401), 2, + ACTIONS(12590), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4266), 2, sym__text, aux_sym_php_only_repeat1, - [185404] = 5, - ACTIONS(12403), 1, + [190987] = 5, + ACTIONS(12592), 1, aux_sym__text_token2, - ACTIONS(12535), 1, + ACTIONS(12778), 1, anon_sym_BANG_BANG_RBRACE, - STATE(6108), 1, + STATE(6368), 1, sym_php_only, - ACTIONS(12401), 2, + ACTIONS(12590), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4266), 2, sym__text, aux_sym_php_only_repeat1, - [185422] = 5, - ACTIONS(12429), 1, + [191005] = 5, + ACTIONS(12582), 1, aux_sym__text_token3, - ACTIONS(12537), 1, + ACTIONS(12780), 1, anon_sym_ATendsetup, - STATE(5642), 1, + STATE(6227), 1, sym_php_only, - ACTIONS(12427), 2, + ACTIONS(12580), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4230), 2, sym__text, aux_sym_php_only_repeat1, - [185440] = 5, - ACTIONS(12429), 1, + [191023] = 5, + ACTIONS(12582), 1, aux_sym__text_token3, - ACTIONS(12539), 1, + ACTIONS(12782), 1, anon_sym_ATendsetup, - STATE(5713), 1, + STATE(5597), 1, sym_php_only, - ACTIONS(12427), 2, + ACTIONS(12580), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4230), 2, sym__text, aux_sym_php_only_repeat1, - [185458] = 5, - ACTIONS(12429), 1, + [191041] = 5, + ACTIONS(12582), 1, aux_sym__text_token3, - ACTIONS(12541), 1, + ACTIONS(12784), 1, anon_sym_ATendsetup, - STATE(6345), 1, + STATE(5916), 1, sym_php_only, - ACTIONS(12427), 2, + ACTIONS(12580), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4230), 2, sym__text, aux_sym_php_only_repeat1, - [185476] = 5, - ACTIONS(12429), 1, + [191059] = 5, + ACTIONS(12582), 1, aux_sym__text_token3, - ACTIONS(12543), 1, + ACTIONS(12786), 1, anon_sym_ATendsetup, - STATE(6389), 1, + STATE(5877), 1, sym_php_only, - ACTIONS(12427), 2, + ACTIONS(12580), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4230), 2, sym__text, aux_sym_php_only_repeat1, - [185494] = 5, - ACTIONS(12397), 1, + [191077] = 4, + ACTIONS(12790), 1, aux_sym__text_token2, - ACTIONS(12545), 1, - anon_sym_RBRACE_RBRACE, - STATE(5475), 1, - sym_php_only, - ACTIONS(12395), 2, + ACTIONS(10669), 2, + anon_sym_RPAREN, + aux_sym__section_parameter_token1, + ACTIONS(12788), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4201), 2, sym__text, aux_sym_php_only_repeat1, - [185512] = 5, - ACTIONS(12429), 1, + [191093] = 5, + ACTIONS(12582), 1, aux_sym__text_token3, - ACTIONS(12547), 1, + ACTIONS(12792), 1, anon_sym_ATendsetup, - STATE(6469), 1, + STATE(6415), 1, sym_php_only, - ACTIONS(12427), 2, + ACTIONS(12580), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4230), 2, sym__text, aux_sym_php_only_repeat1, - [185530] = 4, - ACTIONS(12549), 1, + [191111] = 5, + ACTIONS(12582), 1, + aux_sym__text_token3, + ACTIONS(12794), 1, + anon_sym_ATendsetup, + STATE(6749), 1, + sym_php_only, + ACTIONS(12580), 2, aux_sym__text_token1, - ACTIONS(10502), 2, - anon_sym_RPAREN, - aux_sym__section_parameter_token1, - ACTIONS(12551), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4083), 2, + STATE(4230), 2, sym__text, aux_sym_php_only_repeat1, - [185546] = 5, - ACTIONS(12429), 1, + [191129] = 5, + ACTIONS(12582), 1, aux_sym__text_token3, - ACTIONS(12553), 1, + ACTIONS(12796), 1, anon_sym_ATendsetup, - STATE(6080), 1, + STATE(5653), 1, sym_php_only, - ACTIONS(12427), 2, + ACTIONS(12580), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4230), 2, sym__text, aux_sym_php_only_repeat1, - [185564] = 5, - ACTIONS(12403), 1, + [191147] = 5, + ACTIONS(12592), 1, aux_sym__text_token2, - ACTIONS(12555), 1, + ACTIONS(12798), 1, anon_sym_BANG_BANG_RBRACE, - STATE(5744), 1, + STATE(6664), 1, sym_php_only, - ACTIONS(12401), 2, + ACTIONS(12590), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4266), 2, sym__text, aux_sym_php_only_repeat1, - [185582] = 5, - ACTIONS(12403), 1, + [191165] = 5, + ACTIONS(12592), 1, aux_sym__text_token2, - ACTIONS(12557), 1, + ACTIONS(12800), 1, anon_sym_BANG_BANG_RBRACE, - STATE(6498), 1, + STATE(6813), 1, sym_php_only, - ACTIONS(12401), 2, + ACTIONS(12590), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4266), 2, sym__text, aux_sym_php_only_repeat1, - [185600] = 5, - ACTIONS(12397), 1, + [191183] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, - ACTIONS(12559), 1, + ACTIONS(12802), 1, anon_sym_RBRACE_RBRACE, - STATE(5682), 1, + STATE(6742), 1, sym_php_only, - ACTIONS(12395), 2, + ACTIONS(12574), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4226), 2, sym__text, aux_sym_php_only_repeat1, - [185618] = 5, - ACTIONS(12397), 1, + [191201] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, - ACTIONS(12561), 1, + ACTIONS(12804), 1, anon_sym_RBRACE_RBRACE, - STATE(5784), 1, + STATE(6025), 1, sym_php_only, - ACTIONS(12395), 2, + ACTIONS(12574), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4226), 2, sym__text, aux_sym_php_only_repeat1, - [185636] = 5, - ACTIONS(12403), 1, + [191219] = 5, + ACTIONS(12592), 1, aux_sym__text_token2, - ACTIONS(12563), 1, + ACTIONS(12806), 1, anon_sym_BANG_BANG_RBRACE, - STATE(5786), 1, + STATE(5620), 1, sym_php_only, - ACTIONS(12401), 2, + ACTIONS(12590), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4266), 2, sym__text, aux_sym_php_only_repeat1, - [185654] = 5, - ACTIONS(12397), 1, - aux_sym__text_token2, - ACTIONS(12565), 1, - anon_sym_RBRACE_RBRACE, - STATE(5546), 1, + [191237] = 5, + ACTIONS(12582), 1, + aux_sym__text_token3, + ACTIONS(12808), 1, + anon_sym_ATendsetup, + STATE(6600), 1, sym_php_only, - ACTIONS(12395), 2, + ACTIONS(12580), 2, aux_sym__text_token1, - aux_sym__text_token3, - STATE(4191), 2, + aux_sym__text_token2, + STATE(4230), 2, sym__text, aux_sym_php_only_repeat1, - [185672] = 5, - ACTIONS(12397), 1, + [191255] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, - ACTIONS(12567), 1, + ACTIONS(12810), 1, anon_sym_RBRACE_RBRACE, - STATE(6499), 1, + STATE(6628), 1, sym_php_only, - ACTIONS(12395), 2, + ACTIONS(12574), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4226), 2, sym__text, aux_sym_php_only_repeat1, - [185690] = 5, - ACTIONS(12397), 1, + [191273] = 4, + ACTIONS(12815), 1, aux_sym__text_token2, - ACTIONS(12569), 1, - anon_sym_RBRACE_RBRACE, - STATE(6672), 1, - sym_php_only, - ACTIONS(12395), 2, + ACTIONS(10703), 2, + anon_sym_RPAREN, + aux_sym__section_parameter_token1, + ACTIONS(12812), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4201), 2, sym__text, aux_sym_php_only_repeat1, - [185708] = 5, - ACTIONS(12403), 1, + [191289] = 5, + ACTIONS(12592), 1, aux_sym__text_token2, - ACTIONS(12571), 1, + ACTIONS(12818), 1, anon_sym_BANG_BANG_RBRACE, - STATE(6671), 1, + STATE(5576), 1, sym_php_only, - ACTIONS(12401), 2, + ACTIONS(12590), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4266), 2, sym__text, aux_sym_php_only_repeat1, - [185726] = 5, - ACTIONS(12429), 1, - aux_sym__text_token3, - ACTIONS(12573), 1, - anon_sym_ATendsetup, - STATE(5927), 1, + [191307] = 5, + ACTIONS(12592), 1, + aux_sym__text_token2, + ACTIONS(12820), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(6024), 1, sym_php_only, - ACTIONS(12427), 2, + ACTIONS(12590), 2, aux_sym__text_token1, - aux_sym__text_token2, - STATE(4195), 2, + aux_sym__text_token3, + STATE(4266), 2, sym__text, aux_sym_php_only_repeat1, - [185744] = 5, - ACTIONS(12429), 1, - aux_sym__text_token3, - ACTIONS(12575), 1, - anon_sym_ATendsetup, - STATE(5552), 1, + [191325] = 5, + ACTIONS(12576), 1, + aux_sym__text_token2, + ACTIONS(12822), 1, + anon_sym_RBRACE_RBRACE, + STATE(6406), 1, sym_php_only, - ACTIONS(12427), 2, + ACTIONS(12574), 2, aux_sym__text_token1, - aux_sym__text_token2, - STATE(4195), 2, + aux_sym__text_token3, + STATE(4226), 2, sym__text, aux_sym_php_only_repeat1, - [185762] = 5, - ACTIONS(12397), 1, + [191343] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, - ACTIONS(12577), 1, + ACTIONS(12824), 1, anon_sym_RBRACE_RBRACE, - STATE(6061), 1, + STATE(6591), 1, sym_php_only, - ACTIONS(12395), 2, + ACTIONS(12574), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4226), 2, sym__text, aux_sym_php_only_repeat1, - [185780] = 4, + [191361] = 5, ACTIONS(12582), 1, aux_sym__text_token3, - ACTIONS(10534), 2, - anon_sym_ATendfinished, - aux_sym__notification_token1, - ACTIONS(12579), 2, + ACTIONS(12826), 1, + anon_sym_ATendsetup, + STATE(6190), 1, + sym_php_only, + ACTIONS(12580), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4139), 2, + STATE(4230), 2, sym__text, aux_sym_php_only_repeat1, - [185796] = 5, - ACTIONS(12403), 1, + [191379] = 5, + ACTIONS(12592), 1, aux_sym__text_token2, - ACTIONS(12585), 1, + ACTIONS(12828), 1, anon_sym_BANG_BANG_RBRACE, - STATE(6060), 1, + STATE(6590), 1, sym_php_only, - ACTIONS(12401), 2, + ACTIONS(12590), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, - sym__text, - aux_sym_php_only_repeat1, - [185814] = 5, - ACTIONS(12429), 1, - aux_sym__text_token3, - ACTIONS(12587), 1, - anon_sym_ATendsetup, - STATE(6029), 1, - sym_php_only, - ACTIONS(12427), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4195), 2, + STATE(4266), 2, sym__text, aux_sym_php_only_repeat1, - [185832] = 5, - ACTIONS(12429), 1, + [191397] = 5, + ACTIONS(12582), 1, aux_sym__text_token3, - ACTIONS(12589), 1, + ACTIONS(12830), 1, anon_sym_ATendsetup, - STATE(6643), 1, + STATE(5995), 1, sym_php_only, - ACTIONS(12427), 2, + ACTIONS(12580), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4230), 2, sym__text, aux_sym_php_only_repeat1, - [185850] = 5, - ACTIONS(12397), 1, + [191415] = 5, + ACTIONS(12592), 1, aux_sym__text_token2, - ACTIONS(12591), 1, - anon_sym_RBRACE_RBRACE, - STATE(6017), 1, + ACTIONS(12832), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(6217), 1, sym_php_only, - ACTIONS(12395), 2, + ACTIONS(12590), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4266), 2, sym__text, aux_sym_php_only_repeat1, - [185868] = 5, - ACTIONS(12429), 1, - aux_sym__text_token3, - ACTIONS(12593), 1, - anon_sym_ATendsetup, - STATE(6588), 1, - sym_php_only, - ACTIONS(12427), 2, - aux_sym__text_token1, + [191433] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, - STATE(4195), 2, - sym__text, - aux_sym_php_only_repeat1, - [185886] = 5, - ACTIONS(12429), 1, - aux_sym__text_token3, - ACTIONS(12595), 1, - anon_sym_ATendsetup, - STATE(5580), 1, + ACTIONS(12834), 1, + anon_sym_RBRACE_RBRACE, + STATE(6174), 1, sym_php_only, - ACTIONS(12427), 2, + ACTIONS(12574), 2, aux_sym__text_token1, - aux_sym__text_token2, - STATE(4195), 2, - sym__text, - aux_sym_php_only_repeat1, - [185904] = 5, - ACTIONS(12429), 1, aux_sym__text_token3, - ACTIONS(12597), 1, - anon_sym_ATendsetup, - STATE(6250), 1, - sym_php_only, - ACTIONS(12427), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4195), 2, + STATE(4226), 2, sym__text, aux_sym_php_only_repeat1, - [185922] = 5, - ACTIONS(12397), 1, + [191451] = 5, + ACTIONS(12592), 1, aux_sym__text_token2, - ACTIONS(12599), 1, - anon_sym_RBRACE_RBRACE, - STATE(6546), 1, + ACTIONS(12836), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(6405), 1, sym_php_only, - ACTIONS(12395), 2, + ACTIONS(12590), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4266), 2, sym__text, aux_sym_php_only_repeat1, - [185940] = 5, - ACTIONS(12403), 1, + [191469] = 5, + ACTIONS(12592), 1, aux_sym__text_token2, - ACTIONS(12601), 1, + ACTIONS(12838), 1, anon_sym_BANG_BANG_RBRACE, - STATE(6016), 1, + STATE(5906), 1, sym_php_only, - ACTIONS(12401), 2, + ACTIONS(12590), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4266), 2, sym__text, aux_sym_php_only_repeat1, - [185958] = 5, - ACTIONS(12403), 1, + [191487] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, - ACTIONS(12603), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(6416), 1, + ACTIONS(12840), 1, + anon_sym_RBRACE_RBRACE, + STATE(5907), 1, sym_php_only, - ACTIONS(12401), 2, + ACTIONS(12574), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4226), 2, sym__text, aux_sym_php_only_repeat1, - [185976] = 5, - ACTIONS(12429), 1, + [191505] = 5, + ACTIONS(12582), 1, aux_sym__text_token3, - ACTIONS(12605), 1, + ACTIONS(12842), 1, anon_sym_ATendsetup, - STATE(5987), 1, + STATE(6378), 1, sym_php_only, - ACTIONS(12427), 2, + ACTIONS(12580), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4230), 2, sym__text, aux_sym_php_only_repeat1, - [185994] = 5, - ACTIONS(12397), 1, + [191523] = 5, + ACTIONS(12592), 1, aux_sym__text_token2, - ACTIONS(12607), 1, - anon_sym_RBRACE_RBRACE, - STATE(6417), 1, + ACTIONS(12844), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(6627), 1, sym_php_only, - ACTIONS(12395), 2, + ACTIONS(12590), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4266), 2, sym__text, aux_sym_php_only_repeat1, - [186012] = 5, - ACTIONS(12403), 1, + [191541] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, - ACTIONS(12609), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(6281), 1, + ACTIONS(12846), 1, + anon_sym_RBRACE_RBRACE, + STATE(6443), 1, sym_php_only, - ACTIONS(12401), 2, + ACTIONS(12574), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4226), 2, sym__text, aux_sym_php_only_repeat1, - [186030] = 5, - ACTIONS(12397), 1, + [191559] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, - ACTIONS(12611), 1, + ACTIONS(12848), 1, anon_sym_RBRACE_RBRACE, - STATE(6282), 1, + STATE(5584), 1, sym_php_only, - ACTIONS(12395), 2, + ACTIONS(12574), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, - sym__text, - aux_sym_php_only_repeat1, - [186048] = 5, - ACTIONS(12429), 1, - aux_sym__text_token3, - ACTIONS(12613), 1, - anon_sym_ATendsetup, - STATE(5754), 1, - sym_php_only, - ACTIONS(12427), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4195), 2, + STATE(4226), 2, sym__text, aux_sym_php_only_repeat1, - [186066] = 5, - ACTIONS(12429), 1, + [191577] = 5, + ACTIONS(12582), 1, aux_sym__text_token3, - ACTIONS(12615), 1, + ACTIONS(12850), 1, anon_sym_ATendsetup, - STATE(6153), 1, + STATE(6563), 1, sym_php_only, - ACTIONS(12427), 2, + ACTIONS(12580), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4230), 2, sym__text, aux_sym_php_only_repeat1, - [186084] = 5, - ACTIONS(12397), 1, + [191595] = 5, + ACTIONS(12576), 1, aux_sym__text_token2, - ACTIONS(12617), 1, + ACTIONS(12852), 1, anon_sym_RBRACE_RBRACE, - STATE(5611), 1, + STATE(6665), 1, sym_php_only, - ACTIONS(12395), 2, + ACTIONS(12574), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4226), 2, sym__text, aux_sym_php_only_repeat1, - [186102] = 5, - ACTIONS(12403), 1, + [191613] = 5, + ACTIONS(12592), 1, aux_sym__text_token2, - ACTIONS(12619), 1, + ACTIONS(12854), 1, anon_sym_BANG_BANG_RBRACE, - STATE(5610), 1, + STATE(6442), 1, sym_php_only, - ACTIONS(12401), 2, + ACTIONS(12590), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4266), 2, sym__text, aux_sym_php_only_repeat1, - [186120] = 5, - ACTIONS(12403), 1, + [191631] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - ACTIONS(12621), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(5782), 1, - sym_php_only, - ACTIONS(12401), 2, + STATE(5596), 1, + sym_text, + ACTIONS(12856), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4239), 2, sym__text, aux_sym_php_only_repeat1, - [186138] = 5, - ACTIONS(12397), 1, + [191646] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - ACTIONS(12623), 1, - anon_sym_RBRACE_RBRACE, - STATE(5783), 1, - sym_php_only, - ACTIONS(12395), 2, + STATE(5707), 1, + sym_text, + ACTIONS(12856), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4239), 2, sym__text, aux_sym_php_only_repeat1, - [186156] = 5, - ACTIONS(12403), 1, + [191661] = 4, + ACTIONS(11503), 1, aux_sym__text_token2, - ACTIONS(12625), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(6020), 1, - sym_php_only, - ACTIONS(12401), 2, + STATE(5277), 1, + sym_text, + ACTIONS(11501), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4103), 2, sym__text, aux_sym_php_only_repeat1, - [186174] = 5, - ACTIONS(12397), 1, + [191676] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - ACTIONS(12627), 1, - anon_sym_RBRACE_RBRACE, - STATE(6593), 1, - sym_php_only, - ACTIONS(12395), 2, + STATE(5724), 1, + sym_text, + ACTIONS(12856), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4239), 2, sym__text, aux_sym_php_only_repeat1, - [186192] = 5, - ACTIONS(12397), 1, + [191691] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - ACTIONS(12629), 1, + STATE(5531), 1, + sym_text, + ACTIONS(12856), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4239), 2, + sym__text, + aux_sym_php_only_repeat1, + [191706] = 4, + ACTIONS(12638), 1, anon_sym_RBRACE_RBRACE, - STATE(6019), 1, - sym_php_only, - ACTIONS(12395), 2, + ACTIONS(12862), 1, + aux_sym__text_token2, + ACTIONS(12860), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4245), 2, sym__text, aux_sym_php_only_repeat1, - [186210] = 5, - ACTIONS(12403), 1, + [191721] = 4, + ACTIONS(10703), 1, + aux_sym_alpine_js_token2, + ACTIONS(12867), 1, aux_sym__text_token2, - ACTIONS(12631), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(6592), 1, - sym_php_only, - ACTIONS(12401), 2, + ACTIONS(12864), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4227), 2, sym__text, aux_sym_php_only_repeat1, - [186228] = 5, - ACTIONS(12397), 1, + [191736] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - ACTIONS(12633), 1, - anon_sym_RBRACE_RBRACE, - STATE(5974), 1, - sym_php_only, - ACTIONS(12395), 2, + STATE(5989), 1, + sym_text, + ACTIONS(12856), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4239), 2, sym__text, aux_sym_php_only_repeat1, - [186246] = 5, - ACTIONS(12429), 1, + [191751] = 4, + ACTIONS(12858), 1, + aux_sym__text_token2, + STATE(6108), 1, + sym_text, + ACTIONS(12856), 2, + aux_sym__text_token1, aux_sym__text_token3, - ACTIONS(12635), 1, + STATE(4239), 2, + sym__text, + aux_sym_php_only_repeat1, + [191766] = 4, + ACTIONS(12638), 1, anon_sym_ATendsetup, - STATE(5509), 1, - sym_php_only, - ACTIONS(12427), 2, + ACTIONS(12872), 1, + aux_sym__text_token3, + ACTIONS(12870), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4257), 2, sym__text, aux_sym_php_only_repeat1, - [186264] = 5, - ACTIONS(12403), 1, + [191781] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - ACTIONS(12637), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(6458), 1, - sym_php_only, - ACTIONS(12401), 2, + STATE(6184), 1, + sym_text, + ACTIONS(12856), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4239), 2, sym__text, aux_sym_php_only_repeat1, - [186282] = 5, - ACTIONS(12403), 1, + [191796] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - ACTIONS(12639), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(5973), 1, - sym_php_only, - ACTIONS(12401), 2, + STATE(6557), 1, + sym_text, + ACTIONS(12856), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4239), 2, sym__text, aux_sym_php_only_repeat1, - [186300] = 5, - ACTIONS(12429), 1, - aux_sym__text_token3, - ACTIONS(12641), 1, - anon_sym_ATendsetup, - STATE(5943), 1, - sym_php_only, - ACTIONS(12427), 2, - aux_sym__text_token1, + [191811] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - STATE(4195), 2, + STATE(6446), 1, + sym_text, + ACTIONS(12856), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4239), 2, sym__text, aux_sym_php_only_repeat1, - [186318] = 5, - ACTIONS(12429), 1, - aux_sym__text_token3, - ACTIONS(12643), 1, - anon_sym_ATendsetup, - STATE(6562), 1, - sym_php_only, - ACTIONS(12427), 2, - aux_sym__text_token1, + [191826] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - STATE(4195), 2, + STATE(5668), 1, + sym_text, + ACTIONS(12856), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4239), 2, sym__text, aux_sym_php_only_repeat1, - [186336] = 5, - ACTIONS(12429), 1, - aux_sym__text_token3, - ACTIONS(12645), 1, - anon_sym_ATendsetup, - STATE(6515), 1, - sym_php_only, - ACTIONS(12427), 2, - aux_sym__text_token1, + [191841] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - STATE(4195), 2, + STATE(5949), 1, + sym_text, + ACTIONS(12856), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4239), 2, sym__text, aux_sym_php_only_repeat1, - [186354] = 5, - ACTIONS(12429), 1, - aux_sym__text_token3, - ACTIONS(12647), 1, - anon_sym_ATendsetup, - STATE(5543), 1, - sym_php_only, - ACTIONS(12427), 2, - aux_sym__text_token1, + [191856] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - STATE(4195), 2, + STATE(6259), 1, + sym_text, + ACTIONS(12856), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4239), 2, sym__text, aux_sym_php_only_repeat1, - [186372] = 5, - ACTIONS(12403), 1, + [191871] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - ACTIONS(12649), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(6545), 1, - sym_php_only, - ACTIONS(12401), 2, + STATE(6594), 1, + sym_text, + ACTIONS(12856), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4239), 2, sym__text, aux_sym_php_only_repeat1, - [186390] = 5, - ACTIONS(12397), 1, + [191886] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - ACTIONS(12651), 1, - anon_sym_RBRACE_RBRACE, - STATE(5931), 1, - sym_php_only, - ACTIONS(12395), 2, + STATE(5587), 1, + sym_text, + ACTIONS(12856), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4239), 2, sym__text, aux_sym_php_only_repeat1, - [186408] = 5, - ACTIONS(12403), 1, + [191901] = 4, + ACTIONS(10669), 1, + aux_sym_alpine_js_token2, + ACTIONS(12876), 1, aux_sym__text_token2, - ACTIONS(12653), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(5930), 1, - sym_php_only, - ACTIONS(12401), 2, + ACTIONS(12874), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4227), 2, sym__text, aux_sym_php_only_repeat1, - [186426] = 5, - ACTIONS(12429), 1, - aux_sym__text_token3, - ACTIONS(12655), 1, - anon_sym_ATendsetup, - STATE(5898), 1, - sym_php_only, - ACTIONS(12427), 2, + [191916] = 4, + ACTIONS(12858), 1, + aux_sym__text_token2, + STATE(5667), 1, + sym_text, + ACTIONS(12856), 2, aux_sym__text_token1, + aux_sym__text_token3, + STATE(4239), 2, + sym__text, + aux_sym_php_only_repeat1, + [191931] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - STATE(4195), 2, + STATE(6409), 1, + sym_text, + ACTIONS(12856), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4239), 2, sym__text, aux_sym_php_only_repeat1, - [186444] = 5, - ACTIONS(12397), 1, + [191946] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - ACTIONS(12657), 1, - anon_sym_RBRACE_RBRACE, - STATE(5880), 1, - sym_php_only, - ACTIONS(12395), 2, + STATE(6028), 1, + sym_text, + ACTIONS(12856), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4239), 2, sym__text, aux_sym_php_only_repeat1, - [186462] = 5, - ACTIONS(12429), 1, + [191961] = 4, + ACTIONS(12638), 1, + anon_sym_ATendphp, + ACTIONS(12880), 1, aux_sym__text_token3, - ACTIONS(12659), 1, - anon_sym_ATendsetup, - STATE(5800), 1, - sym_php_only, - ACTIONS(12427), 2, + ACTIONS(12878), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4262), 2, sym__text, aux_sym_php_only_repeat1, - [186480] = 5, - ACTIONS(12403), 1, + [191976] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - ACTIONS(12661), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(5879), 1, - sym_php_only, - ACTIONS(12401), 2, + STATE(6221), 1, + sym_text, + ACTIONS(12856), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4239), 2, sym__text, aux_sym_php_only_repeat1, - [186498] = 5, - ACTIONS(12403), 1, + [191991] = 4, + ACTIONS(10703), 1, + anon_sym_RBRACE_RBRACE, + ACTIONS(12885), 1, aux_sym__text_token2, - ACTIONS(12663), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(5468), 1, - sym_php_only, - ACTIONS(12401), 2, + ACTIONS(12882), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4245), 2, sym__text, aux_sym_php_only_repeat1, - [186516] = 5, - ACTIONS(12429), 1, + [192006] = 4, + ACTIONS(12858), 1, + aux_sym__text_token2, + STATE(6631), 1, + sym_text, + ACTIONS(12856), 2, + aux_sym__text_token1, aux_sym__text_token3, - ACTIONS(12665), 1, - anon_sym_ATendsetup, - STATE(5849), 1, - sym_php_only, - ACTIONS(12427), 2, + STATE(4239), 2, + sym__text, + aux_sym_php_only_repeat1, + [192021] = 4, + ACTIONS(12858), 1, + aux_sym__text_token2, + STATE(6296), 1, + sym_text, + ACTIONS(12856), 2, aux_sym__text_token1, + aux_sym__text_token3, + STATE(4239), 2, + sym__text, + aux_sym_php_only_repeat1, + [192036] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - STATE(4195), 2, + STATE(5829), 1, + sym_text, + ACTIONS(12856), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4239), 2, sym__text, aux_sym_php_only_repeat1, - [186534] = 5, - ACTIONS(12429), 1, + [192051] = 4, + ACTIONS(12356), 1, + aux_sym__text_token2, + STATE(5277), 1, + sym_text, + ACTIONS(12354), 2, + aux_sym__text_token1, aux_sym__text_token3, - ACTIONS(12667), 1, - anon_sym_ATendsetup, - STATE(6299), 1, - sym_php_only, - ACTIONS(12427), 2, + STATE(4190), 2, + sym__text, + aux_sym_php_only_repeat1, + [192066] = 4, + ACTIONS(10703), 1, + anon_sym_BANG_BANG_RBRACE, + ACTIONS(12891), 1, + aux_sym__text_token2, + ACTIONS(12888), 2, aux_sym__text_token1, + aux_sym__text_token3, + STATE(4250), 2, + sym__text, + aux_sym_php_only_repeat1, + [192081] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - STATE(4195), 2, + STATE(6077), 1, + sym_text, + ACTIONS(12856), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4239), 2, sym__text, aux_sym_php_only_repeat1, - [186552] = 5, - ACTIONS(12403), 1, + [192096] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - ACTIONS(12669), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(5832), 1, - sym_php_only, - ACTIONS(12401), 2, + STATE(6780), 1, + sym_text, + ACTIONS(12856), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4239), 2, sym__text, aux_sym_php_only_repeat1, - [186570] = 5, - ACTIONS(12397), 1, + [192111] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - ACTIONS(12671), 1, - anon_sym_RBRACE_RBRACE, - STATE(5833), 1, - sym_php_only, - ACTIONS(12395), 2, + STATE(6372), 1, + sym_text, + ACTIONS(12856), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4239), 2, sym__text, aux_sym_php_only_repeat1, - [186588] = 5, - ACTIONS(12397), 1, + [192126] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - ACTIONS(12673), 1, - anon_sym_RBRACE_RBRACE, - STATE(6329), 1, - sym_php_only, - ACTIONS(12395), 2, + STATE(6333), 1, + sym_text, + ACTIONS(12856), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4191), 2, + STATE(4239), 2, sym__text, aux_sym_php_only_repeat1, - [186606] = 5, - ACTIONS(12403), 1, + [192141] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - ACTIONS(12675), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(6328), 1, - sym_php_only, - ACTIONS(12401), 2, + STATE(5910), 1, + sym_text, + ACTIONS(12856), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4186), 2, + STATE(4239), 2, sym__text, aux_sym_php_only_repeat1, - [186624] = 4, - ACTIONS(12415), 1, - anon_sym_BANG_BANG_RBRACE, - ACTIONS(12679), 1, + [192156] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - ACTIONS(12677), 2, + STATE(5751), 1, + sym_text, + ACTIONS(12856), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4189), 2, + STATE(4239), 2, sym__text, aux_sym_php_only_repeat1, - [186639] = 4, - ACTIONS(10534), 1, + [192171] = 4, + ACTIONS(10703), 1, anon_sym_ATendsetup, - ACTIONS(12684), 1, + ACTIONS(12897), 1, aux_sym__text_token3, - ACTIONS(12681), 2, + ACTIONS(12894), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4187), 2, + STATE(4257), 2, sym__text, aux_sym_php_only_repeat1, - [186654] = 4, - ACTIONS(11368), 1, + [192186] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - STATE(5235), 1, + STATE(6070), 1, sym_text, - ACTIONS(11366), 2, + ACTIONS(12856), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4067), 2, + STATE(4239), 2, sym__text, aux_sym_php_only_repeat1, - [186669] = 4, - ACTIONS(10534), 1, - anon_sym_BANG_BANG_RBRACE, - ACTIONS(12690), 1, + [192201] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - ACTIONS(12687), 2, + STATE(6520), 1, + sym_text, + ACTIONS(12856), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4189), 2, + STATE(4239), 2, sym__text, aux_sym_php_only_repeat1, - [186684] = 4, - ACTIONS(12169), 1, + [192216] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - STATE(5235), 1, + STATE(6743), 1, sym_text, - ACTIONS(12167), 2, + ACTIONS(12856), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4125), 2, + STATE(4239), 2, sym__text, aux_sym_php_only_repeat1, - [186699] = 4, - ACTIONS(12415), 1, - anon_sym_RBRACE_RBRACE, - ACTIONS(12695), 1, + [192231] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - ACTIONS(12693), 2, + STATE(5871), 1, + sym_text, + ACTIONS(12856), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4194), 2, + STATE(4239), 2, sym__text, aux_sym_php_only_repeat1, - [186714] = 4, - ACTIONS(12415), 1, + [192246] = 4, + ACTIONS(10703), 1, anon_sym_ATendphp, - ACTIONS(12699), 1, + ACTIONS(12903), 1, aux_sym__text_token3, - ACTIONS(12697), 2, + ACTIONS(12900), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4193), 2, + STATE(4262), 2, sym__text, aux_sym_php_only_repeat1, - [186729] = 4, - ACTIONS(10534), 1, - anon_sym_ATendphp, - ACTIONS(12704), 1, - aux_sym__text_token3, - ACTIONS(12701), 2, - aux_sym__text_token1, + [192261] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - STATE(4193), 2, + STATE(6705), 1, + sym_text, + ACTIONS(12856), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4239), 2, sym__text, aux_sym_php_only_repeat1, - [186744] = 4, - ACTIONS(10534), 1, - anon_sym_RBRACE_RBRACE, - ACTIONS(12710), 1, + [192276] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - ACTIONS(12707), 2, + STATE(6483), 1, + sym_text, + ACTIONS(12856), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4194), 2, + STATE(4239), 2, sym__text, aux_sym_php_only_repeat1, - [186759] = 4, - ACTIONS(12415), 1, - anon_sym_ATendsetup, - ACTIONS(12715), 1, - aux_sym__text_token3, - ACTIONS(12713), 2, - aux_sym__text_token1, + [192291] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - STATE(4187), 2, + STATE(6668), 1, + sym_text, + ACTIONS(12856), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4239), 2, sym__text, aux_sym_php_only_repeat1, - [186774] = 4, - ACTIONS(12717), 1, - aux_sym_parameter_token1, - ACTIONS(12719), 1, - anon_sym_RPAREN2, - STATE(5409), 1, - sym__text_with_parenthesis, - STATE(4226), 2, - sym_parameter, - aux_sym__text_with_parenthesis_repeat1, - [186788] = 2, - ACTIONS(10936), 2, - aux_sym__text_token1, + [192306] = 4, + ACTIONS(12638), 1, + anon_sym_BANG_BANG_RBRACE, + ACTIONS(12908), 1, aux_sym__text_token2, - ACTIONS(10934), 3, - anon_sym_ATendsuccess, - aux_sym__notification_token1, - aux_sym__text_token3, - [186798] = 2, - ACTIONS(11014), 2, + ACTIONS(12906), 2, aux_sym__text_token1, + aux_sym__text_token3, + STATE(4250), 2, + sym__text, + aux_sym_php_only_repeat1, + [192321] = 4, + ACTIONS(12858), 1, aux_sym__text_token2, - ACTIONS(11012), 3, - anon_sym_ATendsuccess, - aux_sym__notification_token1, + STATE(5709), 1, + sym_text, + ACTIONS(12856), 2, + aux_sym__text_token1, aux_sym__text_token3, - [186808] = 4, - ACTIONS(12721), 1, - anon_sym_ATdefault, - ACTIONS(12723), 1, + STATE(4239), 2, + sym__text, + aux_sym_php_only_repeat1, + [192336] = 4, + ACTIONS(6781), 1, anon_sym_ATendswitch, - ACTIONS(12725), 1, + ACTIONS(12910), 1, + anon_sym_ATdefault, + ACTIONS(12912), 1, anon_sym_ATcase, - STATE(4296), 2, + STATE(4343), 2, sym__case, aux_sym_switch_repeat1, - [186822] = 4, - ACTIONS(5195), 1, - anon_sym_ATendswitch, - ACTIONS(12725), 1, + [192350] = 4, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(12727), 1, + ACTIONS(12914), 1, anon_sym_ATdefault, - STATE(4340), 2, + ACTIONS(12916), 1, + anon_sym_ATendswitch, + STATE(4370), 2, sym__case, aux_sym_switch_repeat1, - [186836] = 4, - ACTIONS(12717), 1, - aux_sym_parameter_token1, - ACTIONS(12729), 1, - anon_sym_RPAREN2, - STATE(5409), 1, - sym__text_with_parenthesis, - STATE(4283), 2, - sym_parameter, - aux_sym__text_with_parenthesis_repeat1, - [186850] = 4, - ACTIONS(12717), 1, - aux_sym_parameter_token1, - ACTIONS(12731), 1, - anon_sym_RPAREN2, - STATE(5409), 1, - sym__text_with_parenthesis, - STATE(4348), 2, - sym_parameter, - aux_sym__text_with_parenthesis_repeat1, - [186864] = 4, - ACTIONS(12717), 1, - aux_sym_parameter_token1, - ACTIONS(12733), 1, - anon_sym_RPAREN2, - STATE(5409), 1, - sym__text_with_parenthesis, - STATE(4242), 2, - sym_parameter, - aux_sym__text_with_parenthesis_repeat1, - [186878] = 4, - ACTIONS(12717), 1, + [192364] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12735), 1, + ACTIONS(12920), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4324), 2, + STATE(4282), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [186892] = 4, - ACTIONS(12717), 1, + [192378] = 4, + ACTIONS(6307), 1, + anon_sym_ATendswitch, + ACTIONS(12912), 1, + anon_sym_ATcase, + ACTIONS(12922), 1, + anon_sym_ATdefault, + STATE(4343), 2, + sym__case, + aux_sym_switch_repeat1, + [192392] = 4, + ACTIONS(12912), 1, + anon_sym_ATcase, + ACTIONS(12924), 1, + anon_sym_ATdefault, + ACTIONS(12926), 1, + anon_sym_ATendswitch, + STATE(4271), 2, + sym__case, + aux_sym_switch_repeat1, + [192406] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12737), 1, + ACTIONS(12928), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4202), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [186906] = 4, - ACTIONS(12717), 1, + [192420] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12739), 1, + ACTIONS(12930), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4295), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [186920] = 4, - ACTIONS(12717), 1, + [192434] = 4, + ACTIONS(12912), 1, + anon_sym_ATcase, + ACTIONS(12932), 1, + anon_sym_ATdefault, + ACTIONS(12934), 1, + anon_sym_ATendswitch, + STATE(4283), 2, + sym__case, + aux_sym_switch_repeat1, + [192448] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12741), 1, + ACTIONS(12936), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4237), 2, + STATE(4296), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [186934] = 4, - ACTIONS(12717), 1, + [192462] = 2, + ACTIONS(11151), 2, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11149), 3, + anon_sym_ATenderror, + aux_sym__notification_token1, + aux_sym__text_token3, + [192472] = 2, + ACTIONS(11197), 2, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11195), 3, + anon_sym_ATenderror, + aux_sym__notification_token1, + aux_sym__text_token3, + [192482] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12743), 1, + ACTIONS(12938), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4240), 2, + STATE(4273), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [186948] = 4, - ACTIONS(12725), 1, + [192496] = 4, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(12745), 1, + ACTIONS(12940), 1, anon_sym_ATdefault, - ACTIONS(12747), 1, + ACTIONS(12942), 1, anon_sym_ATendswitch, - STATE(4238), 2, + STATE(4299), 2, sym__case, aux_sym_switch_repeat1, - [186962] = 4, - ACTIONS(5187), 1, - anon_sym_ATendswitch, - ACTIONS(12725), 1, + [192510] = 4, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(12749), 1, + ACTIONS(12944), 1, anon_sym_ATdefault, - STATE(4340), 2, + ACTIONS(12946), 1, + anon_sym_ATendswitch, + STATE(4297), 2, sym__case, aux_sym_switch_repeat1, - [186976] = 4, - ACTIONS(12717), 1, + [192524] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12751), 1, + ACTIONS(12948), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [186990] = 4, - ACTIONS(12725), 1, - anon_sym_ATcase, - ACTIONS(12753), 1, - anon_sym_ATdefault, - ACTIONS(12755), 1, + [192538] = 4, + ACTIONS(7271), 1, anon_sym_ATendswitch, - STATE(4223), 2, - sym__case, - aux_sym_switch_repeat1, - [187004] = 4, - ACTIONS(12725), 1, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(12757), 1, + ACTIONS(12950), 1, anon_sym_ATdefault, - ACTIONS(12759), 1, - anon_sym_ATendswitch, - STATE(4210), 2, + STATE(4343), 2, sym__case, aux_sym_switch_repeat1, - [187018] = 4, - ACTIONS(12717), 1, - aux_sym_parameter_token1, - ACTIONS(12761), 1, - anon_sym_RPAREN2, - STATE(5409), 1, - sym__text_with_parenthesis, - STATE(4348), 2, - sym_parameter, - aux_sym__text_with_parenthesis_repeat1, - [187032] = 4, - ACTIONS(12717), 1, + [192552] = 2, + ACTIONS(11151), 2, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11149), 3, + anon_sym_ATendbefore, + aux_sym__notification_token1, + aux_sym__text_token3, + [192562] = 2, + ACTIONS(11197), 2, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11195), 3, + anon_sym_ATendbefore, + aux_sym__notification_token1, + aux_sym__text_token3, + [192572] = 2, + ACTIONS(12954), 2, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(12952), 3, + anon_sym_ATenderror, + aux_sym__notification_token1, + aux_sym__text_token3, + [192582] = 2, + ACTIONS(11151), 2, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11149), 3, + anon_sym_ATendafter, + aux_sym__notification_token1, + aux_sym__text_token3, + [192592] = 2, + ACTIONS(11197), 2, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11195), 3, + anon_sym_ATendafter, + aux_sym__notification_token1, + aux_sym__text_token3, + [192602] = 2, + ACTIONS(11151), 2, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11149), 3, + anon_sym_ATendsuccess, + aux_sym__notification_token1, + aux_sym__text_token3, + [192612] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12763), 1, + ACTIONS(12956), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4211), 2, + STATE(4306), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187046] = 4, - ACTIONS(12725), 1, + [192626] = 4, + ACTIONS(5299), 1, + anon_sym_ATendswitch, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(12765), 1, + ACTIONS(12958), 1, anon_sym_ATdefault, - ACTIONS(12767), 1, - anon_sym_ATendswitch, - STATE(4326), 2, + STATE(4343), 2, sym__case, aux_sym_switch_repeat1, - [187060] = 2, - ACTIONS(12771), 2, + [192640] = 2, + ACTIONS(11197), 2, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(12769), 3, - anon_sym_ATendbefore, + ACTIONS(11195), 3, + anon_sym_ATendsuccess, aux_sym__notification_token1, aux_sym__text_token3, - [187070] = 4, - ACTIONS(12725), 1, - anon_sym_ATcase, - ACTIONS(12773), 1, - anon_sym_ATdefault, - ACTIONS(12775), 1, - anon_sym_ATendswitch, - STATE(4355), 2, - sym__case, - aux_sym_switch_repeat1, - [187084] = 4, - ACTIONS(8422), 1, - anon_sym_ATendswitch, - ACTIONS(12725), 1, - anon_sym_ATcase, - ACTIONS(12777), 1, - anon_sym_ATdefault, - STATE(4340), 2, - sym__case, - aux_sym_switch_repeat1, - [187098] = 4, - ACTIONS(12717), 1, + [192650] = 2, + ACTIONS(11151), 2, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11149), 3, + anon_sym_ATendfinished, + aux_sym__notification_token1, + aux_sym__text_token3, + [192660] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12779), 1, + ACTIONS(12960), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187112] = 4, - ACTIONS(5983), 1, - anon_sym_ATendswitch, - ACTIONS(12725), 1, - anon_sym_ATcase, - ACTIONS(12781), 1, - anon_sym_ATdefault, - STATE(4340), 2, - sym__case, - aux_sym_switch_repeat1, - [187126] = 4, - ACTIONS(12717), 1, + [192674] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12783), 1, + ACTIONS(12962), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4220), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187140] = 4, - ACTIONS(6791), 1, - anon_sym_ATendswitch, - ACTIONS(12725), 1, - anon_sym_ATcase, - ACTIONS(12785), 1, - anon_sym_ATdefault, - STATE(4340), 2, - sym__case, - aux_sym_switch_repeat1, - [187154] = 4, - ACTIONS(12725), 1, - anon_sym_ATcase, - ACTIONS(12787), 1, - anon_sym_ATdefault, - ACTIONS(12789), 1, - anon_sym_ATendswitch, - STATE(4264), 2, - sym__case, - aux_sym_switch_repeat1, - [187168] = 4, - ACTIONS(5233), 1, - anon_sym_ATendswitch, - ACTIONS(12725), 1, - anon_sym_ATcase, - ACTIONS(12791), 1, - anon_sym_ATdefault, - STATE(4340), 2, - sym__case, - aux_sym_switch_repeat1, - [187182] = 4, - ACTIONS(12717), 1, + [192688] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12793), 1, + ACTIONS(12964), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187196] = 4, - ACTIONS(12725), 1, - anon_sym_ATcase, - ACTIONS(12795), 1, - anon_sym_ATdefault, - ACTIONS(12797), 1, + [192702] = 4, + ACTIONS(7391), 1, anon_sym_ATendswitch, - STATE(4282), 2, - sym__case, - aux_sym_switch_repeat1, - [187210] = 4, - ACTIONS(12725), 1, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(12799), 1, + ACTIONS(12966), 1, anon_sym_ATdefault, - ACTIONS(12801), 1, - anon_sym_ATendswitch, - STATE(4225), 2, + STATE(4343), 2, sym__case, aux_sym_switch_repeat1, - [187224] = 2, - ACTIONS(11014), 2, + [192716] = 2, + ACTIONS(11197), 2, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(11012), 3, - anon_sym_ATendafter, + ACTIONS(11195), 3, + anon_sym_ATendfinished, aux_sym__notification_token1, aux_sym__text_token3, - [187234] = 4, - ACTIONS(12725), 1, + [192726] = 4, + ACTIONS(6299), 1, + anon_sym_ATendswitch, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(12803), 1, + ACTIONS(12968), 1, + anon_sym_ATdefault, + STATE(4343), 2, + sym__case, + aux_sym_switch_repeat1, + [192740] = 4, + ACTIONS(12912), 1, + anon_sym_ATcase, + ACTIONS(12970), 1, anon_sym_ATdefault, - ACTIONS(12805), 1, + ACTIONS(12972), 1, anon_sym_ATendswitch, - STATE(4243), 2, + STATE(4291), 2, sym__case, aux_sym_switch_repeat1, - [187248] = 4, - ACTIONS(12717), 1, - aux_sym_parameter_token1, - ACTIONS(12807), 1, - anon_sym_RPAREN2, - STATE(5409), 1, - sym__text_with_parenthesis, - STATE(4348), 2, - sym_parameter, - aux_sym__text_with_parenthesis_repeat1, - [187262] = 4, - ACTIONS(12717), 1, + [192754] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12809), 1, + ACTIONS(12974), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187276] = 4, - ACTIONS(12717), 1, + [192768] = 4, + ACTIONS(12912), 1, + anon_sym_ATcase, + ACTIONS(12976), 1, + anon_sym_ATdefault, + ACTIONS(12978), 1, + anon_sym_ATendswitch, + STATE(4307), 2, + sym__case, + aux_sym_switch_repeat1, + [192782] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12811), 1, + ACTIONS(12980), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4279), 2, + STATE(4311), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187290] = 4, - ACTIONS(12717), 1, + [192796] = 4, + ACTIONS(12912), 1, + anon_sym_ATcase, + ACTIONS(12982), 1, + anon_sym_ATdefault, + ACTIONS(12984), 1, + anon_sym_ATendswitch, + STATE(4315), 2, + sym__case, + aux_sym_switch_repeat1, + [192810] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12813), 1, + ACTIONS(12986), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4294), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187304] = 4, - ACTIONS(12717), 1, + [192824] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12815), 1, + ACTIONS(12988), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4277), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187318] = 4, - ACTIONS(12725), 1, + [192838] = 4, + ACTIONS(7127), 1, + anon_sym_ATendswitch, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(12817), 1, + ACTIONS(12990), 1, anon_sym_ATdefault, - ACTIONS(12819), 1, - anon_sym_ATendswitch, - STATE(4321), 2, + STATE(4343), 2, sym__case, aux_sym_switch_repeat1, - [187332] = 4, - ACTIONS(12717), 1, - aux_sym_parameter_token1, - ACTIONS(12821), 1, - anon_sym_RPAREN2, - STATE(5409), 1, - sym__text_with_parenthesis, - STATE(4348), 2, - sym_parameter, - aux_sym__text_with_parenthesis_repeat1, - [187346] = 4, - ACTIONS(7726), 1, + [192852] = 4, + ACTIONS(6975), 1, anon_sym_ATendswitch, - ACTIONS(12725), 1, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(12823), 1, + ACTIONS(12992), 1, anon_sym_ATdefault, - STATE(4340), 2, + STATE(4343), 2, sym__case, aux_sym_switch_repeat1, - [187360] = 4, - ACTIONS(12725), 1, + [192866] = 4, + ACTIONS(7419), 1, + anon_sym_ATendswitch, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(12825), 1, + ACTIONS(12994), 1, anon_sym_ATdefault, - ACTIONS(12827), 1, - anon_sym_ATendswitch, - STATE(4219), 2, + STATE(4343), 2, sym__case, aux_sym_switch_repeat1, - [187374] = 4, - ACTIONS(12717), 1, + [192880] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12829), 1, + ACTIONS(12996), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187388] = 4, - ACTIONS(12717), 1, + [192894] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12831), 1, + ACTIONS(12998), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4256), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187402] = 4, - ACTIONS(12717), 1, + [192908] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12833), 1, + ACTIONS(13000), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4358), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187416] = 4, - ACTIONS(4799), 1, + [192922] = 4, + ACTIONS(4515), 1, anon_sym_ATendswitch, - ACTIONS(12725), 1, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(12835), 1, + ACTIONS(13002), 1, anon_sym_ATdefault, - STATE(4340), 2, + STATE(4343), 2, sym__case, aux_sym_switch_repeat1, - [187430] = 4, - ACTIONS(12717), 1, + [192936] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12837), 1, + ACTIONS(13004), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4232), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187444] = 4, - ACTIONS(5269), 1, + [192950] = 4, + ACTIONS(8445), 1, anon_sym_ATendswitch, - ACTIONS(12725), 1, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(12839), 1, + ACTIONS(13006), 1, anon_sym_ATdefault, - STATE(4340), 2, + STATE(4343), 2, sym__case, aux_sym_switch_repeat1, - [187458] = 2, - ACTIONS(10936), 2, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10934), 3, - anon_sym_ATendfinished, - aux_sym__notification_token1, - aux_sym__text_token3, - [187468] = 4, - ACTIONS(12717), 1, + [192964] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12841), 1, + ACTIONS(13008), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4364), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187482] = 4, - ACTIONS(12717), 1, + [192978] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12843), 1, + ACTIONS(13010), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4330), 2, + STATE(4318), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187496] = 4, - ACTIONS(12725), 1, - anon_sym_ATcase, - ACTIONS(12845), 1, - anon_sym_ATdefault, - ACTIONS(12847), 1, - anon_sym_ATendswitch, - STATE(4289), 2, - sym__case, - aux_sym_switch_repeat1, - [187510] = 4, - ACTIONS(12717), 1, + [192992] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12849), 1, + ACTIONS(13012), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4231), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187524] = 4, - ACTIONS(12725), 1, - anon_sym_ATcase, - ACTIONS(12851), 1, - anon_sym_ATdefault, - ACTIONS(12853), 1, - anon_sym_ATendswitch, - STATE(4245), 2, - sym__case, - aux_sym_switch_repeat1, - [187538] = 4, - ACTIONS(12725), 1, + [193006] = 4, + ACTIONS(12918), 1, + aux_sym_parameter_token1, + ACTIONS(13014), 1, + anon_sym_RPAREN2, + STATE(5430), 1, + sym__text_with_parenthesis, + STATE(4321), 2, + sym_parameter, + aux_sym__text_with_parenthesis_repeat1, + [193020] = 4, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(12855), 1, + ACTIONS(13016), 1, anon_sym_ATdefault, - ACTIONS(12857), 1, + ACTIONS(13018), 1, anon_sym_ATendswitch, - STATE(4221), 2, + STATE(4313), 2, sym__case, aux_sym_switch_repeat1, - [187552] = 2, - ACTIONS(10936), 2, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10934), 3, - anon_sym_ATendafter, - aux_sym__notification_token1, - aux_sym__text_token3, - [187562] = 4, - ACTIONS(12717), 1, + [193034] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12859), 1, + ACTIONS(13020), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4247), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187576] = 2, - ACTIONS(12771), 2, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(12769), 3, - anon_sym_ATendafter, - aux_sym__notification_token1, - aux_sym__text_token3, - [187586] = 4, - ACTIONS(12717), 1, + [193048] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12861), 1, + ACTIONS(13022), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4323), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187600] = 4, - ACTIONS(6829), 1, - anon_sym_ATendswitch, - ACTIONS(12725), 1, - anon_sym_ATcase, - ACTIONS(12863), 1, - anon_sym_ATdefault, - STATE(4340), 2, - sym__case, - aux_sym_switch_repeat1, - [187614] = 4, - ACTIONS(12717), 1, + [193062] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12865), 1, + ACTIONS(13024), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187628] = 4, - ACTIONS(12867), 1, - anon_sym_RPAREN, - ACTIONS(12869), 1, + [193076] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - STATE(5336), 1, + ACTIONS(13026), 1, + anon_sym_RPAREN2, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4259), 2, + STATE(4326), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187642] = 4, - ACTIONS(12717), 1, + [193090] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12872), 1, + ACTIONS(13028), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4367), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187656] = 4, - ACTIONS(12717), 1, + [193104] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12874), 1, + ACTIONS(13030), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4358), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187670] = 4, - ACTIONS(12717), 1, + [193118] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12876), 1, + ACTIONS(13032), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4214), 2, + STATE(4328), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187684] = 4, - ACTIONS(12717), 1, + [193132] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12878), 1, + ACTIONS(13034), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4352), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187698] = 4, - ACTIONS(7610), 1, - anon_sym_ATendswitch, - ACTIONS(12725), 1, - anon_sym_ATcase, - ACTIONS(12880), 1, - anon_sym_ATdefault, - STATE(4340), 2, - sym__case, - aux_sym_switch_repeat1, - [187712] = 4, - ACTIONS(5307), 1, - anon_sym_ATendswitch, - ACTIONS(12725), 1, - anon_sym_ATcase, - ACTIONS(12882), 1, - anon_sym_ATdefault, - STATE(4340), 2, - sym__case, - aux_sym_switch_repeat1, - [187726] = 4, - ACTIONS(12717), 1, + [193146] = 2, + ACTIONS(12954), 2, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(12952), 3, + anon_sym_ATendfinished, + aux_sym__notification_token1, + aux_sym__text_token3, + [193156] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12884), 1, + ACTIONS(13036), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4273), 2, + STATE(4331), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187740] = 4, - ACTIONS(12717), 1, + [193170] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12886), 1, + ACTIONS(13038), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187754] = 4, - ACTIONS(12725), 1, - anon_sym_ATcase, - ACTIONS(12888), 1, - anon_sym_ATdefault, - ACTIONS(12890), 1, - anon_sym_ATendswitch, - STATE(4280), 2, - sym__case, - aux_sym_switch_repeat1, - [187768] = 4, - ACTIONS(12725), 1, - anon_sym_ATcase, - ACTIONS(12892), 1, - anon_sym_ATdefault, - ACTIONS(12894), 1, - anon_sym_ATendswitch, - STATE(4265), 2, - sym__case, - aux_sym_switch_repeat1, - [187782] = 4, - ACTIONS(12717), 1, + [193184] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12896), 1, + ACTIONS(13040), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4312), 2, + STATE(4333), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187796] = 2, - ACTIONS(11014), 2, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(11012), 3, - anon_sym_ATendbefore, - aux_sym__notification_token1, - aux_sym__text_token3, - [187806] = 4, - ACTIONS(12725), 1, - anon_sym_ATcase, - ACTIONS(12898), 1, - anon_sym_ATdefault, - ACTIONS(12900), 1, - anon_sym_ATendswitch, - STATE(4367), 2, - sym__case, - aux_sym_switch_repeat1, - [187820] = 4, - ACTIONS(12717), 1, + [193198] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12902), 1, + ACTIONS(13042), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187834] = 4, - ACTIONS(12717), 1, + [193212] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12904), 1, + ACTIONS(13044), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4298), 2, + STATE(4314), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187848] = 4, - ACTIONS(12717), 1, + [193226] = 4, + ACTIONS(12912), 1, + anon_sym_ATcase, + ACTIONS(13046), 1, + anon_sym_ATdefault, + ACTIONS(13048), 1, + anon_sym_ATendswitch, + STATE(4342), 2, + sym__case, + aux_sym_switch_repeat1, + [193240] = 4, + ACTIONS(13050), 1, + anon_sym_RPAREN, + ACTIONS(13052), 1, aux_sym_parameter_token1, - ACTIONS(12906), 1, - anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5422), 1, sym__text_with_parenthesis, - STATE(4337), 2, + STATE(4344), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187862] = 4, - ACTIONS(12717), 1, + [193254] = 4, + ACTIONS(13054), 1, aux_sym_parameter_token1, - ACTIONS(12908), 1, + ACTIONS(13057), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4267), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187876] = 4, - ACTIONS(12717), 1, + [193268] = 4, + ACTIONS(4553), 1, + anon_sym_ATendswitch, + ACTIONS(12912), 1, + anon_sym_ATcase, + ACTIONS(13059), 1, + anon_sym_ATdefault, + STATE(4343), 2, + sym__case, + aux_sym_switch_repeat1, + [193282] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12910), 1, + ACTIONS(13061), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187890] = 4, - ACTIONS(12725), 1, - anon_sym_ATcase, + [193296] = 4, ACTIONS(12912), 1, + anon_sym_ATcase, + ACTIONS(13063), 1, anon_sym_ATdefault, - ACTIONS(12914), 1, + ACTIONS(13065), 1, anon_sym_ATendswitch, - STATE(4357), 2, + STATE(4338), 2, sym__case, aux_sym_switch_repeat1, - [187904] = 4, - ACTIONS(12717), 1, + [193310] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12916), 1, + ACTIONS(13067), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4339), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187918] = 4, - ACTIONS(6755), 1, + [193324] = 4, + ACTIONS(7091), 1, anon_sym_ATendswitch, - ACTIONS(12725), 1, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(12918), 1, + ACTIONS(13069), 1, anon_sym_ATdefault, - STATE(4340), 2, + STATE(4343), 2, sym__case, aux_sym_switch_repeat1, - [187932] = 4, - ACTIONS(12725), 1, + [193338] = 3, + ACTIONS(13073), 1, anon_sym_ATcase, - ACTIONS(12920), 1, + ACTIONS(13071), 2, anon_sym_ATdefault, - ACTIONS(12922), 1, anon_sym_ATendswitch, - STATE(4200), 2, + STATE(4343), 2, sym__case, aux_sym_switch_repeat1, - [187946] = 4, - ACTIONS(5947), 1, + [193350] = 4, + ACTIONS(13052), 1, + aux_sym_parameter_token1, + ACTIONS(13076), 1, + anon_sym_RPAREN, + STATE(5422), 1, + sym__text_with_parenthesis, + STATE(4410), 2, + sym_parameter, + aux_sym__text_with_parenthesis_repeat1, + [193364] = 4, + ACTIONS(4597), 1, anon_sym_ATendswitch, - ACTIONS(12725), 1, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(12924), 1, + ACTIONS(13078), 1, anon_sym_ATdefault, - STATE(4340), 2, + STATE(4343), 2, sym__case, aux_sym_switch_repeat1, - [187960] = 4, - ACTIONS(12717), 1, + [193378] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12926), 1, + ACTIONS(13080), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [187974] = 4, - ACTIONS(7120), 1, - anon_sym_ATendswitch, - ACTIONS(12725), 1, + [193392] = 4, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(12928), 1, + ACTIONS(13082), 1, anon_sym_ATdefault, - STATE(4340), 2, + ACTIONS(13084), 1, + anon_sym_ATendswitch, + STATE(4309), 2, sym__case, aux_sym_switch_repeat1, - [187988] = 4, - ACTIONS(5345), 1, - anon_sym_ATendswitch, - ACTIONS(12725), 1, + [193406] = 4, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(12930), 1, + ACTIONS(13086), 1, anon_sym_ATdefault, - STATE(4340), 2, + ACTIONS(13088), 1, + anon_sym_ATendswitch, + STATE(4345), 2, sym__case, aux_sym_switch_repeat1, - [188002] = 4, - ACTIONS(12717), 1, + [193420] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12932), 1, + ACTIONS(13090), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4361), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188016] = 2, - ACTIONS(10936), 2, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10934), 3, - anon_sym_ATendbefore, - aux_sym__notification_token1, - aux_sym__text_token3, - [188026] = 2, - ACTIONS(12771), 2, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(12769), 3, - anon_sym_ATendsuccess, - aux_sym__notification_token1, - aux_sym__text_token3, - [188036] = 4, - ACTIONS(5203), 1, - anon_sym_ATendswitch, - ACTIONS(12725), 1, - anon_sym_ATcase, - ACTIONS(12934), 1, - anon_sym_ATdefault, - STATE(4340), 2, - sym__case, - aux_sym_switch_repeat1, - [188050] = 2, - ACTIONS(11014), 2, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(11012), 3, - anon_sym_ATenderror, - aux_sym__notification_token1, - aux_sym__text_token3, - [188060] = 4, - ACTIONS(12717), 1, + [193434] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12936), 1, + ACTIONS(13092), 1, + anon_sym_RPAREN2, + STATE(5430), 1, + sym__text_with_parenthesis, + STATE(4423), 2, + sym_parameter, + aux_sym__text_with_parenthesis_repeat1, + [193448] = 4, + ACTIONS(12918), 1, + aux_sym_parameter_token1, + ACTIONS(13094), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4346), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188074] = 4, - ACTIONS(12725), 1, + [193462] = 4, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(12938), 1, + ACTIONS(13096), 1, anon_sym_ATdefault, - ACTIONS(12940), 1, + ACTIONS(13098), 1, anon_sym_ATendswitch, - STATE(4285), 2, + STATE(4371), 2, sym__case, aux_sym_switch_repeat1, - [188088] = 4, - ACTIONS(12725), 1, + [193476] = 4, + ACTIONS(6337), 1, + anon_sym_ATendswitch, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(12942), 1, + ACTIONS(13100), 1, anon_sym_ATdefault, - ACTIONS(12944), 1, - anon_sym_ATendswitch, - STATE(4309), 2, + STATE(4343), 2, sym__case, aux_sym_switch_repeat1, - [188102] = 4, - ACTIONS(12725), 1, + [193490] = 4, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(12946), 1, + ACTIONS(13102), 1, anon_sym_ATdefault, - ACTIONS(12948), 1, + ACTIONS(13104), 1, anon_sym_ATendswitch, - STATE(4257), 2, + STATE(4372), 2, + sym__case, + aux_sym_switch_repeat1, + [193504] = 4, + ACTIONS(4639), 1, + anon_sym_ATendswitch, + ACTIONS(12912), 1, + anon_sym_ATcase, + ACTIONS(13106), 1, + anon_sym_ATdefault, + STATE(4343), 2, sym__case, aux_sym_switch_repeat1, - [188116] = 4, - ACTIONS(12717), 1, + [193518] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12950), 1, + ACTIONS(13108), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188130] = 4, - ACTIONS(4988), 1, - anon_sym_ATendswitch, - ACTIONS(12725), 1, + [193532] = 4, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(12952), 1, + ACTIONS(13110), 1, anon_sym_ATdefault, - STATE(4340), 2, + ACTIONS(13112), 1, + anon_sym_ATendswitch, + STATE(4355), 2, sym__case, aux_sym_switch_repeat1, - [188144] = 4, - ACTIONS(12725), 1, + [193546] = 4, + ACTIONS(12918), 1, + aux_sym_parameter_token1, + ACTIONS(13114), 1, + anon_sym_RPAREN2, + STATE(5430), 1, + sym__text_with_parenthesis, + STATE(4337), 2, + sym_parameter, + aux_sym__text_with_parenthesis_repeat1, + [193560] = 4, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(12954), 1, + ACTIONS(13116), 1, anon_sym_ATdefault, - ACTIONS(12956), 1, + ACTIONS(13118), 1, anon_sym_ATendswitch, - STATE(4316), 2, + STATE(4381), 2, sym__case, aux_sym_switch_repeat1, - [188158] = 4, - ACTIONS(12717), 1, + [193574] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12958), 1, + ACTIONS(13120), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4356), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188172] = 4, - ACTIONS(12717), 1, + [193588] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12960), 1, + ACTIONS(13122), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4286), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188186] = 2, - ACTIONS(10936), 2, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10934), 3, - anon_sym_ATenderror, - aux_sym__notification_token1, - aux_sym__text_token3, - [188196] = 4, - ACTIONS(12717), 1, + [193602] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12962), 1, + ACTIONS(13124), 1, + anon_sym_RPAREN2, + STATE(5430), 1, + sym__text_with_parenthesis, + STATE(4337), 2, + sym_parameter, + aux_sym__text_with_parenthesis_repeat1, + [193616] = 4, + ACTIONS(4673), 1, + anon_sym_ATendswitch, + ACTIONS(12912), 1, + anon_sym_ATcase, + ACTIONS(13126), 1, + anon_sym_ATdefault, + STATE(4343), 2, + sym__case, + aux_sym_switch_repeat1, + [193630] = 4, + ACTIONS(12918), 1, + aux_sym_parameter_token1, + ACTIONS(13128), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4303), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188210] = 4, - ACTIONS(12717), 1, + [193644] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12964), 1, + ACTIONS(13130), 1, + anon_sym_RPAREN2, + STATE(5430), 1, + sym__text_with_parenthesis, + STATE(4337), 2, + sym_parameter, + aux_sym__text_with_parenthesis_repeat1, + [193658] = 4, + ACTIONS(12912), 1, + anon_sym_ATcase, + ACTIONS(13132), 1, + anon_sym_ATdefault, + ACTIONS(13134), 1, + anon_sym_ATendswitch, + STATE(4308), 2, + sym__case, + aux_sym_switch_repeat1, + [193672] = 4, + ACTIONS(12918), 1, + aux_sym_parameter_token1, + ACTIONS(13136), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4234), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188224] = 4, - ACTIONS(12717), 1, + [193686] = 4, + ACTIONS(12912), 1, + anon_sym_ATcase, + ACTIONS(13138), 1, + anon_sym_ATdefault, + ACTIONS(13140), 1, + anon_sym_ATendswitch, + STATE(4363), 2, + sym__case, + aux_sym_switch_repeat1, + [193700] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12966), 1, + ACTIONS(13142), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4385), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188238] = 4, - ACTIONS(4435), 1, + [193714] = 4, + ACTIONS(7657), 1, anon_sym_ATendswitch, - ACTIONS(12725), 1, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(12968), 1, + ACTIONS(13144), 1, anon_sym_ATdefault, - STATE(4340), 2, + STATE(4343), 2, sym__case, aux_sym_switch_repeat1, - [188252] = 4, - ACTIONS(5917), 1, + [193728] = 4, + ACTIONS(6261), 1, anon_sym_ATendswitch, - ACTIONS(12725), 1, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(12970), 1, + ACTIONS(13146), 1, anon_sym_ATdefault, - STATE(4340), 2, + STATE(4343), 2, sym__case, aux_sym_switch_repeat1, - [188266] = 4, - ACTIONS(12972), 1, - anon_sym_RPAREN, - ACTIONS(12974), 1, + [193742] = 4, + ACTIONS(7729), 1, + anon_sym_ATendswitch, + ACTIONS(12912), 1, + anon_sym_ATcase, + ACTIONS(13148), 1, + anon_sym_ATdefault, + STATE(4343), 2, + sym__case, + aux_sym_switch_repeat1, + [193756] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - STATE(5336), 1, + ACTIONS(13150), 1, + anon_sym_RPAREN2, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4259), 2, + STATE(4365), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188280] = 4, - ACTIONS(12717), 1, + [193770] = 2, + ACTIONS(12954), 2, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(12952), 3, + anon_sym_ATendsuccess, + aux_sym__notification_token1, + aux_sym__text_token3, + [193780] = 4, + ACTIONS(13052), 1, aux_sym_parameter_token1, - ACTIONS(12976), 1, - anon_sym_RPAREN2, - STATE(5409), 1, + ACTIONS(13152), 1, + anon_sym_RPAREN, + STATE(5422), 1, sym__text_with_parenthesis, - STATE(4322), 2, + STATE(4376), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188294] = 4, - ACTIONS(12974), 1, + [193794] = 4, + ACTIONS(13052), 1, aux_sym_parameter_token1, - ACTIONS(12978), 1, + ACTIONS(13154), 1, anon_sym_RPAREN, - STATE(5336), 1, + STATE(5422), 1, sym__text_with_parenthesis, - STATE(4306), 2, + STATE(4410), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188308] = 4, - ACTIONS(7762), 1, - anon_sym_ATendswitch, - ACTIONS(12725), 1, - anon_sym_ATcase, - ACTIONS(12980), 1, - anon_sym_ATdefault, - STATE(4340), 2, - sym__case, - aux_sym_switch_repeat1, - [188322] = 4, - ACTIONS(12725), 1, - anon_sym_ATcase, - ACTIONS(12982), 1, - anon_sym_ATdefault, - ACTIONS(12984), 1, - anon_sym_ATendswitch, - STATE(4353), 2, - sym__case, - aux_sym_switch_repeat1, - [188336] = 4, - ACTIONS(5638), 1, + [193808] = 4, + ACTIONS(5077), 1, anon_sym_ATendswitch, - ACTIONS(12725), 1, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(12986), 1, + ACTIONS(13156), 1, anon_sym_ATdefault, - STATE(4340), 2, + STATE(4343), 2, sym__case, aux_sym_switch_repeat1, - [188350] = 4, - ACTIONS(12717), 1, - aux_sym_parameter_token1, - ACTIONS(12988), 1, - anon_sym_RPAREN2, - STATE(5409), 1, - sym__text_with_parenthesis, - STATE(4348), 2, - sym_parameter, - aux_sym__text_with_parenthesis_repeat1, - [188364] = 2, - ACTIONS(12771), 2, + [193822] = 2, + ACTIONS(12954), 2, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(12769), 3, - anon_sym_ATendfinished, + ACTIONS(12952), 3, + anon_sym_ATendafter, aux_sym__notification_token1, aux_sym__text_token3, - [188374] = 4, - ACTIONS(12717), 1, + [193832] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12990), 1, + ACTIONS(13158), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4291), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188388] = 4, - ACTIONS(12717), 1, + [193846] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(12992), 1, + ACTIONS(13160), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188402] = 4, - ACTIONS(5909), 1, + [193860] = 4, + ACTIONS(7055), 1, anon_sym_ATendswitch, - ACTIONS(12725), 1, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(12994), 1, + ACTIONS(13162), 1, anon_sym_ATdefault, - STATE(4340), 2, + STATE(4343), 2, sym__case, aux_sym_switch_repeat1, - [188416] = 4, - ACTIONS(12725), 1, + [193874] = 4, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(12996), 1, + ACTIONS(13164), 1, anon_sym_ATdefault, - ACTIONS(12998), 1, + ACTIONS(13166), 1, anon_sym_ATendswitch, - STATE(4311), 2, + STATE(4377), 2, + sym__case, + aux_sym_switch_repeat1, + [193888] = 4, + ACTIONS(12912), 1, + anon_sym_ATcase, + ACTIONS(13168), 1, + anon_sym_ATdefault, + ACTIONS(13170), 1, + anon_sym_ATendswitch, + STATE(4386), 2, sym__case, aux_sym_switch_repeat1, - [188430] = 4, - ACTIONS(12717), 1, + [193902] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(13000), 1, + ACTIONS(13172), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4335), 2, + STATE(4380), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188444] = 4, - ACTIONS(12717), 1, + [193916] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(13002), 1, + ACTIONS(13174), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4360), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188458] = 4, - ACTIONS(12725), 1, + [193930] = 4, + ACTIONS(7017), 1, + anon_sym_ATendswitch, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(13004), 1, + ACTIONS(13176), 1, anon_sym_ATdefault, - ACTIONS(13006), 1, - anon_sym_ATendswitch, - STATE(4327), 2, + STATE(4343), 2, sym__case, aux_sym_switch_repeat1, - [188472] = 4, - ACTIONS(6522), 1, + [193944] = 4, + ACTIONS(5275), 1, anon_sym_ATendswitch, - ACTIONS(12725), 1, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(13008), 1, + ACTIONS(13178), 1, anon_sym_ATdefault, - STATE(4340), 2, + STATE(4343), 2, sym__case, aux_sym_switch_repeat1, - [188486] = 4, - ACTIONS(12717), 1, + [193958] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(13010), 1, + ACTIONS(13180), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4414), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188500] = 4, - ACTIONS(12717), 1, + [193972] = 4, + ACTIONS(12912), 1, + anon_sym_ATcase, + ACTIONS(13182), 1, + anon_sym_ATdefault, + ACTIONS(13184), 1, + anon_sym_ATendswitch, + STATE(4353), 2, + sym__case, + aux_sym_switch_repeat1, + [193986] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(13012), 1, + ACTIONS(13186), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4315), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188514] = 4, - ACTIONS(12717), 1, + [194000] = 4, + ACTIONS(12912), 1, + anon_sym_ATcase, + ACTIONS(13188), 1, + anon_sym_ATdefault, + ACTIONS(13190), 1, + anon_sym_ATendswitch, + STATE(4387), 2, + sym__case, + aux_sym_switch_repeat1, + [194014] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(13014), 1, + ACTIONS(13192), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4310), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188528] = 4, - ACTIONS(12717), 1, + [194028] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(13016), 1, + ACTIONS(13194), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4206), 2, + STATE(4390), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188542] = 4, - ACTIONS(7654), 1, - anon_sym_ATendswitch, - ACTIONS(12725), 1, - anon_sym_ATcase, - ACTIONS(13018), 1, - anon_sym_ATdefault, - STATE(4340), 2, - sym__case, - aux_sym_switch_repeat1, - [188556] = 4, - ACTIONS(4519), 1, - anon_sym_ATendswitch, - ACTIONS(12725), 1, - anon_sym_ATcase, - ACTIONS(13020), 1, - anon_sym_ATdefault, - STATE(4340), 2, - sym__case, - aux_sym_switch_repeat1, - [188570] = 2, - ACTIONS(12771), 2, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(12769), 3, - anon_sym_ATenderror, - aux_sym__notification_token1, - aux_sym__text_token3, - [188580] = 4, - ACTIONS(12717), 1, + [194042] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(13022), 1, + ACTIONS(13196), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4404), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188594] = 4, - ACTIONS(12717), 1, + [194056] = 2, + ACTIONS(12954), 2, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(12952), 3, + anon_sym_ATendbefore, + aux_sym__notification_token1, + aux_sym__text_token3, + [194066] = 4, + ACTIONS(5321), 1, + anon_sym_ATendswitch, + ACTIONS(12912), 1, + anon_sym_ATcase, + ACTIONS(13198), 1, + anon_sym_ATdefault, + STATE(4343), 2, + sym__case, + aux_sym_switch_repeat1, + [194080] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(13024), 1, + ACTIONS(13200), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4439), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188608] = 4, - ACTIONS(12717), 1, + [194094] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(13026), 1, + ACTIONS(13202), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4369), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188622] = 4, - ACTIONS(12717), 1, + [194108] = 4, + ACTIONS(12912), 1, + anon_sym_ATcase, + ACTIONS(13204), 1, + anon_sym_ATdefault, + ACTIONS(13206), 1, + anon_sym_ATendswitch, + STATE(4396), 2, + sym__case, + aux_sym_switch_repeat1, + [194122] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(13028), 1, + ACTIONS(13208), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4398), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188636] = 4, - ACTIONS(6280), 1, + [194136] = 4, + ACTIONS(12912), 1, + anon_sym_ATcase, + ACTIONS(13210), 1, + anon_sym_ATdefault, + ACTIONS(13212), 1, + anon_sym_ATendswitch, + STATE(4415), 2, + sym__case, + aux_sym_switch_repeat1, + [194150] = 4, + ACTIONS(5357), 1, anon_sym_ATendswitch, - ACTIONS(12725), 1, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(13030), 1, + ACTIONS(13214), 1, anon_sym_ATdefault, - STATE(4340), 2, + STATE(4343), 2, sym__case, aux_sym_switch_repeat1, - [188650] = 4, - ACTIONS(12974), 1, + [194164] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(13032), 1, - anon_sym_RPAREN, - STATE(5336), 1, + ACTIONS(13216), 1, + anon_sym_RPAREN2, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4259), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188664] = 4, - ACTIONS(12717), 1, + [194178] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(13034), 1, + ACTIONS(13218), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188678] = 4, - ACTIONS(12717), 1, + [194192] = 4, + ACTIONS(4247), 1, + anon_sym_ATendswitch, + ACTIONS(12912), 1, + anon_sym_ATcase, + ACTIONS(13220), 1, + anon_sym_ATdefault, + STATE(4343), 2, + sym__case, + aux_sym_switch_repeat1, + [194206] = 4, + ACTIONS(12912), 1, + anon_sym_ATcase, + ACTIONS(13222), 1, + anon_sym_ATdefault, + ACTIONS(13224), 1, + anon_sym_ATendswitch, + STATE(4402), 2, + sym__case, + aux_sym_switch_repeat1, + [194220] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(13036), 1, + ACTIONS(13226), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4366), 2, + STATE(4403), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188692] = 4, - ACTIONS(12717), 1, + [194234] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(13038), 1, + ACTIONS(13228), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4418), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188706] = 4, - ACTIONS(12717), 1, + [194248] = 4, + ACTIONS(12912), 1, + anon_sym_ATcase, + ACTIONS(13230), 1, + anon_sym_ATdefault, + ACTIONS(13232), 1, + anon_sym_ATendswitch, + STATE(4405), 2, + sym__case, + aux_sym_switch_repeat1, + [194262] = 4, + ACTIONS(13057), 1, + anon_sym_RPAREN, + ACTIONS(13234), 1, aux_sym_parameter_token1, - ACTIONS(13040), 1, - anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5422), 1, sym__text_with_parenthesis, - STATE(4344), 2, + STATE(4410), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188720] = 4, - ACTIONS(12717), 1, + [194276] = 4, + ACTIONS(5395), 1, + anon_sym_ATendswitch, + ACTIONS(12912), 1, + anon_sym_ATcase, + ACTIONS(13237), 1, + anon_sym_ATdefault, + STATE(4343), 2, + sym__case, + aux_sym_switch_repeat1, + [194290] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(13042), 1, + ACTIONS(13239), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4329), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188734] = 3, - ACTIONS(13046), 1, + [194304] = 4, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(13044), 2, + ACTIONS(13241), 1, anon_sym_ATdefault, + ACTIONS(13243), 1, anon_sym_ATendswitch, - STATE(4340), 2, + STATE(4411), 2, sym__case, aux_sym_switch_repeat1, - [188746] = 4, - ACTIONS(12717), 1, + [194318] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(13049), 1, + ACTIONS(13245), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4295), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188760] = 2, - ACTIONS(11014), 2, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(11012), 3, - anon_sym_ATendfinished, - aux_sym__notification_token1, - aux_sym__text_token3, - [188770] = 4, - ACTIONS(12725), 1, + [194332] = 4, + ACTIONS(7693), 1, + anon_sym_ATendswitch, + ACTIONS(12912), 1, + anon_sym_ATcase, + ACTIONS(13247), 1, + anon_sym_ATdefault, + STATE(4343), 2, + sym__case, + aux_sym_switch_repeat1, + [194346] = 4, + ACTIONS(12918), 1, + aux_sym_parameter_token1, + ACTIONS(13249), 1, + anon_sym_RPAREN2, + STATE(5430), 1, + sym__text_with_parenthesis, + STATE(4412), 2, + sym_parameter, + aux_sym__text_with_parenthesis_repeat1, + [194360] = 4, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(13051), 1, + ACTIONS(13251), 1, anon_sym_ATdefault, - ACTIONS(13053), 1, + ACTIONS(13253), 1, anon_sym_ATendswitch, - STATE(4345), 2, + STATE(4268), 2, sym__case, aux_sym_switch_repeat1, - [188784] = 4, - ACTIONS(12717), 1, + [194374] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(13055), 1, + ACTIONS(13255), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188798] = 4, - ACTIONS(4475), 1, + [194388] = 4, + ACTIONS(7615), 1, anon_sym_ATendswitch, - ACTIONS(12725), 1, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(13057), 1, + ACTIONS(13257), 1, anon_sym_ATdefault, - STATE(4340), 2, + STATE(4343), 2, sym__case, aux_sym_switch_repeat1, - [188812] = 4, - ACTIONS(5676), 1, + [194402] = 4, + ACTIONS(5535), 1, anon_sym_ATendswitch, - ACTIONS(12725), 1, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(13059), 1, + ACTIONS(13259), 1, anon_sym_ATdefault, - STATE(4340), 2, + STATE(4343), 2, sym__case, aux_sym_switch_repeat1, - [188826] = 4, - ACTIONS(12717), 1, + [194416] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(13061), 1, + ACTIONS(13261), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4301), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188840] = 4, - ACTIONS(12867), 1, + [194430] = 4, + ACTIONS(12918), 1, + aux_sym_parameter_token1, + ACTIONS(13263), 1, anon_sym_RPAREN2, - ACTIONS(13063), 1, + STATE(5430), 1, + sym__text_with_parenthesis, + STATE(4337), 2, + sym_parameter, + aux_sym__text_with_parenthesis_repeat1, + [194444] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - STATE(5409), 1, + ACTIONS(13265), 1, + anon_sym_RPAREN2, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188854] = 4, - ACTIONS(12725), 1, - anon_sym_ATcase, - ACTIONS(13066), 1, - anon_sym_ATdefault, - ACTIONS(13068), 1, - anon_sym_ATendswitch, - STATE(4346), 2, - sym__case, - aux_sym_switch_repeat1, - [188868] = 4, - ACTIONS(12725), 1, + [194458] = 4, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(13070), 1, + ACTIONS(13267), 1, anon_sym_ATdefault, - ACTIONS(13072), 1, + ACTIONS(13269), 1, anon_sym_ATendswitch, - STATE(4362), 2, + STATE(4443), 2, sym__case, aux_sym_switch_repeat1, - [188882] = 4, - ACTIONS(12725), 1, + [194472] = 4, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(13074), 1, + ACTIONS(13271), 1, anon_sym_ATdefault, - ACTIONS(13076), 1, + ACTIONS(13273), 1, anon_sym_ATendswitch, - STATE(4333), 2, + STATE(4420), 2, sym__case, aux_sym_switch_repeat1, - [188896] = 4, - ACTIONS(12717), 1, + [194486] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(13078), 1, + ACTIONS(13275), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4438), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188910] = 4, - ACTIONS(7690), 1, - anon_sym_ATendswitch, - ACTIONS(12725), 1, - anon_sym_ATcase, - ACTIONS(13080), 1, - anon_sym_ATdefault, - STATE(4340), 2, - sym__case, - aux_sym_switch_repeat1, - [188924] = 4, - ACTIONS(12717), 1, + [194500] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(13082), 1, + ACTIONS(13277), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4347), 2, + STATE(4422), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188938] = 4, - ACTIONS(7419), 1, + [194514] = 4, + ACTIONS(12918), 1, + aux_sym_parameter_token1, + ACTIONS(13279), 1, + anon_sym_RPAREN2, + STATE(5430), 1, + sym__text_with_parenthesis, + STATE(4379), 2, + sym_parameter, + aux_sym__text_with_parenthesis_repeat1, + [194528] = 4, + ACTIONS(5571), 1, anon_sym_ATendswitch, - ACTIONS(12725), 1, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(13084), 1, + ACTIONS(13281), 1, anon_sym_ATdefault, - STATE(4340), 2, + STATE(4343), 2, sym__case, aux_sym_switch_repeat1, - [188952] = 4, - ACTIONS(12974), 1, + [194542] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(13086), 1, - anon_sym_RPAREN, - STATE(5336), 1, + ACTIONS(13283), 1, + anon_sym_RPAREN2, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4334), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188966] = 4, - ACTIONS(4559), 1, + [194556] = 4, + ACTIONS(12912), 1, + anon_sym_ATcase, + ACTIONS(13285), 1, + anon_sym_ATdefault, + ACTIONS(13287), 1, anon_sym_ATendswitch, - ACTIONS(12725), 1, + STATE(4429), 2, + sym__case, + aux_sym_switch_repeat1, + [194570] = 4, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(13088), 1, + ACTIONS(13289), 1, anon_sym_ATdefault, - STATE(4340), 2, + ACTIONS(13291), 1, + anon_sym_ATendswitch, + STATE(4441), 2, sym__case, aux_sym_switch_repeat1, - [188980] = 4, - ACTIONS(12717), 1, + [194584] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(13090), 1, + ACTIONS(13293), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4430), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [188994] = 4, - ACTIONS(12717), 1, + [194598] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(13092), 1, + ACTIONS(13295), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4332), 2, + STATE(4435), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [189008] = 4, - ACTIONS(12717), 1, + [194612] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(13094), 1, + ACTIONS(13297), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [189022] = 4, - ACTIONS(12725), 1, - anon_sym_ATcase, - ACTIONS(13096), 1, - anon_sym_ATdefault, - ACTIONS(13098), 1, - anon_sym_ATendswitch, - STATE(4304), 2, - sym__case, - aux_sym_switch_repeat1, - [189036] = 4, - ACTIONS(4107), 1, - anon_sym_ATendswitch, - ACTIONS(12725), 1, - anon_sym_ATcase, - ACTIONS(13100), 1, - anon_sym_ATdefault, - STATE(4340), 2, - sym__case, - aux_sym_switch_repeat1, - [189050] = 4, - ACTIONS(12717), 1, + [194626] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(13102), 1, + ACTIONS(13299), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4260), 2, + STATE(4362), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [189064] = 4, - ACTIONS(5871), 1, - anon_sym_ATendswitch, - ACTIONS(12725), 1, + [194640] = 4, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(13104), 1, + ACTIONS(13301), 1, anon_sym_ATdefault, - STATE(4340), 2, + ACTIONS(13303), 1, + anon_sym_ATendswitch, + STATE(4442), 2, sym__case, aux_sym_switch_repeat1, - [189078] = 4, - ACTIONS(12717), 1, + [194654] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(13106), 1, + ACTIONS(13305), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4258), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [189092] = 4, - ACTIONS(12717), 1, + [194668] = 4, + ACTIONS(12918), 1, aux_sym_parameter_token1, - ACTIONS(13108), 1, + ACTIONS(13307), 1, anon_sym_RPAREN2, - STATE(5409), 1, + STATE(5430), 1, sym__text_with_parenthesis, - STATE(4348), 2, + STATE(4337), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [189106] = 4, - ACTIONS(7256), 1, - anon_sym_ATendswitch, - ACTIONS(12725), 1, + [194682] = 4, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(13110), 1, + ACTIONS(13309), 1, anon_sym_ATdefault, - STATE(4340), 2, + ACTIONS(13311), 1, + anon_sym_ATendswitch, + STATE(4419), 2, sym__case, aux_sym_switch_repeat1, - [189120] = 4, - ACTIONS(12725), 1, + [194696] = 4, + ACTIONS(6531), 1, + anon_sym_ATendswitch, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(13112), 1, + ACTIONS(13313), 1, anon_sym_ATdefault, - ACTIONS(13114), 1, - anon_sym_ATendswitch, - STATE(4364), 2, + STATE(4343), 2, sym__case, aux_sym_switch_repeat1, - [189134] = 4, - ACTIONS(12717), 1, - aux_sym_parameter_token1, - ACTIONS(13116), 1, - anon_sym_RPAREN2, - STATE(5409), 1, - sym__text_with_parenthesis, - STATE(4348), 2, - sym_parameter, - aux_sym__text_with_parenthesis_repeat1, - [189148] = 4, - ACTIONS(12725), 1, + [194710] = 4, + ACTIONS(5717), 1, + anon_sym_ATendswitch, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(13118), 1, + ACTIONS(13315), 1, anon_sym_ATdefault, - ACTIONS(13120), 1, - anon_sym_ATendswitch, - STATE(4284), 2, + STATE(4343), 2, sym__case, aux_sym_switch_repeat1, - [189162] = 4, - ACTIONS(12725), 1, + [194724] = 4, + ACTIONS(6223), 1, + anon_sym_ATendswitch, + ACTIONS(12912), 1, anon_sym_ATcase, - ACTIONS(13122), 1, + ACTIONS(13317), 1, anon_sym_ATdefault, - ACTIONS(13124), 1, - anon_sym_ATendswitch, - STATE(4305), 2, + STATE(4343), 2, sym__case, aux_sym_switch_repeat1, - [189176] = 3, - ACTIONS(11160), 1, - anon_sym_LPAREN2, - STATE(611), 1, - sym__directive_parameter, - STATE(5671), 1, - sym__directive_body_with_parameter, - [189186] = 3, - ACTIONS(11180), 1, - anon_sym_LPAREN2, - STATE(621), 1, - sym__directive_parameter, - STATE(5991), 1, - sym__directive_body_with_parameter, - [189196] = 3, - ACTIONS(11154), 1, + [194738] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(109), 1, sym__directive_parameter, - STATE(6124), 1, - sym__directive_body_with_parameter, - [189206] = 3, - ACTIONS(10566), 1, + STATE(6719), 1, + sym__if_statement_directive_body, + [194748] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(99), 1, sym__directive_parameter, - STATE(5773), 1, + STATE(6580), 1, sym__if_statement_directive_body, - [189216] = 3, - ACTIONS(11160), 1, + [194758] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(350), 1, sym__directive_parameter, - STATE(6126), 1, + STATE(6100), 1, sym__directive_body_with_parameter, - [189226] = 3, - ACTIONS(11166), 1, + [194768] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(523), 1, sym__directive_parameter, - STATE(6127), 1, + STATE(6154), 1, sym__directive_body_with_parameter, - [189236] = 3, - ACTIONS(11172), 1, + [194778] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(445), 1, sym__directive_parameter, - STATE(6128), 1, + STATE(6099), 1, sym__directive_body_with_parameter, - [189246] = 3, - ACTIONS(11180), 1, + [194788] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(540), 1, sym__directive_parameter, - STATE(6129), 1, + STATE(6098), 1, sym__directive_body_with_parameter, - [189256] = 3, - ACTIONS(10524), 1, - anon_sym_LPAREN2, - STATE(122), 1, - sym__directive_parameter, - STATE(6130), 1, - sym__if_statement_directive_body, - [189266] = 3, - ACTIONS(10512), 1, - anon_sym_LPAREN2, - STATE(88), 1, - sym__directive_parameter, - STATE(6131), 1, - sym__if_statement_directive_body, - [189276] = 3, - ACTIONS(10594), 1, - anon_sym_LPAREN2, - STATE(77), 1, - sym__directive_parameter, - STATE(6132), 1, - sym__if_statement_directive_body, - [189286] = 3, - ACTIONS(10500), 1, - anon_sym_LPAREN2, - STATE(115), 1, - sym__directive_parameter, - STATE(6133), 1, - sym__if_statement_directive_body, - [189296] = 3, - ACTIONS(10662), 1, - anon_sym_LPAREN2, - STATE(119), 1, - sym__directive_parameter, - STATE(6134), 1, - sym__if_statement_directive_body, - [189306] = 3, - ACTIONS(10586), 1, - anon_sym_LPAREN2, - STATE(83), 1, - sym__directive_parameter, - STATE(6136), 1, - sym__if_statement_directive_body, - [189316] = 3, - ACTIONS(10586), 1, - anon_sym_LPAREN2, - STATE(83), 1, - sym__directive_parameter, - STATE(6137), 1, - sym__if_statement_directive_body, - [189326] = 3, - ACTIONS(10550), 1, - anon_sym_LPAREN2, - STATE(98), 1, - sym__directive_parameter, - STATE(5772), 1, - sym__if_statement_directive_body, - [189336] = 3, - ACTIONS(11198), 1, + [194798] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(631), 1, sym__directive_parameter, - STATE(5979), 1, + STATE(5594), 1, sym__directive_body_with_parameter, - [189346] = 3, - ACTIONS(10512), 1, - anon_sym_LPAREN2, - STATE(88), 1, - sym__directive_parameter, - STATE(5787), 1, - sym__if_statement_directive_body, - [189356] = 3, - ACTIONS(10518), 1, - anon_sym_LPAREN2, - STATE(140), 1, - sym__directive_parameter, - STATE(6138), 1, - sym__if_statement_directive_body, - [189366] = 3, - ACTIONS(10594), 1, - anon_sym_LPAREN2, - STATE(77), 1, - sym__directive_parameter, - STATE(5788), 1, - sym__if_statement_directive_body, - [189376] = 3, - ACTIONS(11172), 1, + [194808] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(635), 1, sym__directive_parameter, - STATE(5758), 1, + STATE(6096), 1, sym__directive_body_with_parameter, - [189386] = 3, - ACTIONS(10586), 1, - anon_sym_LPAREN2, - STATE(83), 1, - sym__directive_parameter, - STATE(5767), 1, - sym__if_statement_directive_body, - [189396] = 3, - ACTIONS(11016), 1, + [194818] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(636), 1, sym__directive_parameter, - STATE(5778), 1, + STATE(5593), 1, sym__directive_body_with_parameter, - [189406] = 3, - ACTIONS(10550), 1, - anon_sym_LPAREN2, - STATE(98), 1, - sym__directive_parameter, - STATE(6144), 1, - sym__if_statement_directive_body, - [189416] = 3, - ACTIONS(10566), 1, - anon_sym_LPAREN2, - STATE(78), 1, - sym__directive_parameter, - STATE(6145), 1, - sym__if_statement_directive_body, - [189426] = 3, - ACTIONS(11136), 1, + [194828] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(644), 1, sym__directive_parameter, - STATE(6122), 1, + STATE(6260), 1, sym__directive_body_with_parameter, - [189436] = 3, - ACTIONS(11130), 1, + [194838] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, STATE(641), 1, sym__directive_parameter, - STATE(6121), 1, + STATE(5592), 1, sym__directive_body_with_parameter, - [189446] = 3, - ACTIONS(10586), 1, - anon_sym_LPAREN2, - STATE(83), 1, - sym__directive_parameter, - STATE(5766), 1, - sym__if_statement_directive_body, - [189456] = 3, - ACTIONS(10550), 1, + [194848] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(641), 1, sym__directive_parameter, - STATE(5560), 1, - sym__if_statement_directive_body, - [189466] = 3, - ACTIONS(10566), 1, + STATE(6261), 1, + sym__directive_body_with_parameter, + [194858] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(644), 1, sym__directive_parameter, - STATE(5559), 1, - sym__if_statement_directive_body, - [189476] = 3, - ACTIONS(10662), 1, + STATE(5591), 1, + sym__directive_body_with_parameter, + [194868] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5764), 1, + STATE(6095), 1, sym__if_statement_directive_body, - [189486] = 3, - ACTIONS(10586), 1, + [194878] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(74), 1, sym__directive_parameter, - STATE(6146), 1, + STATE(5737), 1, sym__if_statement_directive_body, - [189496] = 3, - ACTIONS(10500), 1, + [194888] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(250), 1, sym__directive_parameter, - STATE(5763), 1, - sym__if_statement_directive_body, - [189506] = 3, - ACTIONS(10586), 1, + STATE(5648), 1, + sym__directive_body_with_parameter, + [194898] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5774), 1, + STATE(5738), 1, sym__if_statement_directive_body, - [189516] = 3, - ACTIONS(10594), 1, + [194908] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(636), 1, sym__directive_parameter, - STATE(5762), 1, - sym__if_statement_directive_body, - [189526] = 3, - ACTIONS(10512), 1, + STATE(6262), 1, + sym__directive_body_with_parameter, + [194918] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(74), 1, sym__directive_parameter, - STATE(5761), 1, + STATE(6094), 1, sym__if_statement_directive_body, - [189536] = 3, - ACTIONS(10524), 1, + [194928] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(99), 1, sym__directive_parameter, - STATE(5760), 1, + STATE(6093), 1, sym__if_statement_directive_body, - [189546] = 3, - ACTIONS(11124), 1, - anon_sym_LPAREN2, - STATE(644), 1, - sym__directive_parameter, - STATE(6120), 1, - sym__directive_body_with_parameter, - [189556] = 3, - ACTIONS(11198), 1, - anon_sym_LPAREN2, - STATE(627), 1, - sym__directive_parameter, - STATE(6147), 1, - sym__directive_body_with_parameter, - [189566] = 3, - ACTIONS(11182), 1, + [194938] = 1, + ACTIONS(11149), 3, + anon_sym_ATdefault, + anon_sym_ATendswitch, + anon_sym_ATcase, + [194944] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(635), 1, sym__directive_parameter, - STATE(6148), 1, + STATE(5739), 1, sym__directive_body_with_parameter, - [189576] = 3, - ACTIONS(11198), 1, + [194954] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(437), 1, sym__directive_parameter, - STATE(5775), 1, + STATE(5565), 1, sym__directive_body_with_parameter, - [189586] = 3, - ACTIONS(11138), 1, + [194964] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6149), 1, + STATE(5553), 1, sym__directive_body_with_parameter, - [189596] = 3, - ACTIONS(11016), 1, + [194974] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(437), 1, sym__directive_parameter, - STATE(6150), 1, + STATE(5656), 1, sym__directive_body_with_parameter, - [189606] = 2, - ACTIONS(13128), 1, - aux_sym__section_parameter_token1, - ACTIONS(13126), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [189614] = 3, - ACTIONS(11180), 1, + [194984] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(540), 1, sym__directive_parameter, - STATE(5759), 1, + STATE(5740), 1, sym__directive_body_with_parameter, - [189624] = 3, - ACTIONS(10820), 1, + [194994] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(445), 1, sym__directive_parameter, - STATE(6151), 1, + STATE(5741), 1, sym__directive_body_with_parameter, - [189634] = 3, - ACTIONS(11204), 1, + [195004] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(333), 1, sym__directive_parameter, - STATE(6154), 1, + STATE(6155), 1, sym__directive_body_with_parameter, - [189644] = 3, - ACTIONS(10586), 1, - anon_sym_LPAREN2, - STATE(83), 1, - sym__directive_parameter, - STATE(5558), 1, - sym__if_statement_directive_body, - [189654] = 3, - ACTIONS(10512), 1, - anon_sym_LPAREN2, - STATE(88), 1, - sym__directive_parameter, - STATE(5719), 1, - sym__if_statement_directive_body, - [189664] = 3, - ACTIONS(11124), 1, + [195014] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, STATE(644), 1, sym__directive_parameter, - STATE(6165), 1, - sym__directive_body_with_parameter, - [189674] = 3, - ACTIONS(11130), 1, - anon_sym_LPAREN2, - STATE(641), 1, - sym__directive_parameter, - STATE(6166), 1, - sym__directive_body_with_parameter, - [189684] = 3, - ACTIONS(11136), 1, - anon_sym_LPAREN2, - STATE(637), 1, - sym__directive_parameter, - STATE(6167), 1, + STATE(5671), 1, sym__directive_body_with_parameter, - [189694] = 3, - ACTIONS(11144), 1, + [195024] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(631), 1, sym__directive_parameter, - STATE(6168), 1, + STATE(6263), 1, sym__directive_body_with_parameter, - [189704] = 3, - ACTIONS(11154), 1, + [195034] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, STATE(625), 1, sym__directive_parameter, - STATE(6169), 1, + STATE(6264), 1, sym__directive_body_with_parameter, - [189714] = 3, - ACTIONS(11160), 1, + [195044] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(619), 1, sym__directive_parameter, - STATE(6173), 1, + STATE(6266), 1, sym__directive_body_with_parameter, - [189724] = 3, - ACTIONS(11166), 1, + [195054] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(523), 1, sym__directive_parameter, - STATE(6174), 1, + STATE(6267), 1, sym__directive_body_with_parameter, - [189734] = 3, - ACTIONS(11204), 1, + [195064] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(350), 1, sym__directive_parameter, - STATE(6106), 1, + STATE(5552), 1, sym__directive_body_with_parameter, - [189744] = 3, - ACTIONS(11172), 1, + [195074] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(445), 1, sym__directive_parameter, - STATE(6175), 1, + STATE(5549), 1, sym__directive_body_with_parameter, - [189754] = 3, - ACTIONS(11180), 1, + [195084] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(333), 1, sym__directive_parameter, - STATE(6176), 1, + STATE(6268), 1, sym__directive_body_with_parameter, - [189764] = 3, - ACTIONS(10820), 1, + [195094] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(532), 1, sym__directive_parameter, - STATE(6105), 1, + STATE(6269), 1, sym__directive_body_with_parameter, - [189774] = 3, - ACTIONS(10524), 1, + [195104] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(350), 1, sym__directive_parameter, - STATE(6177), 1, - sym__if_statement_directive_body, - [189784] = 3, - ACTIONS(11016), 1, - anon_sym_LPAREN2, - STATE(345), 1, - sym__directive_parameter, - STATE(6104), 1, + STATE(5742), 1, sym__directive_body_with_parameter, - [189794] = 3, - ACTIONS(10512), 1, + [195114] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(123), 1, sym__directive_parameter, - STATE(6178), 1, + STATE(6270), 1, sym__if_statement_directive_body, - [189804] = 3, - ACTIONS(10594), 1, + [195124] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(120), 1, sym__directive_parameter, - STATE(6179), 1, + STATE(6271), 1, sym__if_statement_directive_body, - [189814] = 3, - ACTIONS(10500), 1, + [195134] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(75), 1, sym__directive_parameter, - STATE(6180), 1, + STATE(6272), 1, sym__if_statement_directive_body, - [189824] = 3, - ACTIONS(10662), 1, + [195144] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(109), 1, sym__directive_parameter, - STATE(6181), 1, + STATE(6273), 1, sym__if_statement_directive_body, - [189834] = 3, - ACTIONS(10586), 1, + [195154] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(77), 1, sym__directive_parameter, - STATE(6183), 1, + STATE(6274), 1, sym__if_statement_directive_body, - [189844] = 3, - ACTIONS(11138), 1, + [195164] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6103), 1, - sym__directive_body_with_parameter, - [189854] = 3, - ACTIONS(10586), 1, + STATE(6276), 1, + sym__if_statement_directive_body, + [195174] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6184), 1, + STATE(6277), 1, sym__if_statement_directive_body, - [189864] = 3, - ACTIONS(10518), 1, + [195184] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, STATE(140), 1, sym__directive_parameter, - STATE(6185), 1, + STATE(6278), 1, sym__if_statement_directive_body, - [189874] = 3, - ACTIONS(11182), 1, + [195194] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(540), 1, sym__directive_parameter, - STATE(6102), 1, + STATE(5546), 1, sym__directive_body_with_parameter, - [189884] = 3, - ACTIONS(10550), 1, + [195204] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6189), 1, - sym__if_statement_directive_body, - [189894] = 3, - ACTIONS(10566), 1, + STATE(5672), 1, + sym__directive_body_with_parameter, + [195214] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(635), 1, sym__directive_parameter, - STATE(6190), 1, - sym__if_statement_directive_body, - [189904] = 3, - ACTIONS(10586), 1, + STATE(5545), 1, + sym__directive_body_with_parameter, + [195224] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(99), 1, sym__directive_parameter, - STATE(6191), 1, + STATE(6282), 1, sym__if_statement_directive_body, - [189914] = 3, - ACTIONS(11198), 1, - anon_sym_LPAREN2, - STATE(627), 1, - sym__directive_parameter, - STATE(6192), 1, - sym__directive_body_with_parameter, - [189924] = 3, - ACTIONS(11166), 1, + [195234] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(74), 1, sym__directive_parameter, - STATE(5756), 1, - sym__directive_body_with_parameter, - [189934] = 3, - ACTIONS(11160), 1, + STATE(6283), 1, + sym__if_statement_directive_body, + [195244] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(636), 1, sym__directive_parameter, - STATE(5755), 1, + STATE(5673), 1, sym__directive_body_with_parameter, - [189944] = 3, - ACTIONS(11154), 1, + [195254] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5753), 1, - sym__directive_body_with_parameter, - [189954] = 3, - ACTIONS(11144), 1, + STATE(6284), 1, + sym__if_statement_directive_body, + [195264] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(635), 1, sym__directive_parameter, - STATE(5752), 1, + STATE(6285), 1, sym__directive_body_with_parameter, - [189964] = 3, - ACTIONS(11182), 1, + [195274] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(540), 1, sym__directive_parameter, - STATE(6193), 1, + STATE(6286), 1, sym__directive_body_with_parameter, - [189974] = 3, - ACTIONS(11138), 1, + [195284] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(445), 1, sym__directive_parameter, - STATE(6158), 1, + STATE(6218), 1, sym__directive_body_with_parameter, - [189984] = 3, - ACTIONS(11016), 1, + [195294] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(350), 1, sym__directive_parameter, - STATE(6195), 1, + STATE(6288), 1, sym__directive_body_with_parameter, - [189994] = 3, - ACTIONS(11198), 1, + [195304] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6101), 1, + STATE(6289), 1, sym__directive_body_with_parameter, - [190004] = 3, - ACTIONS(10820), 1, + [195314] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(437), 1, sym__directive_parameter, - STATE(6196), 1, + STATE(6290), 1, sym__directive_body_with_parameter, - [190014] = 3, - ACTIONS(11136), 1, + [195324] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(250), 1, sym__directive_parameter, - STATE(5751), 1, + STATE(5743), 1, sym__directive_body_with_parameter, - [190024] = 3, - ACTIONS(11204), 1, + [195334] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(540), 1, sym__directive_parameter, - STATE(6197), 1, + STATE(6057), 1, sym__directive_body_with_parameter, - [190034] = 3, - ACTIONS(10586), 1, + [195344] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6100), 1, + STATE(6089), 1, sym__if_statement_directive_body, - [190044] = 3, - ACTIONS(11198), 1, + [195354] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(644), 1, sym__directive_parameter, - STATE(5557), 1, + STATE(6297), 1, sym__directive_body_with_parameter, - [190054] = 3, - ACTIONS(11130), 1, + [195364] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, STATE(641), 1, sym__directive_parameter, - STATE(5750), 1, - sym__directive_body_with_parameter, - [190064] = 3, - ACTIONS(11124), 1, - anon_sym_LPAREN2, - STATE(644), 1, - sym__directive_parameter, - STATE(5749), 1, + STATE(6298), 1, sym__directive_body_with_parameter, - [190074] = 3, - ACTIONS(11182), 1, + [195374] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(625), 1, sym__directive_parameter, - STATE(5556), 1, + STATE(5675), 1, sym__directive_body_with_parameter, - [190084] = 3, - ACTIONS(10566), 1, + [195384] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6099), 1, + STATE(6088), 1, sym__if_statement_directive_body, - [190094] = 3, - ACTIONS(11204), 1, - anon_sym_LPAREN2, - STATE(444), 1, - sym__directive_parameter, - STATE(5742), 1, - sym__directive_body_with_parameter, - [190104] = 3, - ACTIONS(10820), 1, - anon_sym_LPAREN2, - STATE(246), 1, - sym__directive_parameter, - STATE(5740), 1, - sym__directive_body_with_parameter, - [190114] = 3, - ACTIONS(11124), 1, + [195394] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(619), 1, sym__directive_parameter, - STATE(6205), 1, + STATE(5678), 1, sym__directive_body_with_parameter, - [190124] = 3, - ACTIONS(11130), 1, + [195404] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(641), 1, + STATE(636), 1, sym__directive_parameter, - STATE(6206), 1, + STATE(6299), 1, sym__directive_body_with_parameter, - [190134] = 3, - ACTIONS(10550), 1, - anon_sym_LPAREN2, - STATE(98), 1, - sym__directive_parameter, - STATE(6098), 1, - sym__if_statement_directive_body, - [190144] = 3, - ACTIONS(11182), 1, + [195414] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(631), 1, sym__directive_parameter, - STATE(5776), 1, + STATE(6300), 1, sym__directive_body_with_parameter, - [190154] = 3, - ACTIONS(11016), 1, + [195424] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(625), 1, sym__directive_parameter, - STATE(5739), 1, + STATE(6301), 1, sym__directive_body_with_parameter, - [190164] = 3, - ACTIONS(11138), 1, + [195434] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(532), 1, sym__directive_parameter, - STATE(5777), 1, + STATE(6156), 1, sym__directive_body_with_parameter, - [190174] = 3, - ACTIONS(11138), 1, + [195444] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(523), 1, sym__directive_parameter, - STATE(5555), 1, + STATE(5679), 1, sym__directive_body_with_parameter, - [190184] = 3, - ACTIONS(10500), 1, + [195454] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6088), 1, + STATE(5544), 1, sym__if_statement_directive_body, - [190194] = 3, - ACTIONS(11136), 1, - anon_sym_LPAREN2, - STATE(637), 1, - sym__directive_parameter, - STATE(6207), 1, - sym__directive_body_with_parameter, - [190204] = 3, - ACTIONS(11138), 1, - anon_sym_LPAREN2, - STATE(439), 1, - sym__directive_parameter, - STATE(5738), 1, - sym__directive_body_with_parameter, - [190214] = 3, - ACTIONS(10820), 1, - anon_sym_LPAREN2, - STATE(246), 1, - sym__directive_parameter, - STATE(5779), 1, - sym__directive_body_with_parameter, - [190224] = 3, - ACTIONS(11182), 1, - anon_sym_LPAREN2, - STATE(533), 1, - sym__directive_parameter, - STATE(5737), 1, - sym__directive_body_with_parameter, - [190234] = 3, - ACTIONS(11198), 1, + [195464] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(619), 1, sym__directive_parameter, - STATE(5736), 1, + STATE(6303), 1, sym__directive_body_with_parameter, - [190244] = 3, - ACTIONS(10586), 1, - anon_sym_LPAREN2, - STATE(83), 1, - sym__directive_parameter, - STATE(5735), 1, - sym__if_statement_directive_body, - [190254] = 3, - ACTIONS(10566), 1, + [195474] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(74), 1, sym__directive_parameter, - STATE(5734), 1, + STATE(5543), 1, sym__if_statement_directive_body, - [190264] = 3, - ACTIONS(11144), 1, - anon_sym_LPAREN2, - STATE(633), 1, - sym__directive_parameter, - STATE(6208), 1, - sym__directive_body_with_parameter, - [190274] = 3, - ACTIONS(11154), 1, + [195484] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(523), 1, sym__directive_parameter, - STATE(6209), 1, + STATE(6304), 1, sym__directive_body_with_parameter, - [190284] = 3, - ACTIONS(10518), 1, + [195494] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(140), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6093), 1, + STATE(6087), 1, sym__if_statement_directive_body, - [190294] = 3, - ACTIONS(11160), 1, + [195504] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(99), 1, sym__directive_parameter, - STATE(6211), 1, - sym__directive_body_with_parameter, - [190304] = 3, - ACTIONS(11166), 1, + STATE(5542), 1, + sym__if_statement_directive_body, + [195514] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(350), 1, sym__directive_parameter, - STATE(6212), 1, + STATE(6066), 1, sym__directive_body_with_parameter, - [190314] = 3, - ACTIONS(11172), 1, + [195524] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, STATE(250), 1, sym__directive_parameter, - STATE(6213), 1, - sym__directive_body_with_parameter, - [190324] = 3, - ACTIONS(11180), 1, - anon_sym_LPAREN2, - STATE(621), 1, - sym__directive_parameter, - STATE(6214), 1, + STATE(6097), 1, sym__directive_body_with_parameter, - [190334] = 3, - ACTIONS(11204), 1, + [195534] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(333), 1, sym__directive_parameter, - STATE(5780), 1, + STATE(6305), 1, sym__directive_body_with_parameter, - [190344] = 3, - ACTIONS(10524), 1, - anon_sym_LPAREN2, - STATE(122), 1, - sym__directive_parameter, - STATE(6215), 1, - sym__if_statement_directive_body, - [190354] = 3, - ACTIONS(10512), 1, + [195544] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6216), 1, + STATE(5538), 1, sym__if_statement_directive_body, - [190364] = 3, - ACTIONS(10594), 1, + [195554] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, STATE(77), 1, sym__directive_parameter, - STATE(6217), 1, - sym__if_statement_directive_body, - [190374] = 3, - ACTIONS(10500), 1, - anon_sym_LPAREN2, - STATE(115), 1, - sym__directive_parameter, - STATE(6218), 1, - sym__if_statement_directive_body, - [190384] = 3, - ACTIONS(10662), 1, - anon_sym_LPAREN2, - STATE(119), 1, - sym__directive_parameter, - STATE(6219), 1, + STATE(6085), 1, sym__if_statement_directive_body, - [190394] = 3, - ACTIONS(10586), 1, + [195564] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(109), 1, sym__directive_parameter, - STATE(6221), 1, + STATE(6084), 1, sym__if_statement_directive_body, - [190404] = 3, - ACTIONS(10586), 1, + [195574] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(75), 1, sym__directive_parameter, - STATE(6222), 1, + STATE(6083), 1, sym__if_statement_directive_body, - [190414] = 3, - ACTIONS(10518), 1, + [195584] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(140), 1, + STATE(437), 1, sym__directive_parameter, - STATE(6223), 1, - sym__if_statement_directive_body, - [190424] = 3, - ACTIONS(10586), 1, + STATE(5744), 1, + sym__directive_body_with_parameter, + [195594] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6092), 1, + STATE(5934), 1, sym__if_statement_directive_body, - [190434] = 3, - ACTIONS(10586), 1, + [195604] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6091), 1, + STATE(5537), 1, sym__if_statement_directive_body, - [190444] = 3, - ACTIONS(10550), 1, + [195614] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6227), 1, + STATE(5536), 1, sym__if_statement_directive_body, - [190454] = 3, - ACTIONS(10566), 1, + [195624] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(120), 1, sym__directive_parameter, - STATE(6228), 1, + STATE(6082), 1, sym__if_statement_directive_body, - [190464] = 3, - ACTIONS(10586), 1, + [195634] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(123), 1, sym__directive_parameter, - STATE(6229), 1, + STATE(6081), 1, sym__if_statement_directive_body, - [190474] = 3, - ACTIONS(11198), 1, + [195644] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(644), 1, sym__directive_parameter, - STATE(6230), 1, + STATE(5752), 1, sym__directive_body_with_parameter, - [190484] = 3, - ACTIONS(11182), 1, + [195654] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(532), 1, sym__directive_parameter, - STATE(6231), 1, + STATE(6080), 1, sym__directive_body_with_parameter, - [190494] = 3, - ACTIONS(10550), 1, + [195664] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(333), 1, sym__directive_parameter, - STATE(5733), 1, - sym__if_statement_directive_body, - [190504] = 3, - ACTIONS(11138), 1, + STATE(6079), 1, + sym__directive_body_with_parameter, + [195674] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(523), 1, sym__directive_parameter, - STATE(6232), 1, + STATE(6078), 1, sym__directive_body_with_parameter, - [190514] = 3, - ACTIONS(11016), 1, + [195684] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(532), 1, sym__directive_parameter, - STATE(6233), 1, + STATE(6306), 1, sym__directive_body_with_parameter, - [190524] = 3, - ACTIONS(10820), 1, + [195694] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6234), 1, + STATE(5753), 1, sym__directive_body_with_parameter, - [190534] = 3, - ACTIONS(11204), 1, + [195704] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(635), 1, sym__directive_parameter, - STATE(6235), 1, + STATE(6248), 1, sym__directive_body_with_parameter, - [190544] = 3, - ACTIONS(10518), 1, + [195714] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(140), 1, + STATE(123), 1, sym__directive_parameter, - STATE(5565), 1, + STATE(6307), 1, sym__if_statement_directive_body, - [190554] = 3, - ACTIONS(10662), 1, + [195724] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(120), 1, sym__directive_parameter, - STATE(6089), 1, + STATE(6308), 1, sym__if_statement_directive_body, - [190564] = 3, - ACTIONS(10500), 1, + [195734] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(77), 1, sym__directive_parameter, - STATE(5789), 1, + STATE(5516), 1, sym__if_statement_directive_body, - [190574] = 3, - ACTIONS(11124), 1, - anon_sym_LPAREN2, - STATE(644), 1, - sym__directive_parameter, - STATE(6245), 1, - sym__directive_body_with_parameter, - [190584] = 3, - ACTIONS(11130), 1, - anon_sym_LPAREN2, - STATE(641), 1, - sym__directive_parameter, - STATE(6246), 1, - sym__directive_body_with_parameter, - [190594] = 3, - ACTIONS(11136), 1, - anon_sym_LPAREN2, - STATE(637), 1, - sym__directive_parameter, - STATE(6247), 1, - sym__directive_body_with_parameter, - [190604] = 3, - ACTIONS(11144), 1, - anon_sym_LPAREN2, - STATE(633), 1, - sym__directive_parameter, - STATE(6248), 1, - sym__directive_body_with_parameter, - [190614] = 3, - ACTIONS(11154), 1, + [195744] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(109), 1, sym__directive_parameter, - STATE(6249), 1, - sym__directive_body_with_parameter, - [190624] = 3, - ACTIONS(11160), 1, + STATE(5517), 1, + sym__if_statement_directive_body, + [195754] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(75), 1, sym__directive_parameter, - STATE(6251), 1, - sym__directive_body_with_parameter, - [190634] = 3, - ACTIONS(10662), 1, + STATE(6309), 1, + sym__if_statement_directive_body, + [195764] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(109), 1, sym__directive_parameter, - STATE(5691), 1, + STATE(6310), 1, sym__if_statement_directive_body, - [190644] = 3, - ACTIONS(10518), 1, + [195774] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(140), 1, + STATE(77), 1, sym__directive_parameter, - STATE(5729), 1, + STATE(6311), 1, sym__if_statement_directive_body, - [190654] = 3, - ACTIONS(10586), 1, + [195784] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5728), 1, + STATE(6313), 1, sym__if_statement_directive_body, - [190664] = 3, - ACTIONS(10586), 1, + [195794] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5727), 1, + STATE(6314), 1, sym__if_statement_directive_body, - [190674] = 3, - ACTIONS(11166), 1, + [195804] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6252), 1, - sym__directive_body_with_parameter, - [190684] = 3, - ACTIONS(11172), 1, + STATE(6315), 1, + sym__if_statement_directive_body, + [195814] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(75), 1, sym__directive_parameter, - STATE(6253), 1, - sym__directive_body_with_parameter, - [190694] = 3, - ACTIONS(11180), 1, + STATE(5518), 1, + sym__if_statement_directive_body, + [195824] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(437), 1, sym__directive_parameter, - STATE(6254), 1, + STATE(6102), 1, sym__directive_body_with_parameter, - [190704] = 3, - ACTIONS(11180), 1, + [195834] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(99), 1, sym__directive_parameter, - STATE(6033), 1, - sym__directive_body_with_parameter, - [190714] = 3, - ACTIONS(11016), 1, + STATE(6319), 1, + sym__if_statement_directive_body, + [195844] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(74), 1, sym__directive_parameter, - STATE(5554), 1, - sym__directive_body_with_parameter, - [190724] = 3, - ACTIONS(10594), 1, + STATE(6320), 1, + sym__if_statement_directive_body, + [195854] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6087), 1, + STATE(6321), 1, sym__if_statement_directive_body, - [190734] = 3, - ACTIONS(10524), 1, + [195864] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(120), 1, sym__directive_parameter, - STATE(6255), 1, + STATE(5519), 1, sym__if_statement_directive_body, - [190744] = 3, - ACTIONS(11124), 1, + [195874] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(635), 1, sym__directive_parameter, - STATE(5795), 1, + STATE(6322), 1, sym__directive_body_with_parameter, - [190754] = 3, - ACTIONS(10512), 1, + [195884] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(540), 1, sym__directive_parameter, - STATE(6086), 1, - sym__if_statement_directive_body, - [190764] = 3, - ACTIONS(10512), 1, + STATE(6323), 1, + sym__directive_body_with_parameter, + [195894] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(445), 1, sym__directive_parameter, - STATE(6256), 1, - sym__if_statement_directive_body, - [190774] = 3, - ACTIONS(10594), 1, + STATE(6324), 1, + sym__directive_body_with_parameter, + [195904] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(350), 1, sym__directive_parameter, - STATE(6257), 1, - sym__if_statement_directive_body, - [190784] = 3, - ACTIONS(10662), 1, + STATE(6325), 1, + sym__directive_body_with_parameter, + [195914] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(619), 1, sym__directive_parameter, - STATE(5722), 1, - sym__if_statement_directive_body, - [190794] = 3, - ACTIONS(10500), 1, + STATE(6046), 1, + sym__directive_body_with_parameter, + [195924] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6258), 1, - sym__if_statement_directive_body, - [190804] = 3, - ACTIONS(10662), 1, + STATE(6326), 1, + sym__directive_body_with_parameter, + [195934] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(437), 1, sym__directive_parameter, - STATE(6259), 1, - sym__if_statement_directive_body, - [190814] = 3, - ACTIONS(10586), 1, + STATE(6327), 1, + sym__directive_body_with_parameter, + [195944] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(636), 1, sym__directive_parameter, - STATE(6261), 1, - sym__if_statement_directive_body, - [190824] = 3, - ACTIONS(10586), 1, + STATE(5754), 1, + sym__directive_body_with_parameter, + [195954] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(625), 1, sym__directive_parameter, - STATE(6262), 1, - sym__if_statement_directive_body, - [190834] = 3, - ACTIONS(10518), 1, + STATE(6075), 1, + sym__directive_body_with_parameter, + [195964] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(140), 1, + STATE(631), 1, sym__directive_parameter, - STATE(6263), 1, - sym__if_statement_directive_body, - [190844] = 3, - ACTIONS(10524), 1, + STATE(6074), 1, + sym__directive_body_with_parameter, + [195974] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(631), 1, sym__directive_parameter, - STATE(6085), 1, - sym__if_statement_directive_body, - [190854] = 3, - ACTIONS(10586), 1, + STATE(5755), 1, + sym__directive_body_with_parameter, + [195984] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(644), 1, sym__directive_parameter, - STATE(5566), 1, - sym__if_statement_directive_body, - [190864] = 3, - ACTIONS(10500), 1, + STATE(6334), 1, + sym__directive_body_with_parameter, + [195994] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(641), 1, sym__directive_parameter, - STATE(5721), 1, - sym__if_statement_directive_body, - [190874] = 3, - ACTIONS(10820), 1, + STATE(6335), 1, + sym__directive_body_with_parameter, + [196004] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(636), 1, sym__directive_parameter, - STATE(5553), 1, + STATE(6336), 1, sym__directive_body_with_parameter, - [190884] = 3, - ACTIONS(11130), 1, + [196014] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(641), 1, + STATE(631), 1, sym__directive_parameter, - STATE(5796), 1, + STATE(6337), 1, sym__directive_body_with_parameter, - [190894] = 3, - ACTIONS(11136), 1, + [196024] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(625), 1, sym__directive_parameter, - STATE(5797), 1, + STATE(6338), 1, sym__directive_body_with_parameter, - [190904] = 3, - ACTIONS(11144), 1, + [196034] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(619), 1, sym__directive_parameter, - STATE(5798), 1, + STATE(6340), 1, sym__directive_body_with_parameter, - [190914] = 3, - ACTIONS(10594), 1, + [196044] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(523), 1, sym__directive_parameter, - STATE(5720), 1, - sym__if_statement_directive_body, - [190924] = 3, - ACTIONS(11154), 1, + STATE(6341), 1, + sym__directive_body_with_parameter, + [196054] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(636), 1, sym__directive_parameter, - STATE(5799), 1, + STATE(6073), 1, sym__directive_body_with_parameter, - [190934] = 3, - ACTIONS(10586), 1, + [196064] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(641), 1, sym__directive_parameter, - STATE(5690), 1, - sym__if_statement_directive_body, - [190944] = 3, - ACTIONS(11204), 1, + STATE(6072), 1, + sym__directive_body_with_parameter, + [196074] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(644), 1, sym__directive_parameter, - STATE(5550), 1, + STATE(6071), 1, sym__directive_body_with_parameter, - [190954] = 3, - ACTIONS(11180), 1, + [196084] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(625), 1, sym__directive_parameter, - STATE(6084), 1, + STATE(5756), 1, sym__directive_body_with_parameter, - [190964] = 3, - ACTIONS(11172), 1, + [196094] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(333), 1, sym__directive_parameter, - STATE(6083), 1, + STATE(6342), 1, sym__directive_body_with_parameter, - [190974] = 3, - ACTIONS(11166), 1, + [196104] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(532), 1, sym__directive_parameter, - STATE(6082), 1, + STATE(6343), 1, sym__directive_body_with_parameter, - [190984] = 3, - ACTIONS(11160), 1, + [196114] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(619), 1, sym__directive_parameter, - STATE(6081), 1, + STATE(5758), 1, sym__directive_body_with_parameter, - [190994] = 3, - ACTIONS(11154), 1, + [196124] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(437), 1, sym__directive_parameter, - STATE(6079), 1, + STATE(6253), 1, sym__directive_body_with_parameter, - [191004] = 3, - ACTIONS(10550), 1, + [196134] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(123), 1, sym__directive_parameter, - STATE(6269), 1, + STATE(5520), 1, sym__if_statement_directive_body, - [191014] = 3, - ACTIONS(10566), 1, + [196144] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(437), 1, sym__directive_parameter, - STATE(6270), 1, - sym__if_statement_directive_body, - [191024] = 3, - ACTIONS(11144), 1, + STATE(6061), 1, + sym__directive_body_with_parameter, + [196154] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(523), 1, sym__directive_parameter, - STATE(6078), 1, + STATE(5759), 1, sym__directive_body_with_parameter, - [191034] = 3, - ACTIONS(11136), 1, + [196164] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6076), 1, + STATE(6252), 1, sym__directive_body_with_parameter, - [191044] = 3, - ACTIONS(10586), 1, + [196174] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(123), 1, sym__directive_parameter, - STATE(6271), 1, + STATE(6344), 1, sym__if_statement_directive_body, - [191054] = 3, - ACTIONS(11198), 1, + [196184] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(532), 1, sym__directive_parameter, - STATE(6272), 1, + STATE(5521), 1, sym__directive_body_with_parameter, - [191064] = 3, - ACTIONS(11182), 1, + [196194] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(120), 1, sym__directive_parameter, - STATE(6273), 1, - sym__directive_body_with_parameter, - [191074] = 3, - ACTIONS(11138), 1, + STATE(6345), 1, + sym__if_statement_directive_body, + [196204] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(333), 1, sym__directive_parameter, - STATE(6274), 1, + STATE(5522), 1, sym__directive_body_with_parameter, - [191084] = 3, - ACTIONS(11016), 1, + [196214] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6275), 1, + STATE(6060), 1, sym__directive_body_with_parameter, - [191094] = 3, - ACTIONS(10820), 1, + [196224] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(350), 1, sym__directive_parameter, - STATE(6276), 1, + STATE(6251), 1, sym__directive_body_with_parameter, - [191104] = 3, - ACTIONS(11204), 1, + [196234] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(523), 1, sym__directive_parameter, - STATE(6279), 1, + STATE(5523), 1, sym__directive_body_with_parameter, - [191114] = 3, - ACTIONS(11130), 1, + [196244] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(641), 1, + STATE(350), 1, sym__directive_parameter, - STATE(6075), 1, + STATE(6059), 1, sym__directive_body_with_parameter, - [191124] = 3, - ACTIONS(11124), 1, + [196254] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(75), 1, sym__directive_parameter, - STATE(6074), 1, - sym__directive_body_with_parameter, - [191134] = 3, - ACTIONS(11124), 1, + STATE(6346), 1, + sym__if_statement_directive_body, + [196264] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(619), 1, sym__directive_parameter, - STATE(6294), 1, + STATE(5524), 1, sym__directive_body_with_parameter, - [191144] = 3, - ACTIONS(11130), 1, + [196274] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(641), 1, + STATE(445), 1, sym__directive_parameter, - STATE(6295), 1, + STATE(6058), 1, sym__directive_body_with_parameter, - [191154] = 3, - ACTIONS(11136), 1, + [196284] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(109), 1, sym__directive_parameter, - STATE(6296), 1, + STATE(6044), 1, + sym__if_statement_directive_body, + [196294] = 3, + ACTIONS(11379), 1, + anon_sym_LPAREN2, + STATE(635), 1, + sym__directive_parameter, + STATE(6056), 1, sym__directive_body_with_parameter, - [191164] = 3, - ACTIONS(11144), 1, + [196304] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(333), 1, sym__directive_parameter, - STATE(6297), 1, + STATE(5760), 1, sym__directive_body_with_parameter, - [191174] = 3, - ACTIONS(11154), 1, + [196314] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(532), 1, sym__directive_parameter, - STATE(6298), 1, + STATE(5761), 1, sym__directive_body_with_parameter, - [191184] = 3, - ACTIONS(11160), 1, + [196324] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6300), 1, + STATE(6055), 1, + sym__if_statement_directive_body, + [196334] = 3, + ACTIONS(10741), 1, + anon_sym_LPAREN2, + STATE(74), 1, + sym__directive_parameter, + STATE(6054), 1, + sym__if_statement_directive_body, + [196344] = 3, + ACTIONS(10723), 1, + anon_sym_LPAREN2, + STATE(99), 1, + sym__directive_parameter, + STATE(6053), 1, + sym__if_statement_directive_body, + [196354] = 3, + ACTIONS(11303), 1, + anon_sym_LPAREN2, + STATE(644), 1, + sym__directive_parameter, + STATE(5625), 1, sym__directive_body_with_parameter, - [191194] = 3, - ACTIONS(11166), 1, + [196364] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6301), 1, + STATE(6049), 1, + sym__if_statement_directive_body, + [196374] = 3, + ACTIONS(11347), 1, + anon_sym_LPAREN2, + STATE(333), 1, + sym__directive_parameter, + STATE(5680), 1, sym__directive_body_with_parameter, - [191204] = 3, - ACTIONS(10524), 1, + [196384] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5718), 1, + STATE(6048), 1, sym__if_statement_directive_body, - [191214] = 3, - ACTIONS(11172), 1, + [196394] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(84), 1, + sym__directive_parameter, + STATE(6047), 1, + sym__if_statement_directive_body, + [196404] = 3, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + STATE(109), 1, sym__directive_parameter, STATE(6302), 1, - sym__directive_body_with_parameter, - [191224] = 3, - ACTIONS(11180), 1, + sym__if_statement_directive_body, + [196414] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(77), 1, sym__directive_parameter, - STATE(6303), 1, - sym__directive_body_with_parameter, - [191234] = 3, - ACTIONS(11160), 1, + STATE(6348), 1, + sym__if_statement_directive_body, + [196424] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(445), 1, sym__directive_parameter, - STATE(5801), 1, + STATE(6250), 1, sym__directive_body_with_parameter, - [191244] = 3, - ACTIONS(10524), 1, + [196434] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6304), 1, + STATE(6350), 1, sym__if_statement_directive_body, - [191254] = 3, - ACTIONS(10512), 1, + [196444] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6305), 1, + STATE(6351), 1, sym__if_statement_directive_body, - [191264] = 3, - ACTIONS(10586), 1, + [196454] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(540), 1, sym__directive_parameter, - STATE(5567), 1, - sym__if_statement_directive_body, - [191274] = 3, - ACTIONS(10594), 1, + STATE(6249), 1, + sym__directive_body_with_parameter, + [196464] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, STATE(77), 1, sym__directive_parameter, - STATE(6306), 1, + STATE(6045), 1, sym__if_statement_directive_body, - [191284] = 3, - ACTIONS(10500), 1, + [196474] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6307), 1, + STATE(6352), 1, sym__if_statement_directive_body, - [191294] = 3, - ACTIONS(10662), 1, + [196484] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(109), 1, sym__directive_parameter, - STATE(6308), 1, + STATE(5685), 1, sym__if_statement_directive_body, - [191304] = 3, - ACTIONS(10586), 1, + [196494] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(123), 1, sym__directive_parameter, - STATE(6310), 1, + STATE(6157), 1, sym__if_statement_directive_body, - [191314] = 3, - ACTIONS(10586), 1, + [196504] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(99), 1, sym__directive_parameter, - STATE(6311), 1, + STATE(6356), 1, sym__if_statement_directive_body, - [191324] = 3, - ACTIONS(10518), 1, + [196514] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(140), 1, + STATE(74), 1, sym__directive_parameter, - STATE(6312), 1, + STATE(6357), 1, sym__if_statement_directive_body, - [191334] = 3, - ACTIONS(11204), 1, + [196524] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6058), 1, - sym__directive_body_with_parameter, - [191344] = 3, - ACTIONS(10820), 1, + STATE(6358), 1, + sym__if_statement_directive_body, + [196534] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(635), 1, sym__directive_parameter, - STATE(6055), 1, + STATE(6359), 1, sym__directive_body_with_parameter, - [191354] = 3, - ACTIONS(11180), 1, + [196544] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(540), 1, sym__directive_parameter, - STATE(5717), 1, + STATE(6360), 1, sym__directive_body_with_parameter, - [191364] = 3, - ACTIONS(11172), 1, + [196554] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(445), 1, sym__directive_parameter, - STATE(5716), 1, + STATE(6363), 1, sym__directive_body_with_parameter, - [191374] = 3, - ACTIONS(11016), 1, + [196564] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(350), 1, sym__directive_parameter, - STATE(6054), 1, + STATE(6364), 1, sym__directive_body_with_parameter, - [191384] = 3, - ACTIONS(11138), 1, + [196574] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6053), 1, + STATE(6365), 1, sym__directive_body_with_parameter, - [191394] = 3, - ACTIONS(10550), 1, + [196584] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(123), 1, sym__directive_parameter, - STATE(6317), 1, + STATE(5762), 1, sym__if_statement_directive_body, - [191404] = 3, - ACTIONS(10566), 1, + [196594] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(437), 1, sym__directive_parameter, - STATE(6318), 1, + STATE(6366), 1, + sym__directive_body_with_parameter, + [196604] = 3, + ACTIONS(10681), 1, + anon_sym_LPAREN2, + STATE(120), 1, + sym__directive_parameter, + STATE(5763), 1, sym__if_statement_directive_body, - [191414] = 3, - ACTIONS(11182), 1, + [196614] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(75), 1, sym__directive_parameter, - STATE(6052), 1, - sym__directive_body_with_parameter, - [191424] = 3, - ACTIONS(10586), 1, + STATE(5764), 1, + sym__if_statement_directive_body, + [196624] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(75), 1, sym__directive_parameter, - STATE(6319), 1, + STATE(6043), 1, sym__if_statement_directive_body, - [191434] = 3, - ACTIONS(11166), 1, + [196634] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(532), 1, sym__directive_parameter, - STATE(5715), 1, + STATE(5681), 1, sym__directive_body_with_parameter, - [191444] = 3, - ACTIONS(11198), 1, + [196644] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(644), 1, sym__directive_parameter, - STATE(6320), 1, + STATE(6373), 1, sym__directive_body_with_parameter, - [191454] = 3, - ACTIONS(11198), 1, + [196654] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6051), 1, + STATE(6374), 1, sym__directive_body_with_parameter, - [191464] = 3, - ACTIONS(11182), 1, + [196664] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(636), 1, sym__directive_parameter, - STATE(6321), 1, + STATE(6375), 1, sym__directive_body_with_parameter, - [191474] = 3, - ACTIONS(11138), 1, + [196674] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(631), 1, sym__directive_parameter, - STATE(6315), 1, + STATE(6376), 1, sym__directive_body_with_parameter, - [191484] = 3, - ACTIONS(11016), 1, + [196684] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(625), 1, sym__directive_parameter, - STATE(6323), 1, + STATE(6377), 1, sym__directive_body_with_parameter, - [191494] = 3, - ACTIONS(11160), 1, + [196694] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(120), 1, sym__directive_parameter, - STATE(5714), 1, + STATE(6234), 1, + sym__if_statement_directive_body, + [196704] = 3, + ACTIONS(11333), 1, + anon_sym_LPAREN2, + STATE(619), 1, + sym__directive_parameter, + STATE(6379), 1, sym__directive_body_with_parameter, - [191504] = 3, - ACTIONS(10820), 1, + [196714] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(523), 1, sym__directive_parameter, - STATE(6324), 1, + STATE(6380), 1, sym__directive_body_with_parameter, - [191514] = 3, - ACTIONS(11204), 1, + [196724] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(333), 1, sym__directive_parameter, - STATE(6326), 1, + STATE(6381), 1, sym__directive_body_with_parameter, - [191524] = 3, - ACTIONS(10586), 1, + [196734] = 3, + ACTIONS(11349), 1, + anon_sym_LPAREN2, + STATE(532), 1, + sym__directive_parameter, + STATE(6382), 1, + sym__directive_body_with_parameter, + [196744] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(120), 1, sym__directive_parameter, - STATE(6050), 1, + STATE(6158), 1, sym__if_statement_directive_body, - [191534] = 3, - ACTIONS(11154), 1, + [196754] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(123), 1, sym__directive_parameter, - STATE(5443), 1, - sym__directive_body_with_parameter, - [191544] = 3, - ACTIONS(11124), 1, + STATE(6383), 1, + sym__if_statement_directive_body, + [196764] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(120), 1, sym__directive_parameter, - STATE(6340), 1, - sym__directive_body_with_parameter, - [191554] = 3, - ACTIONS(10566), 1, + STATE(6384), 1, + sym__if_statement_directive_body, + [196774] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(109), 1, sym__directive_parameter, - STATE(6049), 1, + STATE(5765), 1, sym__if_statement_directive_body, - [191564] = 3, - ACTIONS(10550), 1, + [196784] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(123), 1, sym__directive_parameter, - STATE(6048), 1, + STATE(5682), 1, sym__if_statement_directive_body, - [191574] = 3, - ACTIONS(11124), 1, + [196794] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5593), 1, - sym__directive_body_with_parameter, - [191584] = 3, - ACTIONS(10518), 1, + STATE(6247), 1, + sym__if_statement_directive_body, + [196804] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(140), 1, + STATE(120), 1, sym__directive_parameter, STATE(6042), 1, sym__if_statement_directive_body, - [191594] = 1, - ACTIONS(11012), 3, - anon_sym_ATdefault, - anon_sym_ATendswitch, - anon_sym_ATcase, - [191600] = 3, - ACTIONS(11130), 1, + [196814] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(641), 1, + STATE(75), 1, sym__directive_parameter, - STATE(6341), 1, - sym__directive_body_with_parameter, - [191610] = 3, - ACTIONS(11136), 1, + STATE(6385), 1, + sym__if_statement_directive_body, + [196824] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(109), 1, sym__directive_parameter, - STATE(6342), 1, - sym__directive_body_with_parameter, - [191620] = 3, - ACTIONS(11144), 1, + STATE(6386), 1, + sym__if_statement_directive_body, + [196834] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(77), 1, sym__directive_parameter, - STATE(5711), 1, - sym__directive_body_with_parameter, - [191630] = 3, - ACTIONS(10586), 1, + STATE(6387), 1, + sym__if_statement_directive_body, + [196844] = 3, + ACTIONS(10741), 1, + anon_sym_LPAREN2, + STATE(74), 1, + sym__directive_parameter, + STATE(6246), 1, + sym__if_statement_directive_body, + [196854] = 3, + ACTIONS(10791), 1, + anon_sym_LPAREN2, + STATE(77), 1, + sym__directive_parameter, + STATE(5766), 1, + sym__if_statement_directive_body, + [196864] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(123), 1, sym__directive_parameter, STATE(6041), 1, sym__if_statement_directive_body, - [191640] = 3, - ACTIONS(10586), 1, + [196874] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(99), 1, sym__directive_parameter, - STATE(6040), 1, + STATE(5733), 1, sym__if_statement_directive_body, - [191650] = 3, - ACTIONS(11136), 1, + [196884] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(99), 1, sym__directive_parameter, - STATE(5710), 1, - sym__directive_body_with_parameter, - [191660] = 3, - ACTIONS(11130), 1, + STATE(6245), 1, + sym__if_statement_directive_body, + [196894] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(641), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5709), 1, - sym__directive_body_with_parameter, - [191670] = 3, - ACTIONS(11124), 1, + STATE(6389), 1, + sym__if_statement_directive_body, + [196904] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, STATE(644), 1, sym__directive_parameter, - STATE(5708), 1, + STATE(6109), 1, sym__directive_body_with_parameter, - [191680] = 3, - ACTIONS(11144), 1, + [196914] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6343), 1, - sym__directive_body_with_parameter, - [191690] = 3, - ACTIONS(11154), 1, + STATE(6390), 1, + sym__if_statement_directive_body, + [196924] = 3, + ACTIONS(10681), 1, + anon_sym_LPAREN2, + STATE(120), 1, + sym__directive_parameter, + STATE(5683), 1, + sym__if_statement_directive_body, + [196934] = 3, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + STATE(140), 1, + sym__directive_parameter, + STATE(6241), 1, + sym__if_statement_directive_body, + [196944] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, STATE(625), 1, sym__directive_parameter, - STATE(6344), 1, + STATE(5526), 1, sym__directive_body_with_parameter, - [191700] = 3, - ACTIONS(10662), 1, + [196954] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(75), 1, sym__directive_parameter, - STATE(6038), 1, + STATE(6159), 1, sym__if_statement_directive_body, - [191710] = 3, - ACTIONS(11160), 1, + [196964] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(532), 1, sym__directive_parameter, - STATE(6346), 1, + STATE(6040), 1, sym__directive_body_with_parameter, - [191720] = 3, - ACTIONS(11166), 1, + [196974] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6347), 1, + STATE(6391), 1, + sym__if_statement_directive_body, + [196984] = 3, + ACTIONS(11321), 1, + anon_sym_LPAREN2, + STATE(631), 1, + sym__directive_parameter, + STATE(5527), 1, sym__directive_body_with_parameter, - [191730] = 3, - ACTIONS(11172), 1, + [196994] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(333), 1, sym__directive_parameter, - STATE(6348), 1, + STATE(6039), 1, sym__directive_body_with_parameter, - [191740] = 3, - ACTIONS(11180), 1, + [197004] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(523), 1, sym__directive_parameter, - STATE(6349), 1, + STATE(6038), 1, sym__directive_body_with_parameter, - [191750] = 3, - ACTIONS(10500), 1, + [197014] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(619), 1, sym__directive_parameter, STATE(6037), 1, - sym__if_statement_directive_body, - [191760] = 3, - ACTIONS(10524), 1, + sym__directive_body_with_parameter, + [197024] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(109), 1, sym__directive_parameter, - STATE(6350), 1, + STATE(6160), 1, sym__if_statement_directive_body, - [191770] = 3, - ACTIONS(10512), 1, + [197034] = 2, + ACTIONS(13321), 1, + aux_sym__section_parameter_token1, + ACTIONS(13319), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [197042] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(77), 1, sym__directive_parameter, - STATE(6351), 1, + STATE(6161), 1, sym__if_statement_directive_body, - [191780] = 3, - ACTIONS(10594), 1, + [197052] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(636), 1, sym__directive_parameter, - STATE(6352), 1, - sym__if_statement_directive_body, - [191790] = 3, - ACTIONS(10500), 1, + STATE(5528), 1, + sym__directive_body_with_parameter, + [197062] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(625), 1, sym__directive_parameter, - STATE(6353), 1, - sym__if_statement_directive_body, - [191800] = 3, - ACTIONS(10662), 1, + STATE(6035), 1, + sym__directive_body_with_parameter, + [197072] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(631), 1, sym__directive_parameter, - STATE(6354), 1, - sym__if_statement_directive_body, - [191810] = 3, - ACTIONS(10586), 1, + STATE(6034), 1, + sym__directive_body_with_parameter, + [197082] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(636), 1, sym__directive_parameter, - STATE(6356), 1, - sym__if_statement_directive_body, - [191820] = 3, - ACTIONS(10586), 1, + STATE(6031), 1, + sym__directive_body_with_parameter, + [197092] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6357), 1, - sym__if_statement_directive_body, - [191830] = 3, - ACTIONS(10518), 1, + STATE(6030), 1, + sym__directive_body_with_parameter, + [197102] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, - STATE(140), 1, + STATE(644), 1, sym__directive_parameter, - STATE(6358), 1, - sym__if_statement_directive_body, - [191840] = 3, - ACTIONS(10594), 1, + STATE(6029), 1, + sym__directive_body_with_parameter, + [197112] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(350), 1, sym__directive_parameter, - STATE(6036), 1, - sym__if_statement_directive_body, - [191850] = 3, - ACTIONS(10512), 1, + STATE(5642), 1, + sym__directive_body_with_parameter, + [197122] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(99), 1, sym__directive_parameter, - STATE(6035), 1, + STATE(6395), 1, sym__if_statement_directive_body, - [191860] = 3, - ACTIONS(10550), 1, + [197132] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(74), 1, sym__directive_parameter, - STATE(6363), 1, + STATE(6396), 1, sym__if_statement_directive_body, - [191870] = 3, - ACTIONS(10566), 1, + [197142] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6364), 1, + STATE(6240), 1, sym__if_statement_directive_body, - [191880] = 3, - ACTIONS(10586), 1, + [197152] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6365), 1, + STATE(6397), 1, sym__if_statement_directive_body, - [191890] = 3, - ACTIONS(11198), 1, + [197162] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(635), 1, sym__directive_parameter, - STATE(6366), 1, + STATE(6398), 1, sym__directive_body_with_parameter, - [191900] = 3, - ACTIONS(11182), 1, + [197172] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6367), 1, - sym__directive_body_with_parameter, - [191910] = 3, - ACTIONS(11204), 1, + STATE(6239), 1, + sym__if_statement_directive_body, + [197182] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5699), 1, - sym__directive_body_with_parameter, - [191920] = 3, - ACTIONS(11138), 1, + STATE(5769), 1, + sym__if_statement_directive_body, + [197192] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(540), 1, sym__directive_parameter, - STATE(6368), 1, + STATE(6399), 1, sym__directive_body_with_parameter, - [191930] = 3, - ACTIONS(11016), 1, + [197202] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(445), 1, sym__directive_parameter, - STATE(6369), 1, + STATE(6400), 1, sym__directive_body_with_parameter, - [191940] = 3, - ACTIONS(10820), 1, + [197212] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(350), 1, sym__directive_parameter, - STATE(6370), 1, + STATE(6401), 1, sym__directive_body_with_parameter, - [191950] = 3, - ACTIONS(11204), 1, + [197222] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6373), 1, + STATE(6402), 1, sym__directive_body_with_parameter, - [191960] = 3, - ACTIONS(11124), 1, + [197232] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(437), 1, sym__directive_parameter, - STATE(5518), 1, + STATE(6403), 1, sym__directive_body_with_parameter, - [191970] = 3, - ACTIONS(10550), 1, + [197242] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6004), 1, + STATE(6163), 1, sym__if_statement_directive_body, - [191980] = 3, - ACTIONS(10820), 1, + [197252] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(437), 1, sym__directive_parameter, - STATE(5697), 1, + STATE(6022), 1, + sym__directive_body_with_parameter, + [197262] = 3, + ACTIONS(11027), 1, + anon_sym_LPAREN2, + STATE(250), 1, + sym__directive_parameter, + STATE(6021), 1, sym__directive_body_with_parameter, - [191990] = 3, - ACTIONS(11124), 1, + [197272] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, STATE(644), 1, sym__directive_parameter, - STATE(6384), 1, + STATE(6410), 1, sym__directive_body_with_parameter, - [192000] = 3, - ACTIONS(11130), 1, + [197282] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, STATE(641), 1, sym__directive_parameter, - STATE(6385), 1, + STATE(6411), 1, sym__directive_body_with_parameter, - [192010] = 3, - ACTIONS(11136), 1, + [197292] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(636), 1, sym__directive_parameter, - STATE(6386), 1, + STATE(6347), 1, sym__directive_body_with_parameter, - [192020] = 3, - ACTIONS(11144), 1, + [197302] = 1, + ACTIONS(11195), 3, + anon_sym_ATdefault, + anon_sym_ATendswitch, + anon_sym_ATcase, + [197308] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(631), 1, sym__directive_parameter, - STATE(6387), 1, + STATE(6413), 1, sym__directive_body_with_parameter, - [192030] = 3, - ACTIONS(11154), 1, + [197318] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, STATE(625), 1, sym__directive_parameter, - STATE(6388), 1, + STATE(6414), 1, sym__directive_body_with_parameter, - [192040] = 3, - ACTIONS(11160), 1, + [197328] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(619), 1, sym__directive_parameter, - STATE(6390), 1, + STATE(6416), 1, sym__directive_body_with_parameter, - [192050] = 3, - ACTIONS(11016), 1, + [197338] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(523), 1, sym__directive_parameter, - STATE(5696), 1, + STATE(6417), 1, sym__directive_body_with_parameter, - [192060] = 3, - ACTIONS(11138), 1, + [197348] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(350), 1, sym__directive_parameter, - STATE(5695), 1, + STATE(6020), 1, sym__directive_body_with_parameter, - [192070] = 3, - ACTIONS(11182), 1, + [197358] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(333), 1, sym__directive_parameter, - STATE(5694), 1, + STATE(6418), 1, sym__directive_body_with_parameter, - [192080] = 3, - ACTIONS(11172), 1, + [197368] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(532), 1, sym__directive_parameter, - STATE(6032), 1, + STATE(6419), 1, sym__directive_body_with_parameter, - [192090] = 3, - ACTIONS(11166), 1, + [197378] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6391), 1, - sym__directive_body_with_parameter, - [192100] = 3, - ACTIONS(11172), 1, + STATE(5770), 1, + sym__if_statement_directive_body, + [197388] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(123), 1, sym__directive_parameter, - STATE(6392), 1, - sym__directive_body_with_parameter, - [192110] = 3, - ACTIONS(11180), 1, + STATE(6420), 1, + sym__if_statement_directive_body, + [197398] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(120), 1, sym__directive_parameter, - STATE(6322), 1, - sym__directive_body_with_parameter, - [192120] = 3, - ACTIONS(11166), 1, + STATE(6421), 1, + sym__if_statement_directive_body, + [197408] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(77), 1, sym__directive_parameter, - STATE(6031), 1, - sym__directive_body_with_parameter, - [192130] = 3, - ACTIONS(11130), 1, + STATE(6237), 1, + sym__if_statement_directive_body, + [197418] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(641), 1, + STATE(75), 1, sym__directive_parameter, - STATE(5517), 1, - sym__directive_body_with_parameter, - [192140] = 3, - ACTIONS(11198), 1, + STATE(6422), 1, + sym__if_statement_directive_body, + [197428] = 3, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + STATE(109), 1, + sym__directive_parameter, + STATE(6423), 1, + sym__if_statement_directive_body, + [197438] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(77), 1, + sym__directive_parameter, + STATE(6424), 1, + sym__if_statement_directive_body, + [197448] = 3, + ACTIONS(10677), 1, + anon_sym_LPAREN2, + STATE(84), 1, + sym__directive_parameter, + STATE(6426), 1, + sym__if_statement_directive_body, + [197458] = 3, + ACTIONS(10677), 1, + anon_sym_LPAREN2, + STATE(84), 1, + sym__directive_parameter, + STATE(6427), 1, + sym__if_statement_directive_body, + [197468] = 3, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + STATE(140), 1, + sym__directive_parameter, + STATE(6428), 1, + sym__if_statement_directive_body, + [197478] = 3, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + STATE(641), 1, sym__directive_parameter, - STATE(5692), 1, + STATE(5529), 1, sym__directive_body_with_parameter, - [192150] = 3, - ACTIONS(11172), 1, + [197488] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(445), 1, sym__directive_parameter, - STATE(5803), 1, + STATE(6019), 1, sym__directive_body_with_parameter, - [192160] = 3, - ACTIONS(11180), 1, + [197498] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(540), 1, sym__directive_parameter, - STATE(5804), 1, + STATE(6018), 1, sym__directive_body_with_parameter, - [192170] = 3, - ACTIONS(10524), 1, + [197508] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(635), 1, sym__directive_parameter, - STATE(6394), 1, - sym__if_statement_directive_body, - [192180] = 3, - ACTIONS(10512), 1, + STATE(6017), 1, + sym__directive_body_with_parameter, + [197518] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(75), 1, sym__directive_parameter, - STATE(6395), 1, + STATE(5684), 1, sym__if_statement_directive_body, - [192190] = 3, - ACTIONS(10662), 1, + [197528] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(99), 1, sym__directive_parameter, - STATE(5570), 1, + STATE(6432), 1, sym__if_statement_directive_body, - [192200] = 3, - ACTIONS(10524), 1, + [197538] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(74), 1, sym__directive_parameter, - STATE(5805), 1, + STATE(6433), 1, sym__if_statement_directive_body, - [192210] = 3, - ACTIONS(10594), 1, + [197548] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6396), 1, + STATE(6434), 1, sym__if_statement_directive_body, - [192220] = 3, - ACTIONS(11160), 1, + [197558] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6030), 1, + STATE(6110), 1, sym__directive_body_with_parameter, - [192230] = 3, - ACTIONS(10500), 1, + [197568] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6397), 1, + STATE(5771), 1, sym__if_statement_directive_body, - [192240] = 3, - ACTIONS(10586), 1, + [197578] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6480), 1, + STATE(6016), 1, sym__if_statement_directive_body, - [192250] = 3, - ACTIONS(11198), 1, + [197588] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(644), 1, sym__directive_parameter, - STATE(5486), 1, + STATE(5530), 1, sym__directive_body_with_parameter, - [192260] = 3, - ACTIONS(10524), 1, + [197598] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(109), 1, sym__directive_parameter, - STATE(6034), 1, + STATE(6236), 1, sym__if_statement_directive_body, - [192270] = 3, - ACTIONS(11154), 1, + [197608] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(635), 1, sym__directive_parameter, - STATE(6028), 1, + STATE(6435), 1, sym__directive_body_with_parameter, - [192280] = 3, - ACTIONS(10550), 1, + [197618] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(74), 1, sym__directive_parameter, - STATE(5688), 1, + STATE(6015), 1, sym__if_statement_directive_body, - [192290] = 3, - ACTIONS(11136), 1, - anon_sym_LPAREN2, - STATE(637), 1, - sym__directive_parameter, - STATE(5516), 1, - sym__directive_body_with_parameter, - [192300] = 3, - ACTIONS(11144), 1, + [197628] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(540), 1, sym__directive_parameter, - STATE(5511), 1, + STATE(6436), 1, sym__directive_body_with_parameter, - [192310] = 3, - ACTIONS(10586), 1, + [197638] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(99), 1, sym__directive_parameter, - STATE(5853), 1, + STATE(6014), 1, sym__if_statement_directive_body, - [192320] = 3, - ACTIONS(10500), 1, + [197648] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(641), 1, sym__directive_parameter, - STATE(5571), 1, - sym__if_statement_directive_body, - [192330] = 3, - ACTIONS(10586), 1, + STATE(5666), 1, + sym__directive_body_with_parameter, + [197658] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(636), 1, sym__directive_parameter, - STATE(5883), 1, - sym__if_statement_directive_body, - [192340] = 3, - ACTIONS(10594), 1, + STATE(5669), 1, + sym__directive_body_with_parameter, + [197668] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(75), 1, sym__directive_parameter, - STATE(5572), 1, + STATE(6235), 1, sym__if_statement_directive_body, - [192350] = 3, - ACTIONS(10518), 1, + [197678] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, STATE(140), 1, sym__directive_parameter, - STATE(5884), 1, + STATE(6010), 1, sym__if_statement_directive_body, - [192360] = 3, - ACTIONS(10518), 1, + [197688] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(140), 1, + STATE(445), 1, sym__directive_parameter, - STATE(5683), 1, - sym__if_statement_directive_body, - [192370] = 3, - ACTIONS(10586), 1, + STATE(6437), 1, + sym__directive_body_with_parameter, + [197698] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5664), 1, + STATE(6009), 1, sym__if_statement_directive_body, - [192380] = 3, - ACTIONS(10586), 1, + [197708] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5681), 1, + STATE(6008), 1, sym__if_statement_directive_body, - [192390] = 3, - ACTIONS(10586), 1, + [197718] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(77), 1, sym__directive_parameter, - STATE(6400), 1, + STATE(6006), 1, sym__if_statement_directive_body, - [192400] = 3, - ACTIONS(10586), 1, + [197728] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(109), 1, sym__directive_parameter, - STATE(6401), 1, + STATE(6005), 1, sym__if_statement_directive_body, - [192410] = 3, - ACTIONS(10512), 1, + [197738] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5806), 1, + STATE(6165), 1, sym__if_statement_directive_body, - [192420] = 3, - ACTIONS(10518), 1, + [197748] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, STATE(140), 1, sym__directive_parameter, - STATE(6402), 1, + STATE(5965), 1, sym__if_statement_directive_body, - [192430] = 3, - ACTIONS(11144), 1, + [197758] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6027), 1, + STATE(6223), 1, sym__directive_body_with_parameter, - [192440] = 3, - ACTIONS(10662), 1, + [197768] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(75), 1, sym__directive_parameter, - STATE(5679), 1, + STATE(6004), 1, sym__if_statement_directive_body, - [192450] = 3, - ACTIONS(10500), 1, + [197778] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(120), 1, sym__directive_parameter, - STATE(5678), 1, + STATE(6003), 1, sym__if_statement_directive_body, - [192460] = 3, - ACTIONS(10550), 1, + [197788] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(123), 1, sym__directive_parameter, - STATE(6406), 1, + STATE(6233), 1, sym__if_statement_directive_body, - [192470] = 3, - ACTIONS(10566), 1, + [197798] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(123), 1, sym__directive_parameter, - STATE(6407), 1, + STATE(6002), 1, sym__if_statement_directive_body, - [192480] = 3, - ACTIONS(10586), 1, + [197808] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6408), 1, + STATE(6166), 1, sym__if_statement_directive_body, - [192490] = 3, - ACTIONS(11198), 1, + [197818] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(77), 1, sym__directive_parameter, - STATE(6409), 1, - sym__directive_body_with_parameter, - [192500] = 3, - ACTIONS(11182), 1, + STATE(5868), 1, + sym__if_statement_directive_body, + [197828] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(109), 1, sym__directive_parameter, - STATE(6410), 1, - sym__directive_body_with_parameter, - [192510] = 3, - ACTIONS(11138), 1, + STATE(5867), 1, + sym__if_statement_directive_body, + [197838] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(350), 1, sym__directive_parameter, - STATE(6411), 1, + STATE(6438), 1, sym__directive_body_with_parameter, - [192520] = 3, - ACTIONS(11016), 1, + [197848] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6412), 1, + STATE(6439), 1, sym__directive_body_with_parameter, - [192530] = 3, - ACTIONS(10820), 1, + [197858] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(120), 1, sym__directive_parameter, - STATE(6413), 1, - sym__directive_body_with_parameter, - [192540] = 3, - ACTIONS(11204), 1, + STATE(5605), 1, + sym__if_statement_directive_body, + [197868] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(437), 1, sym__directive_parameter, - STATE(6414), 1, + STATE(6440), 1, sym__directive_body_with_parameter, - [192550] = 3, - ACTIONS(11154), 1, + [197878] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(99), 1, sym__directive_parameter, - STATE(5510), 1, - sym__directive_body_with_parameter, - [192560] = 3, - ACTIONS(10594), 1, + STATE(5776), 1, + sym__if_statement_directive_body, + [197888] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(123), 1, sym__directive_parameter, - STATE(5677), 1, + STATE(5603), 1, sym__if_statement_directive_body, - [192570] = 3, - ACTIONS(11136), 1, + [197898] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(437), 1, sym__directive_parameter, - STATE(6026), 1, + STATE(5551), 1, sym__directive_body_with_parameter, - [192580] = 3, - ACTIONS(11124), 1, + [197908] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(532), 1, sym__directive_parameter, - STATE(6422), 1, + STATE(6001), 1, sym__directive_body_with_parameter, - [192590] = 3, - ACTIONS(11130), 1, + [197918] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(641), 1, + STATE(540), 1, sym__directive_parameter, - STATE(6423), 1, + STATE(6136), 1, sym__directive_body_with_parameter, - [192600] = 3, - ACTIONS(11136), 1, + [197928] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(644), 1, sym__directive_parameter, - STATE(6424), 1, + STATE(6447), 1, + sym__directive_body_with_parameter, + [197938] = 3, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + STATE(641), 1, + sym__directive_parameter, + STATE(6448), 1, sym__directive_body_with_parameter, - [192610] = 3, - ACTIONS(11144), 1, + [197948] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(636), 1, sym__directive_parameter, - STATE(6425), 1, + STATE(6449), 1, sym__directive_body_with_parameter, - [192620] = 3, - ACTIONS(10512), 1, + [197958] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(631), 1, sym__directive_parameter, - STATE(5676), 1, - sym__if_statement_directive_body, - [192630] = 3, - ACTIONS(11154), 1, + STATE(6450), 1, + sym__directive_body_with_parameter, + [197968] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, STATE(625), 1, sym__directive_parameter, - STATE(6426), 1, + STATE(6451), 1, sym__directive_body_with_parameter, - [192640] = 3, - ACTIONS(11160), 1, + [197978] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(619), 1, sym__directive_parameter, - STATE(6428), 1, + STATE(6453), 1, sym__directive_body_with_parameter, - [192650] = 3, - ACTIONS(11166), 1, + [197988] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(523), 1, sym__directive_parameter, - STATE(6429), 1, + STATE(6454), 1, sym__directive_body_with_parameter, - [192660] = 3, - ACTIONS(11172), 1, + [197998] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(333), 1, sym__directive_parameter, - STATE(6430), 1, + STATE(6455), 1, sym__directive_body_with_parameter, - [192670] = 3, - ACTIONS(11180), 1, + [198008] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(532), 1, sym__directive_parameter, - STATE(6431), 1, + STATE(6456), 1, sym__directive_body_with_parameter, - [192680] = 3, - ACTIONS(11130), 1, + [198018] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, - STATE(641), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6025), 1, + STATE(5554), 1, sym__directive_body_with_parameter, - [192690] = 3, - ACTIONS(11124), 1, + [198028] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(445), 1, sym__directive_parameter, - STATE(6024), 1, + STATE(6137), 1, sym__directive_body_with_parameter, - [192700] = 3, - ACTIONS(10524), 1, + [198038] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(123), 1, sym__directive_parameter, - STATE(6432), 1, + STATE(6457), 1, sym__if_statement_directive_body, - [192710] = 3, - ACTIONS(10512), 1, + [198048] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(120), 1, sym__directive_parameter, - STATE(6433), 1, + STATE(6458), 1, sym__if_statement_directive_body, - [192720] = 3, - ACTIONS(10594), 1, + [198058] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(75), 1, sym__directive_parameter, - STATE(6434), 1, + STATE(6459), 1, sym__if_statement_directive_body, - [192730] = 3, - ACTIONS(10500), 1, + [198068] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(109), 1, sym__directive_parameter, - STATE(6435), 1, + STATE(5607), 1, sym__if_statement_directive_body, - [192740] = 3, - ACTIONS(10662), 1, + [198078] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(109), 1, sym__directive_parameter, - STATE(6436), 1, + STATE(6460), 1, sym__if_statement_directive_body, - [192750] = 3, - ACTIONS(10586), 1, + [198088] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(77), 1, sym__directive_parameter, - STATE(6438), 1, + STATE(6461), 1, sym__if_statement_directive_body, - [192760] = 3, - ACTIONS(10524), 1, + [198098] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5675), 1, + STATE(6463), 1, sym__if_statement_directive_body, - [192770] = 3, - ACTIONS(10594), 1, + [198108] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5807), 1, + STATE(6464), 1, sym__if_statement_directive_body, - [192780] = 3, - ACTIONS(11180), 1, + [198118] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(140), 1, sym__directive_parameter, - STATE(5674), 1, - sym__directive_body_with_parameter, - [192790] = 3, - ACTIONS(11172), 1, + STATE(6465), 1, + sym__if_statement_directive_body, + [198128] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(532), 1, sym__directive_parameter, - STATE(5673), 1, + STATE(6232), 1, sym__directive_body_with_parameter, - [192800] = 3, - ACTIONS(10586), 1, + [198138] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(350), 1, sym__directive_parameter, - STATE(6439), 1, - sym__if_statement_directive_body, - [192810] = 3, - ACTIONS(10518), 1, + STATE(5555), 1, + sym__directive_body_with_parameter, + [198148] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(140), 1, + STATE(99), 1, sym__directive_parameter, - STATE(6440), 1, + STATE(6469), 1, sym__if_statement_directive_body, - [192820] = 3, - ACTIONS(10550), 1, + [198158] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(74), 1, sym__directive_parameter, - STATE(6444), 1, + STATE(6470), 1, sym__if_statement_directive_body, - [192830] = 3, - ACTIONS(10500), 1, + [198168] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5808), 1, + STATE(6471), 1, sym__if_statement_directive_body, - [192840] = 3, - ACTIONS(11166), 1, + [198178] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(635), 1, sym__directive_parameter, - STATE(5672), 1, + STATE(6472), 1, sym__directive_body_with_parameter, - [192850] = 3, - ACTIONS(10566), 1, + [198188] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(540), 1, sym__directive_parameter, - STATE(5689), 1, - sym__if_statement_directive_body, - [192860] = 2, - ACTIONS(13130), 1, - anon_sym_LPAREN, - ACTIONS(13132), 2, - aux_sym_parameter_token1, - anon_sym_RPAREN2, - [192868] = 3, - ACTIONS(11204), 1, + STATE(6473), 1, + sym__directive_body_with_parameter, + [198198] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(445), 1, sym__directive_parameter, - STATE(6014), 1, + STATE(6474), 1, sym__directive_body_with_parameter, - [192878] = 3, - ACTIONS(11160), 1, + [198208] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(333), 1, sym__directive_parameter, - STATE(5508), 1, + STATE(5998), 1, sym__directive_body_with_parameter, - [192888] = 3, - ACTIONS(10566), 1, + [198218] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(523), 1, sym__directive_parameter, - STATE(6445), 1, - sym__if_statement_directive_body, - [192898] = 3, - ACTIONS(11154), 1, + STATE(5997), 1, + sym__directive_body_with_parameter, + [198228] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(333), 1, sym__directive_parameter, - STATE(5669), 1, + STATE(6230), 1, sym__directive_body_with_parameter, - [192908] = 3, - ACTIONS(11144), 1, + [198238] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(523), 1, sym__directive_parameter, - STATE(5668), 1, + STATE(6229), 1, sym__directive_body_with_parameter, - [192918] = 3, - ACTIONS(10820), 1, + [198248] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(350), 1, sym__directive_parameter, - STATE(6013), 1, + STATE(6475), 1, sym__directive_body_with_parameter, - [192928] = 3, - ACTIONS(10662), 1, + [198258] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(250), 1, sym__directive_parameter, - STATE(5809), 1, - sym__if_statement_directive_body, - [192938] = 3, - ACTIONS(10586), 1, + STATE(6476), 1, + sym__directive_body_with_parameter, + [198268] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(437), 1, sym__directive_parameter, - STATE(6446), 1, - sym__if_statement_directive_body, - [192948] = 3, - ACTIONS(11198), 1, + STATE(6477), 1, + sym__directive_body_with_parameter, + [198278] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(619), 1, sym__directive_parameter, - STATE(6447), 1, + STATE(6228), 1, sym__directive_body_with_parameter, - [192958] = 3, - ACTIONS(11136), 1, + [198288] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(445), 1, sym__directive_parameter, - STATE(5667), 1, + STATE(5556), 1, sym__directive_body_with_parameter, - [192968] = 3, - ACTIONS(11016), 1, + [198298] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(619), 1, sym__directive_parameter, - STATE(6010), 1, + STATE(5996), 1, sym__directive_body_with_parameter, - [192978] = 3, - ACTIONS(11138), 1, + [198308] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(540), 1, sym__directive_parameter, - STATE(6009), 1, + STATE(5557), 1, sym__directive_body_with_parameter, - [192988] = 3, - ACTIONS(11130), 1, + [198318] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, - STATE(641), 1, + STATE(625), 1, sym__directive_parameter, - STATE(5666), 1, + STATE(6226), 1, sym__directive_body_with_parameter, - [192998] = 3, - ACTIONS(10524), 1, + [198328] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(74), 1, sym__directive_parameter, - STATE(5855), 1, + STATE(5777), 1, sym__if_statement_directive_body, - [193008] = 3, - ACTIONS(11182), 1, + [198338] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(631), 1, sym__directive_parameter, - STATE(6008), 1, + STATE(6225), 1, sym__directive_body_with_parameter, - [193018] = 3, - ACTIONS(11182), 1, + [198348] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(625), 1, sym__directive_parameter, - STATE(6448), 1, + STATE(5994), 1, sym__directive_body_with_parameter, - [193028] = 3, - ACTIONS(11198), 1, + [198358] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(635), 1, sym__directive_parameter, - STATE(6007), 1, + STATE(5558), 1, sym__directive_body_with_parameter, - [193038] = 3, - ACTIONS(11124), 1, + [198368] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(631), 1, sym__directive_parameter, - STATE(5665), 1, + STATE(5993), 1, sym__directive_body_with_parameter, - [193048] = 3, - ACTIONS(10586), 1, + [198378] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5811), 1, + STATE(5559), 1, sym__if_statement_directive_body, - [193058] = 3, - ACTIONS(10586), 1, + [198388] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(74), 1, sym__directive_parameter, - STATE(5812), 1, + STATE(5560), 1, sym__if_statement_directive_body, - [193068] = 3, - ACTIONS(11166), 1, + [198398] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(99), 1, sym__directive_parameter, - STATE(5507), 1, - sym__directive_body_with_parameter, - [193078] = 3, - ACTIONS(10518), 1, + STATE(5561), 1, + sym__if_statement_directive_body, + [198408] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(140), 1, + STATE(636), 1, sym__directive_parameter, - STATE(5813), 1, - sym__if_statement_directive_body, - [193088] = 3, - ACTIONS(11204), 1, + STATE(5992), 1, + sym__directive_body_with_parameter, + [198418] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(437), 1, sym__directive_parameter, - STATE(5656), 1, + STATE(6131), 1, sym__directive_body_with_parameter, - [193098] = 3, - ACTIONS(11138), 1, + [198428] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6449), 1, + STATE(5991), 1, sym__directive_body_with_parameter, - [193108] = 3, - ACTIONS(11016), 1, + [198438] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(644), 1, sym__directive_parameter, - STATE(6393), 1, + STATE(5990), 1, sym__directive_body_with_parameter, - [193118] = 3, - ACTIONS(10586), 1, + [198448] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6006), 1, + STATE(5778), 1, sym__if_statement_directive_body, - [193128] = 3, - ACTIONS(10820), 1, + [198458] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(75), 1, sym__directive_parameter, - STATE(6451), 1, + STATE(5606), 1, + sym__if_statement_directive_body, + [198468] = 3, + ACTIONS(11199), 1, + anon_sym_LPAREN2, + STATE(350), 1, + sym__directive_parameter, + STATE(6138), 1, sym__directive_body_with_parameter, - [193138] = 3, - ACTIONS(11204), 1, + [198478] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(437), 1, sym__directive_parameter, - STATE(6452), 1, + STATE(5983), 1, sym__directive_body_with_parameter, - [193148] = 3, - ACTIONS(11172), 1, + [198488] = 3, + ACTIONS(10723), 1, + anon_sym_LPAREN2, + STATE(99), 1, + sym__directive_parameter, + STATE(6170), 1, + sym__if_statement_directive_body, + [198498] = 3, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + STATE(109), 1, + sym__directive_parameter, + STATE(5963), 1, + sym__if_statement_directive_body, + [198508] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, STATE(250), 1, sym__directive_parameter, - STATE(5506), 1, + STATE(5982), 1, sym__directive_body_with_parameter, - [193158] = 3, - ACTIONS(10566), 1, + [198518] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(350), 1, sym__directive_parameter, - STATE(6005), 1, - sym__if_statement_directive_body, - [193168] = 3, - ACTIONS(11180), 1, + STATE(5981), 1, + sym__directive_body_with_parameter, + [198528] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(445), 1, sym__directive_parameter, - STATE(5505), 1, + STATE(5980), 1, sym__directive_body_with_parameter, - [193178] = 3, - ACTIONS(10524), 1, + [198538] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(540), 1, sym__directive_parameter, - STATE(5503), 1, - sym__if_statement_directive_body, - [193188] = 3, - ACTIONS(11124), 1, + STATE(5979), 1, + sym__directive_body_with_parameter, + [198548] = 3, + ACTIONS(11379), 1, + anon_sym_LPAREN2, + STATE(635), 1, + sym__directive_parameter, + STATE(5978), 1, + sym__directive_body_with_parameter, + [198558] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, STATE(644), 1, sym__directive_parameter, - STATE(6464), 1, + STATE(6484), 1, sym__directive_body_with_parameter, - [193198] = 3, - ACTIONS(11130), 1, + [198568] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, STATE(641), 1, sym__directive_parameter, - STATE(6465), 1, + STATE(6485), 1, sym__directive_body_with_parameter, - [193208] = 3, - ACTIONS(11136), 1, + [198578] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(636), 1, sym__directive_parameter, - STATE(6466), 1, + STATE(6111), 1, sym__directive_body_with_parameter, - [193218] = 3, - ACTIONS(11144), 1, + [198588] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(636), 1, sym__directive_parameter, - STATE(6467), 1, + STATE(6486), 1, sym__directive_body_with_parameter, - [193228] = 3, - ACTIONS(11154), 1, + [198598] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(631), 1, sym__directive_parameter, - STATE(6468), 1, + STATE(6487), 1, sym__directive_body_with_parameter, - [193238] = 3, - ACTIONS(11160), 1, + [198608] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(74), 1, sym__directive_parameter, - STATE(6470), 1, + STATE(6171), 1, + sym__if_statement_directive_body, + [198618] = 3, + ACTIONS(11379), 1, + anon_sym_LPAREN2, + STATE(635), 1, + sym__directive_parameter, + STATE(5779), 1, sym__directive_body_with_parameter, - [193248] = 3, - ACTIONS(11166), 1, + [198628] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(625), 1, sym__directive_parameter, - STATE(6471), 1, + STATE(6488), 1, sym__directive_body_with_parameter, - [193258] = 3, - ACTIONS(11172), 1, + [198638] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(619), 1, sym__directive_parameter, - STATE(6472), 1, + STATE(6490), 1, sym__directive_body_with_parameter, - [193268] = 3, - ACTIONS(11180), 1, + [198648] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(523), 1, sym__directive_parameter, - STATE(6473), 1, + STATE(6491), 1, sym__directive_body_with_parameter, - [193278] = 3, - ACTIONS(11138), 1, + [198658] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(333), 1, sym__directive_parameter, - STATE(5968), 1, + STATE(6492), 1, sym__directive_body_with_parameter, - [193288] = 3, - ACTIONS(10524), 1, + [198668] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(532), 1, sym__directive_parameter, - STATE(6474), 1, + STATE(6493), 1, + sym__directive_body_with_parameter, + [198678] = 3, + ACTIONS(10677), 1, + anon_sym_LPAREN2, + STATE(84), 1, + sym__directive_parameter, + STATE(6172), 1, sym__if_statement_directive_body, - [193298] = 3, - ACTIONS(10512), 1, + [198688] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(123), 1, sym__directive_parameter, - STATE(6475), 1, + STATE(6494), 1, sym__if_statement_directive_body, - [193308] = 3, - ACTIONS(10594), 1, + [198698] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(120), 1, sym__directive_parameter, - STATE(6476), 1, + STATE(6495), 1, sym__if_statement_directive_body, - [193318] = 3, - ACTIONS(10500), 1, + [198708] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(75), 1, sym__directive_parameter, - STATE(6477), 1, + STATE(6496), 1, sym__if_statement_directive_body, - [193328] = 3, - ACTIONS(11130), 1, + [198718] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(641), 1, + STATE(109), 1, sym__directive_parameter, - STATE(5595), 1, - sym__directive_body_with_parameter, - [193338] = 3, - ACTIONS(10662), 1, + STATE(6497), 1, + sym__if_statement_directive_body, + [198728] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(77), 1, sym__directive_parameter, - STATE(6478), 1, + STATE(6498), 1, sym__if_statement_directive_body, - [193348] = 3, - ACTIONS(10662), 1, + [198738] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6398), 1, + STATE(5566), 1, sym__if_statement_directive_body, - [193358] = 3, - ACTIONS(10586), 1, + [198748] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6481), 1, + STATE(6500), 1, sym__if_statement_directive_body, - [193368] = 3, - ACTIONS(10518), 1, + [198758] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(140), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6482), 1, + STATE(6501), 1, sym__if_statement_directive_body, - [193378] = 3, - ACTIONS(11136), 1, + [198768] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(140), 1, sym__directive_parameter, - STATE(5597), 1, - sym__directive_body_with_parameter, - [193388] = 3, - ACTIONS(10512), 1, + STATE(6502), 1, + sym__if_statement_directive_body, + [198778] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(99), 1, sym__directive_parameter, - STATE(5573), 1, + STATE(6506), 1, sym__if_statement_directive_body, - [193398] = 3, - ACTIONS(10550), 1, + [198788] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6486), 1, + STATE(5977), 1, sym__if_statement_directive_body, - [193408] = 3, - ACTIONS(10566), 1, + [198798] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(74), 1, sym__directive_parameter, - STATE(6487), 1, + STATE(6507), 1, sym__if_statement_directive_body, - [193418] = 3, - ACTIONS(10586), 1, + [198808] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6488), 1, + STATE(6508), 1, sym__if_statement_directive_body, - [193428] = 3, - ACTIONS(11198), 1, + [198818] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(635), 1, sym__directive_parameter, - STATE(6489), 1, + STATE(6509), 1, sym__directive_body_with_parameter, - [193438] = 3, - ACTIONS(11182), 1, + [198828] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(540), 1, sym__directive_parameter, - STATE(6490), 1, + STATE(6510), 1, sym__directive_body_with_parameter, - [193448] = 3, - ACTIONS(11138), 1, + [198838] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(445), 1, sym__directive_parameter, - STATE(6491), 1, + STATE(6511), 1, sym__directive_body_with_parameter, - [193458] = 3, - ACTIONS(11016), 1, + [198848] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(631), 1, sym__directive_parameter, - STATE(6492), 1, + STATE(6112), 1, sym__directive_body_with_parameter, - [193468] = 3, - ACTIONS(10820), 1, + [198858] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(350), 1, sym__directive_parameter, - STATE(5653), 1, + STATE(6512), 1, sym__directive_body_with_parameter, - [193478] = 3, - ACTIONS(11204), 1, + [198868] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(250), 1, sym__directive_parameter, - STATE(5608), 1, + STATE(6513), 1, sym__directive_body_with_parameter, - [193488] = 3, - ACTIONS(11016), 1, + [198878] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(437), 1, sym__directive_parameter, - STATE(5652), 1, + STATE(6514), 1, sym__directive_body_with_parameter, - [193498] = 3, - ACTIONS(11138), 1, + [198888] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(250), 1, sym__directive_parameter, - STATE(5651), 1, + STATE(6139), 1, sym__directive_body_with_parameter, - [193508] = 3, - ACTIONS(10820), 1, + [198898] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(74), 1, sym__directive_parameter, - STATE(6493), 1, - sym__directive_body_with_parameter, - [193518] = 3, - ACTIONS(11204), 1, + STATE(5976), 1, + sym__if_statement_directive_body, + [198908] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(99), 1, sym__directive_parameter, - STATE(6496), 1, + STATE(5975), 1, + sym__if_statement_directive_body, + [198918] = 3, + ACTIONS(11303), 1, + anon_sym_LPAREN2, + STATE(644), 1, + sym__directive_parameter, + STATE(6521), 1, sym__directive_body_with_parameter, - [193528] = 3, - ACTIONS(10512), 1, + [198928] = 3, + ACTIONS(10693), 1, + anon_sym_LPAREN2, + STATE(123), 1, + sym__directive_parameter, + STATE(5834), 1, + sym__if_statement_directive_body, + [198938] = 3, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + STATE(140), 1, + sym__directive_parameter, + STATE(5971), 1, + sym__if_statement_directive_body, + [198948] = 3, + ACTIONS(10677), 1, + anon_sym_LPAREN2, + STATE(84), 1, + sym__directive_parameter, + STATE(5970), 1, + sym__if_statement_directive_body, + [198958] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5502), 1, + STATE(5969), 1, sym__if_statement_directive_body, - [193538] = 3, - ACTIONS(10518), 1, + [198968] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(140), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6000), 1, - sym__if_statement_directive_body, - [193548] = 3, - ACTIONS(11182), 1, + STATE(6522), 1, + sym__directive_body_with_parameter, + [198978] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(636), 1, sym__directive_parameter, - STATE(5650), 1, + STATE(6523), 1, sym__directive_body_with_parameter, - [193558] = 3, - ACTIONS(11198), 1, + [198988] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(631), 1, sym__directive_parameter, - STATE(5649), 1, + STATE(6524), 1, sym__directive_body_with_parameter, - [193568] = 3, - ACTIONS(11124), 1, + [198998] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(636), 1, sym__directive_parameter, - STATE(6510), 1, + STATE(6224), 1, sym__directive_body_with_parameter, - [193578] = 3, - ACTIONS(10586), 1, + [199008] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5999), 1, + STATE(5567), 1, sym__if_statement_directive_body, - [193588] = 3, - ACTIONS(10586), 1, + [199018] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(77), 1, sym__directive_parameter, - STATE(5998), 1, + STATE(5964), 1, sym__if_statement_directive_body, - [193598] = 3, - ACTIONS(11130), 1, + [199028] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(641), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6511), 1, - sym__directive_body_with_parameter, - [193608] = 3, - ACTIONS(10586), 1, + STATE(5568), 1, + sym__if_statement_directive_body, + [199038] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(75), 1, sym__directive_parameter, - STATE(5648), 1, + STATE(6121), 1, sym__if_statement_directive_body, - [193618] = 3, - ACTIONS(10566), 1, + [199048] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(625), 1, sym__directive_parameter, - STATE(5647), 1, - sym__if_statement_directive_body, - [193628] = 3, - ACTIONS(10662), 1, + STATE(6525), 1, + sym__directive_body_with_parameter, + [199058] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(77), 1, sym__directive_parameter, - STATE(5996), 1, + STATE(5571), 1, sym__if_statement_directive_body, - [193638] = 3, - ACTIONS(10550), 1, + [199068] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(619), 1, sym__directive_parameter, - STATE(5646), 1, - sym__if_statement_directive_body, - [193648] = 3, - ACTIONS(10550), 1, + STATE(6527), 1, + sym__directive_body_with_parameter, + [199078] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(109), 1, sym__directive_parameter, - STATE(5819), 1, + STATE(5572), 1, sym__if_statement_directive_body, - [193658] = 3, - ACTIONS(11136), 1, + [199088] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(635), 1, sym__directive_parameter, - STATE(6512), 1, + STATE(5938), 1, sym__directive_body_with_parameter, - [193668] = 3, - ACTIONS(11144), 1, + [199098] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(644), 1, sym__directive_parameter, - STATE(6513), 1, + STATE(6222), 1, sym__directive_body_with_parameter, - [193678] = 3, - ACTIONS(10500), 1, + [199108] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(75), 1, sym__directive_parameter, - STATE(5995), 1, + STATE(5573), 1, sym__if_statement_directive_body, - [193688] = 3, - ACTIONS(10594), 1, + [199118] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(120), 1, sym__directive_parameter, - STATE(5994), 1, + STATE(5574), 1, sym__if_statement_directive_body, - [193698] = 3, - ACTIONS(11180), 1, + [199128] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(523), 1, sym__directive_parameter, - STATE(5725), 1, + STATE(6528), 1, sym__directive_body_with_parameter, - [193708] = 3, - ACTIONS(10594), 1, + [199138] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(123), 1, sym__directive_parameter, - STATE(5501), 1, + STATE(5575), 1, sym__if_statement_directive_body, - [193718] = 3, - ACTIONS(10512), 1, + [199148] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(75), 1, sym__directive_parameter, - STATE(5993), 1, + STATE(5962), 1, sym__if_statement_directive_body, - [193728] = 3, - ACTIONS(10524), 1, + [199158] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(120), 1, sym__directive_parameter, - STATE(5992), 1, + STATE(5961), 1, sym__if_statement_directive_body, - [193738] = 3, - ACTIONS(11154), 1, + [199168] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(123), 1, sym__directive_parameter, - STATE(6514), 1, + STATE(5960), 1, + sym__if_statement_directive_body, + [199178] = 3, + ACTIONS(11359), 1, + anon_sym_LPAREN2, + STATE(540), 1, + sym__directive_parameter, + STATE(5780), 1, sym__directive_body_with_parameter, - [193748] = 3, - ACTIONS(10566), 1, + [199188] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(437), 1, sym__directive_parameter, - STATE(5948), 1, - sym__if_statement_directive_body, - [193758] = 3, - ACTIONS(11144), 1, + STATE(6140), 1, + sym__directive_body_with_parameter, + [199198] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(445), 1, sym__directive_parameter, - STATE(6123), 1, + STATE(5781), 1, sym__directive_body_with_parameter, - [193768] = 3, - ACTIONS(10586), 1, + [199208] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(532), 1, sym__directive_parameter, - STATE(5949), 1, - sym__if_statement_directive_body, - [193778] = 3, - ACTIONS(10518), 1, + STATE(5577), 1, + sym__directive_body_with_parameter, + [199218] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(140), 1, + STATE(350), 1, sym__directive_parameter, - STATE(5641), 1, - sym__if_statement_directive_body, - [193788] = 3, - ACTIONS(10586), 1, + STATE(5782), 1, + sym__directive_body_with_parameter, + [199228] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(77), 1, sym__directive_parameter, - STATE(5640), 1, + STATE(5686), 1, sym__if_statement_directive_body, - [193798] = 3, - ACTIONS(10586), 1, + [199238] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(532), 1, sym__directive_parameter, - STATE(5639), 1, - sym__if_statement_directive_body, - [193808] = 3, - ACTIONS(11160), 1, + STATE(5959), 1, + sym__directive_body_with_parameter, + [199248] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(333), 1, sym__directive_parameter, - STATE(6516), 1, + STATE(5958), 1, sym__directive_body_with_parameter, - [193818] = 3, - ACTIONS(11166), 1, + [199258] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(625), 1, sym__directive_parameter, - STATE(6517), 1, + STATE(6113), 1, sym__directive_body_with_parameter, - [193828] = 3, - ACTIONS(11172), 1, + [199268] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(523), 1, sym__directive_parameter, - STATE(5938), 1, + STATE(5957), 1, sym__directive_body_with_parameter, - [193838] = 3, - ACTIONS(11172), 1, + [199278] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(333), 1, sym__directive_parameter, - STATE(6518), 1, + STATE(6529), 1, sym__directive_body_with_parameter, - [193848] = 3, - ACTIONS(11180), 1, + [199288] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(532), 1, sym__directive_parameter, - STATE(6519), 1, + STATE(6530), 1, sym__directive_body_with_parameter, - [193858] = 3, - ACTIONS(10500), 1, + [199298] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(619), 1, sym__directive_parameter, - STATE(5500), 1, - sym__if_statement_directive_body, - [193868] = 3, - ACTIONS(10524), 1, + STATE(6115), 1, + sym__directive_body_with_parameter, + [199308] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6520), 1, + STATE(5783), 1, + sym__directive_body_with_parameter, + [199318] = 3, + ACTIONS(10693), 1, + anon_sym_LPAREN2, + STATE(123), 1, + sym__directive_parameter, + STATE(6531), 1, sym__if_statement_directive_body, - [193878] = 3, - ACTIONS(10512), 1, + [199328] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(333), 1, sym__directive_parameter, - STATE(6521), 1, + STATE(5578), 1, + sym__directive_body_with_parameter, + [199338] = 3, + ACTIONS(11339), 1, + anon_sym_LPAREN2, + STATE(523), 1, + sym__directive_parameter, + STATE(5579), 1, + sym__directive_body_with_parameter, + [199348] = 3, + ACTIONS(10681), 1, + anon_sym_LPAREN2, + STATE(120), 1, + sym__directive_parameter, + STATE(6532), 1, sym__if_statement_directive_body, - [193888] = 3, - ACTIONS(10594), 1, + [199358] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(75), 1, sym__directive_parameter, - STATE(6522), 1, + STATE(6533), 1, sym__if_statement_directive_body, - [193898] = 3, - ACTIONS(10500), 1, + [199368] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(109), 1, sym__directive_parameter, - STATE(6523), 1, + STATE(6534), 1, sym__if_statement_directive_body, - [193908] = 3, - ACTIONS(10662), 1, + [199378] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(77), 1, sym__directive_parameter, - STATE(6524), 1, + STATE(6535), 1, sym__if_statement_directive_body, - [193918] = 3, - ACTIONS(10586), 1, + [199388] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6526), 1, + STATE(6537), 1, sym__if_statement_directive_body, - [193928] = 3, - ACTIONS(10586), 1, + [199398] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6527), 1, + STATE(6538), 1, sym__if_statement_directive_body, - [193938] = 3, - ACTIONS(10518), 1, + [199408] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, STATE(140), 1, sym__directive_parameter, - STATE(6528), 1, + STATE(6539), 1, sym__if_statement_directive_body, - [193948] = 3, - ACTIONS(11166), 1, + [199418] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(619), 1, sym__directive_parameter, - STATE(5989), 1, + STATE(5580), 1, sym__directive_body_with_parameter, - [193958] = 3, - ACTIONS(10550), 1, + [199428] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(99), 1, sym__directive_parameter, - STATE(6533), 1, + STATE(6543), 1, sym__if_statement_directive_body, - [193968] = 3, - ACTIONS(10566), 1, + [199438] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(74), 1, sym__directive_parameter, - STATE(6534), 1, + STATE(6544), 1, sym__if_statement_directive_body, - [193978] = 3, - ACTIONS(10586), 1, + [199448] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6535), 1, + STATE(6545), 1, sym__if_statement_directive_body, - [193988] = 3, - ACTIONS(11198), 1, + [199458] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(625), 1, sym__directive_parameter, - STATE(6536), 1, + STATE(5582), 1, sym__directive_body_with_parameter, - [193998] = 3, - ACTIONS(11182), 1, + [199468] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(635), 1, sym__directive_parameter, - STATE(6537), 1, + STATE(6546), 1, sym__directive_body_with_parameter, - [194008] = 3, - ACTIONS(11138), 1, + [199478] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(540), 1, sym__directive_parameter, - STATE(6538), 1, + STATE(6547), 1, sym__directive_body_with_parameter, - [194018] = 3, - ACTIONS(11016), 1, + [199488] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(445), 1, sym__directive_parameter, - STATE(6539), 1, + STATE(6548), 1, sym__directive_body_with_parameter, - [194028] = 3, - ACTIONS(10820), 1, + [199498] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(350), 1, sym__directive_parameter, - STATE(6540), 1, + STATE(6549), 1, sym__directive_body_with_parameter, - [194038] = 3, - ACTIONS(10662), 1, + [199508] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(619), 1, sym__directive_parameter, - STATE(5637), 1, - sym__if_statement_directive_body, - [194048] = 3, - ACTIONS(11204), 1, + STATE(5956), 1, + sym__directive_body_with_parameter, + [199518] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6543), 1, + STATE(6550), 1, sym__directive_body_with_parameter, - [194058] = 3, - ACTIONS(10662), 1, + [199528] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(437), 1, sym__directive_parameter, - STATE(5499), 1, - sym__if_statement_directive_body, - [194068] = 3, - ACTIONS(10500), 1, + STATE(6551), 1, + sym__directive_body_with_parameter, + [199538] = 3, + ACTIONS(11371), 1, + anon_sym_LPAREN2, + STATE(437), 1, + sym__directive_parameter, + STATE(5784), 1, + sym__directive_body_with_parameter, + [199548] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5636), 1, + STATE(5688), 1, sym__if_statement_directive_body, - [194078] = 3, - ACTIONS(11124), 1, + [199558] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(523), 1, sym__directive_parameter, - STATE(6557), 1, + STATE(6116), 1, sym__directive_body_with_parameter, - [194088] = 3, - ACTIONS(11130), 1, + [199568] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(641), 1, + STATE(333), 1, sym__directive_parameter, - STATE(6558), 1, + STATE(6117), 1, sym__directive_body_with_parameter, - [194098] = 3, - ACTIONS(11160), 1, + [199578] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(644), 1, sym__directive_parameter, - STATE(5988), 1, + STATE(6553), 1, sym__directive_body_with_parameter, - [194108] = 3, - ACTIONS(11136), 1, + [199588] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(641), 1, sym__directive_parameter, STATE(6559), 1, sym__directive_body_with_parameter, - [194118] = 3, - ACTIONS(11144), 1, + [199598] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(636), 1, sym__directive_parameter, STATE(6560), 1, sym__directive_body_with_parameter, - [194128] = 3, - ACTIONS(11154), 1, + [199608] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(631), 1, sym__directive_parameter, STATE(6561), 1, sym__directive_body_with_parameter, - [194138] = 3, - ACTIONS(11160), 1, + [199618] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(625), 1, sym__directive_parameter, - STATE(6563), 1, + STATE(6562), 1, sym__directive_body_with_parameter, - [194148] = 3, - ACTIONS(11166), 1, + [199628] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(619), 1, sym__directive_parameter, STATE(6564), 1, sym__directive_body_with_parameter, - [194158] = 3, - ACTIONS(11172), 1, + [199638] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(523), 1, sym__directive_parameter, STATE(6565), 1, sym__directive_body_with_parameter, - [194168] = 3, - ACTIONS(11180), 1, + [199648] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(644), 1, sym__directive_parameter, - STATE(6566), 1, + STATE(5791), 1, sym__directive_body_with_parameter, - [194178] = 3, - ACTIONS(10594), 1, - anon_sym_LPAREN2, - STATE(77), 1, - sym__directive_parameter, - STATE(5635), 1, - sym__if_statement_directive_body, - [194188] = 3, - ACTIONS(10512), 1, + [199658] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(641), 1, sym__directive_parameter, - STATE(5634), 1, - sym__if_statement_directive_body, - [194198] = 3, - ACTIONS(10524), 1, + STATE(5792), 1, + sym__directive_body_with_parameter, + [199668] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5633), 1, + STATE(5689), 1, sym__if_statement_directive_body, - [194208] = 3, - ACTIONS(11154), 1, + [199678] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, STATE(625), 1, sym__directive_parameter, - STATE(5986), 1, + STATE(5954), 1, sym__directive_body_with_parameter, - [194218] = 3, - ACTIONS(10586), 1, + [199688] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(333), 1, sym__directive_parameter, - STATE(5496), 1, - sym__if_statement_directive_body, - [194228] = 3, - ACTIONS(10524), 1, + STATE(6566), 1, + sym__directive_body_with_parameter, + [199698] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(532), 1, sym__directive_parameter, STATE(6567), 1, - sym__if_statement_directive_body, - [194238] = 3, - ACTIONS(10512), 1, - anon_sym_LPAREN2, - STATE(88), 1, - sym__directive_parameter, - STATE(6568), 1, - sym__if_statement_directive_body, - [194248] = 3, - ACTIONS(11144), 1, - anon_sym_LPAREN2, - STATE(633), 1, - sym__directive_parameter, - STATE(5985), 1, sym__directive_body_with_parameter, - [194258] = 3, - ACTIONS(10594), 1, - anon_sym_LPAREN2, - STATE(77), 1, - sym__directive_parameter, - STATE(6569), 1, - sym__if_statement_directive_body, - [194268] = 3, - ACTIONS(11136), 1, + [199708] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(635), 1, sym__directive_parameter, - STATE(5984), 1, + STATE(6173), 1, sym__directive_body_with_parameter, - [194278] = 3, - ACTIONS(10500), 1, - anon_sym_LPAREN2, - STATE(115), 1, - sym__directive_parameter, - STATE(6570), 1, - sym__if_statement_directive_body, - [194288] = 3, - ACTIONS(11130), 1, + [199718] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(641), 1, + STATE(532), 1, sym__directive_parameter, - STATE(5983), 1, + STATE(6118), 1, sym__directive_body_with_parameter, - [194298] = 3, - ACTIONS(11124), 1, + [199728] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(631), 1, sym__directive_parameter, - STATE(5982), 1, + STATE(5583), 1, sym__directive_body_with_parameter, - [194308] = 3, - ACTIONS(10662), 1, + [199738] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6571), 1, + STATE(5690), 1, sym__if_statement_directive_body, - [194318] = 3, - ACTIONS(10586), 1, + [199748] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(636), 1, sym__directive_parameter, - STATE(6573), 1, - sym__if_statement_directive_body, - [194328] = 3, - ACTIONS(11180), 1, + STATE(5790), 1, + sym__directive_body_with_parameter, + [199758] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(625), 1, sym__directive_parameter, - STATE(5632), 1, + STATE(5595), 1, sym__directive_body_with_parameter, - [194338] = 3, - ACTIONS(10586), 1, + [199768] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(123), 1, sym__directive_parameter, - STATE(6574), 1, + STATE(6568), 1, sym__if_statement_directive_body, - [194348] = 3, - ACTIONS(10518), 1, + [199778] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(140), 1, + STATE(636), 1, sym__directive_parameter, - STATE(6575), 1, - sym__if_statement_directive_body, - [194358] = 3, - ACTIONS(10550), 1, + STATE(5588), 1, + sym__directive_body_with_parameter, + [199788] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(120), 1, sym__directive_parameter, - STATE(6580), 1, + STATE(6569), 1, sym__if_statement_directive_body, - [194368] = 3, - ACTIONS(10566), 1, + [199798] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6581), 1, - sym__if_statement_directive_body, - [194378] = 3, - ACTIONS(10586), 1, + STATE(5589), 1, + sym__directive_body_with_parameter, + [199808] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6582), 1, + STATE(6032), 1, sym__if_statement_directive_body, - [194388] = 3, - ACTIONS(10550), 1, + [199818] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(74), 1, sym__directive_parameter, - STATE(5818), 1, + STATE(5899), 1, sym__if_statement_directive_body, - [194398] = 3, - ACTIONS(10524), 1, + [199828] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(99), 1, sym__directive_parameter, - STATE(5574), 1, + STATE(6000), 1, sym__if_statement_directive_body, - [194408] = 3, - ACTIONS(11172), 1, + [199838] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(631), 1, sym__directive_parameter, - STATE(5631), 1, + STATE(5953), 1, sym__directive_body_with_parameter, - [194418] = 3, - ACTIONS(11204), 1, + [199848] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(75), 1, sym__directive_parameter, - STATE(5971), 1, - sym__directive_body_with_parameter, - [194428] = 3, - ACTIONS(10820), 1, + STATE(6570), 1, + sym__if_statement_directive_body, + [199858] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(99), 1, sym__directive_parameter, - STATE(5970), 1, - sym__directive_body_with_parameter, - [194438] = 3, - ACTIONS(11016), 1, + STATE(5694), 1, + sym__if_statement_directive_body, + [199868] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(636), 1, sym__directive_parameter, - STATE(5969), 1, + STATE(5952), 1, sym__directive_body_with_parameter, - [194448] = 3, - ACTIONS(11166), 1, + [199878] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(619), 1, sym__directive_parameter, - STATE(5630), 1, + STATE(5599), 1, sym__directive_body_with_parameter, - [194458] = 3, - ACTIONS(11160), 1, + [199888] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(74), 1, sym__directive_parameter, - STATE(5629), 1, - sym__directive_body_with_parameter, - [194468] = 3, - ACTIONS(11180), 1, + STATE(5695), 1, + sym__if_statement_directive_body, + [199898] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(631), 1, sym__directive_parameter, - STATE(5576), 1, + STATE(5794), 1, sym__directive_body_with_parameter, - [194478] = 3, - ACTIONS(11154), 1, + [199908] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5627), 1, - sym__directive_body_with_parameter, - [194488] = 3, - ACTIONS(11144), 1, + STATE(6134), 1, + sym__if_statement_directive_body, + [199918] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5626), 1, - sym__directive_body_with_parameter, - [194498] = 3, - ACTIONS(11136), 1, + STATE(5696), 1, + sym__if_statement_directive_body, + [199928] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(540), 1, sym__directive_parameter, - STATE(5625), 1, + STATE(6146), 1, sym__directive_body_with_parameter, - [194508] = 3, - ACTIONS(11130), 1, + [199938] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, STATE(641), 1, sym__directive_parameter, - STATE(5624), 1, - sym__directive_body_with_parameter, - [194518] = 3, - ACTIONS(11198), 1, - anon_sym_LPAREN2, - STATE(627), 1, - sym__directive_parameter, - STATE(6583), 1, - sym__directive_body_with_parameter, - [194528] = 3, - ACTIONS(11182), 1, - anon_sym_LPAREN2, - STATE(533), 1, - sym__directive_parameter, - STATE(6584), 1, - sym__directive_body_with_parameter, - [194538] = 3, - ACTIONS(11182), 1, - anon_sym_LPAREN2, - STATE(533), 1, - sym__directive_parameter, - STATE(5967), 1, + STATE(5951), 1, sym__directive_body_with_parameter, - [194548] = 3, - ACTIONS(11138), 1, + [199948] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(644), 1, sym__directive_parameter, - STATE(6585), 1, + STATE(5950), 1, sym__directive_body_with_parameter, - [194558] = 3, - ACTIONS(11016), 1, + [199958] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(625), 1, sym__directive_parameter, - STATE(6586), 1, + STATE(5795), 1, sym__directive_body_with_parameter, - [194568] = 3, - ACTIONS(10820), 1, + [199968] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(437), 1, sym__directive_parameter, - STATE(6587), 1, + STATE(5943), 1, sym__directive_body_with_parameter, - [194578] = 3, - ACTIONS(11172), 1, + [199978] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, STATE(250), 1, sym__directive_parameter, - STATE(5946), 1, + STATE(5942), 1, sym__directive_body_with_parameter, - [194588] = 3, - ACTIONS(11204), 1, + [199988] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(350), 1, sym__directive_parameter, - STATE(6590), 1, + STATE(5941), 1, sym__directive_body_with_parameter, - [194598] = 3, - ACTIONS(11198), 1, + [199998] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(109), 1, sym__directive_parameter, - STATE(5966), 1, - sym__directive_body_with_parameter, - [194608] = 3, - ACTIONS(11124), 1, + STATE(6571), 1, + sym__if_statement_directive_body, + [200008] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(77), 1, sym__directive_parameter, - STATE(5623), 1, - sym__directive_body_with_parameter, - [194618] = 3, - ACTIONS(11124), 1, + STATE(6572), 1, + sym__if_statement_directive_body, + [200018] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(619), 1, sym__directive_parameter, - STATE(6172), 1, + STATE(5797), 1, sym__directive_body_with_parameter, - [194628] = 3, - ACTIONS(11130), 1, + [200028] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(641), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6600), 1, - sym__directive_body_with_parameter, - [194638] = 3, - ACTIONS(11136), 1, + STATE(6574), 1, + sym__if_statement_directive_body, + [200038] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6601), 1, - sym__directive_body_with_parameter, - [194648] = 3, - ACTIONS(11144), 1, + STATE(6575), 1, + sym__if_statement_directive_body, + [200048] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(523), 1, sym__directive_parameter, - STATE(6602), 1, + STATE(5798), 1, sym__directive_body_with_parameter, - [194658] = 3, - ACTIONS(11154), 1, + [200058] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(333), 1, sym__directive_parameter, - STATE(6603), 1, + STATE(5799), 1, sym__directive_body_with_parameter, - [194668] = 3, - ACTIONS(11160), 1, + [200068] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6605), 1, - sym__directive_body_with_parameter, - [194678] = 3, - ACTIONS(11166), 1, + STATE(6576), 1, + sym__if_statement_directive_body, + [200078] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(532), 1, sym__directive_parameter, - STATE(6606), 1, + STATE(5802), 1, sym__directive_body_with_parameter, - [194688] = 3, - ACTIONS(11172), 1, + [200088] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, STATE(250), 1, sym__directive_parameter, - STATE(6607), 1, - sym__directive_body_with_parameter, - [194698] = 3, - ACTIONS(11180), 1, - anon_sym_LPAREN2, - STATE(621), 1, - sym__directive_parameter, - STATE(6608), 1, - sym__directive_body_with_parameter, - [194708] = 3, - ACTIONS(11100), 1, - anon_sym_LPAREN2, - STATE(649), 1, - sym__directive_parameter, - STATE(5698), 1, + STATE(6101), 1, sym__directive_body_with_parameter, - [194718] = 3, - ACTIONS(10524), 1, - anon_sym_LPAREN2, - STATE(122), 1, - sym__directive_parameter, - STATE(6609), 1, - sym__if_statement_directive_body, - [194728] = 3, - ACTIONS(10512), 1, + [200098] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(74), 1, sym__directive_parameter, - STATE(6610), 1, + STATE(6581), 1, sym__if_statement_directive_body, - [194738] = 3, - ACTIONS(10594), 1, + [200108] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6611), 1, + STATE(6582), 1, sym__if_statement_directive_body, - [194748] = 3, - ACTIONS(10586), 1, + [200118] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(635), 1, sym__directive_parameter, - STATE(5965), 1, - sym__if_statement_directive_body, - [194758] = 3, - ACTIONS(10500), 1, + STATE(6583), 1, + sym__directive_body_with_parameter, + [200128] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(540), 1, sym__directive_parameter, - STATE(6612), 1, - sym__if_statement_directive_body, - [194768] = 3, - ACTIONS(10662), 1, + STATE(6584), 1, + sym__directive_body_with_parameter, + [200138] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(445), 1, sym__directive_parameter, - STATE(6613), 1, - sym__if_statement_directive_body, - [194778] = 3, - ACTIONS(10586), 1, + STATE(6585), 1, + sym__directive_body_with_parameter, + [200148] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(350), 1, sym__directive_parameter, - STATE(6615), 1, - sym__if_statement_directive_body, - [194788] = 3, - ACTIONS(10586), 1, + STATE(6586), 1, + sym__directive_body_with_parameter, + [200158] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6616), 1, - sym__if_statement_directive_body, - [194798] = 3, - ACTIONS(10518), 1, + STATE(6587), 1, + sym__directive_body_with_parameter, + [200168] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(140), 1, + STATE(437), 1, sym__directive_parameter, - STATE(6617), 1, - sym__if_statement_directive_body, - [194808] = 3, - ACTIONS(10566), 1, + STATE(6588), 1, + sym__directive_body_with_parameter, + [200178] = 2, + ACTIONS(13323), 1, + anon_sym_LPAREN, + ACTIONS(13325), 2, + aux_sym_parameter_token1, + anon_sym_RPAREN2, + [200186] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(123), 1, sym__directive_parameter, - STATE(5820), 1, + STATE(5803), 1, sym__if_statement_directive_body, - [194818] = 3, - ACTIONS(10586), 1, + [200196] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(445), 1, sym__directive_parameter, - STATE(5822), 1, - sym__if_statement_directive_body, - [194828] = 3, - ACTIONS(11198), 1, + STATE(5940), 1, + sym__directive_body_with_parameter, + [200206] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(540), 1, sym__directive_parameter, - STATE(5823), 1, + STATE(5939), 1, sym__directive_body_with_parameter, - [194838] = 3, - ACTIONS(10550), 1, + [200216] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(644), 1, sym__directive_parameter, - STATE(6623), 1, - sym__if_statement_directive_body, - [194848] = 3, - ACTIONS(10566), 1, + STATE(6595), 1, + sym__directive_body_with_parameter, + [200226] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(123), 1, sym__directive_parameter, - STATE(6624), 1, + STATE(6119), 1, sym__if_statement_directive_body, - [194858] = 3, - ACTIONS(10586), 1, + [200236] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6625), 1, - sym__if_statement_directive_body, - [194868] = 3, - ACTIONS(11198), 1, + STATE(6596), 1, + sym__directive_body_with_parameter, + [200246] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(636), 1, sym__directive_parameter, - STATE(6626), 1, + STATE(6597), 1, sym__directive_body_with_parameter, - [194878] = 3, - ACTIONS(11182), 1, + [200256] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(631), 1, sym__directive_parameter, - STATE(6627), 1, + STATE(6598), 1, sym__directive_body_with_parameter, - [194888] = 3, - ACTIONS(11172), 1, + [200266] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(625), 1, sym__directive_parameter, - STATE(5548), 1, + STATE(6599), 1, sym__directive_body_with_parameter, - [194898] = 3, - ACTIONS(10820), 1, + [200276] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(619), 1, sym__directive_parameter, - STATE(5607), 1, + STATE(6601), 1, sym__directive_body_with_parameter, - [194908] = 3, - ACTIONS(11016), 1, + [200286] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(120), 1, sym__directive_parameter, - STATE(5606), 1, - sym__directive_body_with_parameter, - [194918] = 3, - ACTIONS(11138), 1, + STATE(6120), 1, + sym__if_statement_directive_body, + [200296] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(523), 1, sym__directive_parameter, - STATE(5605), 1, + STATE(6602), 1, sym__directive_body_with_parameter, - [194928] = 3, - ACTIONS(11138), 1, + [200306] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(333), 1, sym__directive_parameter, - STATE(6628), 1, + STATE(6603), 1, sym__directive_body_with_parameter, - [194938] = 3, - ACTIONS(11016), 1, + [200316] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(532), 1, sym__directive_parameter, - STATE(6629), 1, + STATE(6604), 1, sym__directive_body_with_parameter, - [194948] = 3, - ACTIONS(10820), 1, + [200326] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(120), 1, sym__directive_parameter, - STATE(6630), 1, - sym__directive_body_with_parameter, - [194958] = 3, - ACTIONS(11182), 1, + STATE(5804), 1, + sym__if_statement_directive_body, + [200336] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(123), 1, sym__directive_parameter, - STATE(5824), 1, - sym__directive_body_with_parameter, - [194968] = 3, - ACTIONS(11204), 1, + STATE(6605), 1, + sym__if_statement_directive_body, + [200346] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(120), 1, sym__directive_parameter, - STATE(6632), 1, - sym__directive_body_with_parameter, - [194978] = 3, - ACTIONS(11182), 1, + STATE(6606), 1, + sym__if_statement_directive_body, + [200356] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(75), 1, sym__directive_parameter, - STATE(5604), 1, - sym__directive_body_with_parameter, - [194988] = 3, - ACTIONS(11138), 1, + STATE(6607), 1, + sym__if_statement_directive_body, + [200366] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(540), 1, sym__directive_parameter, - STATE(5825), 1, + STATE(6211), 1, sym__directive_body_with_parameter, - [194998] = 3, - ACTIONS(10566), 1, + [200376] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5964), 1, + STATE(5937), 1, sym__if_statement_directive_body, - [195008] = 3, - ACTIONS(11198), 1, + [200386] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(74), 1, sym__directive_parameter, - STATE(5603), 1, - sym__directive_body_with_parameter, - [195018] = 3, - ACTIONS(11124), 1, + STATE(5936), 1, + sym__if_statement_directive_body, + [200396] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(99), 1, sym__directive_parameter, - STATE(6638), 1, - sym__directive_body_with_parameter, - [195028] = 3, - ACTIONS(11172), 1, + STATE(5935), 1, + sym__if_statement_directive_body, + [200406] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(109), 1, sym__directive_parameter, - STATE(5577), 1, - sym__directive_body_with_parameter, - [195038] = 3, - ACTIONS(10586), 1, + STATE(6608), 1, + sym__if_statement_directive_body, + [200416] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(77), 1, sym__directive_parameter, - STATE(5601), 1, + STATE(6609), 1, sym__if_statement_directive_body, - [195048] = 3, - ACTIONS(11130), 1, + [200426] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(641), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6639), 1, - sym__directive_body_with_parameter, - [195058] = 3, - ACTIONS(13132), 1, - anon_sym_RPAREN, - ACTIONS(13134), 1, - anon_sym_LPAREN, - ACTIONS(13136), 1, - aux_sym_parameter_token1, - [195068] = 3, - ACTIONS(11136), 1, + STATE(6611), 1, + sym__if_statement_directive_body, + [200436] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(523), 1, sym__directive_parameter, - STATE(6640), 1, + STATE(5600), 1, sym__directive_body_with_parameter, - [195078] = 3, - ACTIONS(11144), 1, + [200446] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(631), 1, sym__directive_parameter, - STATE(6641), 1, + STATE(5734), 1, sym__directive_body_with_parameter, - [195088] = 3, - ACTIONS(11154), 1, + [200456] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, STATE(625), 1, sym__directive_parameter, - STATE(6642), 1, - sym__directive_body_with_parameter, - [195098] = 3, - ACTIONS(11166), 1, - anon_sym_LPAREN2, - STATE(516), 1, - sym__directive_parameter, - STATE(5578), 1, + STATE(5735), 1, sym__directive_body_with_parameter, - [195108] = 3, - ACTIONS(10550), 1, + [200466] = 3, + ACTIONS(13325), 1, + anon_sym_RPAREN, + ACTIONS(13327), 1, + anon_sym_LPAREN, + ACTIONS(13329), 1, + aux_sym_parameter_token1, + [200476] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(109), 1, sym__directive_parameter, - STATE(5963), 1, + STATE(6122), 1, sym__if_statement_directive_body, - [195118] = 3, - ACTIONS(10566), 1, + [200486] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5600), 1, + STATE(6612), 1, sym__if_statement_directive_body, - [195128] = 3, - ACTIONS(10524), 1, + [200496] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(140), 1, sym__directive_parameter, - STATE(5757), 1, + STATE(5929), 1, sym__if_statement_directive_body, - [195138] = 3, - ACTIONS(10518), 1, + [200506] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, STATE(140), 1, sym__directive_parameter, - STATE(5958), 1, + STATE(6613), 1, sym__if_statement_directive_body, - [195148] = 3, - ACTIONS(11160), 1, + [200516] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6644), 1, - sym__directive_body_with_parameter, - [195158] = 3, - ACTIONS(11166), 1, + STATE(5928), 1, + sym__if_statement_directive_body, + [200526] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(635), 1, sym__directive_parameter, - STATE(6645), 1, + STATE(5697), 1, sym__directive_body_with_parameter, - [195168] = 3, - ACTIONS(10550), 1, + [200536] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5599), 1, + STATE(5927), 1, sym__if_statement_directive_body, - [195178] = 3, - ACTIONS(11016), 1, + [200546] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(644), 1, sym__directive_parameter, - STATE(5826), 1, + STATE(5590), 1, sym__directive_body_with_parameter, - [195188] = 1, - ACTIONS(10934), 3, - anon_sym_ATdefault, - anon_sym_ATendswitch, - anon_sym_ATcase, - [195194] = 3, - ACTIONS(11182), 1, + [200556] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(77), 1, sym__directive_parameter, - STATE(5980), 1, - sym__directive_body_with_parameter, - [195204] = 3, - ACTIONS(11138), 1, + STATE(6123), 1, + sym__if_statement_directive_body, + [200566] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(99), 1, sym__directive_parameter, - STATE(5981), 1, - sym__directive_body_with_parameter, - [195214] = 3, - ACTIONS(10518), 1, + STATE(6617), 1, + sym__if_statement_directive_body, + [200576] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(140), 1, + STATE(77), 1, sym__directive_parameter, - STATE(5591), 1, + STATE(5925), 1, sym__if_statement_directive_body, - [195224] = 3, - ACTIONS(11172), 1, + [200586] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(109), 1, sym__directive_parameter, - STATE(6646), 1, - sym__directive_body_with_parameter, - [195234] = 3, - ACTIONS(11180), 1, + STATE(5924), 1, + sym__if_statement_directive_body, + [200596] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(75), 1, sym__directive_parameter, - STATE(6647), 1, - sym__directive_body_with_parameter, - [195244] = 3, - ACTIONS(10586), 1, + STATE(5923), 1, + sym__if_statement_directive_body, + [200606] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(120), 1, sym__directive_parameter, - STATE(5957), 1, + STATE(5922), 1, sym__if_statement_directive_body, - [195254] = 3, - ACTIONS(10586), 1, + [200616] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(75), 1, sym__directive_parameter, - STATE(5495), 1, + STATE(5805), 1, sym__if_statement_directive_body, - [195264] = 3, - ACTIONS(10524), 1, + [200626] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(635), 1, sym__directive_parameter, - STATE(6648), 1, - sym__if_statement_directive_body, - [195274] = 3, - ACTIONS(10512), 1, + STATE(6135), 1, + sym__directive_body_with_parameter, + [200636] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(123), 1, sym__directive_parameter, - STATE(6649), 1, + STATE(5921), 1, sym__if_statement_directive_body, - [195284] = 3, - ACTIONS(10594), 1, + [200646] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6650), 1, + STATE(6125), 1, sym__if_statement_directive_body, - [195294] = 3, - ACTIONS(10500), 1, + [200656] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(109), 1, sym__directive_parameter, - STATE(6651), 1, + STATE(5806), 1, sym__if_statement_directive_body, - [195304] = 3, - ACTIONS(10662), 1, + [200666] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(532), 1, sym__directive_parameter, - STATE(6652), 1, - sym__if_statement_directive_body, - [195314] = 3, - ACTIONS(10586), 1, + STATE(5920), 1, + sym__directive_body_with_parameter, + [200676] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(333), 1, sym__directive_parameter, - STATE(6654), 1, - sym__if_statement_directive_body, - [195324] = 3, - ACTIONS(10586), 1, + STATE(5919), 1, + sym__directive_body_with_parameter, + [200686] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(523), 1, sym__directive_parameter, - STATE(6655), 1, - sym__if_statement_directive_body, - [195334] = 3, - ACTIONS(10518), 1, + STATE(5869), 1, + sym__directive_body_with_parameter, + [200696] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(140), 1, + STATE(619), 1, sym__directive_parameter, - STATE(6656), 1, - sym__if_statement_directive_body, - [195344] = 3, - ACTIONS(10586), 1, + STATE(5917), 1, + sym__directive_body_with_parameter, + [200706] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5956), 1, + STATE(6126), 1, sym__if_statement_directive_body, - [195354] = 3, - ACTIONS(10550), 1, + [200716] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(74), 1, sym__directive_parameter, - STATE(6660), 1, + STATE(6618), 1, sym__if_statement_directive_body, - [195364] = 3, - ACTIONS(10566), 1, + [200726] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6661), 1, + STATE(6619), 1, sym__if_statement_directive_body, - [195374] = 3, - ACTIONS(10586), 1, + [200736] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(77), 1, sym__directive_parameter, - STATE(6662), 1, + STATE(5807), 1, sym__if_statement_directive_body, - [195384] = 3, - ACTIONS(11198), 1, + [200746] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(635), 1, sym__directive_parameter, - STATE(6663), 1, + STATE(6620), 1, sym__directive_body_with_parameter, - [195394] = 3, - ACTIONS(11182), 1, + [200756] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(540), 1, sym__directive_parameter, - STATE(6664), 1, + STATE(6621), 1, sym__directive_body_with_parameter, - [195404] = 3, - ACTIONS(11138), 1, + [200766] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(540), 1, sym__directive_parameter, - STATE(6665), 1, + STATE(5698), 1, sym__directive_body_with_parameter, - [195414] = 3, - ACTIONS(11016), 1, + [200776] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6666), 1, + STATE(6127), 1, + sym__if_statement_directive_body, + [200786] = 3, + ACTIONS(11341), 1, + anon_sym_LPAREN2, + STATE(445), 1, + sym__directive_parameter, + STATE(6622), 1, sym__directive_body_with_parameter, - [195424] = 3, - ACTIONS(10820), 1, + [200796] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(350), 1, sym__directive_parameter, - STATE(6667), 1, + STATE(6623), 1, sym__directive_body_with_parameter, - [195434] = 3, - ACTIONS(11204), 1, + [200806] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6669), 1, + STATE(6624), 1, sym__directive_body_with_parameter, - [195444] = 3, - ACTIONS(10518), 1, + [200816] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(140), 1, + STATE(437), 1, sym__directive_parameter, - STATE(5494), 1, - sym__if_statement_directive_body, - [195454] = 3, - ACTIONS(10586), 1, + STATE(6625), 1, + sym__directive_body_with_parameter, + [200826] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5590), 1, + STATE(5809), 1, sym__if_statement_directive_body, - [195464] = 3, - ACTIONS(10586), 1, + [200836] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(625), 1, sym__directive_parameter, - STATE(5586), 1, - sym__if_statement_directive_body, - [195474] = 3, - ACTIONS(11124), 1, + STATE(5915), 1, + sym__directive_body_with_parameter, + [200846] = 3, + ACTIONS(11321), 1, + anon_sym_LPAREN2, + STATE(631), 1, + sym__directive_parameter, + STATE(5914), 1, + sym__directive_body_with_parameter, + [200856] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, STATE(644), 1, sym__directive_parameter, - STATE(6684), 1, + STATE(6632), 1, sym__directive_body_with_parameter, - [195484] = 3, - ACTIONS(11130), 1, + [200866] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, STATE(641), 1, sym__directive_parameter, - STATE(6685), 1, + STATE(6633), 1, sym__directive_body_with_parameter, - [195494] = 3, - ACTIONS(11136), 1, + [200876] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(636), 1, sym__directive_parameter, - STATE(6686), 1, + STATE(6634), 1, sym__directive_body_with_parameter, - [195504] = 3, - ACTIONS(11144), 1, + [200886] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(631), 1, sym__directive_parameter, - STATE(6687), 1, + STATE(6635), 1, sym__directive_body_with_parameter, - [195514] = 3, - ACTIONS(10662), 1, + [200896] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(437), 1, sym__directive_parameter, - STATE(5954), 1, - sym__if_statement_directive_body, - [195524] = 3, - ACTIONS(11154), 1, + STATE(6215), 1, + sym__directive_body_with_parameter, + [200906] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, STATE(625), 1, sym__directive_parameter, - STATE(6688), 1, + STATE(6636), 1, sym__directive_body_with_parameter, - [195534] = 3, - ACTIONS(11160), 1, + [200916] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(619), 1, sym__directive_parameter, - STATE(6690), 1, + STATE(6638), 1, sym__directive_body_with_parameter, - [195544] = 3, - ACTIONS(11166), 1, + [200926] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(523), 1, sym__directive_parameter, - STATE(6691), 1, + STATE(6639), 1, sym__directive_body_with_parameter, - [195554] = 3, - ACTIONS(11172), 1, + [200936] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(333), 1, sym__directive_parameter, - STATE(6692), 1, + STATE(6640), 1, sym__directive_body_with_parameter, - [195564] = 3, - ACTIONS(11180), 1, + [200946] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(636), 1, sym__directive_parameter, - STATE(6693), 1, + STATE(5913), 1, sym__directive_body_with_parameter, - [195574] = 3, - ACTIONS(11160), 1, + [200956] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(532), 1, sym__directive_parameter, - STATE(5579), 1, + STATE(6641), 1, sym__directive_body_with_parameter, - [195584] = 3, - ACTIONS(10524), 1, + [200966] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(644), 1, sym__directive_parameter, - STATE(6694), 1, - sym__if_statement_directive_body, - [195594] = 3, - ACTIONS(10500), 1, + STATE(6147), 1, + sym__directive_body_with_parameter, + [200976] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(123), 1, sym__directive_parameter, - STATE(5953), 1, + STATE(6642), 1, sym__if_statement_directive_body, - [195604] = 3, - ACTIONS(10662), 1, + [200986] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(120), 1, sym__directive_parameter, - STATE(5584), 1, + STATE(6643), 1, sym__if_statement_directive_body, - [195614] = 3, - ACTIONS(11204), 1, + [200996] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(75), 1, sym__directive_parameter, - STATE(6045), 1, - sym__directive_body_with_parameter, - [195624] = 3, - ACTIONS(10594), 1, + STATE(6644), 1, + sym__if_statement_directive_body, + [201006] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(445), 1, sym__directive_parameter, - STATE(5952), 1, - sym__if_statement_directive_body, - [195634] = 3, - ACTIONS(10512), 1, + STATE(5534), 1, + sym__directive_body_with_parameter, + [201016] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(109), 1, sym__directive_parameter, - STATE(6695), 1, + STATE(6645), 1, sym__if_statement_directive_body, - [195644] = 3, - ACTIONS(10594), 1, + [201026] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, STATE(77), 1, sym__directive_parameter, - STATE(6696), 1, + STATE(6646), 1, sym__if_statement_directive_body, - [195654] = 3, - ACTIONS(10500), 1, + [201036] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6697), 1, + STATE(6648), 1, sym__if_statement_directive_body, - [195664] = 3, - ACTIONS(10512), 1, + [201046] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5951), 1, + STATE(6649), 1, sym__if_statement_directive_body, - [195674] = 3, - ACTIONS(10524), 1, + [201056] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(140), 1, sym__directive_parameter, - STATE(5950), 1, + STATE(6650), 1, sym__if_statement_directive_body, - [195684] = 3, - ACTIONS(10820), 1, + [201066] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(333), 1, sym__directive_parameter, - STATE(5827), 1, + STATE(5601), 1, sym__directive_body_with_parameter, - [195694] = 3, - ACTIONS(10662), 1, + [201076] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(99), 1, sym__directive_parameter, - STATE(6698), 1, + STATE(6654), 1, sym__if_statement_directive_body, - [195704] = 3, - ACTIONS(11166), 1, + [201086] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(641), 1, sym__directive_parameter, - STATE(5802), 1, + STATE(5912), 1, sym__directive_body_with_parameter, - [195714] = 3, - ACTIONS(10586), 1, - anon_sym_LPAREN2, - STATE(83), 1, - sym__directive_parameter, - STATE(6700), 1, - sym__if_statement_directive_body, - [195724] = 3, - ACTIONS(10586), 1, + [201096] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6701), 1, + STATE(5810), 1, sym__if_statement_directive_body, - [195734] = 3, - ACTIONS(10518), 1, + [201106] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, STATE(140), 1, sym__directive_parameter, - STATE(6702), 1, + STATE(5811), 1, sym__if_statement_directive_body, - [195744] = 3, - ACTIONS(11154), 1, + [201116] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(445), 1, sym__directive_parameter, - STATE(5581), 1, + STATE(5699), 1, sym__directive_body_with_parameter, - [195754] = 3, - ACTIONS(10550), 1, + [201126] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(74), 1, sym__directive_parameter, - STATE(5712), 1, + STATE(6655), 1, sym__if_statement_directive_body, - [195764] = 3, - ACTIONS(11180), 1, + [201136] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5947), 1, + STATE(6656), 1, + sym__if_statement_directive_body, + [201146] = 3, + ACTIONS(11379), 1, + anon_sym_LPAREN2, + STATE(635), 1, + sym__directive_parameter, + STATE(6657), 1, sym__directive_body_with_parameter, - [195774] = 3, - ACTIONS(10566), 1, + [201156] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6703), 1, - sym__if_statement_directive_body, - [195784] = 3, - ACTIONS(10586), 1, + STATE(6214), 1, + sym__directive_body_with_parameter, + [201166] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(644), 1, sym__directive_parameter, - STATE(6683), 1, - sym__if_statement_directive_body, - [195794] = 3, - ACTIONS(11198), 1, + STATE(5911), 1, + sym__directive_body_with_parameter, + [201176] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(350), 1, sym__directive_parameter, - STATE(6682), 1, + STATE(5700), 1, sym__directive_body_with_parameter, - [195804] = 3, - ACTIONS(11130), 1, + [201186] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(641), 1, + STATE(350), 1, sym__directive_parameter, - STATE(5845), 1, + STATE(6213), 1, sym__directive_body_with_parameter, - [195814] = 3, - ACTIONS(11166), 1, + [201196] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(445), 1, sym__directive_parameter, - STATE(5945), 1, + STATE(6212), 1, sym__directive_body_with_parameter, - [195824] = 3, - ACTIONS(10500), 1, + [201206] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(540), 1, sym__directive_parameter, - STATE(5583), 1, + STATE(6658), 1, + sym__directive_body_with_parameter, + [201216] = 3, + ACTIONS(10763), 1, + anon_sym_LPAREN2, + STATE(75), 1, + sym__directive_parameter, + STATE(5866), 1, sym__if_statement_directive_body, - [195834] = 3, - ACTIONS(11160), 1, + [201226] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(445), 1, sym__directive_parameter, - STATE(5944), 1, + STATE(6659), 1, sym__directive_body_with_parameter, - [195844] = 3, - ACTIONS(11154), 1, + [201236] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(437), 1, sym__directive_parameter, - STATE(5942), 1, + STATE(5623), 1, sym__directive_body_with_parameter, - [195854] = 3, - ACTIONS(10594), 1, + [201246] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(250), 1, sym__directive_parameter, - STATE(5575), 1, - sym__if_statement_directive_body, - [195864] = 3, - ACTIONS(10512), 1, + STATE(5701), 1, + sym__directive_body_with_parameter, + [201256] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(250), 1, sym__directive_parameter, - STATE(5569), 1, - sym__if_statement_directive_body, - [195874] = 3, - ACTIONS(10524), 1, + STATE(5626), 1, + sym__directive_body_with_parameter, + [201266] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(437), 1, sym__directive_parameter, - STATE(5545), 1, - sym__if_statement_directive_body, - [195884] = 3, - ACTIONS(11144), 1, + STATE(5702), 1, + sym__directive_body_with_parameter, + [201276] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(641), 1, sym__directive_parameter, - STATE(5941), 1, + STATE(6148), 1, sym__directive_body_with_parameter, - [195894] = 3, - ACTIONS(11136), 1, + [201286] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(350), 1, sym__directive_parameter, - STATE(5940), 1, + STATE(6660), 1, sym__directive_body_with_parameter, - [195904] = 3, - ACTIONS(11130), 1, + [201296] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(641), 1, + STATE(523), 1, sym__directive_parameter, - STATE(5939), 1, + STATE(5664), 1, sym__directive_body_with_parameter, - [195914] = 3, - ACTIONS(11124), 1, + [201306] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(631), 1, sym__directive_parameter, - STATE(5913), 1, + STATE(5674), 1, sym__directive_body_with_parameter, - [195924] = 3, - ACTIONS(10518), 1, + [201316] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(140), 1, + STATE(120), 1, sym__directive_parameter, - STATE(5768), 1, + STATE(5835), 1, sym__if_statement_directive_body, - [195934] = 3, - ACTIONS(11182), 1, + [201326] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(437), 1, sym__directive_parameter, - STATE(6681), 1, + STATE(5904), 1, sym__directive_body_with_parameter, - [195944] = 3, - ACTIONS(11138), 1, + [201336] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(635), 1, sym__directive_parameter, - STATE(6679), 1, + STATE(6033), 1, sym__directive_body_with_parameter, - [195954] = 3, - ACTIONS(11204), 1, + [201346] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(99), 1, sym__directive_parameter, - STATE(5928), 1, + STATE(5815), 1, + sym__if_statement_directive_body, + [201356] = 3, + ACTIONS(11027), 1, + anon_sym_LPAREN2, + STATE(250), 1, + sym__directive_parameter, + STATE(5903), 1, sym__directive_body_with_parameter, - [195964] = 3, - ACTIONS(11016), 1, + [201366] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(350), 1, sym__directive_parameter, - STATE(6678), 1, + STATE(5902), 1, sym__directive_body_with_parameter, - [195974] = 3, - ACTIONS(10820), 1, + [201376] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(445), 1, sym__directive_parameter, - STATE(6677), 1, + STATE(5901), 1, sym__directive_body_with_parameter, - [195984] = 3, - ACTIONS(10820), 1, + [201386] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(540), 1, sym__directive_parameter, - STATE(5925), 1, + STATE(5898), 1, sym__directive_body_with_parameter, - [195994] = 3, - ACTIONS(11016), 1, + [201396] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(635), 1, sym__directive_parameter, - STATE(5924), 1, + STATE(5897), 1, sym__directive_body_with_parameter, - [196004] = 3, - ACTIONS(11204), 1, + [201406] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6676), 1, + STATE(5896), 1, + sym__if_statement_directive_body, + [201416] = 3, + ACTIONS(10741), 1, + anon_sym_LPAREN2, + STATE(74), 1, + sym__directive_parameter, + STATE(5895), 1, + sym__if_statement_directive_body, + [201426] = 3, + ACTIONS(10723), 1, + anon_sym_LPAREN2, + STATE(99), 1, + sym__directive_parameter, + STATE(5894), 1, + sym__if_statement_directive_body, + [201436] = 3, + ACTIONS(11027), 1, + anon_sym_LPAREN2, + STATE(250), 1, + sym__directive_parameter, + STATE(6661), 1, sym__directive_body_with_parameter, - [196014] = 3, - ACTIONS(11138), 1, + [201446] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(437), 1, sym__directive_parameter, - STATE(5923), 1, + STATE(6662), 1, sym__directive_body_with_parameter, - [196024] = 3, - ACTIONS(11180), 1, + [201456] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(635), 1, sym__directive_parameter, - STATE(5551), 1, + STATE(5621), 1, sym__directive_body_with_parameter, - [196034] = 3, - ACTIONS(11124), 1, + [201466] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(74), 1, sym__directive_parameter, - STATE(6599), 1, + STATE(5816), 1, + sym__if_statement_directive_body, + [201476] = 3, + ACTIONS(10677), 1, + anon_sym_LPAREN2, + STATE(84), 1, + sym__directive_parameter, + STATE(5618), 1, + sym__if_statement_directive_body, + [201486] = 3, + ACTIONS(11199), 1, + anon_sym_LPAREN2, + STATE(350), 1, + sym__directive_parameter, + STATE(5627), 1, sym__directive_body_with_parameter, - [196044] = 3, - ACTIONS(11130), 1, + [201496] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(641), 1, + STATE(445), 1, sym__directive_parameter, - STATE(6597), 1, + STATE(5628), 1, sym__directive_body_with_parameter, - [196054] = 3, - ACTIONS(11136), 1, + [201506] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(619), 1, sym__directive_parameter, - STATE(6596), 1, + STATE(5768), 1, sym__directive_body_with_parameter, - [196064] = 3, - ACTIONS(11144), 1, + [201516] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(644), 1, sym__directive_parameter, - STATE(6594), 1, + STATE(6669), 1, sym__directive_body_with_parameter, - [196074] = 3, - ACTIONS(11154), 1, + [201526] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6589), 1, + STATE(6670), 1, sym__directive_body_with_parameter, - [196084] = 3, - ACTIONS(11160), 1, + [201536] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(636), 1, sym__directive_parameter, - STATE(6576), 1, + STATE(6671), 1, sym__directive_body_with_parameter, - [196094] = 3, - ACTIONS(11166), 1, + [201546] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(631), 1, sym__directive_parameter, - STATE(6556), 1, + STATE(6672), 1, sym__directive_body_with_parameter, - [196104] = 3, - ACTIONS(11172), 1, + [201556] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(625), 1, sym__directive_parameter, - STATE(6555), 1, + STATE(6673), 1, sym__directive_body_with_parameter, - [196114] = 3, - ACTIONS(11182), 1, + [201566] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(619), 1, sym__directive_parameter, - STATE(5922), 1, + STATE(6614), 1, sym__directive_body_with_parameter, - [196124] = 3, - ACTIONS(11180), 1, + [201576] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(523), 1, sym__directive_parameter, - STATE(6554), 1, + STATE(6676), 1, sym__directive_body_with_parameter, - [196134] = 3, - ACTIONS(11198), 1, + [201586] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(333), 1, sym__directive_parameter, - STATE(5921), 1, + STATE(6677), 1, sym__directive_body_with_parameter, - [196144] = 3, - ACTIONS(10524), 1, + [201596] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(532), 1, sym__directive_parameter, - STATE(6552), 1, - sym__if_statement_directive_body, - [196154] = 3, - ACTIONS(10512), 1, + STATE(6678), 1, + sym__directive_body_with_parameter, + [201606] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6551), 1, + STATE(5729), 1, sym__if_statement_directive_body, - [196164] = 3, - ACTIONS(11166), 1, + [201616] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(445), 1, sym__directive_parameter, - STATE(5471), 1, + STATE(6175), 1, sym__directive_body_with_parameter, - [196174] = 3, - ACTIONS(10594), 1, + [201626] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(123), 1, sym__directive_parameter, - STATE(6550), 1, + STATE(6679), 1, sym__if_statement_directive_body, - [196184] = 3, - ACTIONS(10500), 1, + [201636] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(120), 1, sym__directive_parameter, - STATE(6548), 1, + STATE(6680), 1, sym__if_statement_directive_body, - [196194] = 3, - ACTIONS(10662), 1, + [201646] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(75), 1, sym__directive_parameter, - STATE(6463), 1, + STATE(6681), 1, sym__if_statement_directive_body, - [196204] = 3, - ACTIONS(10586), 1, + [201656] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(109), 1, sym__directive_parameter, - STATE(6541), 1, + STATE(6682), 1, sym__if_statement_directive_body, - [196214] = 3, - ACTIONS(10586), 1, + [201666] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6529), 1, + STATE(5817), 1, sym__if_statement_directive_body, - [196224] = 3, - ACTIONS(10586), 1, + [201676] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(77), 1, sym__directive_parameter, - STATE(5920), 1, + STATE(6683), 1, sym__if_statement_directive_body, - [196234] = 3, - ACTIONS(10518), 1, + [201686] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(140), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6509), 1, + STATE(6685), 1, sym__if_statement_directive_body, - [196244] = 3, - ACTIONS(10566), 1, + [201696] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5919), 1, + STATE(6675), 1, sym__if_statement_directive_body, - [196254] = 3, - ACTIONS(10550), 1, + [201706] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(140), 1, sym__directive_parameter, - STATE(5918), 1, + STATE(6687), 1, sym__if_statement_directive_body, - [196264] = 3, - ACTIONS(10550), 1, + [201716] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(540), 1, sym__directive_parameter, - STATE(6504), 1, - sym__if_statement_directive_body, - [196274] = 3, - ACTIONS(10566), 1, + STATE(5629), 1, + sym__directive_body_with_parameter, + [201726] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(635), 1, sym__directive_parameter, - STATE(6502), 1, - sym__if_statement_directive_body, - [196284] = 3, - ACTIONS(10586), 1, + STATE(6210), 1, + sym__directive_body_with_parameter, + [201736] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(99), 1, sym__directive_parameter, - STATE(6501), 1, + STATE(6691), 1, sym__if_statement_directive_body, - [196294] = 3, - ACTIONS(11198), 1, + [201746] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(74), 1, sym__directive_parameter, - STATE(6500), 1, - sym__directive_body_with_parameter, - [196304] = 3, - ACTIONS(11160), 1, + STATE(6692), 1, + sym__if_statement_directive_body, + [201756] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5544), 1, - sym__directive_body_with_parameter, - [196314] = 3, - ACTIONS(11154), 1, + STATE(6693), 1, + sym__if_statement_directive_body, + [201766] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(635), 1, sym__directive_parameter, - STATE(5542), 1, + STATE(6694), 1, sym__directive_body_with_parameter, - [196324] = 3, - ACTIONS(11144), 1, + [201776] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(540), 1, sym__directive_parameter, - STATE(5541), 1, + STATE(6695), 1, sym__directive_body_with_parameter, - [196334] = 3, - ACTIONS(11136), 1, + [201786] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(445), 1, sym__directive_parameter, - STATE(5540), 1, + STATE(6696), 1, sym__directive_body_with_parameter, - [196344] = 3, - ACTIONS(11182), 1, + [201796] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(350), 1, sym__directive_parameter, - STATE(6495), 1, + STATE(6697), 1, sym__directive_body_with_parameter, - [196354] = 3, - ACTIONS(11138), 1, + [201806] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(333), 1, sym__directive_parameter, - STATE(6494), 1, + STATE(5800), 1, sym__directive_body_with_parameter, - [196364] = 3, - ACTIONS(11016), 1, + [201816] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6450), 1, - sym__directive_body_with_parameter, - [196374] = 3, - ACTIONS(11144), 1, + STATE(5890), 1, + sym__if_statement_directive_body, + [201826] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5660), 1, - sym__directive_body_with_parameter, - [196384] = 3, - ACTIONS(11154), 1, + STATE(5889), 1, + sym__if_statement_directive_body, + [201836] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(625), 1, - sym__directive_parameter, - STATE(5661), 1, - sym__directive_body_with_parameter, - [196394] = 3, - ACTIONS(11130), 1, + STATE(84), 1, + sym__directive_parameter, + STATE(5888), 1, + sym__if_statement_directive_body, + [201846] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, - STATE(641), 1, + STATE(250), 1, sym__directive_parameter, - STATE(5539), 1, + STATE(6698), 1, sym__directive_body_with_parameter, - [196404] = 3, - ACTIONS(11124), 1, + [201856] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(437), 1, sym__directive_parameter, - STATE(5538), 1, + STATE(6699), 1, sym__directive_body_with_parameter, - [196414] = 3, - ACTIONS(10518), 1, + [201866] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(140), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5911), 1, + STATE(5728), 1, sym__if_statement_directive_body, - [196424] = 3, - ACTIONS(10586), 1, + [201876] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5910), 1, + STATE(6209), 1, sym__if_statement_directive_body, - [196434] = 3, - ACTIONS(10820), 1, + [201886] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(635), 1, sym__directive_parameter, - STATE(6462), 1, + STATE(5630), 1, sym__directive_body_with_parameter, - [196444] = 3, - ACTIONS(10566), 1, + [201896] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(77), 1, sym__directive_parameter, - STATE(5488), 1, + STATE(5886), 1, sym__if_statement_directive_body, - [196454] = 3, - ACTIONS(10586), 1, + [201906] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5909), 1, + STATE(5631), 1, sym__if_statement_directive_body, - [196464] = 3, - ACTIONS(10662), 1, + [201916] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(74), 1, sym__directive_parameter, - STATE(5907), 1, + STATE(6208), 1, sym__if_statement_directive_body, - [196474] = 3, - ACTIONS(10500), 1, + [201926] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(109), 1, sym__directive_parameter, - STATE(5906), 1, + STATE(5885), 1, sym__if_statement_directive_body, - [196484] = 3, - ACTIONS(10594), 1, + [201936] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(74), 1, sym__directive_parameter, - STATE(5905), 1, + STATE(5632), 1, sym__if_statement_directive_body, - [196494] = 3, - ACTIONS(11204), 1, + [201946] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(75), 1, sym__directive_parameter, - STATE(6460), 1, - sym__directive_body_with_parameter, - [196504] = 3, - ACTIONS(11204), 1, + STATE(5884), 1, + sym__if_statement_directive_body, + [201956] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(99), 1, sym__directive_parameter, - STATE(5459), 1, - sym__directive_body_with_parameter, - [196514] = 3, - ACTIONS(10512), 1, + STATE(5633), 1, + sym__if_statement_directive_body, + [201966] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(120), 1, sym__directive_parameter, - STATE(5904), 1, + STATE(5883), 1, sym__if_statement_directive_body, - [196524] = 3, - ACTIONS(10524), 1, + [201976] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(99), 1, sym__directive_parameter, - STATE(5903), 1, + STATE(6207), 1, sym__if_statement_directive_body, - [196534] = 3, - ACTIONS(11204), 1, + [201986] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(123), 1, sym__directive_parameter, - STATE(5523), 1, + STATE(5882), 1, + sym__if_statement_directive_body, + [201996] = 3, + ACTIONS(11283), 1, + anon_sym_LPAREN2, + STATE(647), 1, + sym__directive_parameter, + STATE(5748), 1, sym__directive_body_with_parameter, - [196544] = 3, - ACTIONS(10820), 1, + [202006] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(644), 1, sym__directive_parameter, - STATE(5458), 1, + STATE(6706), 1, sym__directive_body_with_parameter, - [196554] = 3, - ACTIONS(11144), 1, + [202016] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(532), 1, sym__directive_parameter, - STATE(5582), 1, + STATE(5881), 1, sym__directive_body_with_parameter, - [196564] = 3, - ACTIONS(11180), 1, + [202026] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(333), 1, sym__directive_parameter, - STATE(5902), 1, + STATE(5880), 1, sym__directive_body_with_parameter, - [196574] = 3, - ACTIONS(10820), 1, + [202036] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(523), 1, sym__directive_parameter, - STATE(5521), 1, + STATE(5879), 1, sym__directive_body_with_parameter, - [196584] = 3, - ACTIONS(11016), 1, + [202046] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(619), 1, sym__directive_parameter, - STATE(5520), 1, + STATE(5878), 1, sym__directive_body_with_parameter, - [196594] = 3, - ACTIONS(11136), 1, + [202056] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(636), 1, sym__directive_parameter, - STATE(5587), 1, + STATE(6149), 1, sym__directive_body_with_parameter, - [196604] = 3, - ACTIONS(11138), 1, + [202066] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(635), 1, sym__directive_parameter, - STATE(5519), 1, + STATE(5818), 1, sym__directive_body_with_parameter, - [196614] = 3, - ACTIONS(11182), 1, + [202076] = 3, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + STATE(140), 1, + sym__directive_parameter, + STATE(5638), 1, + sym__if_statement_directive_body, + [202086] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5515), 1, + STATE(5727), 1, + sym__if_statement_directive_body, + [202096] = 3, + ACTIONS(11327), 1, + anon_sym_LPAREN2, + STATE(625), 1, + sym__directive_parameter, + STATE(5876), 1, sym__directive_body_with_parameter, - [196624] = 3, - ACTIONS(11198), 1, + [202106] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(631), 1, sym__directive_parameter, - STATE(5514), 1, + STATE(5875), 1, sym__directive_body_with_parameter, - [196634] = 3, - ACTIONS(10586), 1, + [202116] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(636), 1, sym__directive_parameter, - STATE(5513), 1, - sym__if_statement_directive_body, - [196644] = 3, - ACTIONS(10566), 1, + STATE(5874), 1, + sym__directive_body_with_parameter, + [202126] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(641), 1, sym__directive_parameter, - STATE(5512), 1, - sym__if_statement_directive_body, - [196654] = 3, - ACTIONS(11124), 1, + STATE(5873), 1, + sym__directive_body_with_parameter, + [202136] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, STATE(644), 1, sym__directive_parameter, - STATE(6383), 1, + STATE(5711), 1, sym__directive_body_with_parameter, - [196664] = 3, - ACTIONS(11124), 1, + [202146] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(641), 1, sym__directive_parameter, - STATE(5844), 1, + STATE(5712), 1, sym__directive_body_with_parameter, - [196674] = 3, - ACTIONS(11130), 1, + [202156] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, STATE(641), 1, sym__directive_parameter, - STATE(6382), 1, + STATE(6707), 1, sym__directive_body_with_parameter, - [196684] = 3, - ACTIONS(11136), 1, + [202166] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(636), 1, sym__directive_parameter, - STATE(6381), 1, + STATE(6708), 1, sym__directive_body_with_parameter, - [196694] = 3, - ACTIONS(11144), 1, + [202176] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(532), 1, sym__directive_parameter, - STATE(6378), 1, + STATE(5602), 1, sym__directive_body_with_parameter, - [196704] = 3, - ACTIONS(11172), 1, + [202186] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(631), 1, sym__directive_parameter, - STATE(5901), 1, + STATE(6709), 1, sym__directive_body_with_parameter, - [196714] = 3, - ACTIONS(11154), 1, + [202196] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, STATE(625), 1, sym__directive_parameter, - STATE(6377), 1, + STATE(6710), 1, sym__directive_body_with_parameter, - [196724] = 3, - ACTIONS(11160), 1, + [202206] = 1, + ACTIONS(13331), 3, + anon_sym_ATdefault, + anon_sym_ATendswitch, + anon_sym_ATcase, + [202212] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6371), 1, - sym__directive_body_with_parameter, - [196734] = 3, - ACTIONS(11166), 1, + STATE(5639), 1, + sym__if_statement_directive_body, + [202222] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(619), 1, sym__directive_parameter, - STATE(6359), 1, + STATE(6712), 1, sym__directive_body_with_parameter, - [196744] = 3, - ACTIONS(11172), 1, + [202232] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(523), 1, sym__directive_parameter, - STATE(6339), 1, + STATE(6713), 1, sym__directive_body_with_parameter, - [196754] = 3, - ACTIONS(11180), 1, + [202242] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(333), 1, sym__directive_parameter, - STATE(6338), 1, + STATE(6714), 1, sym__directive_body_with_parameter, - [196764] = 3, - ACTIONS(11016), 1, + [202252] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(532), 1, sym__directive_parameter, - STATE(5457), 1, + STATE(6715), 1, sym__directive_body_with_parameter, - [196774] = 3, - ACTIONS(10524), 1, + [202262] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(631), 1, sym__directive_parameter, - STATE(6336), 1, - sym__if_statement_directive_body, - [196784] = 3, - ACTIONS(10512), 1, + STATE(6150), 1, + sym__directive_body_with_parameter, + [202272] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(123), 1, sym__directive_parameter, - STATE(6335), 1, + STATE(6716), 1, sym__if_statement_directive_body, - [196794] = 3, - ACTIONS(10594), 1, + [202282] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(120), 1, sym__directive_parameter, - STATE(6334), 1, + STATE(6717), 1, sym__if_statement_directive_body, - [196804] = 3, - ACTIONS(10500), 1, + [202292] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(75), 1, sym__directive_parameter, - STATE(6333), 1, + STATE(6718), 1, sym__if_statement_directive_body, - [196814] = 3, - ACTIONS(10662), 1, + [202302] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6331), 1, + STATE(6203), 1, sym__if_statement_directive_body, - [196824] = 3, - ACTIONS(11166), 1, + [202312] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(77), 1, sym__directive_parameter, - STATE(5900), 1, - sym__directive_body_with_parameter, - [196834] = 3, - ACTIONS(10586), 1, + STATE(6720), 1, + sym__if_statement_directive_body, + [202322] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6325), 1, + STATE(6722), 1, sym__if_statement_directive_body, - [196844] = 3, - ACTIONS(10586), 1, + [202332] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6313), 1, + STATE(6723), 1, sym__if_statement_directive_body, - [196854] = 3, - ACTIONS(10518), 1, + [202342] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, STATE(140), 1, sym__directive_parameter, - STATE(6293), 1, + STATE(6724), 1, sym__if_statement_directive_body, - [196864] = 3, - ACTIONS(10550), 1, + [202352] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(644), 1, sym__directive_parameter, - STATE(6288), 1, + STATE(5872), 1, + sym__directive_body_with_parameter, + [202362] = 3, + ACTIONS(10677), 1, + anon_sym_LPAREN2, + STATE(84), 1, + sym__directive_parameter, + STATE(5515), 1, sym__if_statement_directive_body, - [196874] = 3, - ACTIONS(10550), 1, + [202372] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(99), 1, sym__directive_parameter, - STATE(5504), 1, + STATE(6729), 1, sym__if_statement_directive_body, - [196884] = 3, - ACTIONS(10566), 1, + [202382] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(540), 1, sym__directive_parameter, - STATE(6287), 1, + STATE(5819), 1, + sym__directive_body_with_parameter, + [202392] = 3, + ACTIONS(10741), 1, + anon_sym_LPAREN2, + STATE(74), 1, + sym__directive_parameter, + STATE(6730), 1, sym__if_statement_directive_body, - [196894] = 3, - ACTIONS(10586), 1, + [202402] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6286), 1, + STATE(6731), 1, sym__if_statement_directive_body, - [196904] = 3, - ACTIONS(11198), 1, + [202412] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(635), 1, sym__directive_parameter, - STATE(6284), 1, + STATE(6732), 1, sym__directive_body_with_parameter, - [196914] = 3, - ACTIONS(11182), 1, + [202422] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(540), 1, sym__directive_parameter, - STATE(6283), 1, + STATE(6733), 1, sym__directive_body_with_parameter, - [196924] = 3, - ACTIONS(11138), 1, + [202432] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(445), 1, sym__directive_parameter, - STATE(6278), 1, + STATE(6734), 1, sym__directive_body_with_parameter, - [196934] = 3, - ACTIONS(11130), 1, + [202442] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(641), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5588), 1, - sym__directive_body_with_parameter, - [196944] = 3, - ACTIONS(11016), 1, + STATE(6202), 1, + sym__if_statement_directive_body, + [202452] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(350), 1, sym__directive_parameter, - STATE(6277), 1, + STATE(6735), 1, sym__directive_body_with_parameter, - [196954] = 3, - ACTIONS(10820), 1, + [202462] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6264), 1, + STATE(6736), 1, sym__directive_body_with_parameter, - [196964] = 3, - ACTIONS(11204), 1, + [202472] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(437), 1, sym__directive_parameter, - STATE(6244), 1, + STATE(6737), 1, sym__directive_body_with_parameter, - [196974] = 3, - ACTIONS(10586), 1, + [202482] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(619), 1, sym__directive_parameter, - STATE(5487), 1, - sym__if_statement_directive_body, - [196984] = 3, - ACTIONS(11016), 1, + STATE(6153), 1, + sym__directive_body_with_parameter, + [202492] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(636), 1, sym__directive_parameter, - STATE(6011), 1, + STATE(5713), 1, sym__directive_body_with_parameter, - [196994] = 3, - ACTIONS(11124), 1, + [202502] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(631), 1, sym__directive_parameter, - STATE(6164), 1, + STATE(5714), 1, sym__directive_body_with_parameter, - [197004] = 3, - ACTIONS(11130), 1, + [202512] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, - STATE(641), 1, + STATE(644), 1, sym__directive_parameter, - STATE(6163), 1, + STATE(6744), 1, sym__directive_body_with_parameter, - [197014] = 3, - ACTIONS(10820), 1, + [202522] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(625), 1, sym__directive_parameter, - STATE(6012), 1, + STATE(5715), 1, sym__directive_body_with_parameter, - [197024] = 3, - ACTIONS(10518), 1, + [202532] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(140), 1, + STATE(77), 1, sym__directive_parameter, - STATE(5474), 1, + STATE(6200), 1, sym__if_statement_directive_body, - [197034] = 3, - ACTIONS(10586), 1, + [202542] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5473), 1, + STATE(5933), 1, sym__if_statement_directive_body, - [197044] = 3, - ACTIONS(10586), 1, + [202552] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(77), 1, sym__directive_parameter, - STATE(5472), 1, + STATE(5725), 1, sym__if_statement_directive_body, - [197054] = 3, - ACTIONS(11136), 1, + [202562] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6162), 1, + STATE(6745), 1, sym__directive_body_with_parameter, - [197064] = 3, - ACTIONS(11144), 1, + [202572] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(636), 1, sym__directive_parameter, - STATE(6159), 1, + STATE(6746), 1, sym__directive_body_with_parameter, - [197074] = 3, - ACTIONS(11154), 1, + [202582] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(631), 1, sym__directive_parameter, - STATE(6073), 1, + STATE(6747), 1, sym__directive_body_with_parameter, - [197084] = 3, - ACTIONS(10512), 1, + [202592] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(109), 1, sym__directive_parameter, - STATE(5856), 1, + STATE(6199), 1, sym__if_statement_directive_body, - [197094] = 3, - ACTIONS(11160), 1, + [202602] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5899), 1, + STATE(5640), 1, + sym__if_statement_directive_body, + [202612] = 3, + ACTIONS(11333), 1, + anon_sym_LPAREN2, + STATE(619), 1, + sym__directive_parameter, + STATE(5717), 1, sym__directive_body_with_parameter, - [197104] = 3, - ACTIONS(10662), 1, + [202622] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(109), 1, sym__directive_parameter, - STATE(5467), 1, + STATE(5663), 1, sym__if_statement_directive_body, - [197114] = 1, - ACTIONS(13138), 3, - anon_sym_ATdefault, - anon_sym_ATendswitch, - anon_sym_ATcase, - [197120] = 3, - ACTIONS(11136), 1, + [202632] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(74), 1, sym__directive_parameter, - STATE(5846), 1, - sym__directive_body_with_parameter, - [197130] = 3, - ACTIONS(10500), 1, + STATE(5617), 1, + sym__if_statement_directive_body, + [202642] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(625), 1, sym__directive_parameter, - STATE(5469), 1, - sym__if_statement_directive_body, - [197140] = 3, - ACTIONS(11160), 1, + STATE(6748), 1, + sym__directive_body_with_parameter, + [202652] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(445), 1, sym__directive_parameter, - STATE(6152), 1, + STATE(5820), 1, sym__directive_body_with_parameter, - [197150] = 3, - ACTIONS(11166), 1, + [202662] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(619), 1, sym__directive_parameter, - STATE(6140), 1, + STATE(6750), 1, sym__directive_body_with_parameter, - [197160] = 3, - ACTIONS(10594), 1, + [202672] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, STATE(77), 1, sym__directive_parameter, - STATE(5470), 1, + STATE(5643), 1, sym__if_statement_directive_body, - [197170] = 3, - ACTIONS(11144), 1, + [202682] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(437), 1, sym__directive_parameter, - STATE(5847), 1, + STATE(5862), 1, sym__directive_body_with_parameter, - [197180] = 3, - ACTIONS(11138), 1, + [202692] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(75), 1, sym__directive_parameter, - STATE(5455), 1, - sym__directive_body_with_parameter, - [197190] = 3, - ACTIONS(11172), 1, + STATE(6197), 1, + sym__if_statement_directive_body, + [202702] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(540), 1, sym__directive_parameter, - STATE(6119), 1, + STATE(5624), 1, sym__directive_body_with_parameter, - [197200] = 3, - ACTIONS(11180), 1, + [202712] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(109), 1, sym__directive_parameter, - STATE(6118), 1, - sym__directive_body_with_parameter, - [197210] = 3, - ACTIONS(11154), 1, + STATE(5644), 1, + sym__if_statement_directive_body, + [202722] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(523), 1, sym__directive_parameter, - STATE(5848), 1, + STATE(6751), 1, sym__directive_body_with_parameter, - [197220] = 3, - ACTIONS(11154), 1, + [202732] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(120), 1, sym__directive_parameter, - STATE(5897), 1, - sym__directive_body_with_parameter, - [197230] = 3, - ACTIONS(11144), 1, + STATE(6196), 1, + sym__if_statement_directive_body, + [202742] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(523), 1, sym__directive_parameter, - STATE(5896), 1, + STATE(5718), 1, sym__directive_body_with_parameter, - [197240] = 3, - ACTIONS(10512), 1, + [202752] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(333), 1, sym__directive_parameter, - STATE(5444), 1, - sym__if_statement_directive_body, - [197250] = 3, - ACTIONS(11182), 1, + STATE(5719), 1, + sym__directive_body_with_parameter, + [202762] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(532), 1, sym__directive_parameter, - STATE(5453), 1, + STATE(5720), 1, sym__directive_body_with_parameter, - [197260] = 3, - ACTIONS(11198), 1, + [202772] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(350), 1, sym__directive_parameter, - STATE(5451), 1, + STATE(5821), 1, sym__directive_body_with_parameter, - [197270] = 3, - ACTIONS(11136), 1, + [202782] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(250), 1, sym__directive_parameter, - STATE(5895), 1, + STATE(5822), 1, sym__directive_body_with_parameter, - [197280] = 3, - ACTIONS(10586), 1, + [202792] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(333), 1, sym__directive_parameter, - STATE(5449), 1, - sym__if_statement_directive_body, - [197290] = 3, - ACTIONS(10524), 1, + STATE(6752), 1, + sym__directive_body_with_parameter, + [202802] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(75), 1, sym__directive_parameter, - STATE(5448), 1, + STATE(5645), 1, sym__if_statement_directive_body, - [197300] = 3, - ACTIONS(11160), 1, + [202812] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(437), 1, sym__directive_parameter, - STATE(5850), 1, + STATE(5823), 1, sym__directive_body_with_parameter, - [197310] = 3, - ACTIONS(11166), 1, + [202822] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(250), 1, sym__directive_parameter, - STATE(5462), 1, + STATE(5861), 1, sym__directive_body_with_parameter, - [197320] = 3, - ACTIONS(11180), 1, + [202832] = 3, + ACTIONS(10693), 1, + anon_sym_LPAREN2, + STATE(123), 1, + sym__directive_parameter, + STATE(5721), 1, + sym__if_statement_directive_body, + [202842] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(350), 1, sym__directive_parameter, - STATE(5452), 1, + STATE(5860), 1, sym__directive_body_with_parameter, - [197330] = 3, - ACTIONS(11172), 1, + [202852] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(123), 1, + sym__directive_parameter, + STATE(6195), 1, + sym__if_statement_directive_body, + [202862] = 3, + ACTIONS(10681), 1, + anon_sym_LPAREN2, + STATE(120), 1, + sym__directive_parameter, + STATE(5722), 1, + sym__if_statement_directive_body, + [202872] = 3, + ACTIONS(11349), 1, + anon_sym_LPAREN2, + STATE(532), 1, sym__directive_parameter, - STATE(5456), 1, + STATE(6753), 1, sym__directive_body_with_parameter, - [197340] = 3, - ACTIONS(11130), 1, + [202882] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(641), 1, + STATE(77), 1, sym__directive_parameter, - STATE(5894), 1, + STATE(5608), 1, + sym__if_statement_directive_body, + [202892] = 3, + ACTIONS(11327), 1, + anon_sym_LPAREN2, + STATE(625), 1, + sym__directive_parameter, + STATE(6151), 1, sym__directive_body_with_parameter, - [197350] = 3, - ACTIONS(10524), 1, + [202902] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(123), 1, sym__directive_parameter, - STATE(6116), 1, + STATE(6754), 1, sym__if_statement_directive_body, - [197360] = 3, - ACTIONS(10512), 1, + [202912] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(120), 1, sym__directive_parameter, - STATE(6115), 1, + STATE(6755), 1, sym__if_statement_directive_body, - [197370] = 3, - ACTIONS(11124), 1, + [202922] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(120), 1, sym__directive_parameter, - STATE(5893), 1, - sym__directive_body_with_parameter, - [197380] = 3, - ACTIONS(10594), 1, + STATE(5646), 1, + sym__if_statement_directive_body, + [202932] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6114), 1, + STATE(5610), 1, sym__if_statement_directive_body, - [197390] = 3, - ACTIONS(10500), 1, + [202942] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(75), 1, sym__directive_parameter, - STATE(6113), 1, + STATE(6756), 1, sym__if_statement_directive_body, - [197400] = 3, - ACTIONS(11166), 1, + [202952] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(109), 1, sym__directive_parameter, - STATE(5851), 1, - sym__directive_body_with_parameter, - [197410] = 3, - ACTIONS(10662), 1, + STATE(6757), 1, + sym__if_statement_directive_body, + [202962] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(77), 1, sym__directive_parameter, - STATE(6111), 1, + STATE(6758), 1, sym__if_statement_directive_body, - [197420] = 3, - ACTIONS(10586), 1, + [202972] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6094), 1, + STATE(6760), 1, sym__if_statement_directive_body, - [197430] = 3, - ACTIONS(10586), 1, + [202982] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(6066), 1, + STATE(6761), 1, sym__if_statement_directive_body, - [197440] = 3, - ACTIONS(10518), 1, + [202992] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, STATE(140), 1, sym__directive_parameter, - STATE(6072), 1, + STATE(6762), 1, sym__if_statement_directive_body, - [197450] = 3, - ACTIONS(11172), 1, + [203002] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(99), 1, sym__directive_parameter, - STATE(5852), 1, - sym__directive_body_with_parameter, - [197460] = 3, - ACTIONS(10550), 1, + STATE(6766), 1, + sym__if_statement_directive_body, + [203012] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(74), 1, sym__directive_parameter, - STATE(6067), 1, + STATE(6767), 1, sym__if_statement_directive_body, - [197470] = 3, - ACTIONS(10566), 1, + [203022] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5990), 1, + STATE(6768), 1, sym__if_statement_directive_body, - [197480] = 3, - ACTIONS(10586), 1, + [203032] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(635), 1, sym__directive_parameter, - STATE(6064), 1, - sym__if_statement_directive_body, - [197490] = 3, - ACTIONS(11198), 1, + STATE(6769), 1, + sym__directive_body_with_parameter, + [203042] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(540), 1, sym__directive_parameter, - STATE(6063), 1, + STATE(6770), 1, sym__directive_body_with_parameter, - [197500] = 3, - ACTIONS(11182), 1, + [203052] = 2, + ACTIONS(13335), 1, + aux_sym__section_parameter_token1, + ACTIONS(13333), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [203060] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(445), 1, sym__directive_parameter, - STATE(6062), 1, + STATE(6771), 1, sym__directive_body_with_parameter, - [197510] = 3, - ACTIONS(11138), 1, + [203070] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(350), 1, sym__directive_parameter, - STATE(6057), 1, + STATE(6772), 1, sym__directive_body_with_parameter, - [197520] = 3, - ACTIONS(11016), 1, + [203080] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6056), 1, + STATE(6773), 1, sym__directive_body_with_parameter, - [197530] = 3, - ACTIONS(10820), 1, + [203090] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(437), 1, sym__directive_parameter, - STATE(6043), 1, + STATE(6774), 1, sym__directive_body_with_parameter, - [197540] = 3, - ACTIONS(11204), 1, + [203100] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(445), 1, sym__directive_parameter, - STATE(6023), 1, + STATE(5859), 1, sym__directive_body_with_parameter, - [197550] = 3, - ACTIONS(10550), 1, + [203110] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(75), 1, sym__directive_parameter, - STATE(5489), 1, + STATE(5723), 1, sym__if_statement_directive_body, - [197560] = 3, - ACTIONS(11124), 1, + [203120] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(540), 1, sym__directive_parameter, - STATE(5959), 1, + STATE(5858), 1, sym__directive_body_with_parameter, - [197570] = 3, - ACTIONS(11160), 1, + [203130] = 3, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(635), 1, sym__directive_parameter, - STATE(5463), 1, + STATE(5857), 1, sym__directive_body_with_parameter, - [197580] = 3, - ACTIONS(11130), 1, + [203140] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, - STATE(641), 1, + STATE(644), 1, sym__directive_parameter, - STATE(5937), 1, + STATE(6781), 1, sym__directive_body_with_parameter, - [197590] = 3, - ACTIONS(11136), 1, + [203150] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(641), 1, sym__directive_parameter, - STATE(5936), 1, + STATE(6782), 1, sym__directive_body_with_parameter, - [197600] = 3, - ACTIONS(11144), 1, + [203160] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(99), 1, sym__directive_parameter, - STATE(5933), 1, + STATE(6132), 1, + sym__if_statement_directive_body, + [203170] = 3, + ACTIONS(11315), 1, + anon_sym_LPAREN2, + STATE(636), 1, + sym__directive_parameter, + STATE(6783), 1, sym__directive_body_with_parameter, - [197610] = 3, - ACTIONS(11154), 1, + [203180] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(631), 1, sym__directive_parameter, - STATE(5932), 1, + STATE(6784), 1, sym__directive_body_with_parameter, - [197620] = 3, - ACTIONS(11160), 1, + [203190] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(625), 1, sym__directive_parameter, - STATE(5926), 1, + STATE(6785), 1, sym__directive_body_with_parameter, - [197630] = 3, - ACTIONS(11180), 1, + [203200] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(619), 1, sym__directive_parameter, - STATE(5854), 1, + STATE(6787), 1, sym__directive_body_with_parameter, - [197640] = 3, - ACTIONS(11166), 1, + [203210] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(523), 1, sym__directive_parameter, - STATE(5912), 1, + STATE(6788), 1, sym__directive_body_with_parameter, - [197650] = 3, - ACTIONS(11172), 1, + [203220] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(333), 1, sym__directive_parameter, - STATE(5892), 1, + STATE(6789), 1, sym__directive_body_with_parameter, - [197660] = 3, - ACTIONS(11180), 1, + [203230] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(532), 1, sym__directive_parameter, - STATE(5891), 1, + STATE(6790), 1, sym__directive_body_with_parameter, - [197670] = 3, - ACTIONS(10524), 1, + [203240] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5889), 1, + STATE(5856), 1, sym__if_statement_directive_body, - [197680] = 3, - ACTIONS(10512), 1, + [203250] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(74), 1, sym__directive_parameter, - STATE(5888), 1, + STATE(5855), 1, sym__if_statement_directive_body, - [197690] = 3, - ACTIONS(10594), 1, + [203260] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(99), 1, sym__directive_parameter, - STATE(5887), 1, + STATE(5854), 1, sym__if_statement_directive_body, - [197700] = 3, - ACTIONS(11124), 1, + [203270] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(532), 1, sym__directive_parameter, - STATE(5589), 1, + STATE(5801), 1, sym__directive_body_with_parameter, - [197710] = 3, - ACTIONS(11204), 1, + [203280] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(644), 1, sym__directive_parameter, STATE(5830), 1, sym__directive_body_with_parameter, - [197720] = 3, - ACTIONS(11204), 1, + [203290] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(123), 1, sym__directive_parameter, - STATE(5877), 1, - sym__directive_body_with_parameter, - [197730] = 3, - ACTIONS(10500), 1, + STATE(6791), 1, + sym__if_statement_directive_body, + [203300] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(120), 1, sym__directive_parameter, - STATE(5886), 1, + STATE(6792), 1, sym__if_statement_directive_body, - [197740] = 3, - ACTIONS(10662), 1, + [203310] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(532), 1, sym__directive_parameter, - STATE(5881), 1, - sym__if_statement_directive_body, - [197750] = 3, - ACTIONS(10586), 1, + STATE(6194), 1, + sym__directive_body_with_parameter, + [203320] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(75), 1, sym__directive_parameter, - STATE(5864), 1, + STATE(6793), 1, sym__if_statement_directive_body, - [197760] = 3, - ACTIONS(10820), 1, + [203330] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(641), 1, sym__directive_parameter, - STATE(5875), 1, + STATE(5831), 1, sym__directive_body_with_parameter, - [197770] = 3, - ACTIONS(11016), 1, + [203340] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(123), 1, sym__directive_parameter, - STATE(5874), 1, - sym__directive_body_with_parameter, - [197780] = 3, - ACTIONS(11138), 1, + STATE(5647), 1, + sym__if_statement_directive_body, + [203350] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(333), 1, sym__directive_parameter, - STATE(5873), 1, + STATE(6193), 1, sym__directive_body_with_parameter, - [197790] = 2, - ACTIONS(13142), 1, - aux_sym__section_parameter_token1, - ACTIONS(13140), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [197798] = 3, - ACTIONS(10586), 1, + [203360] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(109), 1, sym__directive_parameter, - STATE(5843), 1, + STATE(6794), 1, sym__if_statement_directive_body, - [197808] = 3, - ACTIONS(10518), 1, + [203370] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(140), 1, + STATE(636), 1, sym__directive_parameter, - STATE(5842), 1, + STATE(5832), 1, + sym__directive_body_with_parameter, + [203380] = 3, + ACTIONS(10791), 1, + anon_sym_LPAREN2, + STATE(77), 1, + sym__directive_parameter, + STATE(6795), 1, sym__if_statement_directive_body, - [197818] = 3, - ACTIONS(11182), 1, + [203390] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(523), 1, sym__directive_parameter, - STATE(5872), 1, + STATE(6192), 1, sym__directive_body_with_parameter, - [197828] = 3, - ACTIONS(11154), 1, + [203400] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(140), 1, sym__directive_parameter, - STATE(5465), 1, - sym__directive_body_with_parameter, - [197838] = 3, - ACTIONS(11198), 1, + STATE(5850), 1, + sym__if_statement_directive_body, + [203410] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(532), 1, sym__directive_parameter, - STATE(5871), 1, + STATE(5649), 1, sym__directive_body_with_parameter, - [197848] = 3, - ACTIONS(10586), 1, + [203420] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(619), 1, sym__directive_parameter, - STATE(5870), 1, - sym__if_statement_directive_body, - [197858] = 3, - ACTIONS(10566), 1, + STATE(6191), 1, + sym__directive_body_with_parameter, + [203430] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5869), 1, + STATE(6797), 1, sym__if_statement_directive_body, - [197868] = 3, - ACTIONS(10550), 1, + [203440] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5868), 1, + STATE(6798), 1, sym__if_statement_directive_body, - [197878] = 3, - ACTIONS(11160), 1, - anon_sym_LPAREN2, - STATE(611), 1, - sym__directive_parameter, - STATE(5693), 1, - sym__directive_body_with_parameter, - [197888] = 3, - ACTIONS(11166), 1, + [203450] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(333), 1, sym__directive_parameter, - STATE(5723), 1, + STATE(5650), 1, sym__directive_body_with_parameter, - [197898] = 3, - ACTIONS(11144), 1, + [203460] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(625), 1, sym__directive_parameter, - STATE(5466), 1, + STATE(6189), 1, sym__directive_body_with_parameter, - [197908] = 3, - ACTIONS(11172), 1, + [203470] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(250), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5724), 1, - sym__directive_body_with_parameter, - [197918] = 3, - ACTIONS(10518), 1, + STATE(5849), 1, + sym__if_statement_directive_body, + [203480] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(140), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5863), 1, + STATE(5848), 1, sym__if_statement_directive_body, - [197928] = 3, - ACTIONS(10586), 1, + [203490] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(631), 1, sym__directive_parameter, - STATE(5862), 1, - sym__if_statement_directive_body, - [197938] = 3, - ACTIONS(11136), 1, + STATE(5833), 1, + sym__directive_body_with_parameter, + [203500] = 3, + ACTIONS(11327), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(625), 1, sym__directive_parameter, - STATE(5445), 1, + STATE(5836), 1, sym__directive_body_with_parameter, - [197948] = 3, - ACTIONS(11130), 1, + [203510] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(641), 1, + STATE(523), 1, sym__directive_parameter, - STATE(5446), 1, + STATE(5651), 1, sym__directive_body_with_parameter, - [197958] = 3, - ACTIONS(11124), 1, + [203520] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(619), 1, sym__directive_parameter, - STATE(5447), 1, + STATE(5652), 1, sym__directive_body_with_parameter, - [197968] = 3, - ACTIONS(10550), 1, + [203530] = 3, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(77), 1, sym__directive_parameter, - STATE(5836), 1, + STATE(5846), 1, sym__if_statement_directive_body, - [197978] = 3, - ACTIONS(10566), 1, + [203540] = 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(109), 1, sym__directive_parameter, - STATE(5835), 1, + STATE(5845), 1, sym__if_statement_directive_body, - [197988] = 3, - ACTIONS(10586), 1, + [203550] = 3, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(75), 1, sym__directive_parameter, - STATE(5861), 1, + STATE(5844), 1, sym__if_statement_directive_body, - [197998] = 3, - ACTIONS(10586), 1, + [203560] = 3, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(120), 1, sym__directive_parameter, - STATE(5834), 1, + STATE(5843), 1, sym__if_statement_directive_body, - [198008] = 3, - ACTIONS(11198), 1, + [203570] = 3, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(627), 1, + STATE(123), 1, sym__directive_parameter, - STATE(5829), 1, - sym__directive_body_with_parameter, - [198018] = 3, - ACTIONS(11182), 1, + STATE(5842), 1, + sym__if_statement_directive_body, + [203580] = 3, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(619), 1, sym__directive_parameter, - STATE(5828), 1, + STATE(5838), 1, sym__directive_body_with_parameter, - [198028] = 3, - ACTIONS(11138), 1, + [203590] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(140), 1, sym__directive_parameter, - STATE(5814), 1, + STATE(6799), 1, + sym__if_statement_directive_body, + [203600] = 3, + ACTIONS(11327), 1, + anon_sym_LPAREN2, + STATE(625), 1, + sym__directive_parameter, + STATE(5654), 1, sym__directive_body_with_parameter, - [198038] = 3, - ACTIONS(11016), 1, + [203610] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(631), 1, sym__directive_parameter, - STATE(5794), 1, + STATE(6188), 1, sym__directive_body_with_parameter, - [198048] = 3, - ACTIONS(10820), 1, + [203620] = 3, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(532), 1, sym__directive_parameter, - STATE(5793), 1, + STATE(5841), 1, sym__directive_body_with_parameter, - [198058] = 3, - ACTIONS(11204), 1, + [203630] = 3, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(631), 1, sym__directive_parameter, - STATE(5791), 1, + STATE(5655), 1, sym__directive_body_with_parameter, - [198068] = 3, - ACTIONS(11124), 1, + [203640] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(636), 1, sym__directive_parameter, - STATE(5705), 1, + STATE(5660), 1, sym__directive_body_with_parameter, - [198078] = 3, - ACTIONS(11130), 1, + [203650] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, STATE(641), 1, sym__directive_parameter, - STATE(5703), 1, + STATE(5661), 1, sym__directive_body_with_parameter, - [198088] = 3, - ACTIONS(11136), 1, + [203660] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(637), 1, + STATE(99), 1, sym__directive_parameter, - STATE(5684), 1, - sym__directive_body_with_parameter, - [198098] = 3, - ACTIONS(11144), 1, + STATE(6803), 1, + sym__if_statement_directive_body, + [203670] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(633), 1, + STATE(74), 1, sym__directive_parameter, - STATE(5655), 1, + STATE(6804), 1, + sym__if_statement_directive_body, + [203680] = 3, + ACTIONS(10677), 1, + anon_sym_LPAREN2, + STATE(84), 1, + sym__directive_parameter, + STATE(6805), 1, + sym__if_statement_directive_body, + [203690] = 3, + ACTIONS(11379), 1, + anon_sym_LPAREN2, + STATE(635), 1, + sym__directive_parameter, + STATE(6806), 1, sym__directive_body_with_parameter, - [198108] = 3, - ACTIONS(11154), 1, + [203700] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(540), 1, sym__directive_parameter, - STATE(5654), 1, + STATE(6807), 1, sym__directive_body_with_parameter, - [198118] = 3, - ACTIONS(11160), 1, + [203710] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(611), 1, + STATE(445), 1, sym__directive_parameter, - STATE(5622), 1, + STATE(6808), 1, sym__directive_body_with_parameter, - [198128] = 3, - ACTIONS(11166), 1, + [203720] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(516), 1, + STATE(350), 1, sym__directive_parameter, - STATE(5621), 1, + STATE(6809), 1, sym__directive_body_with_parameter, - [198138] = 3, - ACTIONS(11172), 1, + [203730] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, STATE(250), 1, sym__directive_parameter, - STATE(5620), 1, + STATE(6810), 1, sym__directive_body_with_parameter, - [198148] = 3, - ACTIONS(11180), 1, + [203740] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(621), 1, + STATE(437), 1, sym__directive_parameter, - STATE(5618), 1, + STATE(6811), 1, sym__directive_body_with_parameter, - [198158] = 3, - ACTIONS(10524), 1, + [203750] = 3, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(636), 1, sym__directive_parameter, - STATE(5617), 1, - sym__if_statement_directive_body, - [198168] = 3, - ACTIONS(11204), 1, + STATE(6187), 1, + sym__directive_body_with_parameter, + [203760] = 3, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(444), 1, + STATE(641), 1, sym__directive_parameter, - STATE(5479), 1, + STATE(6186), 1, sym__directive_body_with_parameter, - [198178] = 3, - ACTIONS(10512), 1, + [203770] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, - STATE(88), 1, + STATE(644), 1, sym__directive_parameter, - STATE(5616), 1, - sym__if_statement_directive_body, - [198188] = 3, - ACTIONS(10594), 1, + STATE(5662), 1, + sym__directive_body_with_parameter, + [203780] = 3, + ACTIONS(11303), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(644), 1, sym__directive_parameter, - STATE(5614), 1, - sym__if_statement_directive_body, - [198198] = 3, - ACTIONS(10500), 1, + STATE(6185), 1, + sym__directive_body_with_parameter, + [203790] = 3, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(99), 1, sym__directive_parameter, - STATE(5613), 1, + STATE(5616), 1, sym__if_statement_directive_body, - [198208] = 3, - ACTIONS(10662), 1, + [203800] = 3, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(540), 1, sym__directive_parameter, - STATE(5612), 1, - sym__if_statement_directive_body, - [198218] = 3, - ACTIONS(10586), 1, + STATE(6064), 1, + sym__directive_body_with_parameter, + [203810] = 3, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(523), 1, sym__directive_parameter, - STATE(5536), 1, - sym__if_statement_directive_body, - [198228] = 3, - ACTIONS(10662), 1, + STATE(5839), 1, + sym__directive_body_with_parameter, + [203820] = 3, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(333), 1, sym__directive_parameter, - STATE(5859), 1, - sym__if_statement_directive_body, - [198238] = 3, - ACTIONS(10586), 1, + STATE(5840), 1, + sym__directive_body_with_parameter, + [203830] = 3, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(83), 1, + STATE(84), 1, sym__directive_parameter, - STATE(5534), 1, + STATE(5611), 1, sym__if_statement_directive_body, - [198248] = 3, - ACTIONS(10518), 1, + [203840] = 3, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(140), 1, + STATE(437), 1, sym__directive_parameter, - STATE(5533), 1, - sym__if_statement_directive_body, - [198258] = 3, - ACTIONS(10820), 1, + STATE(6178), 1, + sym__directive_body_with_parameter, + [203850] = 3, + ACTIONS(11027), 1, anon_sym_LPAREN2, - STATE(246), 1, + STATE(250), 1, sym__directive_parameter, - STATE(5482), 1, + STATE(6177), 1, sym__directive_body_with_parameter, - [198268] = 3, - ACTIONS(10500), 1, + [203860] = 3, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(350), 1, sym__directive_parameter, - STATE(5858), 1, - sym__if_statement_directive_body, - [198278] = 3, - ACTIONS(11016), 1, + STATE(6176), 1, + sym__directive_body_with_parameter, + [203870] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(345), 1, + STATE(445), 1, sym__directive_parameter, - STATE(5483), 1, + STATE(6065), 1, sym__directive_body_with_parameter, - [198288] = 3, - ACTIONS(10550), 1, + [203880] = 3, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(98), 1, + STATE(140), 1, sym__directive_parameter, - STATE(5522), 1, + STATE(5612), 1, sym__if_statement_directive_body, - [198298] = 3, - ACTIONS(10566), 1, + [203890] = 3, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(78), 1, + STATE(74), 1, sym__directive_parameter, - STATE(5477), 1, + STATE(6133), 1, sym__if_statement_directive_body, - [198308] = 3, - ACTIONS(11138), 1, + [203900] = 2, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(2023), 1, sym__directive_parameter, - STATE(5484), 1, - sym__directive_body_with_parameter, - [198318] = 3, - ACTIONS(11182), 1, + [203907] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(533), 1, + STATE(4347), 1, sym__directive_parameter, - STATE(5485), 1, - sym__directive_body_with_parameter, - [198328] = 3, - ACTIONS(10594), 1, + [203914] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(4300), 1, sym__directive_parameter, - STATE(5857), 1, - sym__if_statement_directive_body, - [198338] = 2, - ACTIONS(11180), 1, + [203921] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(2187), 1, + STATE(4368), 1, sym__directive_parameter, - [198345] = 2, - ACTIONS(13144), 1, + [203928] = 2, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(4209), 1, + STATE(2795), 1, sym__directive_parameter, - [198352] = 2, - ACTIONS(11016), 1, + [203935] = 2, + ACTIONS(10667), 1, anon_sym_LPAREN2, - STATE(3395), 1, + STATE(1542), 1, sym__directive_parameter, - [198359] = 2, - ACTIONS(11130), 1, + [203942] = 2, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(2761), 1, + STATE(2794), 1, sym__directive_parameter, - [198366] = 2, - ACTIONS(11130), 1, + [203949] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(2762), 1, + STATE(4304), 1, sym__directive_parameter, - [198373] = 2, - ACTIONS(13144), 1, + [203956] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(4293), 1, + STATE(4366), 1, sym__directive_parameter, - [198380] = 2, - ACTIONS(13146), 1, - anon_sym_RPAREN, - ACTIONS(13148), 1, - anon_sym_COMMA, - [198387] = 2, - ACTIONS(13150), 1, - anon_sym_RPAREN, - ACTIONS(13152), 1, - anon_sym_COMMA, - [198394] = 2, - ACTIONS(11204), 1, + [203963] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(2151), 1, + STATE(4354), 1, sym__directive_parameter, - [198401] = 2, - ACTIONS(13154), 1, + [203970] = 2, + ACTIONS(13339), 1, anon_sym_RPAREN, - ACTIONS(13156), 1, + ACTIONS(13341), 1, anon_sym_COMMA, - [198408] = 1, - ACTIONS(13140), 2, + [203977] = 2, + ACTIONS(13343), 1, anon_sym_RPAREN, + ACTIONS(13345), 1, anon_sym_COMMA, - [198413] = 2, - ACTIONS(11204), 1, - anon_sym_LPAREN2, - STATE(2156), 1, - sym__directive_parameter, - [198420] = 2, - ACTIONS(11016), 1, + [203984] = 2, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(3397), 1, + STATE(3360), 1, sym__directive_parameter, - [198427] = 2, - ACTIONS(13144), 1, - anon_sym_LPAREN2, - STATE(4216), 1, - sym__directive_parameter, - [198434] = 1, - ACTIONS(13158), 2, - aux_sym_parameter_token1, - anon_sym_RPAREN2, - [198439] = 2, - ACTIONS(11136), 1, + [203991] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(2680), 1, + STATE(4401), 1, sym__directive_parameter, - [198446] = 2, - ACTIONS(11136), 1, + [203998] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(2679), 1, + STATE(4340), 1, sym__directive_parameter, - [198453] = 2, - ACTIONS(13144), 1, + [204005] = 2, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(4310), 1, + STATE(2712), 1, sym__directive_parameter, - [198460] = 1, - ACTIONS(13160), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [198465] = 2, - ACTIONS(13162), 1, + [204012] = 2, + ACTIONS(13347), 1, anon_sym_RPAREN, - ACTIONS(13164), 1, + ACTIONS(13349), 1, anon_sym_COMMA, - [198472] = 2, - ACTIONS(10702), 1, + [204019] = 2, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(3368), 1, + STATE(1628), 1, sym__directive_parameter, - [198479] = 2, - ACTIONS(11144), 1, + [204026] = 2, + ACTIONS(13351), 1, + anon_sym_RPAREN, + ACTIONS(13353), 1, + anon_sym_COMMA, + [204033] = 2, + ACTIONS(11315), 1, anon_sym_LPAREN2, - STATE(2598), 1, + STATE(2711), 1, sym__directive_parameter, - [198486] = 2, - ACTIONS(11144), 1, + [204040] = 1, + ACTIONS(13355), 2, + aux_sym_parameter_token1, + anon_sym_RPAREN2, + [204045] = 2, + ACTIONS(13357), 1, anon_sym_LPAREN2, - STATE(2597), 1, + STATE(4395), 1, sym__directive_parameter, - [198493] = 2, - ACTIONS(13166), 1, - anon_sym_RPAREN, - ACTIONS(13168), 1, - anon_sym_COMMA, - [198500] = 2, - ACTIONS(13170), 1, - anon_sym_RPAREN, - ACTIONS(13172), 1, - anon_sym_COMMA, - [198507] = 2, - ACTIONS(13174), 1, + [204052] = 1, + ACTIONS(13359), 2, anon_sym_RPAREN, - ACTIONS(13176), 1, anon_sym_COMMA, - [198514] = 2, - ACTIONS(10702), 1, + [204057] = 2, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(3369), 1, + STATE(2195), 1, sym__directive_parameter, - [198521] = 2, - ACTIONS(13144), 1, + [204064] = 2, + ACTIONS(11199), 1, anon_sym_LPAREN2, - STATE(4224), 1, + STATE(3358), 1, sym__directive_parameter, - [198528] = 2, - ACTIONS(13144), 1, + [204071] = 2, + ACTIONS(11341), 1, anon_sym_LPAREN2, - STATE(4371), 1, + STATE(2194), 1, sym__directive_parameter, - [198535] = 2, - ACTIONS(13178), 1, + [204078] = 2, + ACTIONS(13361), 1, anon_sym_RPAREN, - ACTIONS(13180), 1, + ACTIONS(13363), 1, anon_sym_COMMA, - [198542] = 2, - ACTIONS(13144), 1, - anon_sym_LPAREN2, - STATE(4249), 1, - sym__directive_parameter, - [198549] = 2, - ACTIONS(11154), 1, - anon_sym_LPAREN2, - STATE(2516), 1, - sym__directive_parameter, - [198556] = 2, - ACTIONS(13182), 1, + [204085] = 2, + ACTIONS(13365), 1, anon_sym_RPAREN, - ACTIONS(13184), 1, + ACTIONS(13367), 1, anon_sym_COMMA, - [198563] = 2, - ACTIONS(11124), 1, + [204092] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(2843), 1, + STATE(4269), 1, sym__directive_parameter, - [198570] = 2, - ACTIONS(11124), 1, + [204099] = 1, + ACTIONS(13369), 2, + aux_sym_parameter_token1, + anon_sym_RPAREN2, + [204104] = 2, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(2844), 1, + STATE(2629), 1, sym__directive_parameter, - [198577] = 2, - ACTIONS(11154), 1, + [204111] = 2, + ACTIONS(11303), 1, anon_sym_LPAREN2, - STATE(2515), 1, + STATE(2877), 1, sym__directive_parameter, - [198584] = 1, - ACTIONS(13186), 2, - aux_sym_parameter_token1, - anon_sym_RPAREN2, - [198589] = 2, - ACTIONS(11138), 1, + [204118] = 2, + ACTIONS(11303), 1, anon_sym_LPAREN2, - STATE(2428), 1, + STATE(2878), 1, sym__directive_parameter, - [198596] = 2, - ACTIONS(11138), 1, + [204125] = 2, + ACTIONS(11321), 1, anon_sym_LPAREN2, - STATE(2420), 1, + STATE(2628), 1, sym__directive_parameter, - [198603] = 2, - ACTIONS(10680), 1, + [204132] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(3163), 1, + STATE(4382), 1, sym__directive_parameter, - [198610] = 2, - ACTIONS(10680), 1, + [204139] = 2, + ACTIONS(13371), 1, + anon_sym_RPAREN, + ACTIONS(13373), 1, + anon_sym_COMMA, + [204146] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(3145), 1, + STATE(4424), 1, sym__directive_parameter, - [198617] = 2, - ACTIONS(13144), 1, + [204153] = 1, + ACTIONS(13333), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [204158] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(4218), 1, + STATE(4440), 1, sym__directive_parameter, - [198624] = 2, - ACTIONS(13188), 1, + [204165] = 2, + ACTIONS(10717), 1, + anon_sym_LPAREN2, + STATE(859), 1, + sym__directive_parameter, + [204172] = 2, + ACTIONS(13375), 1, anon_sym_RPAREN, - ACTIONS(13190), 1, + ACTIONS(13377), 1, anon_sym_COMMA, - [198631] = 2, - ACTIONS(13144), 1, + [204179] = 2, + ACTIONS(11327), 1, anon_sym_LPAREN2, - STATE(4370), 1, + STATE(2546), 1, sym__directive_parameter, - [198638] = 2, - ACTIONS(11160), 1, + [204186] = 2, + ACTIONS(11327), 1, anon_sym_LPAREN2, - STATE(2434), 1, + STATE(2545), 1, sym__directive_parameter, - [198645] = 2, - ACTIONS(11160), 1, + [204193] = 2, + ACTIONS(10717), 1, anon_sym_LPAREN2, - STATE(2433), 1, + STATE(860), 1, sym__directive_parameter, - [198652] = 2, - ACTIONS(13132), 1, + [204200] = 2, + ACTIONS(13379), 1, anon_sym_RPAREN, - ACTIONS(13136), 1, - aux_sym_parameter_token1, - [198659] = 2, - ACTIONS(13192), 1, + ACTIONS(13381), 1, + anon_sym_COMMA, + [204207] = 2, + ACTIONS(13383), 1, anon_sym_RPAREN, - ACTIONS(13194), 1, + ACTIONS(13385), 1, anon_sym_COMMA, - [198666] = 2, - ACTIONS(13196), 1, + [204214] = 2, + ACTIONS(10871), 1, anon_sym_LPAREN2, - STATE(4328), 1, + STATE(3280), 1, sym__directive_parameter, - [198673] = 2, - ACTIONS(13198), 1, - anon_sym_RPAREN, - ACTIONS(13200), 1, - anon_sym_COMMA, - [198680] = 2, - ACTIONS(13144), 1, + [204221] = 2, + ACTIONS(10871), 1, anon_sym_LPAREN2, - STATE(4294), 1, + STATE(3279), 1, sym__directive_parameter, - [198687] = 2, - ACTIONS(13202), 1, + [204228] = 2, + ACTIONS(13387), 1, anon_sym_RPAREN, - ACTIONS(13204), 1, + ACTIONS(13389), 1, anon_sym_COMMA, - [198694] = 2, - ACTIONS(13206), 1, + [204235] = 2, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(4255), 1, + STATE(2109), 1, sym__directive_parameter, - [198701] = 2, - ACTIONS(11166), 1, + [204242] = 2, + ACTIONS(11359), 1, anon_sym_LPAREN2, - STATE(2352), 1, + STATE(2108), 1, sym__directive_parameter, - [198708] = 2, - ACTIONS(11166), 1, + [204249] = 2, + ACTIONS(13391), 1, + anon_sym_RPAREN, + ACTIONS(13393), 1, + anon_sym_COMMA, + [204256] = 2, + ACTIONS(13395), 1, + anon_sym_RPAREN, + ACTIONS(13397), 1, + anon_sym_COMMA, + [204263] = 2, + ACTIONS(13399), 1, + anon_sym_RPAREN, + ACTIONS(13401), 1, + anon_sym_COMMA, + [204270] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(2351), 1, + STATE(4391), 1, sym__directive_parameter, - [198715] = 2, - ACTIONS(13144), 1, + [204277] = 2, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(4361), 1, + STATE(2463), 1, sym__directive_parameter, - [198722] = 2, - ACTIONS(13144), 1, + [204284] = 2, + ACTIONS(11333), 1, anon_sym_LPAREN2, - STATE(4212), 1, + STATE(2462), 1, sym__directive_parameter, - [198729] = 2, - ACTIONS(10596), 1, + [204291] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(777), 1, + STATE(4275), 1, sym__directive_parameter, - [198736] = 2, - ACTIONS(13144), 1, + [204298] = 2, + ACTIONS(13403), 1, + anon_sym_RPAREN, + ACTIONS(13405), 1, + anon_sym_COMMA, + [204305] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(4268), 1, + STATE(4357), 1, sym__directive_parameter, - [198743] = 2, - ACTIONS(11172), 1, + [204312] = 2, + ACTIONS(13325), 1, + anon_sym_RPAREN, + ACTIONS(13329), 1, + aux_sym_parameter_token1, + [204319] = 2, + ACTIONS(11283), 1, anon_sym_LPAREN2, - STATE(2270), 1, + STATE(3127), 1, sym__directive_parameter, - [198750] = 2, - ACTIONS(10696), 1, + [204326] = 2, + ACTIONS(11283), 1, anon_sym_LPAREN2, - STATE(3271), 1, + STATE(3126), 1, sym__directive_parameter, - [198757] = 2, - ACTIONS(11172), 1, + [204333] = 2, + ACTIONS(13407), 1, anon_sym_LPAREN2, - STATE(2269), 1, + STATE(4286), 1, sym__directive_parameter, - [198764] = 2, - ACTIONS(13208), 1, - anon_sym_RPAREN, - ACTIONS(13210), 1, - anon_sym_COMMA, - [198771] = 2, - ACTIONS(13144), 1, + [204340] = 2, + ACTIONS(10877), 1, anon_sym_LPAREN2, - STATE(4350), 1, + STATE(3389), 1, sym__directive_parameter, - [198778] = 2, - ACTIONS(13144), 1, + [204347] = 2, + ACTIONS(10877), 1, anon_sym_LPAREN2, - STATE(4272), 1, + STATE(3392), 1, sym__directive_parameter, - [198785] = 2, - ACTIONS(11182), 1, + [204354] = 2, + ACTIONS(10679), 1, anon_sym_LPAREN2, - STATE(2099), 1, + STATE(1711), 1, sym__directive_parameter, - [198792] = 2, - ACTIONS(13212), 1, + [204361] = 2, + ACTIONS(13409), 1, anon_sym_RPAREN, - ACTIONS(13214), 1, + ACTIONS(13411), 1, anon_sym_COMMA, - [198799] = 2, - ACTIONS(11182), 1, + [204368] = 1, + ACTIONS(13325), 2, + aux_sym_parameter_token1, + anon_sym_RPAREN2, + [204373] = 2, + ACTIONS(10679), 1, anon_sym_LPAREN2, - STATE(2098), 1, + STATE(1712), 1, sym__directive_parameter, - [198806] = 2, - ACTIONS(13216), 1, - anon_sym_RPAREN, - ACTIONS(13218), 1, - anon_sym_COMMA, - [198813] = 2, - ACTIONS(11180), 1, + [204380] = 2, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(2188), 1, + STATE(2380), 1, sym__directive_parameter, - [198820] = 2, - ACTIONS(10696), 1, + [204387] = 2, + ACTIONS(11339), 1, anon_sym_LPAREN2, - STATE(3272), 1, + STATE(2379), 1, sym__directive_parameter, - [198827] = 2, - ACTIONS(10596), 1, + [204394] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(4431), 1, sym__directive_parameter, - [198834] = 2, - ACTIONS(13220), 1, - anon_sym_RPAREN, - ACTIONS(13222), 1, - anon_sym_COMMA, - [198841] = 2, - ACTIONS(13144), 1, + [204401] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(4343), 1, + STATE(4302), 1, sym__directive_parameter, - [198848] = 2, - ACTIONS(13144), 1, + [204408] = 2, + ACTIONS(11379), 1, anon_sym_LPAREN2, - STATE(4236), 1, + STATE(2024), 1, sym__directive_parameter, - [198855] = 2, - ACTIONS(13224), 1, + [204415] = 2, + ACTIONS(13413), 1, anon_sym_RPAREN, - ACTIONS(13226), 1, + ACTIONS(13415), 1, anon_sym_COMMA, - [198862] = 2, - ACTIONS(10524), 1, - anon_sym_LPAREN2, - STATE(1074), 1, - sym__directive_parameter, - [198869] = 2, - ACTIONS(10524), 1, + [204422] = 2, + ACTIONS(13417), 1, + anon_sym_RPAREN, + ACTIONS(13419), 1, + anon_sym_COMMA, + [204429] = 2, + ACTIONS(10667), 1, anon_sym_LPAREN2, - STATE(1075), 1, + STATE(1541), 1, sym__directive_parameter, - [198876] = 2, - ACTIONS(13158), 1, - anon_sym_RPAREN, - ACTIONS(13228), 1, - aux_sym_parameter_token1, - [198883] = 2, - ACTIONS(13144), 1, + [204436] = 2, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(4351), 1, + STATE(1627), 1, sym__directive_parameter, - [198890] = 2, - ACTIONS(13186), 1, - anon_sym_RPAREN, - ACTIONS(13230), 1, - aux_sym_parameter_token1, - [198897] = 2, - ACTIONS(13232), 1, - anon_sym_RPAREN, - ACTIONS(13234), 1, - anon_sym_COMMA, - [198904] = 2, - ACTIONS(13236), 1, - anon_sym_RPAREN, - ACTIONS(13238), 1, - anon_sym_COMMA, - [198911] = 2, - ACTIONS(10820), 1, + [204443] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(3500), 1, + STATE(4335), 1, sym__directive_parameter, - [198918] = 2, - ACTIONS(13144), 1, + [204450] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(4252), 1, + STATE(4399), 1, sym__directive_parameter, - [198925] = 2, - ACTIONS(10820), 1, + [204457] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(3499), 1, + STATE(4281), 1, sym__directive_parameter, - [198932] = 2, - ACTIONS(11100), 1, + [204464] = 2, + ACTIONS(13421), 1, + anon_sym_RPAREN, + ACTIONS(13423), 1, + anon_sym_COMMA, + [204471] = 2, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(3090), 1, + STATE(2297), 1, sym__directive_parameter, - [198939] = 2, - ACTIONS(10512), 1, + [204478] = 2, + ACTIONS(11347), 1, anon_sym_LPAREN2, - STATE(1160), 1, + STATE(2296), 1, sym__directive_parameter, - [198946] = 2, - ACTIONS(11100), 1, + [204485] = 2, + ACTIONS(13425), 1, + anon_sym_RPAREN, + ACTIONS(13427), 1, + anon_sym_COMMA, + [204492] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(3089), 1, + STATE(4359), 1, sym__directive_parameter, - [198953] = 2, - ACTIONS(10512), 1, + [204499] = 2, + ACTIONS(10855), 1, anon_sym_LPAREN2, - STATE(1162), 1, + STATE(3356), 1, sym__directive_parameter, - [198960] = 2, - ACTIONS(13240), 1, + [204506] = 2, + ACTIONS(13429), 1, anon_sym_LPAREN2, - STATE(4217), 1, + STATE(4378), 1, sym__directive_parameter, - [198967] = 2, - ACTIONS(13144), 1, + [204513] = 2, + ACTIONS(10855), 1, anon_sym_LPAREN2, - STATE(4368), 1, + STATE(3395), 1, sym__directive_parameter, - [198974] = 2, - ACTIONS(13144), 1, + [204520] = 2, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(4320), 1, + STATE(2214), 1, sym__directive_parameter, - [198981] = 2, - ACTIONS(13144), 1, + [204527] = 2, + ACTIONS(11349), 1, anon_sym_LPAREN2, - STATE(4227), 1, + STATE(2213), 1, sym__directive_parameter, - [198988] = 2, - ACTIONS(13242), 1, + [204534] = 2, + ACTIONS(13431), 1, anon_sym_RPAREN, - ACTIONS(13244), 1, + ACTIONS(13433), 1, anon_sym_COMMA, - [198995] = 2, - ACTIONS(13246), 1, + [204541] = 2, + ACTIONS(13435), 1, anon_sym_RPAREN, - ACTIONS(13248), 1, + ACTIONS(13437), 1, anon_sym_COMMA, - [199002] = 2, - ACTIONS(13250), 1, - anon_sym_LPAREN2, - STATE(4288), 1, - sym__directive_parameter, - [199009] = 2, - ACTIONS(11198), 1, + [204548] = 2, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(2013), 1, + STATE(3199), 1, sym__directive_parameter, - [199016] = 2, - ACTIONS(11198), 1, + [204555] = 2, + ACTIONS(10735), 1, anon_sym_LPAREN2, - STATE(2012), 1, + STATE(983), 1, sym__directive_parameter, - [199023] = 2, - ACTIONS(10594), 1, + [204562] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(1247), 1, + STATE(4383), 1, sym__directive_parameter, - [199030] = 2, - ACTIONS(10594), 1, + [204569] = 2, + ACTIONS(10735), 1, anon_sym_LPAREN2, - STATE(1275), 1, + STATE(982), 1, sym__directive_parameter, - [199037] = 2, - ACTIONS(13144), 1, + [204576] = 2, + ACTIONS(11371), 1, anon_sym_LPAREN2, - STATE(4297), 1, + STATE(3221), 1, sym__directive_parameter, - [199044] = 2, - ACTIONS(13252), 1, + [204583] = 2, + ACTIONS(13439), 1, anon_sym_RPAREN, - ACTIONS(13254), 1, + ACTIONS(13441), 1, anon_sym_COMMA, - [199051] = 2, - ACTIONS(13256), 1, + [204590] = 2, + ACTIONS(11027), 1, + anon_sym_LPAREN2, + STATE(3552), 1, + sym__directive_parameter, + [204597] = 2, + ACTIONS(11027), 1, + anon_sym_LPAREN2, + STATE(3551), 1, + sym__directive_parameter, + [204604] = 2, + ACTIONS(13443), 1, anon_sym_RPAREN, - ACTIONS(13258), 1, + ACTIONS(13445), 1, anon_sym_COMMA, - [199058] = 2, - ACTIONS(11118), 1, + [204611] = 2, + ACTIONS(11297), 1, anon_sym_LPAREN2, - STATE(2925), 1, + STATE(2960), 1, sym__directive_parameter, - [199065] = 2, - ACTIONS(11118), 1, + [204618] = 2, + ACTIONS(11297), 1, anon_sym_LPAREN2, - STATE(2926), 1, + STATE(2961), 1, sym__directive_parameter, - [199072] = 2, - ACTIONS(10500), 1, + [204625] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(1858), 1, + STATE(4352), 1, sym__directive_parameter, - [199079] = 2, - ACTIONS(10500), 1, + [204632] = 2, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(1857), 1, + STATE(1276), 1, sym__directive_parameter, - [199086] = 2, - ACTIONS(13260), 1, - anon_sym_RPAREN, - ACTIONS(13262), 1, - anon_sym_COMMA, - [199093] = 2, - ACTIONS(13264), 1, - anon_sym_RPAREN, - ACTIONS(13266), 1, - anon_sym_COMMA, - [199100] = 2, - ACTIONS(13144), 1, + [204639] = 2, + ACTIONS(10677), 1, anon_sym_LPAREN2, - STATE(4349), 1, + STATE(1277), 1, sym__directive_parameter, - [199107] = 2, - ACTIONS(13268), 1, - anon_sym_RPAREN, - ACTIONS(13270), 1, - anon_sym_COMMA, - [199114] = 2, - ACTIONS(13144), 1, + [204646] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(4278), 1, + STATE(4406), 1, sym__directive_parameter, - [199121] = 2, - ACTIONS(10662), 1, + [204653] = 2, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(1775), 1, + STATE(1071), 1, sym__directive_parameter, - [199128] = 2, - ACTIONS(10662), 1, + [204660] = 2, + ACTIONS(10693), 1, anon_sym_LPAREN2, - STATE(1774), 1, + STATE(1072), 1, sym__directive_parameter, - [199135] = 2, - ACTIONS(13272), 1, + [204667] = 2, + ACTIONS(13355), 1, anon_sym_RPAREN, - ACTIONS(13274), 1, - anon_sym_COMMA, - [199142] = 2, - ACTIONS(10544), 1, + ACTIONS(13447), 1, + aux_sym_parameter_token1, + [204674] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(857), 1, + STATE(4409), 1, sym__directive_parameter, - [199149] = 2, - ACTIONS(10544), 1, + [204681] = 2, + ACTIONS(13449), 1, + anon_sym_RPAREN, + ACTIONS(13451), 1, + anon_sym_COMMA, + [204688] = 2, + ACTIONS(13453), 1, + anon_sym_RPAREN, + ACTIONS(13455), 1, + anon_sym_COMMA, + [204695] = 2, + ACTIONS(13369), 1, + anon_sym_RPAREN, + ACTIONS(13457), 1, + aux_sym_parameter_token1, + [204702] = 2, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(881), 1, + STATE(1160), 1, sym__directive_parameter, - [199156] = 2, - ACTIONS(13144), 1, + [204709] = 2, + ACTIONS(10681), 1, anon_sym_LPAREN2, - STATE(4317), 1, + STATE(1162), 1, sym__directive_parameter, - [199163] = 1, - ACTIONS(13132), 2, - aux_sym_parameter_token1, - anon_sym_RPAREN2, - [199168] = 2, - ACTIONS(13144), 1, + [204716] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(4281), 1, + STATE(4413), 1, sym__directive_parameter, - [199175] = 2, - ACTIONS(10586), 1, + [204723] = 2, + ACTIONS(10799), 1, anon_sym_LPAREN2, - STATE(1261), 1, + STATE(776), 1, sym__directive_parameter, - [199182] = 2, - ACTIONS(10586), 1, + [204730] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(1262), 1, + STATE(4320), 1, sym__directive_parameter, - [199189] = 2, - ACTIONS(10510), 1, + [204737] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(1692), 1, + STATE(4417), 1, sym__directive_parameter, - [199196] = 2, - ACTIONS(10510), 1, + [204744] = 2, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(1691), 1, + STATE(1366), 1, sym__directive_parameter, - [199203] = 2, - ACTIONS(13276), 1, + [204751] = 2, + ACTIONS(13459), 1, anon_sym_RPAREN, - ACTIONS(13278), 1, + ACTIONS(13461), 1, anon_sym_COMMA, - [199210] = 2, - ACTIONS(13144), 1, + [204758] = 2, + ACTIONS(10799), 1, anon_sym_LPAREN2, - STATE(4292), 1, + STATE(777), 1, sym__directive_parameter, - [199217] = 2, - ACTIONS(13280), 1, - anon_sym_RPAREN, - ACTIONS(13282), 1, - anon_sym_COMMA, - [199224] = 2, - ACTIONS(13144), 1, + [204765] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(4269), 1, + STATE(4348), 1, sym__directive_parameter, - [199231] = 2, - ACTIONS(13144), 1, + [204772] = 2, + ACTIONS(10741), 1, anon_sym_LPAREN2, - STATE(4230), 1, + STATE(1367), 1, sym__directive_parameter, - [199238] = 2, - ACTIONS(10518), 1, + [204779] = 2, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(1609), 1, + STATE(1251), 1, sym__directive_parameter, - [199245] = 2, - ACTIONS(10518), 1, + [204786] = 2, + ACTIONS(10763), 1, anon_sym_LPAREN2, - STATE(1608), 1, + STATE(1252), 1, sym__directive_parameter, - [199252] = 2, - ACTIONS(13284), 1, - anon_sym_RPAREN, - ACTIONS(13286), 1, - anon_sym_COMMA, - [199259] = 2, - ACTIONS(13144), 1, + [204793] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(4199), 1, + STATE(4272), 1, sym__directive_parameter, - [199266] = 2, - ACTIONS(13144), 1, + [204800] = 2, + ACTIONS(11291), 1, anon_sym_LPAREN2, - STATE(4251), 1, + STATE(3044), 1, sym__directive_parameter, - [199273] = 2, - ACTIONS(13144), 1, + [204807] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(4239), 1, + STATE(4432), 1, sym__directive_parameter, - [199280] = 2, - ACTIONS(13288), 1, + [204814] = 2, + ACTIONS(11291), 1, + anon_sym_LPAREN2, + STATE(3043), 1, + sym__directive_parameter, + [204821] = 2, + ACTIONS(13463), 1, + anon_sym_RPAREN, + ACTIONS(13465), 1, + anon_sym_COMMA, + [204828] = 2, + ACTIONS(13467), 1, anon_sym_RPAREN, - ACTIONS(13290), 1, + ACTIONS(13469), 1, anon_sym_COMMA, - [199287] = 2, - ACTIONS(13292), 1, + [204835] = 2, + ACTIONS(13471), 1, + anon_sym_RPAREN, + ACTIONS(13473), 1, + anon_sym_COMMA, + [204842] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(4313), 1, + STATE(4389), 1, sym__directive_parameter, - [199294] = 2, - ACTIONS(10492), 1, + [204849] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(1524), 1, + STATE(4425), 1, sym__directive_parameter, - [199301] = 2, - ACTIONS(10492), 1, + [204856] = 2, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(1523), 1, + STATE(1880), 1, sym__directive_parameter, - [199308] = 2, - ACTIONS(10494), 1, + [204863] = 2, + ACTIONS(13475), 1, + anon_sym_RPAREN, + ACTIONS(13477), 1, + anon_sym_COMMA, + [204870] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(971), 1, + STATE(4437), 1, sym__directive_parameter, - [199315] = 2, - ACTIONS(10494), 1, + [204877] = 2, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(970), 1, + STATE(1879), 1, sym__directive_parameter, - [199322] = 2, - ACTIONS(13144), 1, + [204884] = 2, + ACTIONS(13479), 1, anon_sym_LPAREN2, - STATE(4228), 1, + STATE(4374), 1, sym__directive_parameter, - [199329] = 2, - ACTIONS(13294), 1, + [204891] = 2, + ACTIONS(13481), 1, anon_sym_RPAREN, - ACTIONS(13296), 1, + ACTIONS(13483), 1, anon_sym_COMMA, - [199336] = 2, - ACTIONS(13144), 1, + [204898] = 2, + ACTIONS(13337), 1, anon_sym_LPAREN2, - STATE(4213), 1, + STATE(4280), 1, sym__directive_parameter, - [199343] = 2, - ACTIONS(10566), 1, + [204905] = 2, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(1350), 1, + STATE(1455), 1, sym__directive_parameter, - [199350] = 2, - ACTIONS(10566), 1, + [204912] = 2, + ACTIONS(10723), 1, anon_sym_LPAREN2, - STATE(1351), 1, + STATE(1456), 1, sym__directive_parameter, - [199357] = 2, - ACTIONS(13298), 1, + [204919] = 2, + ACTIONS(13485), 1, anon_sym_RPAREN, - ACTIONS(13300), 1, + ACTIONS(13487), 1, anon_sym_COMMA, - [199364] = 2, - ACTIONS(10550), 1, - anon_sym_LPAREN2, - STATE(1439), 1, - sym__directive_parameter, - [199371] = 2, - ACTIONS(11112), 1, + [204926] = 2, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(3007), 1, + STATE(1796), 1, sym__directive_parameter, - [199378] = 2, - ACTIONS(11112), 1, + [204933] = 2, + ACTIONS(10791), 1, anon_sym_LPAREN2, - STATE(3008), 1, + STATE(1795), 1, sym__directive_parameter, - [199385] = 2, - ACTIONS(10550), 1, + [204940] = 2, + ACTIONS(13489), 1, + anon_sym_RPAREN, + ACTIONS(13491), 1, + anon_sym_COMMA, + [204947] = 2, + ACTIONS(13493), 1, anon_sym_LPAREN2, - STATE(1438), 1, + STATE(4329), 1, sym__directive_parameter, - [199392] = 2, - ACTIONS(13302), 1, + [204954] = 2, + ACTIONS(13495), 1, anon_sym_RPAREN, - ACTIONS(13304), 1, + ACTIONS(13497), 1, anon_sym_COMMA, - [199399] = 1, - ACTIONS(13306), 1, - anon_sym_ATendtask, - [199403] = 1, - ACTIONS(13308), 1, + [204961] = 1, + ACTIONS(13499), 1, + anon_sym_ATendif, + [204965] = 1, + ACTIONS(13501), 1, + anon_sym_ATendcan, + [204969] = 1, + ACTIONS(13503), 1, + anon_sym_ATendcannot, + [204973] = 1, + ACTIONS(13505), 1, + anon_sym_ATendcanany, + [204977] = 1, + ACTIONS(13507), 1, anon_sym_ATendfeature, - [199407] = 1, - ACTIONS(13310), 1, - anon_sym_ATendpersist, - [199411] = 1, - ACTIONS(13312), 1, - anon_sym_ATendteleport, - [199415] = 1, - ACTIONS(13314), 1, - anon_sym_ATendvolt, - [199419] = 1, - ACTIONS(13316), 1, + [204981] = 1, + ACTIONS(13509), 1, aux_sym__custom_token3, - [199423] = 1, - ACTIONS(13318), 1, - anon_sym_ATendif, - [199427] = 1, - ACTIONS(13320), 1, - anon_sym_ATenderror, - [199431] = 1, - ACTIONS(13322), 1, - anon_sym_ATendPrependOnce, - [199435] = 1, - ACTIONS(13324), 1, + [204985] = 1, + ACTIONS(13511), 1, anon_sym_ATendfor, - [199439] = 1, - ACTIONS(13326), 1, - anon_sym_ATendprepend, - [199443] = 1, - ACTIONS(12347), 1, - anon_sym_RPAREN, - [199447] = 1, - ACTIONS(13328), 1, - anon_sym_ATendPushIf, - [199451] = 1, - ACTIONS(13330), 1, + [204989] = 1, + ACTIONS(13513), 1, anon_sym_ATendforeach, - [199455] = 1, - ACTIONS(13332), 1, - anon_sym_ATendPushOnce, - [199459] = 1, - ACTIONS(13334), 1, - anon_sym_ATendpush, - [199463] = 1, - ACTIONS(13336), 1, - anon_sym_ATendfragment, - [199467] = 1, - ACTIONS(13338), 1, - anon_sym_RPAREN, - [199471] = 1, - ACTIONS(13340), 1, - anon_sym_ATendphp, - [199475] = 1, - ACTIONS(13342), 1, + [204993] = 1, + ACTIONS(13515), 1, anon_sym_ATendforelse, - [199479] = 1, - ACTIONS(13344), 1, + [204997] = 1, + ACTIONS(13517), 1, anon_sym_ATendwhile, - [199483] = 1, - ACTIONS(13346), 1, + [205001] = 1, + ACTIONS(13519), 1, anon_sym_ATendsetup, - [199487] = 1, - ACTIONS(13348), 1, + [205005] = 1, + ACTIONS(13521), 1, anon_sym_ATendtask, - [199491] = 1, - ACTIONS(13350), 1, + [205009] = 1, + ACTIONS(13523), 1, anon_sym_ATendstory, - [199495] = 1, - ACTIONS(13352), 1, - anon_sym_ATendcan, - [199499] = 1, - ACTIONS(13354), 1, - anon_sym_BANG_BANG_RBRACE, - [199503] = 1, - ACTIONS(13356), 1, - anon_sym_ATendcannot, - [199507] = 1, - ACTIONS(13358), 1, - anon_sym_ATendcanany, - [199511] = 1, - ACTIONS(13360), 1, - anon_sym_ATendforelse, - [199515] = 1, - ACTIONS(13362), 1, + [205013] = 1, + ACTIONS(13525), 1, + anon_sym_ATendpersist, + [205017] = 1, + ACTIONS(13527), 1, + anon_sym_ATendteleport, + [205021] = 1, + ACTIONS(13529), 1, + anon_sym_ATendvolt, + [205025] = 1, + ACTIONS(13531), 1, + aux_sym_alpine_js_token2, + [205029] = 1, + ACTIONS(12372), 1, + anon_sym_RPAREN, + [205033] = 1, + ACTIONS(13533), 1, + anon_sym_RPAREN, + [205037] = 1, + ACTIONS(13535), 1, + anon_sym_ATendPushIf, + [205041] = 1, + ACTIONS(13537), 1, + anon_sym_ATenderror, + [205045] = 1, + ACTIONS(13539), 1, anon_sym_ATendif, - [199519] = 1, - ACTIONS(13364), 1, + [205049] = 1, + ACTIONS(13541), 1, anon_sym_ATendif, - [199523] = 1, - ACTIONS(13366), 1, + [205053] = 1, + ACTIONS(13543), 1, anon_sym_ATendenv, - [199527] = 1, - ACTIONS(13368), 1, + [205057] = 1, + ACTIONS(13545), 1, + anon_sym_ATendguest, + [205061] = 1, + ACTIONS(13547), 1, + anon_sym_ATendauth, + [205065] = 1, + ACTIONS(13549), 1, + anon_sym_ATendempty, + [205069] = 1, + ACTIONS(13551), 1, + anon_sym_ATendisset, + [205073] = 1, + ACTIONS(13553), 1, + anon_sym_ATendunless, + [205077] = 1, + ACTIONS(13555), 1, + anon_sym_ATendif, + [205081] = 1, + ACTIONS(13557), 1, + anon_sym_ATendPrependOnce, + [205085] = 1, + ACTIONS(13559), 1, + anon_sym_ATendprepend, + [205089] = 1, + ACTIONS(13561), 1, anon_sym_RBRACE_RBRACE, - [199531] = 1, - ACTIONS(13370), 1, + [205093] = 1, + ACTIONS(13563), 1, anon_sym_BANG_BANG_RBRACE, - [199535] = 1, - ACTIONS(13372), 1, - anon_sym_ATendunless, - [199539] = 1, - ACTIONS(13374), 1, + [205097] = 1, + ACTIONS(13565), 1, + anon_sym_ATendPushIf, + [205101] = 1, + ACTIONS(13567), 1, anon_sym_ATendphp, - [199543] = 1, - ACTIONS(13376), 1, + [205105] = 1, + ACTIONS(13569), 1, anon_sym_ATendfragment, - [199547] = 1, - ACTIONS(13378), 1, - anon_sym_RBRACE_RBRACE, - [199551] = 1, - ACTIONS(13380), 1, - anon_sym_ATendguest, - [199555] = 1, - ACTIONS(13382), 1, + [205109] = 1, + ACTIONS(13571), 1, + anon_sym_ATendPushOnce, + [205113] = 1, + ACTIONS(13573), 1, anon_sym_ATendpush, - [199559] = 1, - ACTIONS(13384), 1, + [205117] = 1, + ACTIONS(13575), 1, + anon_sym_ATendpush, + [205121] = 1, + ACTIONS(13577), 1, anon_sym_ATendPushOnce, - [199563] = 1, - ACTIONS(13386), 1, + [205125] = 1, + ACTIONS(13579), 1, anon_sym_ATendPushIf, - [199567] = 1, - ACTIONS(13388), 1, + [205129] = 1, + ACTIONS(13581), 1, anon_sym_ATendprepend, - [199571] = 1, - ACTIONS(13390), 1, + [205133] = 1, + ACTIONS(13583), 1, anon_sym_ATendPrependOnce, - [199575] = 1, - ACTIONS(13392), 1, + [205137] = 1, + ACTIONS(13585), 1, anon_sym_ATendif, - [199579] = 1, - ACTIONS(13394), 1, + [205141] = 1, + ACTIONS(13587), 1, anon_sym_ATendunless, - [199583] = 1, - ACTIONS(13396), 1, + [205145] = 1, + ACTIONS(13589), 1, anon_sym_ATendisset, - [199587] = 1, - ACTIONS(13398), 1, + [205149] = 1, + ACTIONS(13591), 1, anon_sym_ATendempty, - [199591] = 1, - ACTIONS(13400), 1, + [205153] = 1, + ACTIONS(13593), 1, anon_sym_ATendauth, - [199595] = 1, - ACTIONS(13402), 1, + [205157] = 1, + ACTIONS(13595), 1, anon_sym_ATendguest, - [199599] = 1, - ACTIONS(13404), 1, - anon_sym_ATendauth, - [199603] = 1, - ACTIONS(13406), 1, + [205161] = 1, + ACTIONS(13597), 1, + anon_sym_ATendfragment, + [205165] = 1, + ACTIONS(13599), 1, anon_sym_ATendenv, - [199607] = 1, - ACTIONS(13408), 1, + [205169] = 1, + ACTIONS(13601), 1, anon_sym_ATendif, - [199611] = 1, - ACTIONS(13410), 1, + [205173] = 1, + ACTIONS(13603), 1, anon_sym_ATendif, - [199615] = 1, - ACTIONS(13412), 1, + [205177] = 1, + ACTIONS(13605), 1, anon_sym_ATenderror, - [199619] = 1, - ACTIONS(13414), 1, - anon_sym_ATendempty, - [199623] = 1, - ACTIONS(13416), 1, + [205181] = 1, + ACTIONS(13607), 1, + anon_sym_ATendphp, + [205185] = 1, + ACTIONS(13609), 1, anon_sym_ATendcan, - [199627] = 1, - ACTIONS(13418), 1, + [205189] = 1, + ACTIONS(13611), 1, anon_sym_ATendcannot, - [199631] = 1, - ACTIONS(13420), 1, + [205193] = 1, + ACTIONS(13613), 1, anon_sym_ATendcanany, - [199635] = 1, - ACTIONS(13422), 1, + [205197] = 1, + ACTIONS(13615), 1, anon_sym_ATendfeature, - [199639] = 1, - ACTIONS(13424), 1, + [205201] = 1, + ACTIONS(13617), 1, aux_sym__custom_token3, - [199643] = 1, - ACTIONS(13426), 1, - anon_sym_ATendisset, - [199647] = 1, - ACTIONS(13428), 1, + [205205] = 1, + ACTIONS(13619), 1, + anon_sym_BANG_BANG_RBRACE, + [205209] = 1, + ACTIONS(13621), 1, anon_sym_ATendfor, - [199651] = 1, - ACTIONS(13430), 1, + [205213] = 1, + ACTIONS(13623), 1, anon_sym_ATendforeach, - [199655] = 1, - ACTIONS(13432), 1, + [205217] = 1, + ACTIONS(13625), 1, anon_sym_ATendforelse, - [199659] = 1, - ACTIONS(13434), 1, + [205221] = 1, + ACTIONS(13627), 1, anon_sym_ATendwhile, - [199663] = 1, - ACTIONS(13436), 1, + [205225] = 1, + ACTIONS(13629), 1, anon_sym_ATendsetup, - [199667] = 1, - ACTIONS(13438), 1, + [205229] = 1, + ACTIONS(13631), 1, anon_sym_ATendtask, - [199671] = 1, - ACTIONS(13440), 1, + [205233] = 1, + ACTIONS(13633), 1, anon_sym_ATendstory, - [199675] = 1, - ACTIONS(13442), 1, - anon_sym_ATendunless, - [199679] = 1, - ACTIONS(13444), 1, - anon_sym_ATendif, - [199683] = 1, - ACTIONS(13446), 1, - anon_sym_ATendPrependOnce, - [199687] = 1, - ACTIONS(13448), 1, - anon_sym_ATendprepend, - [199691] = 1, - ACTIONS(13450), 1, - anon_sym_ATendpersist, - [199695] = 1, - ACTIONS(13452), 1, - anon_sym_ATendteleport, - [199699] = 1, - ACTIONS(13454), 1, - anon_sym_ATendvolt, - [199703] = 1, - ACTIONS(13456), 1, - anon_sym_ATendPushIf, - [199707] = 1, - ACTIONS(13458), 1, - anon_sym_ATendPushOnce, - [199711] = 1, - ACTIONS(13460), 1, - anon_sym_ATendpush, - [199715] = 1, - ACTIONS(13462), 1, - anon_sym_ATendisset, - [199719] = 1, - ACTIONS(13464), 1, - anon_sym_ATendfragment, - [199723] = 1, - ACTIONS(13466), 1, - anon_sym_ATendphp, - [199727] = 1, - ACTIONS(12381), 1, - anon_sym_RPAREN, - [199731] = 1, - ACTIONS(13468), 1, - anon_sym_BANG_BANG_RBRACE, - [199735] = 1, - ACTIONS(13470), 1, + [205237] = 1, + ACTIONS(13635), 1, anon_sym_RBRACE_RBRACE, - [199739] = 1, - ACTIONS(13472), 1, - anon_sym_ATendempty, - [199743] = 1, - ACTIONS(13474), 1, - anon_sym_ATendauth, - [199747] = 1, - ACTIONS(13476), 1, + [205241] = 1, + ACTIONS(13637), 1, anon_sym_RPAREN, - [199751] = 1, - ACTIONS(13478), 1, - anon_sym_RPAREN, - [199755] = 1, - ACTIONS(13480), 1, - anon_sym_ATendguest, - [199759] = 1, - ACTIONS(13482), 1, - anon_sym_ATendenv, - [199763] = 1, - ACTIONS(13484), 1, - anon_sym_ATendif, - [199767] = 1, - ACTIONS(12275), 1, + [205245] = 1, + ACTIONS(12410), 1, anon_sym_RPAREN, - [199771] = 1, - ACTIONS(13486), 1, - anon_sym_ATendif, - [199775] = 1, - ACTIONS(13488), 1, - anon_sym_ATenderror, - [199779] = 1, - ACTIONS(13490), 1, + [205249] = 1, + ACTIONS(13639), 1, + aux_sym_alpine_js_token2, + [205253] = 1, + ACTIONS(13641), 1, + anon_sym_ATendpersist, + [205257] = 1, + ACTIONS(13643), 1, + anon_sym_ATendteleport, + [205261] = 1, + ACTIONS(13645), 1, anon_sym_ATendvolt, - [199783] = 1, - ACTIONS(13492), 1, + [205265] = 1, + ACTIONS(13647), 1, + anon_sym_ATendvolt, + [205269] = 1, + ACTIONS(13649), 1, anon_sym_ATendteleport, - [199787] = 1, - ACTIONS(13494), 1, + [205273] = 1, + ACTIONS(13651), 1, anon_sym_ATendpersist, - [199791] = 1, - ACTIONS(13496), 1, + [205277] = 1, + ACTIONS(13653), 1, anon_sym_ATendstory, - [199795] = 1, - ACTIONS(13498), 1, + [205281] = 1, + ACTIONS(13655), 1, anon_sym_ATendtask, - [199799] = 1, - ACTIONS(13500), 1, + [205285] = 1, + ACTIONS(13657), 1, + aux_sym_alpine_js_token2, + [205289] = 1, + ACTIONS(13659), 1, anon_sym_ATendsetup, - [199803] = 1, - ACTIONS(13502), 1, + [205293] = 1, + ACTIONS(12434), 1, + anon_sym_RPAREN, + [205297] = 1, + ACTIONS(13661), 1, anon_sym_ATendwhile, - [199807] = 1, - ACTIONS(13504), 1, + [205301] = 1, + ACTIONS(13663), 1, + anon_sym_ATendforelse, + [205305] = 1, + ACTIONS(13665), 1, + anon_sym_ATendforeach, + [205309] = 1, + ACTIONS(13667), 1, + anon_sym_ATendfor, + [205313] = 1, + ACTIONS(13669), 1, aux_sym__custom_token3, - [199811] = 1, - ACTIONS(13506), 1, + [205317] = 1, + ACTIONS(13671), 1, + anon_sym_RPAREN, + [205321] = 1, + ACTIONS(13673), 1, + anon_sym_ATendfeature, + [205325] = 1, + ACTIONS(13675), 1, + anon_sym_ATendcanany, + [205329] = 1, + ACTIONS(13677), 1, + anon_sym_ATendcannot, + [205333] = 1, + ACTIONS(13679), 1, + anon_sym_ATendcan, + [205337] = 1, + ACTIONS(13681), 1, + anon_sym_ATenderror, + [205341] = 1, + ACTIONS(13683), 1, + anon_sym_ATendif, + [205345] = 1, + ACTIONS(13685), 1, + anon_sym_ATendif, + [205349] = 1, + ACTIONS(13687), 1, + anon_sym_ATendenv, + [205353] = 1, + ACTIONS(13689), 1, + anon_sym_ATendguest, + [205357] = 1, + ACTIONS(13691), 1, + anon_sym_ATendauth, + [205361] = 1, + ACTIONS(13693), 1, + anon_sym_ATendempty, + [205365] = 1, + ACTIONS(13695), 1, + anon_sym_ATendisset, + [205369] = 1, + ACTIONS(13697), 1, + anon_sym_ATendunless, + [205373] = 1, + ACTIONS(13699), 1, + anon_sym_ATendif, + [205377] = 1, + ACTIONS(13701), 1, anon_sym_RBRACE_RBRACE, - [199815] = 1, - ACTIONS(13508), 1, + [205381] = 1, + ACTIONS(13703), 1, anon_sym_BANG_BANG_RBRACE, - [199819] = 1, - ACTIONS(13510), 1, - anon_sym_ATendforeach, - [199823] = 1, - ACTIONS(13512), 1, + [205385] = 1, + ACTIONS(13705), 1, + anon_sym_ATendPrependOnce, + [205389] = 1, + ACTIONS(13707), 1, anon_sym_ATendphp, - [199827] = 1, - ACTIONS(13514), 1, + [205393] = 1, + ACTIONS(13709), 1, anon_sym_ATendfragment, - [199831] = 1, - ACTIONS(13516), 1, - anon_sym_ATendfor, - [199835] = 1, - ACTIONS(13518), 1, - anon_sym_ATendsetup, - [199839] = 1, - ACTIONS(13520), 1, + [205397] = 1, + ACTIONS(13711), 1, + anon_sym_ATendprepend, + [205401] = 1, + ACTIONS(13713), 1, + anon_sym_ATendvolt, + [205405] = 1, + ACTIONS(13715), 1, anon_sym_ATendpush, - [199843] = 1, - ACTIONS(13522), 1, + [205409] = 1, + ACTIONS(13717), 1, anon_sym_ATendPushOnce, - [199847] = 1, - ACTIONS(13524), 1, + [205413] = 1, + ACTIONS(13719), 1, anon_sym_ATendPushIf, - [199851] = 1, - ACTIONS(13526), 1, + [205417] = 1, + ACTIONS(13721), 1, anon_sym_ATendprepend, - [199855] = 1, - ACTIONS(13528), 1, + [205421] = 1, + ACTIONS(13723), 1, anon_sym_ATendPrependOnce, - [199859] = 1, - ACTIONS(13530), 1, + [205425] = 1, + ACTIONS(13725), 1, anon_sym_ATendif, - [199863] = 1, - ACTIONS(13532), 1, + [205429] = 1, + ACTIONS(13727), 1, anon_sym_ATendunless, - [199867] = 1, - ACTIONS(13534), 1, + [205433] = 1, + ACTIONS(13729), 1, anon_sym_ATendisset, - [199871] = 1, - ACTIONS(13536), 1, + [205437] = 1, + ACTIONS(13731), 1, anon_sym_ATendempty, - [199875] = 1, - ACTIONS(13538), 1, + [205441] = 1, + ACTIONS(13733), 1, anon_sym_ATendauth, - [199879] = 1, - ACTIONS(13540), 1, + [205445] = 1, + ACTIONS(13735), 1, anon_sym_ATendguest, - [199883] = 1, - ACTIONS(12331), 1, + [205449] = 1, + ACTIONS(13737), 1, anon_sym_RPAREN, - [199887] = 1, - ACTIONS(13542), 1, + [205453] = 1, + ACTIONS(13739), 1, anon_sym_ATendenv, - [199891] = 1, - ACTIONS(13544), 1, + [205457] = 1, + ACTIONS(13741), 1, anon_sym_ATendif, - [199895] = 1, - ACTIONS(13546), 1, + [205461] = 1, + ACTIONS(13743), 1, anon_sym_ATendif, - [199899] = 1, - ACTIONS(13548), 1, + [205465] = 1, + ACTIONS(13745), 1, anon_sym_ATenderror, - [199903] = 1, - ACTIONS(13550), 1, - anon_sym_ATendfeature, - [199907] = 1, - ACTIONS(13552), 1, + [205469] = 1, + ACTIONS(13747), 1, + anon_sym_ATendPushOnce, + [205473] = 1, + ACTIONS(13749), 1, anon_sym_ATendcan, - [199911] = 1, - ACTIONS(13554), 1, + [205477] = 1, + ACTIONS(13751), 1, anon_sym_ATendcannot, - [199915] = 1, - ACTIONS(13556), 1, + [205481] = 1, + ACTIONS(13753), 1, anon_sym_ATendcanany, - [199919] = 1, - ACTIONS(13558), 1, + [205485] = 1, + ACTIONS(13755), 1, anon_sym_ATendfeature, - [199923] = 1, - ACTIONS(13560), 1, + [205489] = 1, + ACTIONS(13757), 1, aux_sym__custom_token3, - [199927] = 1, - ACTIONS(13562), 1, - anon_sym_ATendcanany, - [199931] = 1, - ACTIONS(13564), 1, + [205493] = 1, + ACTIONS(13759), 1, + anon_sym_ATendpush, + [205497] = 1, + ACTIONS(13761), 1, anon_sym_ATendfor, - [199935] = 1, - ACTIONS(13566), 1, + [205501] = 1, + ACTIONS(13763), 1, anon_sym_ATendforeach, - [199939] = 1, - ACTIONS(13568), 1, + [205505] = 1, + ACTIONS(13765), 1, anon_sym_ATendforelse, - [199943] = 1, - ACTIONS(13570), 1, + [205509] = 1, + ACTIONS(13767), 1, anon_sym_ATendwhile, - [199947] = 1, - ACTIONS(13572), 1, + [205513] = 1, + ACTIONS(13769), 1, anon_sym_ATendsetup, - [199951] = 1, - ACTIONS(13574), 1, + [205517] = 1, + ACTIONS(13771), 1, anon_sym_ATendtask, - [199955] = 1, - ACTIONS(13576), 1, + [205521] = 1, + ACTIONS(13773), 1, + anon_sym_ATendstory, + [205525] = 1, + ACTIONS(13775), 1, + anon_sym_ATendfragment, + [205529] = 1, + ACTIONS(13777), 1, + anon_sym_ATendphp, + [205533] = 1, + ACTIONS(13779), 1, + anon_sym_BANG_BANG_RBRACE, + [205537] = 1, + ACTIONS(13781), 1, + anon_sym_RBRACE_RBRACE, + [205541] = 1, + ACTIONS(13783), 1, + anon_sym_ATendpersist, + [205545] = 1, + ACTIONS(13785), 1, + anon_sym_ATendteleport, + [205549] = 1, + ACTIONS(13787), 1, + anon_sym_ATendvolt, + [205553] = 1, + ACTIONS(13789), 1, + anon_sym_ATendcannot, + [205557] = 1, + ACTIONS(13791), 1, + anon_sym_ATendforelse, + [205561] = 1, + ACTIONS(12514), 1, + anon_sym_RPAREN, + [205565] = 1, + ACTIONS(13793), 1, + anon_sym_ATendteleport, + [205569] = 1, + ACTIONS(13795), 1, + aux_sym_alpine_js_token2, + [205573] = 1, + ACTIONS(13797), 1, + aux_sym_alpine_js_token2, + [205577] = 1, + ACTIONS(13799), 1, + anon_sym_ATendpersist, + [205581] = 1, + ACTIONS(12488), 1, + anon_sym_RPAREN, + [205585] = 1, + ACTIONS(13801), 1, + anon_sym_ATendvolt, + [205589] = 1, + ACTIONS(13803), 1, + anon_sym_ATendteleport, + [205593] = 1, + ACTIONS(13805), 1, + anon_sym_ATendpersist, + [205597] = 1, + ACTIONS(13807), 1, anon_sym_ATendstory, - [199959] = 1, - ACTIONS(13578), 1, + [205601] = 1, + ACTIONS(13809), 1, + anon_sym_ATendtask, + [205605] = 1, + ACTIONS(13811), 1, + anon_sym_RPAREN, + [205609] = 1, + ACTIONS(13813), 1, + anon_sym_ATendsetup, + [205613] = 1, + ACTIONS(13815), 1, + anon_sym_ATendwhile, + [205617] = 1, + ACTIONS(13817), 1, + anon_sym_ATendforelse, + [205621] = 1, + ACTIONS(13819), 1, + anon_sym_ATendforeach, + [205625] = 1, + ACTIONS(13821), 1, + anon_sym_ATendfor, + [205629] = 1, + ACTIONS(13823), 1, + aux_sym__custom_token3, + [205633] = 1, + ACTIONS(13825), 1, + anon_sym_ATendfeature, + [205637] = 1, + ACTIONS(13827), 1, + anon_sym_ATendcanany, + [205641] = 1, + ACTIONS(13829), 1, anon_sym_ATendcannot, - [199963] = 1, - ACTIONS(13580), 1, + [205645] = 1, + ACTIONS(13831), 1, anon_sym_ATendcan, - [199967] = 1, - ACTIONS(13582), 1, + [205649] = 1, + ACTIONS(13833), 1, anon_sym_ATenderror, - [199971] = 1, - ACTIONS(13584), 1, + [205653] = 1, + ACTIONS(13835), 1, anon_sym_ATendif, - [199975] = 1, - ACTIONS(13586), 1, - anon_sym_ATendpersist, - [199979] = 1, - ACTIONS(13588), 1, - anon_sym_ATendteleport, - [199983] = 1, - ACTIONS(13590), 1, - anon_sym_ATendvolt, - [199987] = 1, - ACTIONS(13592), 1, + [205657] = 1, + ACTIONS(13837), 1, anon_sym_ATendif, - [199991] = 1, - ACTIONS(13594), 1, + [205661] = 1, + ACTIONS(13839), 1, anon_sym_ATendenv, - [199995] = 1, - ACTIONS(13596), 1, + [205665] = 1, + ACTIONS(13841), 1, anon_sym_ATendguest, - [199999] = 1, - ACTIONS(13598), 1, - anon_sym_ATendvolt, - [200003] = 1, - ACTIONS(13600), 1, + [205669] = 1, + ACTIONS(13843), 1, anon_sym_ATendauth, - [200007] = 1, - ACTIONS(13602), 1, - anon_sym_ATendteleport, - [200011] = 1, - ACTIONS(12355), 1, - anon_sym_RPAREN, - [200015] = 1, - ACTIONS(13604), 1, - anon_sym_ATendpersist, - [200019] = 1, - ACTIONS(13606), 1, + [205673] = 1, + ACTIONS(13845), 1, anon_sym_ATendempty, - [200023] = 1, - ACTIONS(13608), 1, + [205677] = 1, + ACTIONS(13847), 1, anon_sym_ATendisset, - [200027] = 1, - ACTIONS(13610), 1, + [205681] = 1, + ACTIONS(13849), 1, anon_sym_ATendunless, - [200031] = 1, - ACTIONS(13612), 1, + [205685] = 1, + ACTIONS(13851), 1, anon_sym_ATendif, - [200035] = 1, - ACTIONS(13614), 1, - anon_sym_RPAREN, - [200039] = 1, - ACTIONS(13616), 1, + [205689] = 1, + ACTIONS(13853), 1, anon_sym_ATendPrependOnce, - [200043] = 1, - ACTIONS(13618), 1, + [205693] = 1, + ACTIONS(13855), 1, anon_sym_ATendprepend, - [200047] = 1, - ACTIONS(13620), 1, + [205697] = 1, + ACTIONS(13857), 1, anon_sym_ATendPushIf, - [200051] = 1, - ACTIONS(13622), 1, + [205701] = 1, + ACTIONS(13859), 1, anon_sym_ATendPushOnce, - [200055] = 1, - ACTIONS(13624), 1, + [205705] = 1, + ACTIONS(13861), 1, anon_sym_ATendpush, - [200059] = 1, - ACTIONS(13626), 1, + [205709] = 1, + ACTIONS(13863), 1, anon_sym_ATendfragment, - [200063] = 1, - ACTIONS(13628), 1, + [205713] = 1, + ACTIONS(13865), 1, anon_sym_ATendphp, - [200067] = 1, - ACTIONS(13630), 1, + [205717] = 1, + ACTIONS(13867), 1, anon_sym_BANG_BANG_RBRACE, - [200071] = 1, - ACTIONS(13632), 1, + [205721] = 1, + ACTIONS(13869), 1, anon_sym_RBRACE_RBRACE, - [200075] = 1, - ACTIONS(13634), 1, - anon_sym_ATendcan, - [200079] = 1, - ACTIONS(13636), 1, - anon_sym_ATendcannot, - [200083] = 1, - ACTIONS(13638), 1, - anon_sym_ATendcanany, - [200087] = 1, - ACTIONS(13640), 1, + [205725] = 1, + ACTIONS(13871), 1, anon_sym_RPAREN, - [200091] = 1, - ACTIONS(13642), 1, - anon_sym_ATendfeature, - [200095] = 1, - ACTIONS(13644), 1, - aux_sym__custom_token3, - [200099] = 1, - ACTIONS(13646), 1, - anon_sym_ATendfor, - [200103] = 1, - ACTIONS(12345), 1, + [205729] = 1, + ACTIONS(13873), 1, + aux_sym_alpine_js_token2, + [205733] = 1, + ACTIONS(12498), 1, anon_sym_RPAREN, - [200107] = 1, - ACTIONS(13648), 1, - anon_sym_ATendforeach, - [200111] = 1, - ACTIONS(13650), 1, - anon_sym_ATendforelse, - [200115] = 1, - ACTIONS(13652), 1, - anon_sym_ATendwhile, - [200119] = 1, - ACTIONS(13654), 1, + [205737] = 1, + ACTIONS(13875), 1, + aux_sym_alpine_js_token2, + [205741] = 1, + ACTIONS(12504), 1, + anon_sym_RPAREN, + [205745] = 1, + ACTIONS(13877), 1, anon_sym_ATendvolt, - [200123] = 1, - ACTIONS(13656), 1, + [205749] = 1, + ACTIONS(13879), 1, anon_sym_ATendteleport, - [200127] = 1, - ACTIONS(13658), 1, + [205753] = 1, + ACTIONS(13881), 1, anon_sym_ATendpersist, - [200131] = 1, - ACTIONS(13660), 1, + [205757] = 1, + ACTIONS(13883), 1, anon_sym_ATendstory, - [200135] = 1, - ACTIONS(13662), 1, + [205761] = 1, + ACTIONS(13885), 1, anon_sym_ATendtask, - [200139] = 1, - ACTIONS(13664), 1, + [205765] = 1, + ACTIONS(13887), 1, anon_sym_ATendsetup, - [200143] = 1, - ACTIONS(13666), 1, + [205769] = 1, + ACTIONS(13889), 1, anon_sym_ATendwhile, - [200147] = 1, - ACTIONS(13668), 1, + [205773] = 1, + ACTIONS(13891), 1, anon_sym_ATendforelse, - [200151] = 1, - ACTIONS(13670), 1, + [205777] = 1, + ACTIONS(13893), 1, anon_sym_ATendforeach, - [200155] = 1, - ACTIONS(13672), 1, + [205781] = 1, + ACTIONS(13895), 1, anon_sym_ATendfor, - [200159] = 1, - ACTIONS(13674), 1, + [205785] = 1, + ACTIONS(13897), 1, aux_sym__custom_token3, - [200163] = 1, - ACTIONS(13676), 1, + [205789] = 1, + ACTIONS(13899), 1, anon_sym_ATendfeature, - [200167] = 1, - ACTIONS(13678), 1, + [205793] = 1, + ACTIONS(13901), 1, anon_sym_ATendcanany, - [200171] = 1, - ACTIONS(13680), 1, - anon_sym_ATendcannot, - [200175] = 1, - ACTIONS(13682), 1, + [205797] = 1, + ACTIONS(13903), 1, + aux_sym_alpine_js_token2, + [205801] = 1, + ACTIONS(13905), 1, anon_sym_ATendcan, - [200179] = 1, - ACTIONS(13684), 1, + [205805] = 1, + ACTIONS(13907), 1, anon_sym_ATenderror, - [200183] = 1, - ACTIONS(13686), 1, + [205809] = 1, + ACTIONS(13909), 1, anon_sym_ATendif, - [200187] = 1, - ACTIONS(13688), 1, + [205813] = 1, + ACTIONS(13911), 1, anon_sym_ATendif, - [200191] = 1, - ACTIONS(13690), 1, + [205817] = 1, + ACTIONS(13913), 1, anon_sym_ATendenv, - [200195] = 1, - ACTIONS(13692), 1, - anon_sym_ATendsetup, - [200199] = 1, - ACTIONS(13694), 1, + [205821] = 1, + ACTIONS(13915), 1, anon_sym_ATendguest, - [200203] = 1, - ACTIONS(13696), 1, + [205825] = 1, + ACTIONS(13917), 1, anon_sym_ATendauth, - [200207] = 1, - ACTIONS(13698), 1, + [205829] = 1, + ACTIONS(13919), 1, anon_sym_ATendempty, - [200211] = 1, - ACTIONS(13700), 1, + [205833] = 1, + ACTIONS(13921), 1, anon_sym_ATendisset, - [200215] = 1, - ACTIONS(13702), 1, + [205837] = 1, + ACTIONS(13923), 1, + anon_sym_ATendstory, + [205841] = 1, + ACTIONS(13925), 1, + anon_sym_ATendtask, + [205845] = 1, + ACTIONS(13927), 1, + anon_sym_ATendsetup, + [205849] = 1, + ACTIONS(13929), 1, anon_sym_ATendunless, - [200219] = 1, - ACTIONS(13704), 1, + [205853] = 1, + ACTIONS(13931), 1, anon_sym_ATendif, - [200223] = 1, - ACTIONS(13706), 1, + [205857] = 1, + ACTIONS(13933), 1, anon_sym_ATendPrependOnce, - [200227] = 1, - ACTIONS(13708), 1, + [205861] = 1, + ACTIONS(13935), 1, anon_sym_ATendprepend, - [200231] = 1, - ACTIONS(13710), 1, + [205865] = 1, + ACTIONS(13937), 1, anon_sym_ATendPushIf, - [200235] = 1, - ACTIONS(13712), 1, + [205869] = 1, + ACTIONS(13939), 1, anon_sym_ATendPushOnce, - [200239] = 1, - ACTIONS(13714), 1, + [205873] = 1, + ACTIONS(13941), 1, anon_sym_ATendpush, - [200243] = 1, - ACTIONS(13716), 1, - anon_sym_ATendtask, - [200247] = 1, - ACTIONS(13718), 1, - anon_sym_ATendstory, - [200251] = 1, - ACTIONS(13720), 1, + [205877] = 1, + ACTIONS(13943), 1, anon_sym_ATendfragment, - [200255] = 1, - ACTIONS(13722), 1, + [205881] = 1, + ACTIONS(13945), 1, anon_sym_ATendphp, - [200259] = 1, - ACTIONS(13724), 1, + [205885] = 1, + ACTIONS(13947), 1, anon_sym_BANG_BANG_RBRACE, - [200263] = 1, - ACTIONS(13726), 1, + [205889] = 1, + ACTIONS(13949), 1, anon_sym_RBRACE_RBRACE, - [200267] = 1, - ACTIONS(13728), 1, - anon_sym_ATendstory, - [200271] = 1, - ACTIONS(13730), 1, - anon_sym_ATendtask, - [200275] = 1, - ACTIONS(13732), 1, + [205893] = 1, + ACTIONS(13951), 1, + anon_sym_ATbreak, + [205897] = 1, + ACTIONS(13953), 1, anon_sym_RPAREN, - [200279] = 1, - ACTIONS(12327), 1, + [205901] = 1, + ACTIONS(12526), 1, anon_sym_RPAREN, - [200283] = 1, - ACTIONS(13734), 1, - anon_sym_ATendif, - [200287] = 1, - ACTIONS(13736), 1, + [205905] = 1, + ACTIONS(13955), 1, + aux_sym_alpine_js_token2, + [205909] = 1, + ACTIONS(13957), 1, anon_sym_ATendvolt, - [200291] = 1, - ACTIONS(13738), 1, + [205913] = 1, + ACTIONS(13959), 1, anon_sym_ATendteleport, - [200295] = 1, - ACTIONS(13740), 1, + [205917] = 1, + ACTIONS(13961), 1, anon_sym_ATendpersist, - [200299] = 1, - ACTIONS(13742), 1, + [205921] = 1, + ACTIONS(13963), 1, anon_sym_ATendstory, - [200303] = 1, - ACTIONS(13744), 1, + [205925] = 1, + ACTIONS(13965), 1, anon_sym_ATendtask, - [200307] = 1, - ACTIONS(13746), 1, + [205929] = 1, + ACTIONS(13967), 1, anon_sym_ATendsetup, - [200311] = 1, - ACTIONS(13748), 1, + [205933] = 1, + ACTIONS(13969), 1, anon_sym_ATendwhile, - [200315] = 1, - ACTIONS(13750), 1, + [205937] = 1, + ACTIONS(13971), 1, anon_sym_ATendforelse, - [200319] = 1, - ACTIONS(13752), 1, + [205941] = 1, + ACTIONS(13973), 1, anon_sym_ATendforeach, - [200323] = 1, - ACTIONS(13754), 1, + [205945] = 1, + ACTIONS(13975), 1, anon_sym_ATendfor, - [200327] = 1, - ACTIONS(13756), 1, + [205949] = 1, + ACTIONS(13977), 1, aux_sym__custom_token3, - [200331] = 1, - ACTIONS(13758), 1, + [205953] = 1, + ACTIONS(13979), 1, anon_sym_ATendfeature, - [200335] = 1, - ACTIONS(13760), 1, + [205957] = 1, + ACTIONS(13981), 1, anon_sym_ATendcanany, - [200339] = 1, - ACTIONS(13762), 1, + [205961] = 1, + ACTIONS(13983), 1, anon_sym_ATendcannot, - [200343] = 1, - ACTIONS(13764), 1, + [205965] = 1, + ACTIONS(13985), 1, anon_sym_ATendcan, - [200347] = 1, - ACTIONS(13766), 1, + [205969] = 1, + ACTIONS(13987), 1, anon_sym_ATenderror, - [200351] = 1, - ACTIONS(13768), 1, + [205973] = 1, + ACTIONS(13989), 1, + anon_sym_ATendwhile, + [205977] = 1, + ACTIONS(13991), 1, anon_sym_ATendif, - [200355] = 1, - ACTIONS(13770), 1, - anon_sym_RBRACE_RBRACE, - [200359] = 1, - ACTIONS(13772), 1, + [205981] = 1, + ACTIONS(13993), 1, + anon_sym_ATendif, + [205985] = 1, + ACTIONS(13995), 1, anon_sym_ATendenv, - [200363] = 1, - ACTIONS(13774), 1, - anon_sym_ATendpersist, - [200367] = 1, - ACTIONS(13776), 1, + [205989] = 1, + ACTIONS(13997), 1, + anon_sym_RPAREN, + [205993] = 1, + ACTIONS(13999), 1, anon_sym_ATendguest, - [200371] = 1, - ACTIONS(13778), 1, + [205997] = 1, + ACTIONS(14001), 1, anon_sym_ATendauth, - [200375] = 1, - ACTIONS(13780), 1, + [206001] = 1, + ACTIONS(14003), 1, anon_sym_ATendempty, - [200379] = 1, - ACTIONS(13782), 1, + [206005] = 1, + ACTIONS(14005), 1, anon_sym_ATendisset, - [200383] = 1, - ACTIONS(13784), 1, + [206009] = 1, + ACTIONS(14007), 1, anon_sym_ATendunless, - [200387] = 1, - ACTIONS(13786), 1, + [206013] = 1, + ACTIONS(14009), 1, anon_sym_ATendif, - [200391] = 1, - ACTIONS(13788), 1, - anon_sym_ATendcan, - [200395] = 1, - ACTIONS(13790), 1, + [206017] = 1, + ACTIONS(14011), 1, anon_sym_ATendPrependOnce, - [200399] = 1, - ACTIONS(13792), 1, - anon_sym_ATendwhile, - [200403] = 1, - ACTIONS(13794), 1, + [206021] = 1, + ACTIONS(14013), 1, anon_sym_ATendprepend, - [200407] = 1, - ACTIONS(13796), 1, + [206025] = 1, + ACTIONS(14015), 1, anon_sym_ATendPushIf, - [200411] = 1, - ACTIONS(13798), 1, + [206029] = 1, + ACTIONS(14017), 1, anon_sym_ATendPushOnce, - [200415] = 1, - ACTIONS(13800), 1, + [206033] = 1, + ACTIONS(14019), 1, anon_sym_ATendpush, - [200419] = 1, - ACTIONS(13802), 1, - anon_sym_ATbreak, - [200423] = 1, - ACTIONS(13804), 1, + [206037] = 1, + ACTIONS(14021), 1, anon_sym_ATendfragment, - [200427] = 1, - ACTIONS(13806), 1, + [206041] = 1, + ACTIONS(14023), 1, anon_sym_ATendphp, - [200431] = 1, - ACTIONS(13808), 1, + [206045] = 1, + ACTIONS(14025), 1, anon_sym_BANG_BANG_RBRACE, - [200435] = 1, - ACTIONS(13810), 1, + [206049] = 1, + ACTIONS(14027), 1, anon_sym_RBRACE_RBRACE, - [200439] = 1, - ACTIONS(13812), 1, - anon_sym_ATendteleport, - [200443] = 1, - ACTIONS(13814), 1, - anon_sym_RPAREN, - [200447] = 1, - ACTIONS(13816), 1, - anon_sym_ATendvolt, - [200451] = 1, - ACTIONS(13818), 1, + [206053] = 1, + ACTIONS(14029), 1, anon_sym_RPAREN, - [200455] = 1, - ACTIONS(12303), 1, + [206057] = 1, + ACTIONS(12556), 1, anon_sym_RPAREN, - [200459] = 1, - ACTIONS(13820), 1, + [206061] = 1, + ACTIONS(14031), 1, + anon_sym_ATendpersist, + [206065] = 1, + ACTIONS(14033), 1, anon_sym_ATendvolt, - [200463] = 1, - ACTIONS(13822), 1, + [206069] = 1, + ACTIONS(14035), 1, anon_sym_ATendteleport, - [200467] = 1, - ACTIONS(13824), 1, - anon_sym_ATendpersist, - [200471] = 1, - ACTIONS(13826), 1, + [206073] = 1, + ACTIONS(14037), 1, + anon_sym_RPAREN, + [206077] = 1, + ACTIONS(14039), 1, anon_sym_ATendstory, - [200475] = 1, - ACTIONS(13828), 1, - anon_sym_ATendisset, - [200479] = 1, - ACTIONS(13830), 1, + [206081] = 1, + ACTIONS(14041), 1, + anon_sym_ATendtask, + [206085] = 1, + ACTIONS(14043), 1, anon_sym_ATendsetup, - [200483] = 1, - ACTIONS(13832), 1, + [206089] = 1, + ACTIONS(14045), 1, anon_sym_ATendwhile, - [200487] = 1, - ACTIONS(13834), 1, + [206093] = 1, + ACTIONS(14047), 1, anon_sym_ATendforelse, - [200491] = 1, - ACTIONS(13836), 1, + [206097] = 1, + ACTIONS(14049), 1, anon_sym_ATendforeach, - [200495] = 1, - ACTIONS(13838), 1, + [206101] = 1, + ACTIONS(14051), 1, + anon_sym_ATendforeach, + [206105] = 1, + ACTIONS(14053), 1, + anon_sym_ATendfor, + [206109] = 1, + ACTIONS(14055), 1, anon_sym_ATendfor, - [200499] = 1, - ACTIONS(13840), 1, + [206113] = 1, + ACTIONS(14057), 1, aux_sym__custom_token3, - [200503] = 1, - ACTIONS(13842), 1, + [206117] = 1, + ACTIONS(14059), 1, anon_sym_ATendfeature, - [200507] = 1, - ACTIONS(13844), 1, + [206121] = 1, + ACTIONS(14061), 1, anon_sym_ATendcanany, - [200511] = 1, - ACTIONS(13846), 1, + [206125] = 1, + ACTIONS(14063), 1, anon_sym_ATendcannot, - [200515] = 1, - ACTIONS(13848), 1, + [206129] = 1, + ACTIONS(14065), 1, anon_sym_ATendcan, - [200519] = 1, - ACTIONS(13850), 1, - anon_sym_ATendforelse, - [200523] = 1, - ACTIONS(13852), 1, - anon_sym_ATendforeach, - [200527] = 1, - ACTIONS(13854), 1, - anon_sym_ATendfor, - [200531] = 1, - ACTIONS(13856), 1, + [206133] = 1, + ACTIONS(14067), 1, anon_sym_ATenderror, - [200535] = 1, - ACTIONS(13858), 1, + [206137] = 1, + ACTIONS(14069), 1, anon_sym_ATendif, - [200539] = 1, - ACTIONS(13860), 1, + [206141] = 1, + ACTIONS(14071), 1, anon_sym_ATendif, - [200543] = 1, - ACTIONS(13862), 1, + [206145] = 1, + ACTIONS(14073), 1, anon_sym_ATendenv, - [200547] = 1, - ACTIONS(13864), 1, + [206149] = 1, + ACTIONS(14075), 1, anon_sym_ATendguest, - [200551] = 1, - ACTIONS(13866), 1, + [206153] = 1, + ACTIONS(14077), 1, anon_sym_ATendauth, - [200555] = 1, - ACTIONS(13868), 1, + [206157] = 1, + ACTIONS(14079), 1, anon_sym_ATendempty, - [200559] = 1, - ACTIONS(13870), 1, + [206161] = 1, + ACTIONS(14081), 1, anon_sym_ATendisset, - [200563] = 1, - ACTIONS(13872), 1, + [206165] = 1, + ACTIONS(14083), 1, anon_sym_ATendunless, - [200567] = 1, - ACTIONS(13874), 1, + [206169] = 1, + ACTIONS(14085), 1, anon_sym_ATendif, - [200571] = 1, - ACTIONS(13876), 1, + [206173] = 1, + ACTIONS(14087), 1, anon_sym_ATendPrependOnce, - [200575] = 1, - ACTIONS(13878), 1, + [206177] = 1, + ACTIONS(14089), 1, anon_sym_ATendprepend, - [200579] = 1, - ACTIONS(13880), 1, + [206181] = 1, + ACTIONS(14091), 1, anon_sym_ATendPushIf, - [200583] = 1, - ACTIONS(13882), 1, + [206185] = 1, + ACTIONS(14093), 1, anon_sym_ATendPushOnce, - [200587] = 1, - ACTIONS(13884), 1, + [206189] = 1, + ACTIONS(14095), 1, anon_sym_ATendpush, - [200591] = 1, - ACTIONS(12297), 1, - anon_sym_RPAREN, - [200595] = 1, - ACTIONS(13886), 1, + [206193] = 1, + ACTIONS(14097), 1, anon_sym_ATendfragment, - [200599] = 1, - ACTIONS(13888), 1, + [206197] = 1, + ACTIONS(14099), 1, anon_sym_ATendphp, - [200603] = 1, - ACTIONS(13890), 1, + [206201] = 1, + ACTIONS(14101), 1, anon_sym_BANG_BANG_RBRACE, - [200607] = 1, - ACTIONS(13892), 1, - anon_sym_ATenderror, - [200611] = 1, - ACTIONS(13894), 1, - anon_sym_RPAREN, - [200615] = 1, - ACTIONS(13896), 1, + [206205] = 1, + ACTIONS(14103), 1, + anon_sym_RBRACE_RBRACE, + [206209] = 1, + ACTIONS(14105), 1, anon_sym_RPAREN, - [200619] = 1, - ACTIONS(12291), 1, + [206213] = 1, + ACTIONS(12536), 1, anon_sym_RPAREN, - [200623] = 1, - ACTIONS(13898), 1, + [206217] = 1, + ACTIONS(14107), 1, + aux_sym_alpine_js_token2, + [206221] = 1, + ACTIONS(14109), 1, anon_sym_ATendvolt, - [200627] = 1, - ACTIONS(13900), 1, + [206225] = 1, + ACTIONS(14111), 1, anon_sym_ATendteleport, - [200631] = 1, - ACTIONS(13902), 1, + [206229] = 1, + ACTIONS(14113), 1, anon_sym_ATendpersist, - [200635] = 1, - ACTIONS(13904), 1, + [206233] = 1, + ACTIONS(14115), 1, anon_sym_ATendstory, - [200639] = 1, - ACTIONS(13906), 1, + [206237] = 1, + ACTIONS(14117), 1, + aux_sym__custom_token3, + [206241] = 1, + ACTIONS(14119), 1, + anon_sym_ATendfeature, + [206245] = 1, + ACTIONS(14121), 1, anon_sym_ATendtask, - [200643] = 1, - ACTIONS(13908), 1, + [206249] = 1, + ACTIONS(14123), 1, anon_sym_ATendsetup, - [200647] = 1, - ACTIONS(13910), 1, + [206253] = 1, + ACTIONS(14125), 1, anon_sym_ATendwhile, - [200651] = 1, - ACTIONS(13912), 1, + [206257] = 1, + ACTIONS(14127), 1, anon_sym_ATendforelse, - [200655] = 1, - ACTIONS(13914), 1, - aux_sym__custom_token3, - [200659] = 1, - ACTIONS(13916), 1, + [206261] = 1, + ACTIONS(14129), 1, anon_sym_ATendforeach, - [200663] = 1, - ACTIONS(13918), 1, + [206265] = 1, + ACTIONS(14131), 1, anon_sym_ATendfor, - [200667] = 1, - ACTIONS(13920), 1, + [206269] = 1, + ACTIONS(14133), 1, aux_sym__custom_token3, - [200671] = 1, - ACTIONS(13922), 1, + [206273] = 1, + ACTIONS(14135), 1, anon_sym_ATendfeature, - [200675] = 1, - ACTIONS(13924), 1, + [206277] = 1, + ACTIONS(14137), 1, anon_sym_ATendcanany, - [200679] = 1, - ACTIONS(13926), 1, + [206281] = 1, + ACTIONS(14139), 1, anon_sym_ATendcannot, - [200683] = 1, - ACTIONS(13928), 1, + [206285] = 1, + ACTIONS(14141), 1, anon_sym_ATendcan, - [200687] = 1, - ACTIONS(13930), 1, + [206289] = 1, + ACTIONS(14143), 1, anon_sym_ATenderror, - [200691] = 1, - ACTIONS(13932), 1, + [206293] = 1, + ACTIONS(14145), 1, anon_sym_ATendif, - [200695] = 1, - ACTIONS(13934), 1, + [206297] = 1, + ACTIONS(14147), 1, anon_sym_ATendif, - [200699] = 1, - ACTIONS(13936), 1, + [206301] = 1, + ACTIONS(14149), 1, anon_sym_ATendenv, - [200703] = 1, - ACTIONS(13938), 1, + [206305] = 1, + ACTIONS(14151), 1, anon_sym_ATendguest, - [200707] = 1, - ACTIONS(13940), 1, + [206309] = 1, + ACTIONS(14153), 1, anon_sym_ATendauth, - [200711] = 1, - ACTIONS(13942), 1, + [206313] = 1, + ACTIONS(14155), 1, anon_sym_ATendempty, - [200715] = 1, - ACTIONS(13944), 1, + [206317] = 1, + ACTIONS(14157), 1, anon_sym_ATendisset, - [200719] = 1, - ACTIONS(13946), 1, + [206321] = 1, + ACTIONS(14159), 1, anon_sym_ATendunless, - [200723] = 1, - ACTIONS(13948), 1, + [206325] = 1, + ACTIONS(14161), 1, anon_sym_ATendif, - [200727] = 1, - ACTIONS(13950), 1, + [206329] = 1, + ACTIONS(14163), 1, anon_sym_ATendPrependOnce, - [200731] = 1, - ACTIONS(13952), 1, + [206333] = 1, + ACTIONS(14165), 1, anon_sym_ATendprepend, - [200735] = 1, - ACTIONS(13954), 1, + [206337] = 1, + ACTIONS(14167), 1, anon_sym_ATendPushIf, - [200739] = 1, - ACTIONS(13956), 1, + [206341] = 1, + ACTIONS(14169), 1, anon_sym_ATendPushOnce, - [200743] = 1, - ACTIONS(13958), 1, + [206345] = 1, + ACTIONS(14171), 1, anon_sym_ATendpush, - [200747] = 1, - ACTIONS(13960), 1, + [206349] = 1, + ACTIONS(14173), 1, anon_sym_ATendfragment, - [200751] = 1, - ACTIONS(13962), 1, + [206353] = 1, + ACTIONS(14175), 1, anon_sym_ATendphp, - [200755] = 1, - ACTIONS(13964), 1, + [206357] = 1, + ACTIONS(14177), 1, anon_sym_BANG_BANG_RBRACE, - [200759] = 1, - ACTIONS(13966), 1, + [206361] = 1, + ACTIONS(14179), 1, anon_sym_RBRACE_RBRACE, - [200763] = 1, - ACTIONS(13968), 1, - anon_sym_RBRACE_RBRACE, - [200767] = 1, - ACTIONS(13970), 1, - anon_sym_RPAREN, - [200771] = 1, - ACTIONS(13972), 1, - anon_sym_BANG_BANG_RBRACE, - [200775] = 1, - ACTIONS(13974), 1, - anon_sym_ATendfeature, - [200779] = 1, - ACTIONS(13976), 1, + [206365] = 1, + ACTIONS(14181), 1, anon_sym_ATendcanany, - [200783] = 1, - ACTIONS(13978), 1, + [206369] = 1, + ACTIONS(14183), 1, anon_sym_ATendcannot, - [200787] = 1, - ACTIONS(13980), 1, - anon_sym_ATendphp, - [200791] = 1, - ACTIONS(13982), 1, - anon_sym_ATendfragment, - [200795] = 1, - ACTIONS(12313), 1, + [206373] = 1, + ACTIONS(14185), 1, + anon_sym_ATendcan, + [206377] = 1, + ACTIONS(14187), 1, + anon_sym_ATendforelse, + [206381] = 1, + ACTIONS(12468), 1, anon_sym_RPAREN, - [200799] = 1, - ACTIONS(13984), 1, - anon_sym_ATendpush, - [200803] = 1, - ACTIONS(13986), 1, - anon_sym_ATendPushOnce, - [200807] = 1, - ACTIONS(13988), 1, + [206385] = 1, + ACTIONS(14189), 1, + aux_sym_alpine_js_token2, + [206389] = 1, + ACTIONS(14191), 1, anon_sym_ATendvolt, - [200811] = 1, - ACTIONS(13990), 1, + [206393] = 1, + ACTIONS(14193), 1, anon_sym_ATendteleport, - [200815] = 1, - ACTIONS(13992), 1, + [206397] = 1, + ACTIONS(14195), 1, anon_sym_ATendpersist, - [200819] = 1, - ACTIONS(13994), 1, + [206401] = 1, + ACTIONS(14197), 1, anon_sym_ATendstory, - [200823] = 1, - ACTIONS(13996), 1, + [206405] = 1, + ACTIONS(14199), 1, anon_sym_ATendtask, - [200827] = 1, - ACTIONS(13998), 1, + [206409] = 1, + ACTIONS(14201), 1, anon_sym_ATendsetup, - [200831] = 1, - ACTIONS(14000), 1, + [206413] = 1, + ACTIONS(14203), 1, anon_sym_ATendwhile, - [200835] = 1, - ACTIONS(14002), 1, + [206417] = 1, + ACTIONS(14205), 1, anon_sym_ATendforelse, - [200839] = 1, - ACTIONS(14004), 1, + [206421] = 1, + ACTIONS(14207), 1, anon_sym_ATendforeach, - [200843] = 1, - ACTIONS(14006), 1, + [206425] = 1, + ACTIONS(14209), 1, anon_sym_ATendfor, - [200847] = 1, - ACTIONS(14008), 1, + [206429] = 1, + ACTIONS(14211), 1, aux_sym__custom_token3, - [200851] = 1, - ACTIONS(14010), 1, + [206433] = 1, + ACTIONS(14213), 1, anon_sym_ATendfeature, - [200855] = 1, - ACTIONS(14012), 1, + [206437] = 1, + ACTIONS(14215), 1, anon_sym_ATendcanany, - [200859] = 1, - ACTIONS(14014), 1, + [206441] = 1, + ACTIONS(14217), 1, anon_sym_ATendcannot, - [200863] = 1, - ACTIONS(14016), 1, + [206445] = 1, + ACTIONS(14219), 1, anon_sym_ATendcan, - [200867] = 1, - ACTIONS(14018), 1, - anon_sym_ATendphp, - [200871] = 1, - ACTIONS(14020), 1, + [206449] = 1, + ACTIONS(14221), 1, + anon_sym_ATenderror, + [206453] = 1, + ACTIONS(14223), 1, anon_sym_ATendif, - [200875] = 1, - ACTIONS(14022), 1, + [206457] = 1, + ACTIONS(14225), 1, anon_sym_ATendif, - [200879] = 1, - ACTIONS(14024), 1, + [206461] = 1, + ACTIONS(14227), 1, anon_sym_ATendenv, - [200883] = 1, - ACTIONS(14026), 1, - anon_sym_ATendPushIf, - [200887] = 1, - ACTIONS(14028), 1, + [206465] = 1, + ACTIONS(14229), 1, anon_sym_ATendguest, - [200891] = 1, - ACTIONS(14030), 1, + [206469] = 1, + ACTIONS(14231), 1, anon_sym_ATendauth, - [200895] = 1, - ACTIONS(14032), 1, + [206473] = 1, + ACTIONS(14233), 1, anon_sym_ATendempty, - [200899] = 1, - ACTIONS(14034), 1, + [206477] = 1, + ACTIONS(14235), 1, anon_sym_ATendisset, - [200903] = 1, - ACTIONS(14036), 1, - anon_sym_ATendisset, - [200907] = 1, - ACTIONS(14038), 1, + [206481] = 1, + ACTIONS(14237), 1, anon_sym_ATendunless, - [200911] = 1, - ACTIONS(14040), 1, - anon_sym_ATenderror, - [200915] = 1, - ACTIONS(14042), 1, + [206485] = 1, + ACTIONS(14239), 1, anon_sym_ATendif, - [200919] = 1, - ACTIONS(14044), 1, + [206489] = 1, + ACTIONS(14241), 1, anon_sym_ATendPrependOnce, - [200923] = 1, - ACTIONS(14046), 1, + [206493] = 1, + ACTIONS(14243), 1, anon_sym_ATendprepend, - [200927] = 1, - ACTIONS(14048), 1, + [206497] = 1, + ACTIONS(14245), 1, + anon_sym_ATendunless, + [206501] = 1, + ACTIONS(14247), 1, + anon_sym_ATenderror, + [206505] = 1, + ACTIONS(14249), 1, anon_sym_ATendPushIf, - [200931] = 1, - ACTIONS(14050), 1, + [206509] = 1, + ACTIONS(14251), 1, anon_sym_ATendPushOnce, - [200935] = 1, - ACTIONS(14052), 1, + [206513] = 1, + ACTIONS(14253), 1, anon_sym_ATendpush, - [200939] = 1, - ACTIONS(14054), 1, - anon_sym_ATendprepend, - [200943] = 1, - ACTIONS(14056), 1, - anon_sym_ATendPrependOnce, - [200947] = 1, - ACTIONS(14058), 1, + [206517] = 1, + ACTIONS(14255), 1, anon_sym_ATendfragment, - [200951] = 1, - ACTIONS(14060), 1, - anon_sym_ATendguest, - [200955] = 1, - ACTIONS(14062), 1, + [206521] = 1, + ACTIONS(14257), 1, + anon_sym_ATendphp, + [206525] = 1, + ACTIONS(14259), 1, anon_sym_BANG_BANG_RBRACE, - [200959] = 1, - ACTIONS(14064), 1, + [206529] = 1, + ACTIONS(14261), 1, anon_sym_RBRACE_RBRACE, - [200963] = 1, - ACTIONS(14066), 1, - anon_sym_ATendif, - [200967] = 1, - ACTIONS(14068), 1, - anon_sym_ATendunless, - [200971] = 1, - ACTIONS(14070), 1, - anon_sym_ATendisset, - [200975] = 1, - ACTIONS(14072), 1, + [206533] = 1, + ACTIONS(14263), 1, anon_sym_RPAREN, - [200979] = 1, - ACTIONS(14074), 1, - anon_sym_ATendempty, - [200983] = 1, - ACTIONS(14076), 1, - anon_sym_ATendauth, - [200987] = 1, - ACTIONS(12269), 1, + [206537] = 1, + ACTIONS(12422), 1, anon_sym_RPAREN, - [200991] = 1, - ACTIONS(14078), 1, - anon_sym_ATendguest, - [200995] = 1, - ACTIONS(14080), 1, + [206541] = 1, + ACTIONS(14265), 1, + aux_sym_alpine_js_token2, + [206545] = 1, + ACTIONS(14267), 1, + anon_sym_ATendvolt, + [206549] = 1, + ACTIONS(14269), 1, + anon_sym_ATendteleport, + [206553] = 1, + ACTIONS(14271), 1, + anon_sym_ATendpersist, + [206557] = 1, + ACTIONS(14273), 1, + anon_sym_ATendstory, + [206561] = 1, + ACTIONS(14275), 1, + anon_sym_ATendtask, + [206565] = 1, + ACTIONS(14277), 1, + anon_sym_ATendsetup, + [206569] = 1, + ACTIONS(14279), 1, + anon_sym_ATendwhile, + [206573] = 1, + ACTIONS(14281), 1, + anon_sym_BANG_BANG_RBRACE, + [206577] = 1, + ACTIONS(14283), 1, + anon_sym_ATendforeach, + [206581] = 1, + ACTIONS(14285), 1, + anon_sym_ATendfor, + [206585] = 1, + ACTIONS(14287), 1, + aux_sym__custom_token3, + [206589] = 1, + ACTIONS(14289), 1, + anon_sym_ATendfeature, + [206593] = 1, + ACTIONS(14291), 1, + anon_sym_ATendcanany, + [206597] = 1, + ACTIONS(14293), 1, + anon_sym_ATendcannot, + [206601] = 1, + ACTIONS(14295), 1, + anon_sym_ATendcan, + [206605] = 1, + ACTIONS(14297), 1, + anon_sym_ATenderror, + [206609] = 1, + ACTIONS(14299), 1, + anon_sym_ATendif, + [206613] = 1, + ACTIONS(14301), 1, + anon_sym_ATendif, + [206617] = 1, + ACTIONS(14303), 1, anon_sym_ATendenv, - [200999] = 1, - ACTIONS(14082), 1, + [206621] = 1, + ACTIONS(14305), 1, + anon_sym_ATendguest, + [206625] = 1, + ACTIONS(14307), 1, + anon_sym_ATendauth, + [206629] = 1, + ACTIONS(14309), 1, + anon_sym_ATendempty, + [206633] = 1, + ACTIONS(14311), 1, + anon_sym_ATendif, + [206637] = 1, + ACTIONS(14313), 1, anon_sym_ATendif, - [201003] = 1, - ACTIONS(14084), 1, + [206641] = 1, + ACTIONS(14315), 1, + anon_sym_ATendisset, + [206645] = 1, + ACTIONS(14317), 1, + anon_sym_ATendunless, + [206649] = 1, + ACTIONS(14319), 1, + anon_sym_ATendif, + [206653] = 1, + ACTIONS(14321), 1, + anon_sym_ATendPrependOnce, + [206657] = 1, + ACTIONS(14323), 1, + anon_sym_ATendprepend, + [206661] = 1, + ACTIONS(14325), 1, + anon_sym_ATendPushIf, + [206665] = 1, + ACTIONS(14327), 1, + anon_sym_ATendPushOnce, + [206669] = 1, + ACTIONS(14329), 1, + anon_sym_ATendpush, + [206673] = 1, + ACTIONS(14331), 1, + anon_sym_ATendfragment, + [206677] = 1, + ACTIONS(14333), 1, + anon_sym_ATendphp, + [206681] = 1, + ACTIONS(14335), 1, + anon_sym_ATendguest, + [206685] = 1, + ACTIONS(14337), 1, + anon_sym_RBRACE_RBRACE, + [206689] = 1, + ACTIONS(14339), 1, + anon_sym_RPAREN, + [206693] = 1, + ACTIONS(12360), 1, + anon_sym_RPAREN, + [206697] = 1, + ACTIONS(14341), 1, + aux_sym_alpine_js_token2, + [206701] = 1, + ACTIONS(14343), 1, anon_sym_ATendvolt, - [201007] = 1, - ACTIONS(14086), 1, + [206705] = 1, + ACTIONS(14345), 1, anon_sym_ATendteleport, - [201011] = 1, - ACTIONS(14088), 1, + [206709] = 1, + ACTIONS(14347), 1, anon_sym_ATendpersist, - [201015] = 1, - ACTIONS(14090), 1, + [206713] = 1, + ACTIONS(14349), 1, anon_sym_ATendstory, - [201019] = 1, - ACTIONS(14092), 1, + [206717] = 1, + ACTIONS(14351), 1, anon_sym_ATendtask, - [201023] = 1, - ACTIONS(14094), 1, + [206721] = 1, + ACTIONS(14353), 1, anon_sym_ATendsetup, - [201027] = 1, - ACTIONS(14096), 1, + [206725] = 1, + ACTIONS(14355), 1, anon_sym_ATendwhile, - [201031] = 1, - ACTIONS(14098), 1, + [206729] = 1, + ACTIONS(14357), 1, anon_sym_ATendforelse, - [201035] = 1, - ACTIONS(14100), 1, + [206733] = 1, + ACTIONS(14359), 1, anon_sym_ATendforeach, - [201039] = 1, - ACTIONS(14102), 1, - anon_sym_ATendif, - [201043] = 1, - ACTIONS(14104), 1, + [206737] = 1, + ACTIONS(14361), 1, anon_sym_ATendfor, - [201047] = 1, - ACTIONS(14106), 1, + [206741] = 1, + ACTIONS(14363), 1, aux_sym__custom_token3, - [201051] = 1, - ACTIONS(14108), 1, + [206745] = 1, + ACTIONS(14365), 1, anon_sym_ATendfeature, - [201055] = 1, - ACTIONS(14110), 1, + [206749] = 1, + ACTIONS(14367), 1, anon_sym_ATendcanany, - [201059] = 1, - ACTIONS(14112), 1, + [206753] = 1, + ACTIONS(14369), 1, anon_sym_ATendcannot, - [201063] = 1, - ACTIONS(14114), 1, + [206757] = 1, + ACTIONS(14371), 1, anon_sym_ATendcan, - [201067] = 1, - ACTIONS(14116), 1, + [206761] = 1, + ACTIONS(14373), 1, + anon_sym_ATendenv, + [206765] = 1, + ACTIONS(14375), 1, + anon_sym_ATendguest, + [206769] = 1, + ACTIONS(14377), 1, + anon_sym_ATendauth, + [206773] = 1, + ACTIONS(14379), 1, anon_sym_ATenderror, - [201071] = 1, - ACTIONS(14118), 1, + [206777] = 1, + ACTIONS(14381), 1, anon_sym_ATendif, - [201075] = 1, - ACTIONS(14120), 1, + [206781] = 1, + ACTIONS(14383), 1, anon_sym_ATendif, - [201079] = 1, - ACTIONS(14122), 1, + [206785] = 1, + ACTIONS(14385), 1, anon_sym_ATendenv, - [201083] = 1, - ACTIONS(14124), 1, - anon_sym_ATendif, - [201087] = 1, - ACTIONS(14126), 1, + [206789] = 1, + ACTIONS(14387), 1, anon_sym_ATendguest, - [201091] = 1, - ACTIONS(14128), 1, + [206793] = 1, + ACTIONS(14389), 1, anon_sym_ATendauth, - [201095] = 1, - ACTIONS(14130), 1, + [206797] = 1, + ACTIONS(14391), 1, anon_sym_ATendempty, - [201099] = 1, - ACTIONS(14132), 1, + [206801] = 1, + ACTIONS(14393), 1, anon_sym_ATendisset, - [201103] = 1, - ACTIONS(14134), 1, + [206805] = 1, + ACTIONS(14395), 1, anon_sym_ATendunless, - [201107] = 1, - ACTIONS(14136), 1, + [206809] = 1, + ACTIONS(14397), 1, anon_sym_ATendif, - [201111] = 1, - ACTIONS(14138), 1, + [206813] = 1, + ACTIONS(14399), 1, anon_sym_ATendPrependOnce, - [201115] = 1, - ACTIONS(14140), 1, + [206817] = 1, + ACTIONS(14401), 1, anon_sym_ATendprepend, - [201119] = 1, - ACTIONS(14142), 1, + [206821] = 1, + ACTIONS(14403), 1, anon_sym_ATendPushIf, - [201123] = 1, - ACTIONS(14144), 1, + [206825] = 1, + ACTIONS(14405), 1, anon_sym_ATendPushOnce, - [201127] = 1, - ACTIONS(14146), 1, + [206829] = 1, + ACTIONS(14407), 1, anon_sym_ATendpush, - [201131] = 1, - ACTIONS(14148), 1, - anon_sym_ATenderror, - [201135] = 1, - ACTIONS(14150), 1, + [206833] = 1, + ACTIONS(14409), 1, anon_sym_ATendfragment, - [201139] = 1, - ACTIONS(14152), 1, + [206837] = 1, + ACTIONS(14411), 1, anon_sym_ATendphp, - [201143] = 1, - ACTIONS(14154), 1, + [206841] = 1, + ACTIONS(14413), 1, anon_sym_BANG_BANG_RBRACE, - [201147] = 1, - ACTIONS(14156), 1, + [206845] = 1, + ACTIONS(14415), 1, anon_sym_RBRACE_RBRACE, - [201151] = 1, - ACTIONS(14158), 1, - anon_sym_ATendcan, - [201155] = 1, - ACTIONS(14160), 1, + [206849] = 1, + ACTIONS(14417), 1, anon_sym_RPAREN, - [201159] = 1, - ACTIONS(14162), 1, - anon_sym_ATendif, - [201163] = 1, - ACTIONS(14164), 1, - anon_sym_ATendenv, - [201167] = 1, - ACTIONS(14166), 1, - anon_sym_ATendguest, - [201171] = 1, - ACTIONS(14168), 1, - anon_sym_ATendcannot, - [201175] = 1, - ACTIONS(14170), 1, - anon_sym_ATendcanany, - [201179] = 1, - ACTIONS(14172), 1, - anon_sym_ATendfeature, - [201183] = 1, - ACTIONS(14174), 1, - aux_sym__custom_token3, - [201187] = 1, - ACTIONS(12257), 1, + [206853] = 1, + ACTIONS(12350), 1, anon_sym_RPAREN, - [201191] = 1, - ACTIONS(14176), 1, - anon_sym_ATendfor, - [201195] = 1, - ACTIONS(14178), 1, - anon_sym_ATendforeach, - [201199] = 1, - ACTIONS(14180), 1, + [206857] = 1, + ACTIONS(14419), 1, + aux_sym_alpine_js_token2, + [206861] = 1, + ACTIONS(14421), 1, anon_sym_ATendvolt, - [201203] = 1, - ACTIONS(14182), 1, + [206865] = 1, + ACTIONS(14423), 1, anon_sym_ATendteleport, - [201207] = 1, - ACTIONS(14184), 1, + [206869] = 1, + ACTIONS(14425), 1, anon_sym_ATendpersist, - [201211] = 1, - ACTIONS(14186), 1, + [206873] = 1, + ACTIONS(14427), 1, anon_sym_ATendstory, - [201215] = 1, - ACTIONS(14188), 1, + [206877] = 1, + ACTIONS(14429), 1, anon_sym_ATendtask, - [201219] = 1, - ACTIONS(14190), 1, + [206881] = 1, + ACTIONS(14431), 1, anon_sym_ATendsetup, - [201223] = 1, - ACTIONS(14192), 1, + [206885] = 1, + ACTIONS(14433), 1, anon_sym_ATendwhile, - [201227] = 1, - ACTIONS(14194), 1, + [206889] = 1, + ACTIONS(14435), 1, anon_sym_ATendforelse, - [201231] = 1, - ACTIONS(14196), 1, + [206893] = 1, + ACTIONS(14437), 1, anon_sym_ATendforeach, - [201235] = 1, - ACTIONS(14198), 1, + [206897] = 1, + ACTIONS(14439), 1, + anon_sym_ATendempty, + [206901] = 1, + ACTIONS(14441), 1, + anon_sym_ATendisset, + [206905] = 1, + ACTIONS(14443), 1, anon_sym_ATendfor, - [201239] = 1, - ACTIONS(14200), 1, + [206909] = 1, + ACTIONS(14445), 1, aux_sym__custom_token3, - [201243] = 1, - ACTIONS(14202), 1, + [206913] = 1, + ACTIONS(14447), 1, anon_sym_ATendfeature, - [201247] = 1, - ACTIONS(14204), 1, + [206917] = 1, + ACTIONS(14449), 1, anon_sym_ATendcanany, - [201251] = 1, - ACTIONS(14206), 1, + [206921] = 1, + ACTIONS(14451), 1, anon_sym_ATendcannot, - [201255] = 1, - ACTIONS(14208), 1, + [206925] = 1, + ACTIONS(14453), 1, anon_sym_ATendcan, - [201259] = 1, - ACTIONS(14210), 1, + [206929] = 1, + ACTIONS(14455), 1, anon_sym_ATenderror, - [201263] = 1, - ACTIONS(14212), 1, + [206933] = 1, + ACTIONS(14457), 1, anon_sym_ATendif, - [201267] = 1, - ACTIONS(14214), 1, + [206937] = 1, + ACTIONS(14459), 1, anon_sym_ATendif, - [201271] = 1, - ACTIONS(14216), 1, + [206941] = 1, + ACTIONS(14461), 1, anon_sym_ATendenv, - [201275] = 1, - ACTIONS(14218), 1, - anon_sym_ATendforelse, - [201279] = 1, - ACTIONS(14220), 1, - anon_sym_ATendvolt, - [201283] = 1, - ACTIONS(14222), 1, - anon_sym_ATendauth, - [201287] = 1, - ACTIONS(14224), 1, + [206945] = 1, + ACTIONS(14463), 1, + anon_sym_ATenderror, + [206949] = 1, + ACTIONS(14465), 1, anon_sym_ATendauth, - [201291] = 1, - ACTIONS(14226), 1, - anon_sym_ATendempty, - [201295] = 1, - ACTIONS(14228), 1, + [206953] = 1, + ACTIONS(14467), 1, anon_sym_ATendempty, - [201299] = 1, - ACTIONS(14230), 1, + [206957] = 1, + ACTIONS(14469), 1, anon_sym_ATendisset, - [201303] = 1, - ACTIONS(14232), 1, + [206961] = 1, + ACTIONS(14471), 1, anon_sym_ATendunless, - [201307] = 1, - ACTIONS(14234), 1, + [206965] = 1, + ACTIONS(14473), 1, anon_sym_ATendif, - [201311] = 1, - ACTIONS(14236), 1, + [206969] = 1, + ACTIONS(14475), 1, anon_sym_ATendPrependOnce, - [201315] = 1, - ACTIONS(14238), 1, + [206973] = 1, + ACTIONS(14477), 1, anon_sym_ATendprepend, - [201319] = 1, - ACTIONS(14240), 1, + [206977] = 1, + ACTIONS(14479), 1, anon_sym_ATendPushIf, - [201323] = 1, - ACTIONS(14242), 1, + [206981] = 1, + ACTIONS(14481), 1, anon_sym_ATendPushOnce, - [201327] = 1, - ACTIONS(14244), 1, + [206985] = 1, + ACTIONS(14483), 1, anon_sym_ATendpush, - [201331] = 1, - ACTIONS(14246), 1, - anon_sym_ATendwhile, - [201335] = 1, - ACTIONS(14248), 1, - anon_sym_ATendsetup, - [201339] = 1, - ACTIONS(14250), 1, + [206989] = 1, + ACTIONS(14485), 1, anon_sym_ATendfragment, - [201343] = 1, - ACTIONS(14252), 1, + [206993] = 1, + ACTIONS(14487), 1, anon_sym_ATendphp, - [201347] = 1, - ACTIONS(14254), 1, + [206997] = 1, + ACTIONS(14489), 1, anon_sym_BANG_BANG_RBRACE, - [201351] = 1, - ACTIONS(14256), 1, + [207001] = 1, + ACTIONS(14491), 1, anon_sym_RBRACE_RBRACE, - [201355] = 1, - ACTIONS(14258), 1, - anon_sym_ATendtask, - [201359] = 1, - ACTIONS(14260), 1, - anon_sym_ATendstory, - [201363] = 1, - ACTIONS(14262), 1, + [207005] = 1, + ACTIONS(14493), 1, anon_sym_RPAREN, - [201367] = 1, - ACTIONS(12249), 1, + [207009] = 1, + ACTIONS(12454), 1, anon_sym_RPAREN, - [201371] = 1, - ACTIONS(14264), 1, - anon_sym_ATendpersist, - [201375] = 1, - ACTIONS(14266), 1, - anon_sym_ATendteleport, - [201379] = 1, - ACTIONS(14268), 1, - anon_sym_ATendforeach, - [201383] = 1, - ACTIONS(14270), 1, + [207013] = 1, + ACTIONS(14495), 1, + aux_sym_alpine_js_token2, + [207017] = 1, + ACTIONS(14497), 1, + anon_sym_ATendvolt, + [207021] = 1, + ACTIONS(14499), 1, anon_sym_ATendteleport, - [201387] = 1, - ACTIONS(14272), 1, + [207025] = 1, + ACTIONS(14501), 1, anon_sym_ATendpersist, - [201391] = 1, - ACTIONS(14274), 1, + [207029] = 1, + ACTIONS(14503), 1, + anon_sym_ATendif, + [207033] = 1, + ACTIONS(14505), 1, + anon_sym_ATendPrependOnce, + [207037] = 1, + ACTIONS(14507), 1, anon_sym_ATendstory, - [201395] = 1, - ACTIONS(14276), 1, + [207041] = 1, + ACTIONS(14509), 1, anon_sym_ATendtask, - [201399] = 1, - ACTIONS(14278), 1, + [207045] = 1, + ACTIONS(14511), 1, anon_sym_ATendsetup, - [201403] = 1, - ACTIONS(14280), 1, + [207049] = 1, + ACTIONS(14513), 1, anon_sym_ATendwhile, - [201407] = 1, - ACTIONS(14282), 1, + [207053] = 1, + ACTIONS(14515), 1, anon_sym_ATendforelse, - [201411] = 1, - ACTIONS(14284), 1, + [207057] = 1, + ACTIONS(14517), 1, anon_sym_ATendforeach, - [201415] = 1, - ACTIONS(14286), 1, + [207061] = 1, + ACTIONS(14519), 1, anon_sym_ATendfor, - [201419] = 1, - ACTIONS(14288), 1, - anon_sym_ATendunless, - [201423] = 1, - ACTIONS(14290), 1, - anon_sym_ATendif, - [201427] = 1, - ACTIONS(14292), 1, + [207065] = 1, + ACTIONS(14521), 1, aux_sym__custom_token3, - [201431] = 1, - ACTIONS(14294), 1, + [207069] = 1, + ACTIONS(14523), 1, anon_sym_ATendfeature, - [201435] = 1, - ACTIONS(14296), 1, + [207073] = 1, + ACTIONS(14525), 1, anon_sym_ATendcanany, - [201439] = 1, - ACTIONS(14298), 1, + [207077] = 1, + ACTIONS(14527), 1, anon_sym_ATendcannot, - [201443] = 1, - ACTIONS(14300), 1, + [207081] = 1, + ACTIONS(14529), 1, anon_sym_ATendcan, - [201447] = 1, - ACTIONS(14302), 1, - anon_sym_ATenderror, - [201451] = 1, - ACTIONS(14304), 1, + [207085] = 1, + ACTIONS(14531), 1, + anon_sym_ATendwhile, + [207089] = 1, + ACTIONS(14533), 1, anon_sym_ATendif, - [201455] = 1, - ACTIONS(14306), 1, + [207093] = 1, + ACTIONS(14535), 1, anon_sym_ATendif, - [201459] = 1, - ACTIONS(14308), 1, + [207097] = 1, + ACTIONS(14537), 1, anon_sym_ATendenv, - [201463] = 1, - ACTIONS(14310), 1, - anon_sym_ATendvolt, - [201467] = 1, - ACTIONS(14312), 1, + [207101] = 1, + ACTIONS(14539), 1, anon_sym_ATendguest, - [201471] = 1, - ACTIONS(14314), 1, + [207105] = 1, + ACTIONS(14541), 1, anon_sym_ATendauth, - [201475] = 1, - ACTIONS(14316), 1, + [207109] = 1, + ACTIONS(14543), 1, anon_sym_ATendempty, - [201479] = 1, - ACTIONS(14318), 1, + [207113] = 1, + ACTIONS(14545), 1, anon_sym_ATendisset, - [201483] = 1, - ACTIONS(14320), 1, + [207117] = 1, + ACTIONS(14547), 1, anon_sym_ATendunless, - [201487] = 1, - ACTIONS(14322), 1, + [207121] = 1, + ACTIONS(14549), 1, anon_sym_ATendif, - [201491] = 1, - ACTIONS(14324), 1, + [207125] = 1, + ACTIONS(14551), 1, anon_sym_ATendPrependOnce, - [201495] = 1, - ACTIONS(14326), 1, + [207129] = 1, + ACTIONS(14553), 1, anon_sym_ATendprepend, - [201499] = 1, - ACTIONS(14328), 1, + [207133] = 1, + ACTIONS(14555), 1, anon_sym_ATendPushIf, - [201503] = 1, - ACTIONS(14330), 1, + [207137] = 1, + ACTIONS(14557), 1, anon_sym_ATendPushOnce, - [201507] = 1, - ACTIONS(14332), 1, + [207141] = 1, + ACTIONS(14559), 1, anon_sym_ATendpush, - [201511] = 1, - ACTIONS(14334), 1, + [207145] = 1, + ACTIONS(14561), 1, anon_sym_ATendfragment, - [201515] = 1, - ACTIONS(14336), 1, + [207149] = 1, + ACTIONS(14563), 1, anon_sym_ATendphp, - [201519] = 1, - ACTIONS(14338), 1, + [207153] = 1, + ACTIONS(14565), 1, anon_sym_BANG_BANG_RBRACE, - [201523] = 1, - ACTIONS(14340), 1, + [207157] = 1, + ACTIONS(14567), 1, + anon_sym_ATendprepend, + [207161] = 1, + ACTIONS(14569), 1, + anon_sym_ATendPushIf, + [207165] = 1, + ACTIONS(14571), 1, + anon_sym_ATendPushOnce, + [207169] = 1, + ACTIONS(14573), 1, anon_sym_RBRACE_RBRACE, - [201527] = 1, - ACTIONS(12235), 1, - anon_sym_RPAREN, - [201531] = 1, - ACTIONS(14342), 1, - anon_sym_RPAREN, - [201535] = 1, - ACTIONS(14344), 1, + [207173] = 1, + ACTIONS(14575), 1, anon_sym_RPAREN, - [201539] = 1, - ACTIONS(12229), 1, + [207177] = 1, + ACTIONS(12510), 1, anon_sym_RPAREN, - [201543] = 1, - ACTIONS(14346), 1, - anon_sym_ATendPrependOnce, - [201547] = 1, - ACTIONS(14348), 1, - anon_sym_ATendprepend, - [201551] = 1, - ACTIONS(14350), 1, - anon_sym_ATendPushIf, - [201555] = 1, - ACTIONS(14352), 1, + [207181] = 1, + ACTIONS(14577), 1, + aux_sym_alpine_js_token2, + [207185] = 1, + ACTIONS(14579), 1, anon_sym_ATendvolt, - [201559] = 1, - ACTIONS(14354), 1, + [207189] = 1, + ACTIONS(14581), 1, anon_sym_ATendteleport, - [201563] = 1, - ACTIONS(14356), 1, + [207193] = 1, + ACTIONS(14583), 1, anon_sym_ATendpersist, - [201567] = 1, - ACTIONS(14358), 1, + [207197] = 1, + ACTIONS(14585), 1, anon_sym_ATendstory, - [201571] = 1, - ACTIONS(14360), 1, + [207201] = 1, + ACTIONS(14587), 1, anon_sym_ATendtask, - [201575] = 1, - ACTIONS(14362), 1, + [207205] = 1, + ACTIONS(14589), 1, anon_sym_ATendsetup, - [201579] = 1, - ACTIONS(14364), 1, - anon_sym_ATendwhile, - [201583] = 1, - ACTIONS(14366), 1, + [207209] = 1, + ACTIONS(14591), 1, + aux_sym_alpine_js_token2, + [207213] = 1, + ACTIONS(14593), 1, anon_sym_ATendforelse, - [201587] = 1, - ACTIONS(14368), 1, - anon_sym_ATendunless, - [201591] = 1, - ACTIONS(14370), 1, + [207217] = 1, + ACTIONS(14595), 1, + anon_sym_ATendforeach, + [207221] = 1, + ACTIONS(14597), 1, anon_sym_ATendfor, - [201595] = 1, - ACTIONS(14372), 1, + [207225] = 1, + ACTIONS(14599), 1, aux_sym__custom_token3, - [201599] = 1, - ACTIONS(14374), 1, + [207229] = 1, + ACTIONS(14601), 1, anon_sym_ATendfeature, - [201603] = 1, - ACTIONS(14376), 1, + [207233] = 1, + ACTIONS(14603), 1, anon_sym_ATendcanany, - [201607] = 1, - ACTIONS(14378), 1, + [207237] = 1, + ACTIONS(14605), 1, anon_sym_ATendcannot, - [201611] = 1, - ACTIONS(14380), 1, + [207241] = 1, + ACTIONS(14607), 1, anon_sym_ATendcan, - [201615] = 1, - ACTIONS(14382), 1, + [207245] = 1, + ACTIONS(14609), 1, anon_sym_ATenderror, - [201619] = 1, - ACTIONS(14384), 1, + [207249] = 1, + ACTIONS(14611), 1, anon_sym_ATendif, - [201623] = 1, - ACTIONS(14386), 1, + [207253] = 1, + ACTIONS(14613), 1, anon_sym_ATendif, - [201627] = 1, - ACTIONS(14388), 1, + [207257] = 1, + ACTIONS(14615), 1, anon_sym_ATendenv, - [201631] = 1, - ACTIONS(14390), 1, + [207261] = 1, + ACTIONS(14617), 1, anon_sym_ATendguest, - [201635] = 1, - ACTIONS(14392), 1, + [207265] = 1, + ACTIONS(14619), 1, anon_sym_ATendauth, - [201639] = 1, - ACTIONS(14394), 1, + [207269] = 1, + ACTIONS(14621), 1, anon_sym_ATendempty, - [201643] = 1, - ACTIONS(14396), 1, + [207273] = 1, + ACTIONS(14623), 1, anon_sym_ATendisset, - [201647] = 1, - ACTIONS(14398), 1, + [207277] = 1, + ACTIONS(14625), 1, anon_sym_ATendunless, - [201651] = 1, - ACTIONS(14400), 1, + [207281] = 1, + ACTIONS(14627), 1, anon_sym_ATendif, - [201655] = 1, - ACTIONS(14402), 1, + [207285] = 1, + ACTIONS(14629), 1, anon_sym_ATendPrependOnce, - [201659] = 1, - ACTIONS(14404), 1, + [207289] = 1, + ACTIONS(14631), 1, + anon_sym_ATendpush, + [207293] = 1, + ACTIONS(14633), 1, anon_sym_ATendprepend, - [201663] = 1, - ACTIONS(14406), 1, + [207297] = 1, + ACTIONS(14635), 1, anon_sym_ATendPushIf, - [201667] = 1, - ACTIONS(14408), 1, - anon_sym_ATendPushOnce, - [201671] = 1, - ACTIONS(14410), 1, + [207301] = 1, + ACTIONS(14637), 1, anon_sym_ATendPushOnce, - [201675] = 1, - ACTIONS(14412), 1, - anon_sym_ATendpush, - [201679] = 1, - ACTIONS(14414), 1, + [207305] = 1, + ACTIONS(14639), 1, anon_sym_ATendpush, - [201683] = 1, - ACTIONS(14416), 1, + [207309] = 1, + ACTIONS(14641), 1, anon_sym_ATendfragment, - [201687] = 1, - ACTIONS(14418), 1, + [207313] = 1, + ACTIONS(14643), 1, anon_sym_ATendphp, - [201691] = 1, - ACTIONS(14420), 1, + [207317] = 1, + ACTIONS(14645), 1, anon_sym_BANG_BANG_RBRACE, - [201695] = 1, - ACTIONS(14422), 1, + [207321] = 1, + ACTIONS(14647), 1, anon_sym_RBRACE_RBRACE, - [201699] = 1, - ACTIONS(14424), 1, + [207325] = 1, + ACTIONS(14649), 1, anon_sym_RPAREN, - [201703] = 1, - ACTIONS(14426), 1, - anon_sym_RBRACE_RBRACE, - [201707] = 1, - ACTIONS(14428), 1, - anon_sym_BANG_BANG_RBRACE, - [201711] = 1, - ACTIONS(12219), 1, + [207329] = 1, + ACTIONS(12548), 1, anon_sym_RPAREN, - [201715] = 1, - ACTIONS(14430), 1, - anon_sym_ATendphp, - [201719] = 1, - ACTIONS(14432), 1, - anon_sym_ATendfragment, - [201723] = 1, - ACTIONS(14434), 1, + [207333] = 1, + ACTIONS(14651), 1, + aux_sym_alpine_js_token2, + [207337] = 1, + ACTIONS(14653), 1, anon_sym_ATendvolt, - [201727] = 1, - ACTIONS(14436), 1, + [207341] = 1, + ACTIONS(14655), 1, anon_sym_ATendteleport, - [201731] = 1, - ACTIONS(14438), 1, + [207345] = 1, + ACTIONS(14657), 1, anon_sym_ATendpersist, - [201735] = 1, - ACTIONS(14440), 1, + [207349] = 1, + ACTIONS(14659), 1, anon_sym_ATendstory, - [201739] = 1, - ACTIONS(14442), 1, + [207353] = 1, + ACTIONS(14661), 1, anon_sym_ATendtask, - [201743] = 1, - ACTIONS(14444), 1, + [207357] = 1, + ACTIONS(14663), 1, anon_sym_ATendsetup, - [201747] = 1, - ACTIONS(14446), 1, + [207361] = 1, + ACTIONS(14665), 1, anon_sym_ATendwhile, - [201751] = 1, - ACTIONS(14448), 1, + [207365] = 1, + ACTIONS(14667), 1, anon_sym_ATendforelse, - [201755] = 1, - ACTIONS(14450), 1, + [207369] = 1, + ACTIONS(14669), 1, anon_sym_ATendforeach, - [201759] = 1, - ACTIONS(14452), 1, + [207373] = 1, + ACTIONS(14671), 1, anon_sym_ATendfor, - [201763] = 1, - ACTIONS(14454), 1, + [207377] = 1, + ACTIONS(14673), 1, aux_sym__custom_token3, - [201767] = 1, - ACTIONS(14456), 1, + [207381] = 1, + ACTIONS(14675), 1, anon_sym_ATendfeature, - [201771] = 1, - ACTIONS(14458), 1, + [207385] = 1, + ACTIONS(14677), 1, anon_sym_ATendcanany, - [201775] = 1, - ACTIONS(14460), 1, + [207389] = 1, + ACTIONS(14679), 1, anon_sym_ATendcannot, - [201779] = 1, - ACTIONS(14462), 1, + [207393] = 1, + ACTIONS(14681), 1, anon_sym_ATendcan, - [201783] = 1, - ACTIONS(14464), 1, + [207397] = 1, + ACTIONS(14683), 1, anon_sym_ATenderror, - [201787] = 1, - ACTIONS(14466), 1, + [207401] = 1, + ACTIONS(14685), 1, anon_sym_ATendif, - [201791] = 1, - ACTIONS(14468), 1, + [207405] = 1, + ACTIONS(14687), 1, anon_sym_ATendif, - [201795] = 1, - ACTIONS(14470), 1, + [207409] = 1, + ACTIONS(14689), 1, anon_sym_ATendenv, - [201799] = 1, - ACTIONS(14472), 1, - anon_sym_ATendpush, - [201803] = 1, - ACTIONS(14474), 1, + [207413] = 1, + ACTIONS(14691), 1, anon_sym_ATendguest, - [201807] = 1, - ACTIONS(14476), 1, - anon_sym_ATendfragment, - [201811] = 1, - ACTIONS(14478), 1, + [207417] = 1, + ACTIONS(14693), 1, anon_sym_ATendauth, - [201815] = 1, - ACTIONS(14480), 1, + [207421] = 1, + ACTIONS(14695), 1, anon_sym_ATendempty, - [201819] = 1, - ACTIONS(14482), 1, + [207425] = 1, + ACTIONS(14697), 1, + anon_sym_ATendfragment, + [207429] = 1, + ACTIONS(14699), 1, anon_sym_ATendisset, - [201823] = 1, - ACTIONS(14484), 1, + [207433] = 1, + ACTIONS(14701), 1, anon_sym_ATendunless, - [201827] = 1, - ACTIONS(14486), 1, + [207437] = 1, + ACTIONS(14703), 1, anon_sym_ATendif, - [201831] = 1, - ACTIONS(14488), 1, + [207441] = 1, + ACTIONS(14705), 1, anon_sym_ATendPrependOnce, - [201835] = 1, - ACTIONS(14490), 1, + [207445] = 1, + ACTIONS(14707), 1, anon_sym_ATendprepend, - [201839] = 1, - ACTIONS(14492), 1, + [207449] = 1, + ACTIONS(14709), 1, anon_sym_ATendPushIf, - [201843] = 1, - ACTIONS(14494), 1, + [207453] = 1, + ACTIONS(14711), 1, anon_sym_ATendPushOnce, - [201847] = 1, - ACTIONS(14496), 1, + [207457] = 1, + ACTIONS(14713), 1, anon_sym_ATendpush, - [201851] = 1, - ACTIONS(14498), 1, - anon_sym_ATendPushOnce, - [201855] = 1, - ACTIONS(14500), 1, - anon_sym_ATendPushIf, - [201859] = 1, - ACTIONS(14502), 1, + [207461] = 1, + ACTIONS(14715), 1, anon_sym_ATendfragment, - [201863] = 1, - ACTIONS(14504), 1, + [207465] = 1, + ACTIONS(14717), 1, anon_sym_ATendphp, - [201867] = 1, - ACTIONS(14506), 1, + [207469] = 1, + ACTIONS(14719), 1, anon_sym_BANG_BANG_RBRACE, - [201871] = 1, - ACTIONS(14508), 1, + [207473] = 1, + ACTIONS(14721), 1, anon_sym_RBRACE_RBRACE, - [201875] = 1, - ACTIONS(14510), 1, - anon_sym_ATendprepend, - [201879] = 1, - ACTIONS(14512), 1, - anon_sym_ATendPrependOnce, - [201883] = 1, - ACTIONS(14514), 1, - anon_sym_ATendif, - [201887] = 1, - ACTIONS(14516), 1, + [207477] = 1, + ACTIONS(14723), 1, anon_sym_RPAREN, - [201891] = 1, - ACTIONS(14518), 1, - anon_sym_ATendif, - [201895] = 1, - ACTIONS(14520), 1, - anon_sym_ATendisset, - [201899] = 1, - ACTIONS(14522), 1, - anon_sym_ATendempty, - [201903] = 1, - ACTIONS(14524), 1, - anon_sym_ATendauth, - [201907] = 1, - ACTIONS(12211), 1, + [207481] = 1, + ACTIONS(12496), 1, anon_sym_RPAREN, - [201911] = 1, - ACTIONS(14526), 1, - anon_sym_ATendguest, - [201915] = 1, - ACTIONS(14528), 1, - anon_sym_ATendenv, - [201919] = 1, - ACTIONS(14530), 1, - anon_sym_ATendtask, - [201923] = 1, - ACTIONS(14532), 1, + [207485] = 1, + ACTIONS(14725), 1, + anon_sym_ATendprepend, + [207489] = 1, + ACTIONS(14727), 1, anon_sym_ATendvolt, - [201927] = 1, - ACTIONS(14534), 1, + [207493] = 1, + ACTIONS(14729), 1, anon_sym_ATendteleport, - [201931] = 1, - ACTIONS(14536), 1, + [207497] = 1, + ACTIONS(14731), 1, anon_sym_ATendpersist, - [201935] = 1, - ACTIONS(14538), 1, - anon_sym_ATendphp, - [201939] = 1, - ACTIONS(14540), 1, + [207501] = 1, + ACTIONS(14733), 1, anon_sym_ATendstory, - [201943] = 1, - ACTIONS(14542), 1, + [207505] = 1, + ACTIONS(14735), 1, anon_sym_ATendtask, - [201947] = 1, - ACTIONS(14544), 1, + [207509] = 1, + ACTIONS(14737), 1, anon_sym_ATendsetup, - [201951] = 1, - ACTIONS(14546), 1, + [207513] = 1, + ACTIONS(14739), 1, anon_sym_ATendwhile, - [201955] = 1, - ACTIONS(14548), 1, + [207517] = 1, + ACTIONS(14741), 1, anon_sym_ATendforelse, - [201959] = 1, - ACTIONS(14550), 1, + [207521] = 1, + ACTIONS(14743), 1, anon_sym_ATendforeach, - [201963] = 1, - ACTIONS(14552), 1, + [207525] = 1, + ACTIONS(14745), 1, anon_sym_ATendfor, - [201967] = 1, - ACTIONS(14554), 1, + [207529] = 1, + ACTIONS(14747), 1, aux_sym__custom_token3, - [201971] = 1, - ACTIONS(14556), 1, + [207533] = 1, + ACTIONS(14749), 1, anon_sym_ATendfeature, - [201975] = 1, - ACTIONS(14558), 1, + [207537] = 1, + ACTIONS(14751), 1, anon_sym_ATendcanany, - [201979] = 1, - ACTIONS(14560), 1, + [207541] = 1, + ACTIONS(14753), 1, anon_sym_ATendcannot, - [201983] = 1, - ACTIONS(14562), 1, + [207545] = 1, + ACTIONS(14755), 1, anon_sym_ATendcan, - [201987] = 1, - ACTIONS(14564), 1, + [207549] = 1, + ACTIONS(14757), 1, anon_sym_ATenderror, - [201991] = 1, - ACTIONS(14566), 1, + [207553] = 1, + ACTIONS(14759), 1, anon_sym_ATendif, - [201995] = 1, - ACTIONS(14568), 1, + [207557] = 1, + ACTIONS(14761), 1, + anon_sym_ATendphp, + [207561] = 1, + ACTIONS(14763), 1, anon_sym_ATendif, - [201999] = 1, - ACTIONS(14570), 1, + [207565] = 1, + ACTIONS(14765), 1, anon_sym_ATendenv, - [202003] = 1, - ACTIONS(14572), 1, - anon_sym_ATendif, - [202007] = 1, - ACTIONS(14574), 1, + [207569] = 1, + ACTIONS(14767), 1, anon_sym_ATendguest, - [202011] = 1, - ACTIONS(14576), 1, + [207573] = 1, + ACTIONS(14769), 1, anon_sym_ATendauth, - [202015] = 1, - ACTIONS(14578), 1, + [207577] = 1, + ACTIONS(14771), 1, anon_sym_ATendempty, - [202019] = 1, - ACTIONS(14580), 1, + [207581] = 1, + ACTIONS(14773), 1, anon_sym_ATendisset, - [202023] = 1, - ACTIONS(14582), 1, + [207585] = 1, + ACTIONS(14775), 1, anon_sym_ATendunless, - [202027] = 1, - ACTIONS(14584), 1, + [207589] = 1, + ACTIONS(14777), 1, anon_sym_ATendif, - [202031] = 1, - ACTIONS(14586), 1, + [207593] = 1, + ACTIONS(14779), 1, anon_sym_ATendPrependOnce, - [202035] = 1, - ACTIONS(14588), 1, - anon_sym_ATendprepend, - [202039] = 1, - ACTIONS(14590), 1, + [207597] = 1, + ACTIONS(14781), 1, + anon_sym_RBRACE_RBRACE, + [207601] = 1, + ACTIONS(14783), 1, anon_sym_ATendPushIf, - [202043] = 1, - ACTIONS(14592), 1, + [207605] = 1, + ACTIONS(14785), 1, anon_sym_ATendPushOnce, - [202047] = 1, - ACTIONS(14594), 1, + [207609] = 1, + ACTIONS(14787), 1, anon_sym_ATendpush, - [202051] = 1, - ACTIONS(14596), 1, + [207613] = 1, + ACTIONS(14789), 1, anon_sym_ATendfragment, - [202055] = 1, - ACTIONS(14598), 1, + [207617] = 1, + ACTIONS(14791), 1, anon_sym_ATendphp, - [202059] = 1, - ACTIONS(14600), 1, + [207621] = 1, + ACTIONS(14793), 1, anon_sym_BANG_BANG_RBRACE, - [202063] = 1, - ACTIONS(14602), 1, + [207625] = 1, + ACTIONS(14795), 1, anon_sym_RBRACE_RBRACE, - [202067] = 1, - ACTIONS(14604), 1, - anon_sym_ATenderror, - [202071] = 1, - ACTIONS(14606), 1, - anon_sym_ATendcan, - [202075] = 1, - ACTIONS(14608), 1, + [207629] = 1, + ACTIONS(14797), 1, anon_sym_RPAREN, - [202079] = 1, - ACTIONS(14610), 1, - anon_sym_ATendcannot, - [202083] = 1, - ACTIONS(14612), 1, - anon_sym_ATendcanany, - [202087] = 1, - ACTIONS(14614), 1, - anon_sym_ATendfeature, - [202091] = 1, - ACTIONS(14616), 1, - aux_sym__custom_token3, - [202095] = 1, - ACTIONS(12201), 1, + [207633] = 1, + ACTIONS(12452), 1, anon_sym_RPAREN, - [202099] = 1, - ACTIONS(14618), 1, - anon_sym_ATendfor, - [202103] = 1, - ACTIONS(14620), 1, - anon_sym_ATendforeach, - [202107] = 1, - ACTIONS(14622), 1, + [207637] = 1, + ACTIONS(14799), 1, + aux_sym_alpine_js_token2, + [207641] = 1, + ACTIONS(14801), 1, anon_sym_ATendvolt, - [202111] = 1, - ACTIONS(14624), 1, + [207645] = 1, + ACTIONS(14803), 1, anon_sym_ATendteleport, - [202115] = 1, - ACTIONS(14626), 1, + [207649] = 1, + ACTIONS(14805), 1, anon_sym_ATendpersist, - [202119] = 1, - ACTIONS(14628), 1, + [207653] = 1, + ACTIONS(14807), 1, anon_sym_ATendstory, - [202123] = 1, - ACTIONS(14630), 1, + [207657] = 1, + ACTIONS(14809), 1, anon_sym_ATendtask, - [202127] = 1, - ACTIONS(14632), 1, + [207661] = 1, + ACTIONS(14811), 1, anon_sym_ATendsetup, - [202131] = 1, - ACTIONS(14634), 1, + [207665] = 1, + ACTIONS(14813), 1, anon_sym_ATendwhile, - [202135] = 1, - ACTIONS(14636), 1, + [207669] = 1, + ACTIONS(14815), 1, anon_sym_ATendforelse, - [202139] = 1, - ACTIONS(14638), 1, + [207673] = 1, + ACTIONS(14817), 1, anon_sym_ATendforeach, - [202143] = 1, - ACTIONS(14640), 1, + [207677] = 1, + ACTIONS(14819), 1, anon_sym_ATendfor, - [202147] = 1, - ACTIONS(14642), 1, + [207681] = 1, + ACTIONS(14821), 1, aux_sym__custom_token3, - [202151] = 1, - ACTIONS(14644), 1, + [207685] = 1, + ACTIONS(14823), 1, anon_sym_ATendfeature, - [202155] = 1, - ACTIONS(14646), 1, + [207689] = 1, + ACTIONS(14825), 1, anon_sym_ATendcanany, - [202159] = 1, - ACTIONS(14648), 1, + [207693] = 1, + ACTIONS(14827), 1, + anon_sym_BANG_BANG_RBRACE, + [207697] = 1, + ACTIONS(14829), 1, anon_sym_ATendcannot, - [202163] = 1, - ACTIONS(14650), 1, + [207701] = 1, + ACTIONS(14831), 1, anon_sym_ATendcan, - [202167] = 1, - ACTIONS(14652), 1, + [207705] = 1, + ACTIONS(14833), 1, anon_sym_ATenderror, - [202171] = 1, - ACTIONS(14654), 1, - anon_sym_ATendif, - [202175] = 1, - ACTIONS(14656), 1, + [207709] = 1, + ACTIONS(14835), 1, anon_sym_ATendif, - [202179] = 1, - ACTIONS(14658), 1, + [207713] = 1, + ACTIONS(14837), 1, anon_sym_ATendenv, - [202183] = 1, - ACTIONS(14660), 1, - anon_sym_BANG_BANG_RBRACE, - [202187] = 1, - ACTIONS(14662), 1, - anon_sym_ATendforelse, - [202191] = 1, - ACTIONS(14664), 1, + [207717] = 1, + ACTIONS(14839), 1, anon_sym_ATendguest, - [202195] = 1, - ACTIONS(14666), 1, + [207721] = 1, + ACTIONS(14841), 1, anon_sym_ATendauth, - [202199] = 1, - ACTIONS(14668), 1, + [207725] = 1, + ACTIONS(14843), 1, anon_sym_ATendempty, - [202203] = 1, - ACTIONS(14670), 1, + [207729] = 1, + ACTIONS(14845), 1, anon_sym_ATendisset, - [202207] = 1, - ACTIONS(14672), 1, + [207733] = 1, + ACTIONS(14847), 1, anon_sym_ATendunless, - [202211] = 1, - ACTIONS(14674), 1, + [207737] = 1, + ACTIONS(14849), 1, anon_sym_ATendif, - [202215] = 1, - ACTIONS(14676), 1, + [207741] = 1, + ACTIONS(14851), 1, anon_sym_ATendPrependOnce, - [202219] = 1, - ACTIONS(14678), 1, + [207745] = 1, + ACTIONS(14853), 1, anon_sym_ATendprepend, - [202223] = 1, - ACTIONS(14680), 1, + [207749] = 1, + ACTIONS(14855), 1, anon_sym_ATendPushIf, - [202227] = 1, - ACTIONS(14682), 1, + [207753] = 1, + ACTIONS(14857), 1, anon_sym_ATendPushOnce, - [202231] = 1, - ACTIONS(14684), 1, + [207757] = 1, + ACTIONS(14859), 1, anon_sym_ATendpush, - [202235] = 1, - ACTIONS(14686), 1, - anon_sym_ATendwhile, - [202239] = 1, - ACTIONS(14688), 1, - anon_sym_ATendsetup, - [202243] = 1, - ACTIONS(14690), 1, + [207761] = 1, + ACTIONS(14861), 1, anon_sym_ATendfragment, - [202247] = 1, - ACTIONS(14692), 1, + [207765] = 1, + ACTIONS(14863), 1, anon_sym_ATendphp, - [202251] = 1, - ACTIONS(14694), 1, + [207769] = 1, + ACTIONS(14865), 1, anon_sym_BANG_BANG_RBRACE, - [202255] = 1, - ACTIONS(14696), 1, - anon_sym_RBRACE_RBRACE, - [202259] = 1, - ACTIONS(14698), 1, + [207773] = 1, + ACTIONS(14867), 1, anon_sym_ATendPushIf, - [202263] = 1, - ACTIONS(14700), 1, - anon_sym_ATendstory, - [202267] = 1, - ACTIONS(14702), 1, + [207777] = 1, + ACTIONS(14869), 1, anon_sym_RPAREN, - [202271] = 1, - ACTIONS(12171), 1, + [207781] = 1, + ACTIONS(12418), 1, anon_sym_RPAREN, - [202275] = 1, - ACTIONS(14704), 1, - anon_sym_ATendpersist, - [202279] = 1, - ACTIONS(14706), 1, - anon_sym_ATendteleport, - [202283] = 1, - ACTIONS(14708), 1, - anon_sym_ATendvolt, - [202287] = 1, - ACTIONS(14710), 1, + [207785] = 1, + ACTIONS(14871), 1, + aux_sym_alpine_js_token2, + [207789] = 1, + ACTIONS(14873), 1, anon_sym_ATendvolt, - [202291] = 1, - ACTIONS(14712), 1, + [207793] = 1, + ACTIONS(14875), 1, anon_sym_ATendteleport, - [202295] = 1, - ACTIONS(14714), 1, + [207797] = 1, + ACTIONS(14877), 1, anon_sym_ATendpersist, - [202299] = 1, - ACTIONS(14716), 1, + [207801] = 1, + ACTIONS(14879), 1, anon_sym_ATendstory, - [202303] = 1, - ACTIONS(14718), 1, + [207805] = 1, + ACTIONS(14881), 1, anon_sym_ATendtask, - [202307] = 1, - ACTIONS(14720), 1, + [207809] = 1, + ACTIONS(14883), 1, anon_sym_ATendsetup, - [202311] = 1, - ACTIONS(14722), 1, - anon_sym_RBRACE_RBRACE, - [202315] = 1, - ACTIONS(14724), 1, - anon_sym_ATendvolt, - [202319] = 1, - ACTIONS(14726), 1, + [207813] = 1, + ACTIONS(14885), 1, anon_sym_ATendwhile, - [202323] = 1, - ACTIONS(14728), 1, + [207817] = 1, + ACTIONS(14887), 1, anon_sym_ATendforelse, - [202327] = 1, - ACTIONS(14730), 1, + [207821] = 1, + ACTIONS(14889), 1, anon_sym_ATendforeach, - [202331] = 1, - ACTIONS(14732), 1, + [207825] = 1, + ACTIONS(14891), 1, + anon_sym_RBRACE_RBRACE, + [207829] = 1, + ACTIONS(14893), 1, anon_sym_ATendfor, - [202335] = 1, - ACTIONS(14734), 1, + [207833] = 1, + ACTIONS(14895), 1, aux_sym__custom_token3, - [202339] = 1, - ACTIONS(14736), 1, + [207837] = 1, + ACTIONS(14897), 1, anon_sym_ATendfeature, - [202343] = 1, - ACTIONS(14738), 1, + [207841] = 1, + ACTIONS(14899), 1, anon_sym_ATendcanany, - [202347] = 1, - ACTIONS(14740), 1, + [207845] = 1, + ACTIONS(14901), 1, anon_sym_ATendcannot, - [202351] = 1, - ACTIONS(14742), 1, + [207849] = 1, + ACTIONS(14903), 1, anon_sym_ATendcan, - [202355] = 1, - ACTIONS(14744), 1, + [207853] = 1, + ACTIONS(14905), 1, anon_sym_ATenderror, - [202359] = 1, - ACTIONS(14746), 1, + [207857] = 1, + ACTIONS(14907), 1, anon_sym_ATendif, - [202363] = 1, - ACTIONS(14748), 1, + [207861] = 1, + ACTIONS(14909), 1, anon_sym_ATendif, - [202367] = 1, - ACTIONS(14750), 1, + [207865] = 1, + ACTIONS(14911), 1, anon_sym_ATendenv, - [202371] = 1, - ACTIONS(14752), 1, + [207869] = 1, + ACTIONS(14913), 1, anon_sym_ATendguest, - [202375] = 1, - ACTIONS(14754), 1, + [207873] = 1, + ACTIONS(14915), 1, anon_sym_ATendauth, - [202379] = 1, - ACTIONS(14756), 1, + [207877] = 1, + ACTIONS(14917), 1, anon_sym_ATendempty, - [202383] = 1, - ACTIONS(14758), 1, + [207881] = 1, + ACTIONS(14919), 1, anon_sym_ATendisset, - [202387] = 1, - ACTIONS(14760), 1, + [207885] = 1, + ACTIONS(14921), 1, anon_sym_ATendunless, - [202391] = 1, - ACTIONS(14762), 1, + [207889] = 1, + ACTIONS(14923), 1, anon_sym_ATendif, - [202395] = 1, - ACTIONS(14764), 1, + [207893] = 1, + ACTIONS(14925), 1, anon_sym_ATendPrependOnce, - [202399] = 1, - ACTIONS(14766), 1, + [207897] = 1, + ACTIONS(14927), 1, anon_sym_ATendprepend, - [202403] = 1, - ACTIONS(14768), 1, - anon_sym_ATendphp, - [202407] = 1, - ACTIONS(14770), 1, + [207901] = 1, + ACTIONS(14929), 1, + anon_sym_ATendPushIf, + [207905] = 1, + ACTIONS(14931), 1, anon_sym_ATendPushOnce, - [202411] = 1, - ACTIONS(14772), 1, + [207909] = 1, + ACTIONS(14933), 1, anon_sym_ATendpush, - [202415] = 1, - ACTIONS(14774), 1, + [207913] = 1, + ACTIONS(14935), 1, anon_sym_ATendfragment, - [202419] = 1, - ACTIONS(14776), 1, + [207917] = 1, + ACTIONS(14937), 1, anon_sym_ATendphp, - [202423] = 1, - ACTIONS(14778), 1, + [207921] = 1, + ACTIONS(14939), 1, anon_sym_BANG_BANG_RBRACE, - [202427] = 1, - ACTIONS(14780), 1, + [207925] = 1, + ACTIONS(14941), 1, anon_sym_RBRACE_RBRACE, - [202431] = 1, - ACTIONS(12187), 1, - anon_sym_RPAREN, - [202435] = 1, - ACTIONS(14782), 1, + [207929] = 1, + ACTIONS(14943), 1, anon_sym_RPAREN, - [202439] = 1, - ACTIONS(14784), 1, + [207933] = 1, + ACTIONS(12362), 1, anon_sym_RPAREN, - [202443] = 1, - ACTIONS(12177), 1, - anon_sym_RPAREN, - [202447] = 1, - ACTIONS(14786), 1, + [207937] = 1, + ACTIONS(14945), 1, + aux_sym_alpine_js_token2, + [207941] = 1, + ACTIONS(14947), 1, anon_sym_ATendvolt, - [202451] = 1, - ACTIONS(14788), 1, + [207945] = 1, + ACTIONS(14949), 1, anon_sym_ATendteleport, - [202455] = 1, - ACTIONS(14790), 1, + [207949] = 1, + ACTIONS(14951), 1, anon_sym_ATendpersist, - [202459] = 1, - ACTIONS(14792), 1, + [207953] = 1, + ACTIONS(14953), 1, anon_sym_ATendstory, - [202463] = 1, - ACTIONS(14794), 1, + [207957] = 1, + ACTIONS(14955), 1, anon_sym_ATendtask, - [202467] = 1, - ACTIONS(14796), 1, + [207961] = 1, + ACTIONS(14957), 1, anon_sym_ATendsetup, - [202471] = 1, - ACTIONS(14798), 1, + [207965] = 1, + ACTIONS(14959), 1, anon_sym_ATendwhile, - [202475] = 1, - ACTIONS(14800), 1, + [207969] = 1, + ACTIONS(14961), 1, anon_sym_ATendforelse, - [202479] = 1, - ACTIONS(14802), 1, + [207973] = 1, + ACTIONS(14963), 1, anon_sym_ATendforeach, - [202483] = 1, - ACTIONS(14804), 1, + [207977] = 1, + ACTIONS(14965), 1, anon_sym_ATendfor, - [202487] = 1, - ACTIONS(14806), 1, + [207981] = 1, + ACTIONS(14967), 1, aux_sym__custom_token3, - [202491] = 1, - ACTIONS(14808), 1, + [207985] = 1, + ACTIONS(14969), 1, anon_sym_ATendfeature, - [202495] = 1, - ACTIONS(14810), 1, + [207989] = 1, + ACTIONS(14971), 1, anon_sym_ATendcanany, - [202499] = 1, - ACTIONS(14812), 1, + [207993] = 1, + ACTIONS(14973), 1, anon_sym_ATendcannot, - [202503] = 1, - ACTIONS(14814), 1, + [207997] = 1, + ACTIONS(14975), 1, anon_sym_ATendcan, - [202507] = 1, - ACTIONS(14816), 1, + [208001] = 1, + ACTIONS(14977), 1, anon_sym_ATenderror, - [202511] = 1, - ACTIONS(14818), 1, + [208005] = 1, + ACTIONS(14979), 1, anon_sym_ATendif, - [202515] = 1, - ACTIONS(14820), 1, + [208009] = 1, + ACTIONS(14981), 1, anon_sym_ATendif, - [202519] = 1, - ACTIONS(14822), 1, + [208013] = 1, + ACTIONS(14983), 1, anon_sym_ATendenv, - [202523] = 1, - ACTIONS(14824), 1, + [208017] = 1, + ACTIONS(14985), 1, anon_sym_ATendguest, - [202527] = 1, - ACTIONS(14826), 1, + [208021] = 1, + ACTIONS(14987), 1, anon_sym_ATendauth, - [202531] = 1, - ACTIONS(14828), 1, + [208025] = 1, + ACTIONS(14989), 1, anon_sym_ATendempty, - [202535] = 1, - ACTIONS(14830), 1, + [208029] = 1, + ACTIONS(14991), 1, anon_sym_ATendisset, - [202539] = 1, - ACTIONS(14832), 1, + [208033] = 1, + ACTIONS(14993), 1, anon_sym_ATendunless, - [202543] = 1, - ACTIONS(14834), 1, + [208037] = 1, + ACTIONS(14995), 1, anon_sym_ATendif, - [202547] = 1, - ACTIONS(14836), 1, + [208041] = 1, + ACTIONS(14997), 1, anon_sym_ATendPrependOnce, - [202551] = 1, - ACTIONS(14838), 1, + [208045] = 1, + ACTIONS(14999), 1, anon_sym_ATendprepend, - [202555] = 1, - ACTIONS(14840), 1, - anon_sym_ATendPushIf, - [202559] = 1, - ACTIONS(14842), 1, + [208049] = 1, + ACTIONS(15001), 1, + anon_sym_ATendsetup, + [208053] = 1, + ACTIONS(15003), 1, anon_sym_ATendPushOnce, - [202563] = 1, - ACTIONS(14844), 1, + [208057] = 1, + ACTIONS(15005), 1, anon_sym_ATendpush, - [202567] = 1, - ACTIONS(14846), 1, + [208061] = 1, + ACTIONS(15007), 1, anon_sym_ATendfragment, - [202571] = 1, - ACTIONS(14848), 1, - anon_sym_ATendauth, - [202575] = 1, - ACTIONS(14850), 1, + [208065] = 1, + ACTIONS(15009), 1, + anon_sym_ATendphp, + [208069] = 1, + ACTIONS(15011), 1, anon_sym_BANG_BANG_RBRACE, - [202579] = 1, - ACTIONS(14852), 1, + [208073] = 1, + ACTIONS(15013), 1, anon_sym_RBRACE_RBRACE, - [202583] = 1, - ACTIONS(14854), 1, + [208077] = 1, + ACTIONS(15015), 1, anon_sym_RPAREN, - [202587] = 1, - ACTIONS(14856), 1, - anon_sym_RBRACE_RBRACE, - [202591] = 1, - ACTIONS(14858), 1, - anon_sym_BANG_BANG_RBRACE, - [202595] = 1, - ACTIONS(12231), 1, + [208081] = 1, + ACTIONS(12394), 1, anon_sym_RPAREN, - [202599] = 1, - ACTIONS(14860), 1, - anon_sym_ATendphp, - [202603] = 1, - ACTIONS(14862), 1, - anon_sym_ATendfragment, - [202607] = 1, - ACTIONS(14864), 1, + [208085] = 1, + ACTIONS(15017), 1, + aux_sym_alpine_js_token2, + [208089] = 1, + ACTIONS(15019), 1, anon_sym_ATendvolt, - [202611] = 1, - ACTIONS(14866), 1, + [208093] = 1, + ACTIONS(15021), 1, anon_sym_ATendteleport, - [202615] = 1, - ACTIONS(14868), 1, + [208097] = 1, + ACTIONS(15023), 1, anon_sym_ATendpersist, - [202619] = 1, - ACTIONS(14870), 1, + [208101] = 1, + ACTIONS(15025), 1, anon_sym_ATendstory, - [202623] = 1, - ACTIONS(14872), 1, + [208105] = 1, + ACTIONS(15027), 1, anon_sym_ATendtask, - [202627] = 1, - ACTIONS(14874), 1, - anon_sym_ATendsetup, - [202631] = 1, - ACTIONS(14876), 1, + [208109] = 1, + ACTIONS(15029), 1, + anon_sym_ATendcannot, + [208113] = 1, + ACTIONS(15031), 1, anon_sym_ATendwhile, - [202635] = 1, - ACTIONS(14878), 1, + [208117] = 1, + ACTIONS(15033), 1, anon_sym_ATendforelse, - [202639] = 1, - ACTIONS(14880), 1, + [208121] = 1, + ACTIONS(15035), 1, anon_sym_ATendforeach, - [202643] = 1, - ACTIONS(14882), 1, + [208125] = 1, + ACTIONS(15037), 1, anon_sym_ATendfor, - [202647] = 1, - ACTIONS(14884), 1, + [208129] = 1, + ACTIONS(15039), 1, aux_sym__custom_token3, - [202651] = 1, - ACTIONS(14886), 1, + [208133] = 1, + ACTIONS(15041), 1, anon_sym_ATendfeature, - [202655] = 1, - ACTIONS(14888), 1, + [208137] = 1, + ACTIONS(15043), 1, anon_sym_ATendcanany, - [202659] = 1, - ACTIONS(14890), 1, + [208141] = 1, + ACTIONS(15045), 1, anon_sym_ATendcannot, - [202663] = 1, - ACTIONS(14892), 1, + [208145] = 1, + ACTIONS(15047), 1, anon_sym_ATendcan, - [202667] = 1, - ACTIONS(14894), 1, + [208149] = 1, + ACTIONS(15049), 1, anon_sym_ATenderror, - [202671] = 1, - ACTIONS(14896), 1, + [208153] = 1, + ACTIONS(15051), 1, anon_sym_ATendif, - [202675] = 1, - ACTIONS(14898), 1, + [208157] = 1, + ACTIONS(15053), 1, anon_sym_ATendif, - [202679] = 1, - ACTIONS(14900), 1, + [208161] = 1, + ACTIONS(15055), 1, anon_sym_ATendenv, - [202683] = 1, - ACTIONS(14902), 1, - anon_sym_ATendpush, - [202687] = 1, - ACTIONS(14904), 1, + [208165] = 1, + ACTIONS(15057), 1, anon_sym_ATendguest, - [202691] = 1, - ACTIONS(14906), 1, + [208169] = 1, + ACTIONS(15059), 1, anon_sym_ATendauth, - [202695] = 1, - ACTIONS(14908), 1, + [208173] = 1, + ACTIONS(15061), 1, anon_sym_ATendempty, - [202699] = 1, - ACTIONS(14910), 1, - ts_builtin_sym_end, - [202703] = 1, - ACTIONS(14912), 1, + [208177] = 1, + ACTIONS(15063), 1, anon_sym_ATendisset, - [202707] = 1, - ACTIONS(14914), 1, + [208181] = 1, + ACTIONS(15065), 1, anon_sym_ATendunless, - [202711] = 1, - ACTIONS(14916), 1, + [208185] = 1, + ACTIONS(15067), 1, anon_sym_ATendif, - [202715] = 1, - ACTIONS(14918), 1, + [208189] = 1, + ACTIONS(15069), 1, anon_sym_ATendPrependOnce, - [202719] = 1, - ACTIONS(14920), 1, + [208193] = 1, + ACTIONS(15071), 1, anon_sym_ATendprepend, - [202723] = 1, - ACTIONS(14922), 1, + [208197] = 1, + ACTIONS(15073), 1, anon_sym_ATendPushIf, - [202727] = 1, - ACTIONS(14924), 1, + [208201] = 1, + ACTIONS(15075), 1, anon_sym_ATendPushOnce, - [202731] = 1, - ACTIONS(14926), 1, + [208205] = 1, + ACTIONS(15077), 1, anon_sym_ATendpush, - [202735] = 1, - ACTIONS(14928), 1, - anon_sym_ATendPushOnce, - [202739] = 1, - ACTIONS(14930), 1, - anon_sym_ATendPushIf, - [202743] = 1, - ACTIONS(14932), 1, + [208209] = 1, + ACTIONS(15079), 1, anon_sym_ATendfragment, - [202747] = 1, - ACTIONS(14934), 1, + [208213] = 1, + ACTIONS(15081), 1, anon_sym_ATendphp, - [202751] = 1, - ACTIONS(14936), 1, + [208217] = 1, + ACTIONS(15083), 1, anon_sym_BANG_BANG_RBRACE, - [202755] = 1, - ACTIONS(14938), 1, + [208221] = 1, + ACTIONS(15085), 1, anon_sym_RBRACE_RBRACE, - [202759] = 1, - ACTIONS(14940), 1, - anon_sym_ATendprepend, - [202763] = 1, - ACTIONS(14942), 1, - anon_sym_ATendPrependOnce, - [202767] = 1, - ACTIONS(14944), 1, + [208225] = 1, + ACTIONS(15087), 1, anon_sym_RPAREN, - [202771] = 1, - ACTIONS(14946), 1, - anon_sym_ATendif, - [202775] = 1, - ACTIONS(14948), 1, - anon_sym_ATendunless, - [202779] = 1, - ACTIONS(14950), 1, - anon_sym_ATendisset, - [202783] = 1, - ACTIONS(14952), 1, - anon_sym_ATendempty, - [202787] = 1, - ACTIONS(12261), 1, + [208229] = 1, + ACTIONS(12486), 1, anon_sym_RPAREN, - [202791] = 1, - ACTIONS(14954), 1, - anon_sym_ATendauth, - [202795] = 1, - ACTIONS(14956), 1, - anon_sym_ATendguest, - [202799] = 1, - ACTIONS(14958), 1, - anon_sym_ATendenv, - [202803] = 1, - ACTIONS(14960), 1, + [208233] = 1, + ACTIONS(15089), 1, + aux_sym_alpine_js_token2, + [208237] = 1, + ACTIONS(15091), 1, anon_sym_ATendvolt, - [202807] = 1, - ACTIONS(14962), 1, + [208241] = 1, + ACTIONS(15093), 1, anon_sym_ATendteleport, - [202811] = 1, - ACTIONS(14964), 1, + [208245] = 1, + ACTIONS(15095), 1, anon_sym_ATendpersist, - [202815] = 1, - ACTIONS(14966), 1, + [208249] = 1, + ACTIONS(15097), 1, anon_sym_ATendstory, - [202819] = 1, - ACTIONS(14968), 1, + [208253] = 1, + ACTIONS(15099), 1, anon_sym_ATendtask, - [202823] = 1, - ACTIONS(14970), 1, + [208257] = 1, + ACTIONS(15101), 1, anon_sym_ATendsetup, - [202827] = 1, - ACTIONS(14972), 1, + [208261] = 1, + ACTIONS(15103), 1, anon_sym_ATendwhile, - [202831] = 1, - ACTIONS(14974), 1, + [208265] = 1, + ACTIONS(15105), 1, anon_sym_ATendforelse, - [202835] = 1, - ACTIONS(14976), 1, + [208269] = 1, + ACTIONS(15107), 1, anon_sym_ATendforeach, - [202839] = 1, - ACTIONS(14978), 1, + [208273] = 1, + ACTIONS(15109), 1, anon_sym_ATendfor, - [202843] = 1, - ACTIONS(14980), 1, + [208277] = 1, + ACTIONS(15111), 1, aux_sym__custom_token3, - [202847] = 1, - ACTIONS(14982), 1, + [208281] = 1, + ACTIONS(15113), 1, anon_sym_ATendfeature, - [202851] = 1, - ACTIONS(14984), 1, + [208285] = 1, + ACTIONS(15115), 1, anon_sym_ATendcanany, - [202855] = 1, - ACTIONS(14986), 1, - anon_sym_ATendcannot, - [202859] = 1, - ACTIONS(14988), 1, + [208289] = 1, + ACTIONS(15117), 1, + anon_sym_ATendpersist, + [208293] = 1, + ACTIONS(15119), 1, anon_sym_ATendcan, - [202863] = 1, - ACTIONS(14990), 1, + [208297] = 1, + ACTIONS(15121), 1, anon_sym_ATenderror, - [202867] = 1, - ACTIONS(14992), 1, + [208301] = 1, + ACTIONS(15123), 1, anon_sym_ATendif, - [202871] = 1, - ACTIONS(14994), 1, + [208305] = 1, + ACTIONS(15125), 1, anon_sym_ATendif, - [202875] = 1, - ACTIONS(14996), 1, + [208309] = 1, + ACTIONS(15127), 1, anon_sym_ATendenv, - [202879] = 1, - ACTIONS(14998), 1, - anon_sym_ATendif, - [202883] = 1, - ACTIONS(15000), 1, + [208313] = 1, + ACTIONS(15129), 1, anon_sym_ATendguest, - [202887] = 1, - ACTIONS(15002), 1, - anon_sym_ATendPushIf, - [202891] = 1, - ACTIONS(15004), 1, + [208317] = 1, + ACTIONS(15131), 1, + anon_sym_ATendauth, + [208321] = 1, + ACTIONS(15133), 1, anon_sym_ATendempty, - [202895] = 1, - ACTIONS(15006), 1, + [208325] = 1, + ACTIONS(15135), 1, anon_sym_ATendisset, - [202899] = 1, - ACTIONS(15008), 1, + [208329] = 1, + ACTIONS(15137), 1, anon_sym_ATendunless, - [202903] = 1, - ACTIONS(15010), 1, + [208333] = 1, + ACTIONS(15139), 1, anon_sym_ATendif, - [202907] = 1, - ACTIONS(15012), 1, + [208337] = 1, + ACTIONS(15141), 1, anon_sym_ATendPrependOnce, - [202911] = 1, - ACTIONS(15014), 1, + [208341] = 1, + ACTIONS(15143), 1, anon_sym_ATendprepend, - [202915] = 1, - ACTIONS(15016), 1, - anon_sym_ATendfor, - [202919] = 1, - ACTIONS(15018), 1, + [208345] = 1, + ACTIONS(15145), 1, + ts_builtin_sym_end, + [208349] = 1, + ACTIONS(15147), 1, + aux_sym_alpine_js_token2, + [208353] = 1, + ACTIONS(15149), 1, + anon_sym_ATendPushIf, + [208357] = 1, + ACTIONS(15151), 1, anon_sym_ATendPushOnce, - [202923] = 1, - ACTIONS(15020), 1, + [208361] = 1, + ACTIONS(15153), 1, anon_sym_ATendpush, - [202927] = 1, - ACTIONS(15022), 1, - anon_sym_ATendif, - [202931] = 1, - ACTIONS(15024), 1, + [208365] = 1, + ACTIONS(15155), 1, anon_sym_ATendfragment, - [202935] = 1, - ACTIONS(15026), 1, + [208369] = 1, + ACTIONS(15157), 1, anon_sym_ATendphp, - [202939] = 1, - ACTIONS(15028), 1, + [208373] = 1, + ACTIONS(15159), 1, anon_sym_BANG_BANG_RBRACE, - [202943] = 1, - ACTIONS(15030), 1, + [208377] = 1, + ACTIONS(15161), 1, anon_sym_RBRACE_RBRACE, - [202947] = 1, - ACTIONS(15032), 1, - anon_sym_ATenderror, - [202951] = 1, - ACTIONS(15034), 1, - anon_sym_ATendcan, - [202955] = 1, - ACTIONS(15036), 1, + [208381] = 1, + ACTIONS(15163), 1, anon_sym_RPAREN, - [202959] = 1, - ACTIONS(15038), 1, - anon_sym_ATendcannot, - [202963] = 1, - ACTIONS(15040), 1, - anon_sym_ATendcanany, - [202967] = 1, - ACTIONS(15042), 1, - anon_sym_ATendfeature, - [202971] = 1, - ACTIONS(15044), 1, - aux_sym__custom_token3, - [202975] = 1, - ACTIONS(12315), 1, + [208385] = 1, + ACTIONS(12530), 1, anon_sym_RPAREN, - [202979] = 1, - ACTIONS(15046), 1, - anon_sym_ATendfor, - [202983] = 1, - ACTIONS(15048), 1, - anon_sym_ATendforeach, - [202987] = 1, - ACTIONS(15050), 1, + [208389] = 1, + ACTIONS(15165), 1, + aux_sym_alpine_js_token2, + [208393] = 1, + ACTIONS(15167), 1, anon_sym_ATendvolt, - [202991] = 1, - ACTIONS(15052), 1, + [208397] = 1, + ACTIONS(15169), 1, anon_sym_ATendteleport, - [202995] = 1, - ACTIONS(15054), 1, + [208401] = 1, + ACTIONS(15171), 1, anon_sym_ATendpersist, - [202999] = 1, - ACTIONS(15056), 1, + [208405] = 1, + ACTIONS(15173), 1, anon_sym_ATendstory, - [203003] = 1, - ACTIONS(15058), 1, + [208409] = 1, + ACTIONS(15175), 1, anon_sym_ATendtask, - [203007] = 1, - ACTIONS(15060), 1, + [208413] = 1, + ACTIONS(15177), 1, anon_sym_ATendsetup, - [203011] = 1, - ACTIONS(15062), 1, + [208417] = 1, + ACTIONS(15179), 1, anon_sym_ATendwhile, - [203015] = 1, - ACTIONS(15064), 1, + [208421] = 1, + ACTIONS(15181), 1, anon_sym_ATendforelse, - [203019] = 1, - ACTIONS(15066), 1, + [208425] = 1, + ACTIONS(15183), 1, anon_sym_ATendforeach, - [203023] = 1, - ACTIONS(15068), 1, + [208429] = 1, + ACTIONS(15185), 1, anon_sym_ATendfor, - [203027] = 1, - ACTIONS(15070), 1, + [208433] = 1, + ACTIONS(15187), 1, aux_sym__custom_token3, - [203031] = 1, - ACTIONS(15072), 1, + [208437] = 1, + ACTIONS(15189), 1, anon_sym_ATendfeature, - [203035] = 1, - ACTIONS(15074), 1, + [208441] = 1, + ACTIONS(15191), 1, anon_sym_ATendcanany, - [203039] = 1, - ACTIONS(15076), 1, + [208445] = 1, + ACTIONS(15193), 1, anon_sym_ATendcannot, - [203043] = 1, - ACTIONS(15078), 1, + [208449] = 1, + ACTIONS(15195), 1, anon_sym_ATendcan, - [203047] = 1, - ACTIONS(15080), 1, + [208453] = 1, + ACTIONS(15197), 1, anon_sym_ATenderror, - [203051] = 1, - ACTIONS(15082), 1, + [208457] = 1, + ACTIONS(15199), 1, anon_sym_ATendif, - [203055] = 1, - ACTIONS(15084), 1, + [208461] = 1, + ACTIONS(15201), 1, anon_sym_ATendif, - [203059] = 1, - ACTIONS(15086), 1, + [208465] = 1, + ACTIONS(15203), 1, anon_sym_ATendenv, - [203063] = 1, - ACTIONS(15088), 1, - anon_sym_ATendforelse, - [203067] = 1, - ACTIONS(15090), 1, + [208469] = 1, + ACTIONS(15205), 1, anon_sym_ATendguest, - [203071] = 1, - ACTIONS(15092), 1, + [208473] = 1, + ACTIONS(15207), 1, anon_sym_ATendauth, - [203075] = 1, - ACTIONS(15094), 1, + [208477] = 1, + ACTIONS(15209), 1, anon_sym_ATendempty, - [203079] = 1, - ACTIONS(15096), 1, + [208481] = 1, + ACTIONS(15211), 1, anon_sym_ATendisset, - [203083] = 1, - ACTIONS(15098), 1, + [208485] = 1, + ACTIONS(15213), 1, anon_sym_ATendunless, - [203087] = 1, - ACTIONS(15100), 1, + [208489] = 1, + ACTIONS(15215), 1, anon_sym_ATendif, - [203091] = 1, - ACTIONS(15102), 1, + [208493] = 1, + ACTIONS(15217), 1, anon_sym_ATendPrependOnce, - [203095] = 1, - ACTIONS(15104), 1, + [208497] = 1, + ACTIONS(15219), 1, anon_sym_ATendprepend, - [203099] = 1, - ACTIONS(15106), 1, + [208501] = 1, + ACTIONS(15221), 1, anon_sym_ATendPushIf, - [203103] = 1, - ACTIONS(15108), 1, + [208505] = 1, + ACTIONS(15223), 1, anon_sym_ATendPushOnce, - [203107] = 1, - ACTIONS(15110), 1, + [208509] = 1, + ACTIONS(15225), 1, anon_sym_ATendpush, - [203111] = 1, - ACTIONS(15112), 1, - anon_sym_ATendwhile, - [203115] = 1, - ACTIONS(15114), 1, - anon_sym_ATendsetup, - [203119] = 1, - ACTIONS(15116), 1, + [208513] = 1, + ACTIONS(15227), 1, anon_sym_ATendfragment, - [203123] = 1, - ACTIONS(15118), 1, + [208517] = 1, + ACTIONS(15229), 1, anon_sym_ATendphp, - [203127] = 1, - ACTIONS(15120), 1, + [208521] = 1, + ACTIONS(15231), 1, anon_sym_BANG_BANG_RBRACE, - [203131] = 1, - ACTIONS(15122), 1, + [208525] = 1, + ACTIONS(15233), 1, anon_sym_RBRACE_RBRACE, - [203135] = 1, - ACTIONS(15124), 1, - anon_sym_ATendtask, - [203139] = 1, - ACTIONS(15126), 1, - anon_sym_ATendstory, - [203143] = 1, - ACTIONS(15128), 1, + [208529] = 1, + ACTIONS(15235), 1, anon_sym_RPAREN, - [203147] = 1, - ACTIONS(12369), 1, + [208533] = 1, + ACTIONS(12390), 1, anon_sym_RPAREN, - [203151] = 1, - ACTIONS(15130), 1, - anon_sym_ATendpersist, - [203155] = 1, - ACTIONS(15132), 1, - anon_sym_ATendteleport, - [203159] = 1, - ACTIONS(15134), 1, - anon_sym_ATendvolt, - [203163] = 1, - ACTIONS(15136), 1, + [208537] = 1, + ACTIONS(15237), 1, + aux_sym_alpine_js_token2, + [208541] = 1, + ACTIONS(15239), 1, anon_sym_ATendvolt, - [203167] = 1, - ACTIONS(15138), 1, + [208545] = 1, + ACTIONS(15241), 1, anon_sym_ATendteleport, - [203171] = 1, - ACTIONS(15140), 1, - anon_sym_ATendpersist, - [203175] = 1, - ACTIONS(15142), 1, + [208549] = 1, + ACTIONS(15243), 1, + anon_sym_ATendauth, + [208553] = 1, + ACTIONS(15245), 1, anon_sym_ATendstory, - [203179] = 1, - ACTIONS(15144), 1, + [208557] = 1, + ACTIONS(15247), 1, anon_sym_ATendtask, - [203183] = 1, - ACTIONS(15146), 1, + [208561] = 1, + ACTIONS(15249), 1, anon_sym_ATendsetup, - [203187] = 1, - ACTIONS(15148), 1, + [208565] = 1, + ACTIONS(15251), 1, anon_sym_ATendwhile, - [203191] = 1, - ACTIONS(15150), 1, + [208569] = 1, + ACTIONS(15253), 1, anon_sym_ATendforelse, - [203195] = 1, - ACTIONS(15152), 1, + [208573] = 1, + ACTIONS(15255), 1, anon_sym_ATendforeach, - [203199] = 1, - ACTIONS(15154), 1, - anon_sym_ATendPushOnce, - [203203] = 1, - ACTIONS(15156), 1, + [208577] = 1, + ACTIONS(15257), 1, + anon_sym_ATendfor, + [208581] = 1, + ACTIONS(15259), 1, aux_sym__custom_token3, - [203207] = 1, - ACTIONS(15158), 1, + [208585] = 1, + ACTIONS(15261), 1, anon_sym_ATendfeature, - [203211] = 1, - ACTIONS(15160), 1, + [208589] = 1, + ACTIONS(15263), 1, anon_sym_ATendcanany, - [203215] = 1, - ACTIONS(15162), 1, + [208593] = 1, + ACTIONS(15265), 1, anon_sym_ATendcannot, - [203219] = 1, - ACTIONS(15164), 1, + [208597] = 1, + ACTIONS(15267), 1, anon_sym_ATendcan, - [203223] = 1, - ACTIONS(15166), 1, + [208601] = 1, + ACTIONS(15269), 1, anon_sym_ATenderror, - [203227] = 1, - ACTIONS(15168), 1, + [208605] = 1, + ACTIONS(15271), 1, anon_sym_ATendif, - [203231] = 1, - ACTIONS(15170), 1, + [208609] = 1, + ACTIONS(15273), 1, anon_sym_ATendif, - [203235] = 1, - ACTIONS(15172), 1, + [208613] = 1, + ACTIONS(15275), 1, anon_sym_ATendenv, - [203239] = 1, - ACTIONS(15174), 1, + [208617] = 1, + ACTIONS(15277), 1, anon_sym_ATendguest, - [203243] = 1, - ACTIONS(15176), 1, - anon_sym_ATendauth, - [203247] = 1, - ACTIONS(15178), 1, + [208621] = 1, + ACTIONS(15279), 1, + anon_sym_RPAREN, + [208625] = 1, + ACTIONS(15281), 1, anon_sym_ATendempty, - [203251] = 1, - ACTIONS(15180), 1, + [208629] = 1, + ACTIONS(15283), 1, anon_sym_ATendisset, - [203255] = 1, - ACTIONS(15182), 1, + [208633] = 1, + ACTIONS(15285), 1, anon_sym_ATendunless, - [203259] = 1, - ACTIONS(15184), 1, + [208637] = 1, + ACTIONS(15287), 1, anon_sym_ATendif, - [203263] = 1, - ACTIONS(15186), 1, + [208641] = 1, + ACTIONS(15289), 1, anon_sym_ATendPrependOnce, - [203267] = 1, - ACTIONS(15188), 1, + [208645] = 1, + ACTIONS(15291), 1, anon_sym_ATendprepend, - [203271] = 1, - ACTIONS(15190), 1, + [208649] = 1, + ACTIONS(15293), 1, anon_sym_ATendPushIf, - [203275] = 1, - ACTIONS(15192), 1, + [208653] = 1, + ACTIONS(15295), 1, anon_sym_ATendPushOnce, - [203279] = 1, - ACTIONS(15194), 1, + [208657] = 1, + ACTIONS(15297), 1, anon_sym_ATendpush, - [203283] = 1, - ACTIONS(15196), 1, + [208661] = 1, + ACTIONS(15299), 1, anon_sym_ATendfragment, - [203287] = 1, - ACTIONS(15198), 1, + [208665] = 1, + ACTIONS(15301), 1, anon_sym_ATendphp, - [203291] = 1, - ACTIONS(15200), 1, + [208669] = 1, + ACTIONS(15303), 1, anon_sym_BANG_BANG_RBRACE, - [203295] = 1, - ACTIONS(15202), 1, + [208673] = 1, + ACTIONS(15305), 1, anon_sym_RBRACE_RBRACE, - [203299] = 1, - ACTIONS(12343), 1, - anon_sym_RPAREN, - [203303] = 1, - ACTIONS(15204), 1, - anon_sym_RPAREN, - [203307] = 1, - ACTIONS(15206), 1, + [208677] = 1, + ACTIONS(15307), 1, anon_sym_RPAREN, - [203311] = 1, - ACTIONS(12321), 1, + [208681] = 1, + ACTIONS(12424), 1, anon_sym_RPAREN, - [203315] = 1, - ACTIONS(15208), 1, + [208685] = 1, + ACTIONS(15309), 1, + aux_sym_alpine_js_token2, + [208689] = 1, + ACTIONS(15311), 1, anon_sym_ATendvolt, - [203319] = 1, - ACTIONS(15210), 1, + [208693] = 1, + ACTIONS(15313), 1, anon_sym_ATendteleport, - [203323] = 1, - ACTIONS(15212), 1, + [208697] = 1, + ACTIONS(15315), 1, anon_sym_ATendpersist, - [203327] = 1, - ACTIONS(15214), 1, + [208701] = 1, + ACTIONS(15317), 1, anon_sym_ATendstory, - [203331] = 1, - ACTIONS(15216), 1, + [208705] = 1, + ACTIONS(15319), 1, anon_sym_ATendtask, - [203335] = 1, - ACTIONS(15218), 1, + [208709] = 1, + ACTIONS(15321), 1, anon_sym_ATendsetup, - [203339] = 1, - ACTIONS(15220), 1, + [208713] = 1, + ACTIONS(15323), 1, anon_sym_ATendwhile, - [203343] = 1, - ACTIONS(15222), 1, + [208717] = 1, + ACTIONS(15325), 1, anon_sym_ATendforelse, - [203347] = 1, - ACTIONS(15224), 1, + [208721] = 1, + ACTIONS(15327), 1, anon_sym_ATendforeach, - [203351] = 1, - ACTIONS(15226), 1, + [208725] = 1, + ACTIONS(15329), 1, anon_sym_ATendfor, - [203355] = 1, - ACTIONS(15228), 1, + [208729] = 1, + ACTIONS(15331), 1, aux_sym__custom_token3, - [203359] = 1, - ACTIONS(15230), 1, + [208733] = 1, + ACTIONS(15333), 1, anon_sym_ATendfeature, - [203363] = 1, - ACTIONS(15232), 1, + [208737] = 1, + ACTIONS(15335), 1, anon_sym_ATendcanany, - [203367] = 1, - ACTIONS(15234), 1, + [208741] = 1, + ACTIONS(15337), 1, anon_sym_ATendcannot, - [203371] = 1, - ACTIONS(15236), 1, + [208745] = 1, + ACTIONS(15339), 1, anon_sym_ATendcan, - [203375] = 1, - ACTIONS(15238), 1, + [208749] = 1, + ACTIONS(15341), 1, anon_sym_ATenderror, - [203379] = 1, - ACTIONS(15240), 1, + [208753] = 1, + ACTIONS(15343), 1, anon_sym_ATendif, - [203383] = 1, - ACTIONS(15242), 1, + [208757] = 1, + ACTIONS(15345), 1, anon_sym_ATendif, - [203387] = 1, - ACTIONS(15244), 1, + [208761] = 1, + ACTIONS(15347), 1, anon_sym_ATendenv, - [203391] = 1, - ACTIONS(15246), 1, + [208765] = 1, + ACTIONS(15349), 1, anon_sym_ATendguest, - [203395] = 1, - ACTIONS(15248), 1, + [208769] = 1, + ACTIONS(15351), 1, anon_sym_ATendauth, - [203399] = 1, - ACTIONS(15250), 1, + [208773] = 1, + ACTIONS(15353), 1, anon_sym_ATendempty, - [203403] = 1, - ACTIONS(15252), 1, + [208777] = 1, + ACTIONS(15355), 1, anon_sym_ATendisset, - [203407] = 1, - ACTIONS(15254), 1, + [208781] = 1, + ACTIONS(15357), 1, anon_sym_ATendunless, - [203411] = 1, - ACTIONS(15256), 1, + [208785] = 1, + ACTIONS(15359), 1, anon_sym_ATendif, - [203415] = 1, - ACTIONS(15258), 1, + [208789] = 1, + ACTIONS(15361), 1, anon_sym_ATendPrependOnce, - [203419] = 1, - ACTIONS(15260), 1, + [208793] = 1, + ACTIONS(15363), 1, anon_sym_ATendprepend, - [203423] = 1, - ACTIONS(15262), 1, + [208797] = 1, + ACTIONS(15365), 1, anon_sym_ATendPushIf, - [203427] = 1, - ACTIONS(15264), 1, + [208801] = 1, + ACTIONS(15367), 1, anon_sym_ATendPushOnce, - [203431] = 1, - ACTIONS(15266), 1, + [208805] = 1, + ACTIONS(15369), 1, anon_sym_ATendpush, - [203435] = 1, - ACTIONS(15268), 1, + [208809] = 1, + ACTIONS(15371), 1, anon_sym_ATendfragment, - [203439] = 1, - ACTIONS(15270), 1, + [208813] = 1, + ACTIONS(15373), 1, anon_sym_ATendphp, - [203443] = 1, - ACTIONS(15272), 1, + [208817] = 1, + ACTIONS(15375), 1, anon_sym_BANG_BANG_RBRACE, - [203447] = 1, - ACTIONS(15274), 1, + [208821] = 1, + ACTIONS(15377), 1, anon_sym_RBRACE_RBRACE, - [203451] = 1, - ACTIONS(15276), 1, - anon_sym_RBRACE_RBRACE, - [203455] = 1, - ACTIONS(15278), 1, - anon_sym_RPAREN, - [203459] = 1, - ACTIONS(15280), 1, + [208825] = 1, + ACTIONS(15379), 1, anon_sym_BANG_BANG_RBRACE, - [203463] = 1, - ACTIONS(15282), 1, - anon_sym_ATendphp, - [203467] = 1, - ACTIONS(15284), 1, - anon_sym_ATendfragment, - [203471] = 1, - ACTIONS(12175), 1, + [208829] = 1, + ACTIONS(12534), 1, anon_sym_RPAREN, - [203475] = 1, - ACTIONS(15286), 1, - anon_sym_ATendpush, - [203479] = 1, - ACTIONS(15288), 1, - anon_sym_ATendcan, - [203483] = 1, - ACTIONS(15290), 1, + [208833] = 1, + ACTIONS(15381), 1, + aux_sym_alpine_js_token2, + [208837] = 1, + ACTIONS(15383), 1, anon_sym_ATendvolt, - [203487] = 1, - ACTIONS(15292), 1, + [208841] = 1, + ACTIONS(15385), 1, anon_sym_ATendteleport, - [203491] = 1, - ACTIONS(15294), 1, + [208845] = 1, + ACTIONS(15387), 1, anon_sym_ATendpersist, - [203495] = 1, - ACTIONS(15296), 1, + [208849] = 1, + ACTIONS(15389), 1, anon_sym_ATendstory, - [203499] = 1, - ACTIONS(15298), 1, + [208853] = 1, + ACTIONS(15391), 1, anon_sym_ATendtask, - [203503] = 1, - ACTIONS(15300), 1, + [208857] = 1, + ACTIONS(15393), 1, anon_sym_ATendsetup, - [203507] = 1, - ACTIONS(15302), 1, + [208861] = 1, + ACTIONS(15395), 1, anon_sym_ATendwhile, - [203511] = 1, - ACTIONS(15304), 1, + [208865] = 1, + ACTIONS(15397), 1, anon_sym_ATendforelse, - [203515] = 1, - ACTIONS(15306), 1, + [208869] = 1, + ACTIONS(15399), 1, anon_sym_ATendforeach, - [203519] = 1, - ACTIONS(15308), 1, + [208873] = 1, + ACTIONS(15401), 1, anon_sym_ATendfor, - [203523] = 1, - ACTIONS(15310), 1, + [208877] = 1, + ACTIONS(15403), 1, aux_sym__custom_token3, - [203527] = 1, - ACTIONS(15312), 1, + [208881] = 1, + ACTIONS(15405), 1, anon_sym_ATendfeature, - [203531] = 1, - ACTIONS(15314), 1, + [208885] = 1, + ACTIONS(15407), 1, anon_sym_ATendcanany, - [203535] = 1, - ACTIONS(15316), 1, + [208889] = 1, + ACTIONS(15409), 1, anon_sym_ATendcannot, - [203539] = 1, - ACTIONS(15318), 1, + [208893] = 1, + ACTIONS(15411), 1, anon_sym_ATendcan, - [203543] = 1, - ACTIONS(15320), 1, + [208897] = 1, + ACTIONS(15413), 1, anon_sym_ATenderror, - [203547] = 1, - ACTIONS(15322), 1, + [208901] = 1, + ACTIONS(15415), 1, anon_sym_ATendif, - [203551] = 1, - ACTIONS(15324), 1, + [208905] = 1, + ACTIONS(15417), 1, anon_sym_ATendif, - [203555] = 1, - ACTIONS(15326), 1, + [208909] = 1, + ACTIONS(15419), 1, anon_sym_ATendenv, - [203559] = 1, - ACTIONS(15328), 1, + [208913] = 1, + ACTIONS(15421), 1, anon_sym_ATendguest, - [203563] = 1, - ACTIONS(15330), 1, + [208917] = 1, + ACTIONS(15423), 1, anon_sym_ATendauth, - [203567] = 1, - ACTIONS(15332), 1, + [208921] = 1, + ACTIONS(15425), 1, anon_sym_ATendempty, - [203571] = 1, - ACTIONS(15334), 1, + [208925] = 1, + ACTIONS(15427), 1, anon_sym_ATendisset, - [203575] = 1, - ACTIONS(15336), 1, + [208929] = 1, + ACTIONS(15429), 1, anon_sym_ATendunless, - [203579] = 1, - ACTIONS(15338), 1, + [208933] = 1, + ACTIONS(15431), 1, anon_sym_ATendif, - [203583] = 1, - ACTIONS(15340), 1, + [208937] = 1, + ACTIONS(15433), 1, anon_sym_ATendPrependOnce, - [203587] = 1, - ACTIONS(15342), 1, + [208941] = 1, + ACTIONS(15435), 1, anon_sym_ATendprepend, - [203591] = 1, - ACTIONS(15344), 1, + [208945] = 1, + ACTIONS(15437), 1, anon_sym_ATendPushIf, - [203595] = 1, - ACTIONS(15346), 1, + [208949] = 1, + ACTIONS(15439), 1, anon_sym_ATendPushOnce, - [203599] = 1, - ACTIONS(15348), 1, + [208953] = 1, + ACTIONS(15441), 1, anon_sym_ATendpush, - [203603] = 1, - ACTIONS(15350), 1, - anon_sym_ATendPushIf, - [203607] = 1, - ACTIONS(15352), 1, - anon_sym_ATendprepend, - [203611] = 1, - ACTIONS(15354), 1, + [208957] = 1, + ACTIONS(15443), 1, anon_sym_ATendfragment, - [203615] = 1, - ACTIONS(15356), 1, + [208961] = 1, + ACTIONS(15445), 1, anon_sym_ATendphp, - [203619] = 1, - ACTIONS(15358), 1, + [208965] = 1, + ACTIONS(15447), 1, anon_sym_BANG_BANG_RBRACE, - [203623] = 1, - ACTIONS(15360), 1, + [208969] = 1, + ACTIONS(15449), 1, anon_sym_RBRACE_RBRACE, - [203627] = 1, - ACTIONS(15362), 1, - anon_sym_ATendPrependOnce, - [203631] = 1, - ACTIONS(15364), 1, + [208973] = 1, + ACTIONS(15451), 1, + anon_sym_RPAREN, + [208977] = 1, + ACTIONS(12522), 1, + anon_sym_RPAREN, + [208981] = 1, + ACTIONS(15453), 1, + aux_sym_alpine_js_token2, + [208985] = 1, + ACTIONS(15455), 1, + anon_sym_ATendvolt, + [208989] = 1, + ACTIONS(15457), 1, + anon_sym_ATendteleport, + [208993] = 1, + ACTIONS(15459), 1, + anon_sym_ATendpersist, + [208997] = 1, + ACTIONS(15461), 1, + anon_sym_ATendstory, + [209001] = 1, + ACTIONS(15463), 1, + anon_sym_ATendtask, + [209005] = 1, + ACTIONS(15465), 1, + anon_sym_ATendsetup, + [209009] = 1, + ACTIONS(15467), 1, + anon_sym_ATendwhile, + [209013] = 1, + ACTIONS(15469), 1, + anon_sym_ATendforelse, + [209017] = 1, + ACTIONS(15471), 1, + anon_sym_ATendforeach, + [209021] = 1, + ACTIONS(15473), 1, + anon_sym_ATendfor, + [209025] = 1, + ACTIONS(15475), 1, + aux_sym__custom_token3, + [209029] = 1, + ACTIONS(15477), 1, + anon_sym_ATendfeature, + [209033] = 1, + ACTIONS(15479), 1, + anon_sym_ATendcanany, + [209037] = 1, + ACTIONS(15481), 1, + anon_sym_ATendcannot, + [209041] = 1, + ACTIONS(15483), 1, + anon_sym_ATendcan, + [209045] = 1, + ACTIONS(15485), 1, + anon_sym_ATenderror, + [209049] = 1, + ACTIONS(15487), 1, anon_sym_ATendif, - [203635] = 1, - ACTIONS(15366), 1, + [209053] = 1, + ACTIONS(15489), 1, + anon_sym_ATendif, + [209057] = 1, + ACTIONS(15491), 1, + anon_sym_ATendenv, + [209061] = 1, + ACTIONS(15493), 1, + anon_sym_ATendguest, + [209065] = 1, + ACTIONS(15495), 1, + anon_sym_ATendauth, + [209069] = 1, + ACTIONS(15497), 1, + anon_sym_ATendempty, + [209073] = 1, + ACTIONS(15499), 1, + anon_sym_ATendisset, + [209077] = 1, + ACTIONS(15501), 1, anon_sym_ATendunless, - [203639] = 1, - ACTIONS(15368), 1, + [209081] = 1, + ACTIONS(15503), 1, + anon_sym_ATendif, + [209085] = 1, + ACTIONS(15505), 1, + anon_sym_ATendPrependOnce, + [209089] = 1, + ACTIONS(15507), 1, + anon_sym_ATendprepend, + [209093] = 1, + ACTIONS(15509), 1, + anon_sym_ATendPushIf, + [209097] = 1, + ACTIONS(15511), 1, + anon_sym_ATendPushOnce, + [209101] = 1, + ACTIONS(15513), 1, + anon_sym_ATendpush, + [209105] = 1, + ACTIONS(15515), 1, + anon_sym_ATendfragment, + [209109] = 1, + ACTIONS(15517), 1, + anon_sym_ATendphp, + [209113] = 1, + ACTIONS(15519), 1, + anon_sym_ATendvolt, + [209117] = 1, + ACTIONS(15521), 1, + anon_sym_RBRACE_RBRACE, + [209121] = 1, + ACTIONS(15523), 1, anon_sym_RPAREN, - [203643] = 1, - ACTIONS(15370), 1, - anon_sym_ATendisset, - [203647] = 1, - ACTIONS(15372), 1, - anon_sym_ATendempty, - [203651] = 1, - ACTIONS(15374), 1, - anon_sym_ATendauth, - [203655] = 1, - ACTIONS(12207), 1, + [209125] = 1, + ACTIONS(12466), 1, anon_sym_RPAREN, - [203659] = 1, - ACTIONS(15376), 1, + [209129] = 1, + ACTIONS(15525), 1, + aux_sym_alpine_js_token2, + [209133] = 1, + ACTIONS(15527), 1, anon_sym_ATendguest, - [203663] = 1, - ACTIONS(15378), 1, - anon_sym_ATendenv, - [203667] = 1, - ACTIONS(15380), 1, - anon_sym_ATendvolt, - [203671] = 1, - ACTIONS(15382), 1, + [209137] = 1, + ACTIONS(15529), 1, anon_sym_ATendteleport, - [203675] = 1, - ACTIONS(15384), 1, + [209141] = 1, + ACTIONS(15531), 1, anon_sym_ATendpersist, - [203679] = 1, - ACTIONS(15386), 1, + [209145] = 1, + ACTIONS(15533), 1, anon_sym_ATendstory, - [203683] = 1, - ACTIONS(15388), 1, + [209149] = 1, + ACTIONS(15535), 1, anon_sym_ATendtask, - [203687] = 1, - ACTIONS(15390), 1, + [209153] = 1, + ACTIONS(15537), 1, anon_sym_ATendsetup, - [203691] = 1, - ACTIONS(15392), 1, + [209157] = 1, + ACTIONS(15539), 1, anon_sym_ATendwhile, - [203695] = 1, - ACTIONS(15394), 1, + [209161] = 1, + ACTIONS(15541), 1, anon_sym_ATendforelse, - [203699] = 1, - ACTIONS(15396), 1, + [209165] = 1, + ACTIONS(15543), 1, anon_sym_ATendforeach, - [203703] = 1, - ACTIONS(15398), 1, + [209169] = 1, + ACTIONS(15545), 1, anon_sym_ATendfor, - [203707] = 1, - ACTIONS(15400), 1, + [209173] = 1, + ACTIONS(15547), 1, aux_sym__custom_token3, - [203711] = 1, - ACTIONS(15402), 1, + [209177] = 1, + ACTIONS(15549), 1, anon_sym_ATendfeature, - [203715] = 1, - ACTIONS(15404), 1, + [209181] = 1, + ACTIONS(15551), 1, anon_sym_ATendcanany, - [203719] = 1, - ACTIONS(15406), 1, + [209185] = 1, + ACTIONS(15553), 1, anon_sym_ATendcannot, - [203723] = 1, - ACTIONS(15408), 1, + [209189] = 1, + ACTIONS(15555), 1, anon_sym_ATendcan, - [203727] = 1, - ACTIONS(15410), 1, + [209193] = 1, + ACTIONS(15557), 1, anon_sym_ATenderror, - [203731] = 1, - ACTIONS(15412), 1, + [209197] = 1, + ACTIONS(15559), 1, anon_sym_ATendif, - [203735] = 1, - ACTIONS(15414), 1, + [209201] = 1, + ACTIONS(15561), 1, anon_sym_ATendif, - [203739] = 1, - ACTIONS(15416), 1, + [209205] = 1, + ACTIONS(15563), 1, anon_sym_ATendenv, - [203743] = 1, - ACTIONS(15418), 1, - anon_sym_ATendif, - [203747] = 1, - ACTIONS(15420), 1, + [209209] = 1, + ACTIONS(15565), 1, anon_sym_ATendguest, - [203751] = 1, - ACTIONS(15422), 1, + [209213] = 1, + ACTIONS(15567), 1, anon_sym_ATendauth, - [203755] = 1, - ACTIONS(15424), 1, + [209217] = 1, + ACTIONS(15569), 1, anon_sym_ATendempty, - [203759] = 1, - ACTIONS(15426), 1, + [209221] = 1, + ACTIONS(15571), 1, anon_sym_ATendisset, - [203763] = 1, - ACTIONS(15428), 1, + [209225] = 1, + ACTIONS(15573), 1, anon_sym_ATendunless, - [203767] = 1, - ACTIONS(15430), 1, + [209229] = 1, + ACTIONS(15575), 1, anon_sym_ATendif, - [203771] = 1, - ACTIONS(15432), 1, + [209233] = 1, + ACTIONS(15577), 1, anon_sym_ATendPrependOnce, - [203775] = 1, - ACTIONS(15434), 1, + [209237] = 1, + ACTIONS(15579), 1, anon_sym_ATendprepend, - [203779] = 1, - ACTIONS(15436), 1, + [209241] = 1, + ACTIONS(15581), 1, anon_sym_ATendPushIf, - [203783] = 1, - ACTIONS(15438), 1, + [209245] = 1, + ACTIONS(15583), 1, anon_sym_ATendPushOnce, - [203787] = 1, - ACTIONS(15440), 1, + [209249] = 1, + ACTIONS(15585), 1, anon_sym_ATendpush, - [203791] = 1, - ACTIONS(15442), 1, - anon_sym_ATendif, - [203795] = 1, - ACTIONS(15444), 1, - anon_sym_ATenderror, - [203799] = 1, - ACTIONS(15446), 1, + [209253] = 1, + ACTIONS(15587), 1, anon_sym_ATendfragment, - [203803] = 1, - ACTIONS(15448), 1, + [209257] = 1, + ACTIONS(15589), 1, anon_sym_ATendphp, - [203807] = 1, - ACTIONS(15450), 1, + [209261] = 1, + ACTIONS(15591), 1, anon_sym_BANG_BANG_RBRACE, - [203811] = 1, - ACTIONS(15452), 1, + [209265] = 1, + ACTIONS(15593), 1, anon_sym_RBRACE_RBRACE, - [203815] = 1, - ACTIONS(15454), 1, - anon_sym_ATendauth, - [203819] = 1, - ACTIONS(15456), 1, - anon_sym_ATendcannot, - [203823] = 1, - ACTIONS(15458), 1, + [209269] = 1, + ACTIONS(15595), 1, anon_sym_RPAREN, - [203827] = 1, - ACTIONS(15460), 1, - anon_sym_ATendcanany, - [203831] = 1, - ACTIONS(15462), 1, - anon_sym_ATendfeature, - [203835] = 1, - ACTIONS(15464), 1, - aux_sym__custom_token3, - [203839] = 1, - ACTIONS(12245), 1, + [209273] = 1, + ACTIONS(12392), 1, anon_sym_RPAREN, - [203843] = 1, - ACTIONS(15466), 1, - anon_sym_ATendfor, - [203847] = 1, - ACTIONS(15468), 1, - anon_sym_ATendforeach, - [203851] = 1, - ACTIONS(15470), 1, - anon_sym_ATendforelse, - [203855] = 1, - ACTIONS(15472), 1, + [209277] = 1, + ACTIONS(15597), 1, + aux_sym_alpine_js_token2, + [209281] = 1, + ACTIONS(15599), 1, anon_sym_ATendvolt, - [203859] = 1, - ACTIONS(15474), 1, + [209285] = 1, + ACTIONS(15601), 1, anon_sym_ATendteleport, - [203863] = 1, - ACTIONS(15476), 1, + [209289] = 1, + ACTIONS(15603), 1, anon_sym_ATendpersist, - [203867] = 1, - ACTIONS(15478), 1, + [209293] = 1, + ACTIONS(15605), 1, anon_sym_ATendstory, - [203871] = 1, - ACTIONS(15480), 1, + [209297] = 1, + ACTIONS(15607), 1, anon_sym_ATendtask, - [203875] = 1, - ACTIONS(15482), 1, + [209301] = 1, + ACTIONS(15609), 1, anon_sym_ATendsetup, - [203879] = 1, - ACTIONS(15484), 1, + [209305] = 1, + ACTIONS(15611), 1, anon_sym_ATendwhile, - [203883] = 1, - ACTIONS(15486), 1, + [209309] = 1, + ACTIONS(15613), 1, anon_sym_ATendforelse, - [203887] = 1, - ACTIONS(15488), 1, + [209313] = 1, + ACTIONS(15615), 1, anon_sym_ATendforeach, - [203891] = 1, - ACTIONS(15490), 1, + [209317] = 1, + ACTIONS(15617), 1, anon_sym_ATendfor, - [203895] = 1, - ACTIONS(15492), 1, + [209321] = 1, + ACTIONS(15619), 1, aux_sym__custom_token3, - [203899] = 1, - ACTIONS(15494), 1, + [209325] = 1, + ACTIONS(15621), 1, anon_sym_ATendfeature, - [203903] = 1, - ACTIONS(15496), 1, + [209329] = 1, + ACTIONS(15623), 1, anon_sym_ATendcanany, - [203907] = 1, - ACTIONS(15498), 1, + [209333] = 1, + ACTIONS(15625), 1, anon_sym_ATendcannot, - [203911] = 1, - ACTIONS(15500), 1, + [209337] = 1, + ACTIONS(15627), 1, anon_sym_ATendcan, - [203915] = 1, - ACTIONS(15502), 1, + [209341] = 1, + ACTIONS(15629), 1, anon_sym_ATenderror, - [203919] = 1, - ACTIONS(15504), 1, + [209345] = 1, + ACTIONS(15631), 1, anon_sym_ATendif, - [203923] = 1, - ACTIONS(15506), 1, + [209349] = 1, + ACTIONS(15633), 1, anon_sym_ATendif, - [203927] = 1, - ACTIONS(15508), 1, + [209353] = 1, + ACTIONS(15635), 1, anon_sym_ATendenv, - [203931] = 1, - ACTIONS(15510), 1, + [209357] = 1, + ACTIONS(15637), 1, anon_sym_ATendwhile, - [203935] = 1, - ACTIONS(15512), 1, - anon_sym_ATendguest, - [203939] = 1, - ACTIONS(15514), 1, - anon_sym_BANG_BANG_RBRACE, - [203943] = 1, - ACTIONS(15516), 1, + [209361] = 1, + ACTIONS(15639), 1, + anon_sym_ATendauth, + [209365] = 1, + ACTIONS(15641), 1, anon_sym_ATendempty, - [203947] = 1, - ACTIONS(15518), 1, + [209369] = 1, + ACTIONS(15643), 1, anon_sym_ATendisset, - [203951] = 1, - ACTIONS(15520), 1, + [209373] = 1, + ACTIONS(15645), 1, anon_sym_ATendunless, - [203955] = 1, - ACTIONS(15522), 1, + [209377] = 1, + ACTIONS(15647), 1, anon_sym_ATendif, - [203959] = 1, - ACTIONS(15524), 1, + [209381] = 1, + ACTIONS(15649), 1, anon_sym_ATendPrependOnce, - [203963] = 1, - ACTIONS(15526), 1, + [209385] = 1, + ACTIONS(15651), 1, anon_sym_ATendprepend, - [203967] = 1, - ACTIONS(15528), 1, + [209389] = 1, + ACTIONS(15653), 1, anon_sym_ATendPushIf, - [203971] = 1, - ACTIONS(15530), 1, + [209393] = 1, + ACTIONS(15655), 1, anon_sym_ATendPushOnce, - [203975] = 1, - ACTIONS(15532), 1, + [209397] = 1, + ACTIONS(15657), 1, anon_sym_ATendpush, - [203979] = 1, - ACTIONS(15534), 1, - anon_sym_ATendsetup, - [203983] = 1, - ACTIONS(15536), 1, - anon_sym_ATendtask, - [203987] = 1, - ACTIONS(15538), 1, + [209401] = 1, + ACTIONS(15659), 1, anon_sym_ATendfragment, - [203991] = 1, - ACTIONS(15540), 1, + [209405] = 1, + ACTIONS(15661), 1, anon_sym_ATendphp, - [203995] = 1, - ACTIONS(15542), 1, + [209409] = 1, + ACTIONS(15663), 1, anon_sym_BANG_BANG_RBRACE, - [203999] = 1, - ACTIONS(15544), 1, + [209413] = 1, + ACTIONS(15665), 1, anon_sym_RBRACE_RBRACE, - [204003] = 1, - ACTIONS(15546), 1, - anon_sym_ATendstory, - [204007] = 1, - ACTIONS(15548), 1, + [209417] = 1, + ACTIONS(15667), 1, anon_sym_RPAREN, - [204011] = 1, - ACTIONS(15550), 1, - anon_sym_ATendpersist, - [204015] = 1, - ACTIONS(15552), 1, - anon_sym_ATendteleport, - [204019] = 1, - ACTIONS(12283), 1, + [209421] = 1, + ACTIONS(12448), 1, anon_sym_RPAREN, - [204023] = 1, - ACTIONS(15554), 1, + [209425] = 1, + ACTIONS(15669), 1, + aux_sym_alpine_js_token2, + [209429] = 1, + ACTIONS(15671), 1, anon_sym_ATendvolt, - [204027] = 1, - ACTIONS(15556), 1, + [209433] = 1, + ACTIONS(15673), 1, anon_sym_ATendteleport, - [204031] = 1, - ACTIONS(15558), 1, + [209437] = 1, + ACTIONS(15675), 1, anon_sym_ATendpersist, - [204035] = 1, - ACTIONS(15560), 1, + [209441] = 1, + ACTIONS(15677), 1, anon_sym_ATendstory, - [204039] = 1, - ACTIONS(15562), 1, + [209445] = 1, + ACTIONS(15679), 1, anon_sym_ATendtask, - [204043] = 1, - ACTIONS(15564), 1, + [209449] = 1, + ACTIONS(15681), 1, anon_sym_ATendsetup, - [204047] = 1, - ACTIONS(15566), 1, + [209453] = 1, + ACTIONS(15683), 1, anon_sym_ATendwhile, - [204051] = 1, - ACTIONS(15568), 1, + [209457] = 1, + ACTIONS(15685), 1, anon_sym_ATendforelse, - [204055] = 1, - ACTIONS(15570), 1, + [209461] = 1, + ACTIONS(15687), 1, anon_sym_ATendforeach, - [204059] = 1, - ACTIONS(15572), 1, + [209465] = 1, + ACTIONS(15689), 1, anon_sym_ATendfor, - [204063] = 1, - ACTIONS(15574), 1, + [209469] = 1, + ACTIONS(15691), 1, aux_sym__custom_token3, - [204067] = 1, - ACTIONS(15576), 1, + [209473] = 1, + ACTIONS(15693), 1, anon_sym_ATendfeature, - [204071] = 1, - ACTIONS(15578), 1, + [209477] = 1, + ACTIONS(15695), 1, anon_sym_ATendcanany, - [204075] = 1, - ACTIONS(15580), 1, + [209481] = 1, + ACTIONS(15697), 1, anon_sym_ATendcannot, - [204079] = 1, - ACTIONS(15582), 1, + [209485] = 1, + ACTIONS(15699), 1, anon_sym_ATendcan, - [204083] = 1, - ACTIONS(15584), 1, + [209489] = 1, + ACTIONS(15701), 1, anon_sym_ATenderror, - [204087] = 1, - ACTIONS(15586), 1, + [209493] = 1, + ACTIONS(15703), 1, anon_sym_ATendif, - [204091] = 1, - ACTIONS(15588), 1, + [209497] = 1, + ACTIONS(15705), 1, anon_sym_ATendif, - [204095] = 1, - ACTIONS(15590), 1, + [209501] = 1, + ACTIONS(15707), 1, anon_sym_ATendenv, - [204099] = 1, - ACTIONS(12163), 1, - anon_sym_RPAREN, - [204103] = 1, - ACTIONS(15592), 1, + [209505] = 1, + ACTIONS(15709), 1, anon_sym_ATendguest, - [204107] = 1, - ACTIONS(15594), 1, + [209509] = 1, + ACTIONS(15711), 1, anon_sym_ATendauth, - [204111] = 1, - ACTIONS(15596), 1, - anon_sym_LPAREN, - [204115] = 1, - ACTIONS(15598), 1, + [209513] = 1, + ACTIONS(15713), 1, anon_sym_ATendempty, - [204119] = 1, - ACTIONS(15600), 1, + [209517] = 1, + ACTIONS(15715), 1, anon_sym_ATendisset, - [204123] = 1, - ACTIONS(15602), 1, + [209521] = 1, + ACTIONS(15717), 1, anon_sym_ATendunless, - [204127] = 1, - ACTIONS(15604), 1, + [209525] = 1, + ACTIONS(15719), 1, anon_sym_ATendif, - [204131] = 1, - ACTIONS(15606), 1, + [209529] = 1, + ACTIONS(15721), 1, anon_sym_ATendPrependOnce, - [204135] = 1, - ACTIONS(15608), 1, + [209533] = 1, + ACTIONS(15723), 1, anon_sym_ATendprepend, - [204139] = 1, - ACTIONS(15610), 1, + [209537] = 1, + ACTIONS(15725), 1, anon_sym_ATendPushIf, - [204143] = 1, - ACTIONS(15612), 1, + [209541] = 1, + ACTIONS(15727), 1, anon_sym_ATendPushOnce, - [204147] = 1, - ACTIONS(15614), 1, + [209545] = 1, + ACTIONS(15729), 1, anon_sym_ATendpush, - [204151] = 1, - ACTIONS(15616), 1, - anon_sym_RPAREN, - [204155] = 1, - ACTIONS(15618), 1, + [209549] = 1, + ACTIONS(15731), 1, anon_sym_ATendfragment, - [204159] = 1, - ACTIONS(15620), 1, + [209553] = 1, + ACTIONS(15733), 1, anon_sym_ATendphp, - [204163] = 1, - ACTIONS(15622), 1, + [209557] = 1, + ACTIONS(15735), 1, + anon_sym_BANG_BANG_RBRACE, + [209561] = 1, + ACTIONS(15737), 1, + anon_sym_RBRACE_RBRACE, + [209565] = 1, + ACTIONS(15739), 1, + anon_sym_RPAREN, + [209569] = 1, + ACTIONS(12440), 1, + anon_sym_RPAREN, + [209573] = 1, + ACTIONS(15741), 1, + aux_sym_alpine_js_token2, + [209577] = 1, + ACTIONS(15743), 1, + anon_sym_ATendvolt, + [209581] = 1, + ACTIONS(15745), 1, + anon_sym_ATendteleport, + [209585] = 1, + ACTIONS(15747), 1, + anon_sym_ATendpersist, + [209589] = 1, + ACTIONS(15749), 1, + anon_sym_ATendstory, + [209593] = 1, + ACTIONS(15751), 1, + anon_sym_ATendtask, + [209597] = 1, + ACTIONS(15753), 1, + anon_sym_ATendsetup, + [209601] = 1, + ACTIONS(15755), 1, + anon_sym_ATendif, + [209605] = 1, + ACTIONS(15757), 1, + anon_sym_ATendforelse, + [209609] = 1, + ACTIONS(15759), 1, + anon_sym_ATendforeach, + [209613] = 1, + ACTIONS(15761), 1, + anon_sym_ATendfor, + [209617] = 1, + ACTIONS(15763), 1, + aux_sym__custom_token3, + [209621] = 1, + ACTIONS(15765), 1, + anon_sym_ATendfeature, + [209625] = 1, + ACTIONS(15767), 1, + anon_sym_ATendcanany, + [209629] = 1, + ACTIONS(15769), 1, + anon_sym_ATendcannot, + [209633] = 1, + ACTIONS(15771), 1, + anon_sym_ATendcan, + [209637] = 1, + ACTIONS(15773), 1, + anon_sym_ATenderror, + [209641] = 1, + ACTIONS(15775), 1, + anon_sym_ATendif, + [209645] = 1, + ACTIONS(12506), 1, + anon_sym_RPAREN, + [209649] = 1, + ACTIONS(15777), 1, + anon_sym_ATendenv, + [209653] = 1, + ACTIONS(15779), 1, + anon_sym_ATendguest, + [209657] = 1, + ACTIONS(15781), 1, + anon_sym_ATendauth, + [209661] = 1, + ACTIONS(15783), 1, anon_sym_ATendempty, - [204167] = 1, - ACTIONS(15624), 1, + [209665] = 1, + ACTIONS(15785), 1, + anon_sym_ATendisset, + [209669] = 1, + ACTIONS(15787), 1, + anon_sym_ATendunless, + [209673] = 1, + ACTIONS(15789), 1, + anon_sym_ATendif, + [209677] = 1, + ACTIONS(15791), 1, + anon_sym_ATendPrependOnce, + [209681] = 1, + ACTIONS(15793), 1, + anon_sym_ATendprepend, + [209685] = 1, + ACTIONS(15795), 1, + anon_sym_ATendPushIf, + [209689] = 1, + ACTIONS(15797), 1, + anon_sym_ATendPushOnce, + [209693] = 1, + ACTIONS(15799), 1, + anon_sym_ATendpush, + [209697] = 1, + ACTIONS(15801), 1, + anon_sym_ATendfragment, + [209701] = 1, + ACTIONS(15803), 1, + anon_sym_ATendphp, + [209705] = 1, + ACTIONS(15805), 1, + anon_sym_BANG_BANG_RBRACE, + [209709] = 1, + ACTIONS(15807), 1, anon_sym_RBRACE_RBRACE, - [204171] = 1, - ACTIONS(15626), 1, + [209713] = 1, + ACTIONS(15809), 1, anon_sym_RPAREN, - [204175] = 1, - ACTIONS(12333), 1, + [209717] = 1, + ACTIONS(12398), 1, anon_sym_RPAREN, - [204179] = 1, - ACTIONS(15628), 1, + [209721] = 1, + ACTIONS(15811), 1, + aux_sym_alpine_js_token2, + [209725] = 1, + ACTIONS(15813), 1, anon_sym_ATendvolt, - [204183] = 1, - ACTIONS(15630), 1, + [209729] = 1, + ACTIONS(15815), 1, anon_sym_ATendteleport, - [204187] = 1, - ACTIONS(15632), 1, + [209733] = 1, + ACTIONS(15817), 1, anon_sym_ATendpersist, - [204191] = 1, - ACTIONS(15634), 1, + [209737] = 1, + ACTIONS(15819), 1, anon_sym_ATendstory, - [204195] = 1, - ACTIONS(15636), 1, + [209741] = 1, + ACTIONS(15821), 1, anon_sym_ATendtask, - [204199] = 1, - ACTIONS(15638), 1, + [209745] = 1, + ACTIONS(15823), 1, anon_sym_ATendsetup, - [204203] = 1, - ACTIONS(15640), 1, + [209749] = 1, + ACTIONS(15825), 1, anon_sym_ATendwhile, - [204207] = 1, - ACTIONS(15642), 1, + [209753] = 1, + ACTIONS(15827), 1, anon_sym_ATendforelse, - [204211] = 1, - ACTIONS(15644), 1, + [209757] = 1, + ACTIONS(15829), 1, anon_sym_ATendforeach, - [204215] = 1, - ACTIONS(15646), 1, + [209761] = 1, + ACTIONS(15831), 1, anon_sym_ATendfor, - [204219] = 1, - ACTIONS(15648), 1, + [209765] = 1, + ACTIONS(15833), 1, aux_sym__custom_token3, - [204223] = 1, - ACTIONS(15650), 1, + [209769] = 1, + ACTIONS(15835), 1, anon_sym_ATendfeature, - [204227] = 1, - ACTIONS(15652), 1, + [209773] = 1, + ACTIONS(15837), 1, anon_sym_ATendcanany, - [204231] = 1, - ACTIONS(15654), 1, + [209777] = 1, + ACTIONS(15839), 1, anon_sym_ATendcannot, - [204235] = 1, - ACTIONS(15656), 1, + [209781] = 1, + ACTIONS(15841), 1, anon_sym_ATendcan, - [204239] = 1, - ACTIONS(15658), 1, + [209785] = 1, + ACTIONS(15843), 1, anon_sym_ATenderror, - [204243] = 1, - ACTIONS(15660), 1, + [209789] = 1, + ACTIONS(15845), 1, anon_sym_ATendif, - [204247] = 1, - ACTIONS(15662), 1, + [209793] = 1, + ACTIONS(15847), 1, anon_sym_ATendif, - [204251] = 1, - ACTIONS(15664), 1, + [209797] = 1, + ACTIONS(15849), 1, anon_sym_ATendenv, - [204255] = 1, - ACTIONS(15666), 1, + [209801] = 1, + ACTIONS(15851), 1, anon_sym_ATendguest, - [204259] = 1, - ACTIONS(15668), 1, + [209805] = 1, + ACTIONS(15853), 1, + anon_sym_LPAREN, + [209809] = 1, + ACTIONS(15855), 1, anon_sym_ATendauth, - [204263] = 1, - ACTIONS(15670), 1, + [209813] = 1, + ACTIONS(15857), 1, anon_sym_ATendempty, - [204267] = 1, - ACTIONS(15672), 1, + [209817] = 1, + ACTIONS(15859), 1, anon_sym_ATendisset, - [204271] = 1, - ACTIONS(15674), 1, + [209821] = 1, + ACTIONS(15861), 1, anon_sym_ATendunless, - [204275] = 1, - ACTIONS(15676), 1, + [209825] = 1, + ACTIONS(15863), 1, anon_sym_ATendif, - [204279] = 1, - ACTIONS(15678), 1, + [209829] = 1, + ACTIONS(15865), 1, anon_sym_ATendPrependOnce, - [204283] = 1, - ACTIONS(15680), 1, + [209833] = 1, + ACTIONS(15867), 1, anon_sym_ATendprepend, - [204287] = 1, - ACTIONS(15682), 1, + [209837] = 1, + ACTIONS(15869), 1, anon_sym_ATendPushIf, - [204291] = 1, - ACTIONS(15684), 1, + [209841] = 1, + ACTIONS(15871), 1, anon_sym_ATendPushOnce, - [204295] = 1, - ACTIONS(15686), 1, + [209845] = 1, + ACTIONS(15873), 1, anon_sym_ATendpush, - [204299] = 1, - ACTIONS(15688), 1, - anon_sym_RBRACE_RBRACE, - [204303] = 1, - ACTIONS(15690), 1, + [209849] = 1, + ACTIONS(15875), 1, anon_sym_ATendfragment, - [204307] = 1, - ACTIONS(15692), 1, + [209853] = 1, + ACTIONS(15877), 1, anon_sym_ATendphp, - [204311] = 1, - ACTIONS(15694), 1, + [209857] = 1, + ACTIONS(15879), 1, anon_sym_BANG_BANG_RBRACE, - [204315] = 1, - ACTIONS(15696), 1, + [209861] = 1, + ACTIONS(15881), 1, anon_sym_RBRACE_RBRACE, - [204319] = 1, - ACTIONS(15698), 1, - anon_sym_BANG_BANG_RBRACE, - [204323] = 1, - ACTIONS(15700), 1, - anon_sym_ATendphp, - [204327] = 1, - ACTIONS(15702), 1, + [209865] = 1, + ACTIONS(15883), 1, anon_sym_RPAREN, - [204331] = 1, - ACTIONS(15704), 1, - anon_sym_ATendfragment, - [204335] = 1, - ACTIONS(15706), 1, - anon_sym_ATendpush, - [204339] = 1, - ACTIONS(15708), 1, - anon_sym_ATendPushOnce, - [204343] = 1, - ACTIONS(15710), 1, + [209869] = 1, + ACTIONS(15885), 1, + anon_sym_RBRACE_RBRACE, + [209873] = 1, + ACTIONS(15887), 1, + aux_sym_alpine_js_token2, + [209877] = 1, + ACTIONS(15889), 1, + anon_sym_ATendvolt, + [209881] = 1, + ACTIONS(15891), 1, + anon_sym_ATendteleport, + [209885] = 1, + ACTIONS(15893), 1, + anon_sym_ATendpersist, + [209889] = 1, + ACTIONS(15895), 1, + anon_sym_ATendstory, + [209893] = 1, + ACTIONS(15897), 1, + anon_sym_ATendtask, + [209897] = 1, + ACTIONS(15899), 1, + anon_sym_ATendsetup, + [209901] = 1, + ACTIONS(15901), 1, + anon_sym_ATendwhile, + [209905] = 1, + ACTIONS(15903), 1, + anon_sym_ATendforelse, + [209909] = 1, + ACTIONS(15905), 1, + anon_sym_ATendforeach, + [209913] = 1, + ACTIONS(15907), 1, + anon_sym_ATendfor, + [209917] = 1, + ACTIONS(15909), 1, + aux_sym__custom_token3, + [209921] = 1, + ACTIONS(15911), 1, + anon_sym_ATendfeature, + [209925] = 1, + ACTIONS(15913), 1, + anon_sym_ATendcanany, + [209929] = 1, + ACTIONS(15915), 1, + anon_sym_ATendcannot, + [209933] = 1, + ACTIONS(15917), 1, + anon_sym_ATendcan, + [209937] = 1, + ACTIONS(15919), 1, + anon_sym_ATenderror, + [209941] = 1, + ACTIONS(15921), 1, + anon_sym_ATendif, + [209945] = 1, + ACTIONS(15923), 1, + anon_sym_ATendif, + [209949] = 1, + ACTIONS(15925), 1, + anon_sym_ATendenv, + [209953] = 1, + ACTIONS(15927), 1, + anon_sym_ATendguest, + [209957] = 1, + ACTIONS(15929), 1, + anon_sym_ATendauth, + [209961] = 1, + ACTIONS(15931), 1, + anon_sym_ATendempty, + [209965] = 1, + ACTIONS(15933), 1, + anon_sym_ATendisset, + [209969] = 1, + ACTIONS(15935), 1, + anon_sym_ATendunless, + [209973] = 1, + ACTIONS(15937), 1, + anon_sym_ATendif, + [209977] = 1, + ACTIONS(15939), 1, + anon_sym_ATendPrependOnce, + [209981] = 1, + ACTIONS(15941), 1, + anon_sym_ATendprepend, + [209985] = 1, + ACTIONS(15943), 1, anon_sym_ATendPushIf, - [204347] = 1, - ACTIONS(12377), 1, + [209989] = 1, + ACTIONS(15945), 1, + anon_sym_ATendPushOnce, + [209993] = 1, + ACTIONS(15947), 1, + anon_sym_ATendpush, + [209997] = 1, + ACTIONS(15949), 1, + anon_sym_ATendfragment, + [210001] = 1, + ACTIONS(15951), 1, + anon_sym_ATendphp, + [210005] = 1, + ACTIONS(15953), 1, + anon_sym_BANG_BANG_RBRACE, + [210009] = 1, + ACTIONS(15955), 1, + anon_sym_RBRACE_RBRACE, + [210013] = 1, + ACTIONS(15957), 1, anon_sym_RPAREN, - [204351] = 1, - ACTIONS(15712), 1, - anon_sym_ATendprepend, - [204355] = 1, - ACTIONS(15714), 1, - anon_sym_ATendPrependOnce, - [204359] = 1, - ACTIONS(15716), 1, - anon_sym_ATendif, - [204363] = 1, - ACTIONS(15718), 1, + [210017] = 1, + ACTIONS(12472), 1, + anon_sym_RPAREN, + [210021] = 1, + ACTIONS(15959), 1, + aux_sym_alpine_js_token2, + [210025] = 1, + ACTIONS(15961), 1, anon_sym_ATendvolt, - [204367] = 1, - ACTIONS(15720), 1, + [210029] = 1, + ACTIONS(15963), 1, anon_sym_ATendteleport, - [204371] = 1, - ACTIONS(15722), 1, + [210033] = 1, + ACTIONS(15965), 1, anon_sym_ATendpersist, - [204375] = 1, - ACTIONS(15724), 1, + [210037] = 1, + ACTIONS(15967), 1, anon_sym_ATendstory, - [204379] = 1, - ACTIONS(15726), 1, + [210041] = 1, + ACTIONS(15969), 1, anon_sym_ATendtask, - [204383] = 1, - ACTIONS(15728), 1, + [210045] = 1, + ACTIONS(15971), 1, anon_sym_ATendsetup, - [204387] = 1, - ACTIONS(15730), 1, + [210049] = 1, + ACTIONS(15973), 1, anon_sym_ATendwhile, - [204391] = 1, - ACTIONS(15732), 1, + [210053] = 1, + ACTIONS(15975), 1, anon_sym_ATendforelse, - [204395] = 1, - ACTIONS(15734), 1, + [210057] = 1, + ACTIONS(15977), 1, anon_sym_ATendforeach, - [204399] = 1, - ACTIONS(15736), 1, + [210061] = 1, + ACTIONS(15979), 1, anon_sym_ATendfor, - [204403] = 1, - ACTIONS(15738), 1, + [210065] = 1, + ACTIONS(15981), 1, aux_sym__custom_token3, - [204407] = 1, - ACTIONS(15740), 1, + [210069] = 1, + ACTIONS(15983), 1, anon_sym_ATendfeature, - [204411] = 1, - ACTIONS(15742), 1, + [210073] = 1, + ACTIONS(15985), 1, anon_sym_ATendcanany, - [204415] = 1, - ACTIONS(15744), 1, + [210077] = 1, + ACTIONS(15987), 1, anon_sym_ATendcannot, - [204419] = 1, - ACTIONS(15746), 1, + [210081] = 1, + ACTIONS(15989), 1, anon_sym_ATendcan, - [204423] = 1, - ACTIONS(15748), 1, + [210085] = 1, + ACTIONS(15991), 1, anon_sym_ATenderror, - [204427] = 1, - ACTIONS(15750), 1, + [210089] = 1, + ACTIONS(15993), 1, anon_sym_ATendif, - [204431] = 1, - ACTIONS(15752), 1, + [210093] = 1, + ACTIONS(15995), 1, anon_sym_ATendif, - [204435] = 1, - ACTIONS(15754), 1, + [210097] = 1, + ACTIONS(15997), 1, anon_sym_ATendenv, - [204439] = 1, - ACTIONS(15756), 1, - anon_sym_ATendunless, - [204443] = 1, - ACTIONS(15758), 1, + [210101] = 1, + ACTIONS(15999), 1, anon_sym_ATendguest, - [204447] = 1, - ACTIONS(15760), 1, + [210105] = 1, + ACTIONS(16001), 1, anon_sym_ATendauth, - [204451] = 1, - ACTIONS(15762), 1, + [210109] = 1, + ACTIONS(16003), 1, + anon_sym_ATendempty, + [210113] = 1, + ACTIONS(16005), 1, + anon_sym_ATendisset, + [210117] = 1, + ACTIONS(16007), 1, + anon_sym_ATendunless, + [210121] = 1, + ACTIONS(16009), 1, + anon_sym_ATendif, + [210125] = 1, + ACTIONS(16011), 1, + anon_sym_ATendPrependOnce, + [210129] = 1, + ACTIONS(16013), 1, + anon_sym_ATendprepend, + [210133] = 1, + ACTIONS(16015), 1, + anon_sym_ATendPushIf, + [210137] = 1, + ACTIONS(16017), 1, + anon_sym_ATendPushOnce, + [210141] = 1, + ACTIONS(16019), 1, + anon_sym_ATendpush, + [210145] = 1, + ACTIONS(16021), 1, + anon_sym_ATendfragment, + [210149] = 1, + ACTIONS(16023), 1, + anon_sym_ATendphp, + [210153] = 1, + ACTIONS(16025), 1, + anon_sym_BANG_BANG_RBRACE, + [210157] = 1, + ACTIONS(16027), 1, anon_sym_LPAREN, - [204455] = 1, - ACTIONS(15764), 1, + [210161] = 1, + ACTIONS(16029), 1, + aux_sym_alpine_js_token2, + [210165] = 1, + ACTIONS(16031), 1, anon_sym_LPAREN, - [204459] = 1, - ACTIONS(15766), 1, + [210169] = 1, + ACTIONS(16033), 1, + aux_sym_alpine_js_token2, + [210173] = 1, + ACTIONS(16035), 1, anon_sym_LPAREN, - [204463] = 1, - ACTIONS(15768), 1, + [210177] = 1, + ACTIONS(16037), 1, + aux_sym_alpine_js_token2, + [210181] = 1, + ACTIONS(16039), 1, anon_sym_LPAREN, - [204467] = 1, - ACTIONS(15770), 1, + [210185] = 1, + ACTIONS(16041), 1, + aux_sym_alpine_js_token2, + [210189] = 1, + ACTIONS(16043), 1, anon_sym_LPAREN, - [204471] = 1, - ACTIONS(15772), 1, + [210193] = 1, + ACTIONS(16045), 1, + aux_sym_alpine_js_token2, + [210197] = 1, + ACTIONS(16047), 1, anon_sym_LPAREN, - [204475] = 1, - ACTIONS(15774), 1, + [210201] = 1, + ACTIONS(16049), 1, + aux_sym_alpine_js_token2, + [210205] = 1, + ACTIONS(16051), 1, anon_sym_LPAREN, - [204479] = 1, - ACTIONS(15776), 1, + [210209] = 1, + ACTIONS(16053), 1, + aux_sym_alpine_js_token2, + [210213] = 1, + ACTIONS(16055), 1, anon_sym_LPAREN, - [204483] = 1, - ACTIONS(15778), 1, + [210217] = 1, + ACTIONS(16057), 1, + aux_sym_alpine_js_token2, + [210221] = 1, + ACTIONS(16059), 1, anon_sym_LPAREN, - [204487] = 1, - ACTIONS(15780), 1, + [210225] = 1, + ACTIONS(16061), 1, + aux_sym_alpine_js_token2, + [210229] = 1, + ACTIONS(16063), 1, anon_sym_LPAREN, - [204491] = 1, - ACTIONS(15782), 1, + [210233] = 1, + ACTIONS(16065), 1, + aux_sym_alpine_js_token2, + [210237] = 1, + ACTIONS(16067), 1, anon_sym_LPAREN, - [204495] = 1, - ACTIONS(15784), 1, + [210241] = 1, + ACTIONS(16069), 1, + aux_sym_alpine_js_token2, + [210245] = 1, + ACTIONS(16071), 1, anon_sym_LPAREN, - [204499] = 1, - ACTIONS(15786), 1, + [210249] = 1, + ACTIONS(16073), 1, + aux_sym_alpine_js_token2, + [210253] = 1, + ACTIONS(16075), 1, anon_sym_LPAREN, - [204503] = 1, - ACTIONS(15788), 1, + [210257] = 1, + ACTIONS(16077), 1, + aux_sym_alpine_js_token2, + [210261] = 1, + ACTIONS(16079), 1, anon_sym_LPAREN, - [204507] = 1, - ACTIONS(15790), 1, + [210265] = 1, + ACTIONS(16081), 1, + aux_sym_alpine_js_token2, + [210269] = 1, + ACTIONS(16083), 1, anon_sym_LPAREN, - [204511] = 1, - ACTIONS(15792), 1, + [210273] = 1, + ACTIONS(16085), 1, + aux_sym_alpine_js_token2, + [210277] = 1, + ACTIONS(16087), 1, anon_sym_LPAREN, - [204515] = 1, - ACTIONS(15794), 1, + [210281] = 1, + ACTIONS(16089), 1, + aux_sym_alpine_js_token2, + [210285] = 1, + ACTIONS(16091), 1, anon_sym_LPAREN, - [204519] = 1, - ACTIONS(15796), 1, + [210289] = 1, + ACTIONS(16093), 1, + aux_sym_alpine_js_token2, + [210293] = 1, + ACTIONS(16095), 1, anon_sym_LPAREN, - [204523] = 1, - ACTIONS(15798), 1, + [210297] = 1, + ACTIONS(16097), 1, + aux_sym_alpine_js_token2, + [210301] = 1, + ACTIONS(16099), 1, anon_sym_LPAREN, - [204527] = 1, - ACTIONS(15800), 1, + [210305] = 1, + ACTIONS(16101), 1, + aux_sym_alpine_js_token2, + [210309] = 1, + ACTIONS(16103), 1, anon_sym_LPAREN, - [204531] = 1, - ACTIONS(15802), 1, + [210313] = 1, + ACTIONS(16105), 1, + aux_sym_alpine_js_token2, + [210317] = 1, + ACTIONS(16107), 1, anon_sym_LPAREN, - [204535] = 1, - ACTIONS(15804), 1, + [210321] = 1, + ACTIONS(16109), 1, + aux_sym_alpine_js_token2, + [210325] = 1, + ACTIONS(16111), 1, anon_sym_LPAREN, - [204539] = 1, - ACTIONS(15806), 1, + [210329] = 1, + ACTIONS(16113), 1, + aux_sym_alpine_js_token2, + [210333] = 1, + ACTIONS(16115), 1, anon_sym_LPAREN, - [204543] = 1, - ACTIONS(15808), 1, + [210337] = 1, + ACTIONS(16117), 1, + aux_sym_alpine_js_token2, + [210341] = 1, + ACTIONS(16119), 1, anon_sym_LPAREN, - [204547] = 1, - ACTIONS(15810), 1, + [210345] = 1, + ACTIONS(16121), 1, + aux_sym_alpine_js_token2, + [210349] = 1, + ACTIONS(16123), 1, anon_sym_LPAREN, - [204551] = 1, - ACTIONS(15812), 1, + [210353] = 1, + ACTIONS(16125), 1, + aux_sym_alpine_js_token2, + [210357] = 1, + ACTIONS(16127), 1, anon_sym_LPAREN, - [204555] = 1, - ACTIONS(15814), 1, + [210361] = 1, + ACTIONS(16129), 1, + aux_sym_alpine_js_token2, + [210365] = 1, + ACTIONS(16131), 1, anon_sym_LPAREN, - [204559] = 1, - ACTIONS(15816), 1, + [210369] = 1, + ACTIONS(16133), 1, + aux_sym_alpine_js_token2, + [210373] = 1, + ACTIONS(16135), 1, anon_sym_LPAREN, - [204563] = 1, - ACTIONS(15818), 1, + [210377] = 1, + ACTIONS(16137), 1, + aux_sym_alpine_js_token2, + [210381] = 1, + ACTIONS(16139), 1, anon_sym_LPAREN, - [204567] = 1, - ACTIONS(15820), 1, + [210385] = 1, + ACTIONS(16141), 1, + aux_sym_alpine_js_token2, + [210389] = 1, + ACTIONS(16143), 1, anon_sym_LPAREN, - [204571] = 1, - ACTIONS(15822), 1, + [210393] = 1, + ACTIONS(16145), 1, + aux_sym_alpine_js_token2, + [210397] = 1, + ACTIONS(16147), 1, anon_sym_LPAREN, - [204575] = 1, - ACTIONS(15824), 1, + [210401] = 1, + ACTIONS(16149), 1, + aux_sym_alpine_js_token2, + [210405] = 1, + ACTIONS(16151), 1, anon_sym_LPAREN, - [204579] = 1, - ACTIONS(15826), 1, + [210409] = 1, + ACTIONS(16153), 1, + aux_sym_alpine_js_token2, + [210413] = 1, + ACTIONS(16155), 1, anon_sym_LPAREN, - [204583] = 1, - ACTIONS(15828), 1, + [210417] = 1, + ACTIONS(16157), 1, + aux_sym_alpine_js_token2, + [210421] = 1, + ACTIONS(16159), 1, anon_sym_LPAREN, + [210425] = 1, + ACTIONS(16161), 1, + aux_sym_alpine_js_token2, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(658)] = 0, - [SMALL_STATE(659)] = 69, - [SMALL_STATE(660)] = 138, - [SMALL_STATE(661)] = 207, - [SMALL_STATE(662)] = 276, - [SMALL_STATE(663)] = 345, - [SMALL_STATE(664)] = 414, - [SMALL_STATE(665)] = 483, - [SMALL_STATE(666)] = 552, - [SMALL_STATE(667)] = 621, - [SMALL_STATE(668)] = 690, - [SMALL_STATE(669)] = 759, - [SMALL_STATE(670)] = 828, - [SMALL_STATE(671)] = 897, - [SMALL_STATE(672)] = 966, - [SMALL_STATE(673)] = 1032, - [SMALL_STATE(674)] = 1098, - [SMALL_STATE(675)] = 1166, - [SMALL_STATE(676)] = 1232, - [SMALL_STATE(677)] = 1298, - [SMALL_STATE(678)] = 1366, - [SMALL_STATE(679)] = 1432, - [SMALL_STATE(680)] = 1500, - [SMALL_STATE(681)] = 1566, - [SMALL_STATE(682)] = 1634, - [SMALL_STATE(683)] = 1700, - [SMALL_STATE(684)] = 1768, - [SMALL_STATE(685)] = 1836, - [SMALL_STATE(686)] = 1902, - [SMALL_STATE(687)] = 1970, - [SMALL_STATE(688)] = 2036, - [SMALL_STATE(689)] = 2104, - [SMALL_STATE(690)] = 2172, - [SMALL_STATE(691)] = 2238, - [SMALL_STATE(692)] = 2304, - [SMALL_STATE(693)] = 2372, - [SMALL_STATE(694)] = 2438, - [SMALL_STATE(695)] = 2506, - [SMALL_STATE(696)] = 2574, - [SMALL_STATE(697)] = 2642, - [SMALL_STATE(698)] = 2708, - [SMALL_STATE(699)] = 2774, - [SMALL_STATE(700)] = 2840, - [SMALL_STATE(701)] = 2906, - [SMALL_STATE(702)] = 2974, - [SMALL_STATE(703)] = 3040, - [SMALL_STATE(704)] = 3106, - [SMALL_STATE(705)] = 3174, - [SMALL_STATE(706)] = 3240, - [SMALL_STATE(707)] = 3308, - [SMALL_STATE(708)] = 3374, - [SMALL_STATE(709)] = 3440, - [SMALL_STATE(710)] = 3508, - [SMALL_STATE(711)] = 3576, - [SMALL_STATE(712)] = 3644, - [SMALL_STATE(713)] = 3712, - [SMALL_STATE(714)] = 3778, - [SMALL_STATE(715)] = 3846, - [SMALL_STATE(716)] = 3912, - [SMALL_STATE(717)] = 3980, - [SMALL_STATE(718)] = 4048, - [SMALL_STATE(719)] = 4116, - [SMALL_STATE(720)] = 4184, - [SMALL_STATE(721)] = 4252, - [SMALL_STATE(722)] = 4318, - [SMALL_STATE(723)] = 4386, - [SMALL_STATE(724)] = 4452, - [SMALL_STATE(725)] = 4518, - [SMALL_STATE(726)] = 4586, - [SMALL_STATE(727)] = 4652, - [SMALL_STATE(728)] = 4718, - [SMALL_STATE(729)] = 4785, - [SMALL_STATE(730)] = 4852, - [SMALL_STATE(731)] = 4919, - [SMALL_STATE(732)] = 4986, - [SMALL_STATE(733)] = 5053, - [SMALL_STATE(734)] = 5120, - [SMALL_STATE(735)] = 5187, - [SMALL_STATE(736)] = 5254, - [SMALL_STATE(737)] = 5321, - [SMALL_STATE(738)] = 5388, - [SMALL_STATE(739)] = 5455, - [SMALL_STATE(740)] = 5522, - [SMALL_STATE(741)] = 5589, - [SMALL_STATE(742)] = 5656, - [SMALL_STATE(743)] = 5723, - [SMALL_STATE(744)] = 5790, - [SMALL_STATE(745)] = 5857, - [SMALL_STATE(746)] = 5924, - [SMALL_STATE(747)] = 5991, - [SMALL_STATE(748)] = 6058, - [SMALL_STATE(749)] = 6125, - [SMALL_STATE(750)] = 6185, - [SMALL_STATE(751)] = 6245, - [SMALL_STATE(752)] = 6309, - [SMALL_STATE(753)] = 6375, - [SMALL_STATE(754)] = 6435, - [SMALL_STATE(755)] = 6495, - [SMALL_STATE(756)] = 6561, - [SMALL_STATE(757)] = 6621, - [SMALL_STATE(758)] = 6685, - [SMALL_STATE(759)] = 6751, - [SMALL_STATE(760)] = 6811, - [SMALL_STATE(761)] = 6871, - [SMALL_STATE(762)] = 6935, - [SMALL_STATE(763)] = 7001, - [SMALL_STATE(764)] = 7061, - [SMALL_STATE(765)] = 7121, - [SMALL_STATE(766)] = 7181, - [SMALL_STATE(767)] = 7241, - [SMALL_STATE(768)] = 7301, - [SMALL_STATE(769)] = 7361, - [SMALL_STATE(770)] = 7421, - [SMALL_STATE(771)] = 7481, - [SMALL_STATE(772)] = 7541, - [SMALL_STATE(773)] = 7601, - [SMALL_STATE(774)] = 7661, - [SMALL_STATE(775)] = 7721, - [SMALL_STATE(776)] = 7781, - [SMALL_STATE(777)] = 7841, - [SMALL_STATE(778)] = 7901, - [SMALL_STATE(779)] = 7961, - [SMALL_STATE(780)] = 8021, - [SMALL_STATE(781)] = 8081, - [SMALL_STATE(782)] = 8141, - [SMALL_STATE(783)] = 8201, - [SMALL_STATE(784)] = 8261, - [SMALL_STATE(785)] = 8321, - [SMALL_STATE(786)] = 8381, - [SMALL_STATE(787)] = 8441, - [SMALL_STATE(788)] = 8501, - [SMALL_STATE(789)] = 8561, - [SMALL_STATE(790)] = 8621, - [SMALL_STATE(791)] = 8681, - [SMALL_STATE(792)] = 8741, - [SMALL_STATE(793)] = 8801, - [SMALL_STATE(794)] = 8861, - [SMALL_STATE(795)] = 8921, - [SMALL_STATE(796)] = 8985, - [SMALL_STATE(797)] = 9045, - [SMALL_STATE(798)] = 9105, - [SMALL_STATE(799)] = 9165, - [SMALL_STATE(800)] = 9225, - [SMALL_STATE(801)] = 9285, - [SMALL_STATE(802)] = 9345, - [SMALL_STATE(803)] = 9405, - [SMALL_STATE(804)] = 9465, - [SMALL_STATE(805)] = 9525, - [SMALL_STATE(806)] = 9585, - [SMALL_STATE(807)] = 9645, - [SMALL_STATE(808)] = 9705, - [SMALL_STATE(809)] = 9765, - [SMALL_STATE(810)] = 9825, - [SMALL_STATE(811)] = 9885, - [SMALL_STATE(812)] = 9945, - [SMALL_STATE(813)] = 10005, - [SMALL_STATE(814)] = 10065, - [SMALL_STATE(815)] = 10125, - [SMALL_STATE(816)] = 10185, - [SMALL_STATE(817)] = 10245, - [SMALL_STATE(818)] = 10305, - [SMALL_STATE(819)] = 10365, - [SMALL_STATE(820)] = 10425, - [SMALL_STATE(821)] = 10485, - [SMALL_STATE(822)] = 10545, - [SMALL_STATE(823)] = 10605, - [SMALL_STATE(824)] = 10665, - [SMALL_STATE(825)] = 10725, - [SMALL_STATE(826)] = 10785, - [SMALL_STATE(827)] = 10845, - [SMALL_STATE(828)] = 10905, - [SMALL_STATE(829)] = 10965, - [SMALL_STATE(830)] = 11025, - [SMALL_STATE(831)] = 11085, - [SMALL_STATE(832)] = 11145, - [SMALL_STATE(833)] = 11205, - [SMALL_STATE(834)] = 11265, - [SMALL_STATE(835)] = 11325, - [SMALL_STATE(836)] = 11385, - [SMALL_STATE(837)] = 11445, - [SMALL_STATE(838)] = 11505, - [SMALL_STATE(839)] = 11565, - [SMALL_STATE(840)] = 11625, - [SMALL_STATE(841)] = 11685, - [SMALL_STATE(842)] = 11745, - [SMALL_STATE(843)] = 11805, - [SMALL_STATE(844)] = 11865, - [SMALL_STATE(845)] = 11925, - [SMALL_STATE(846)] = 11985, - [SMALL_STATE(847)] = 12045, - [SMALL_STATE(848)] = 12105, - [SMALL_STATE(849)] = 12165, - [SMALL_STATE(850)] = 12225, - [SMALL_STATE(851)] = 12285, - [SMALL_STATE(852)] = 12345, - [SMALL_STATE(853)] = 12405, - [SMALL_STATE(854)] = 12465, - [SMALL_STATE(855)] = 12525, - [SMALL_STATE(856)] = 12585, - [SMALL_STATE(857)] = 12645, - [SMALL_STATE(858)] = 12705, - [SMALL_STATE(859)] = 12765, - [SMALL_STATE(860)] = 12825, - [SMALL_STATE(861)] = 12885, - [SMALL_STATE(862)] = 12945, - [SMALL_STATE(863)] = 13005, - [SMALL_STATE(864)] = 13065, - [SMALL_STATE(865)] = 13125, - [SMALL_STATE(866)] = 13185, - [SMALL_STATE(867)] = 13245, - [SMALL_STATE(868)] = 13305, - [SMALL_STATE(869)] = 13365, - [SMALL_STATE(870)] = 13431, - [SMALL_STATE(871)] = 13491, - [SMALL_STATE(872)] = 13551, - [SMALL_STATE(873)] = 13611, - [SMALL_STATE(874)] = 13671, - [SMALL_STATE(875)] = 13731, - [SMALL_STATE(876)] = 13791, - [SMALL_STATE(877)] = 13851, - [SMALL_STATE(878)] = 13911, - [SMALL_STATE(879)] = 13971, - [SMALL_STATE(880)] = 14031, - [SMALL_STATE(881)] = 14091, - [SMALL_STATE(882)] = 14151, - [SMALL_STATE(883)] = 14211, - [SMALL_STATE(884)] = 14271, - [SMALL_STATE(885)] = 14331, - [SMALL_STATE(886)] = 14391, - [SMALL_STATE(887)] = 14451, - [SMALL_STATE(888)] = 14515, - [SMALL_STATE(889)] = 14575, - [SMALL_STATE(890)] = 14635, - [SMALL_STATE(891)] = 14695, - [SMALL_STATE(892)] = 14755, - [SMALL_STATE(893)] = 14815, - [SMALL_STATE(894)] = 14875, - [SMALL_STATE(895)] = 14935, - [SMALL_STATE(896)] = 15001, - [SMALL_STATE(897)] = 15061, - [SMALL_STATE(898)] = 15121, - [SMALL_STATE(899)] = 15181, - [SMALL_STATE(900)] = 15241, - [SMALL_STATE(901)] = 15301, - [SMALL_STATE(902)] = 15361, - [SMALL_STATE(903)] = 15421, - [SMALL_STATE(904)] = 15481, - [SMALL_STATE(905)] = 15541, - [SMALL_STATE(906)] = 15601, - [SMALL_STATE(907)] = 15661, - [SMALL_STATE(908)] = 15721, - [SMALL_STATE(909)] = 15781, - [SMALL_STATE(910)] = 15841, - [SMALL_STATE(911)] = 15901, - [SMALL_STATE(912)] = 15961, - [SMALL_STATE(913)] = 16021, - [SMALL_STATE(914)] = 16081, - [SMALL_STATE(915)] = 16141, - [SMALL_STATE(916)] = 16201, - [SMALL_STATE(917)] = 16261, - [SMALL_STATE(918)] = 16321, - [SMALL_STATE(919)] = 16381, - [SMALL_STATE(920)] = 16441, - [SMALL_STATE(921)] = 16501, - [SMALL_STATE(922)] = 16561, - [SMALL_STATE(923)] = 16621, - [SMALL_STATE(924)] = 16681, - [SMALL_STATE(925)] = 16741, - [SMALL_STATE(926)] = 16801, - [SMALL_STATE(927)] = 16861, - [SMALL_STATE(928)] = 16921, - [SMALL_STATE(929)] = 16981, - [SMALL_STATE(930)] = 17041, - [SMALL_STATE(931)] = 17101, - [SMALL_STATE(932)] = 17161, - [SMALL_STATE(933)] = 17221, - [SMALL_STATE(934)] = 17281, - [SMALL_STATE(935)] = 17341, - [SMALL_STATE(936)] = 17401, - [SMALL_STATE(937)] = 17461, - [SMALL_STATE(938)] = 17521, - [SMALL_STATE(939)] = 17587, - [SMALL_STATE(940)] = 17653, - [SMALL_STATE(941)] = 17719, - [SMALL_STATE(942)] = 17785, - [SMALL_STATE(943)] = 17851, - [SMALL_STATE(944)] = 17917, - [SMALL_STATE(945)] = 17983, - [SMALL_STATE(946)] = 18049, - [SMALL_STATE(947)] = 18115, - [SMALL_STATE(948)] = 18181, - [SMALL_STATE(949)] = 18247, - [SMALL_STATE(950)] = 18313, - [SMALL_STATE(951)] = 18379, - [SMALL_STATE(952)] = 18443, - [SMALL_STATE(953)] = 18503, - [SMALL_STATE(954)] = 18563, - [SMALL_STATE(955)] = 18623, - [SMALL_STATE(956)] = 18689, - [SMALL_STATE(957)] = 18755, - [SMALL_STATE(958)] = 18819, - [SMALL_STATE(959)] = 18879, - [SMALL_STATE(960)] = 18939, - [SMALL_STATE(961)] = 18999, - [SMALL_STATE(962)] = 19059, - [SMALL_STATE(963)] = 19125, - [SMALL_STATE(964)] = 19189, - [SMALL_STATE(965)] = 19249, - [SMALL_STATE(966)] = 19309, - [SMALL_STATE(967)] = 19369, - [SMALL_STATE(968)] = 19429, - [SMALL_STATE(969)] = 19495, - [SMALL_STATE(970)] = 19559, - [SMALL_STATE(971)] = 19619, - [SMALL_STATE(972)] = 19679, - [SMALL_STATE(973)] = 19745, - [SMALL_STATE(974)] = 19809, - [SMALL_STATE(975)] = 19869, - [SMALL_STATE(976)] = 19929, - [SMALL_STATE(977)] = 19989, - [SMALL_STATE(978)] = 20055, - [SMALL_STATE(979)] = 20119, - [SMALL_STATE(980)] = 20183, - [SMALL_STATE(981)] = 20243, - [SMALL_STATE(982)] = 20303, - [SMALL_STATE(983)] = 20369, - [SMALL_STATE(984)] = 20433, - [SMALL_STATE(985)] = 20493, - [SMALL_STATE(986)] = 20553, - [SMALL_STATE(987)] = 20619, - [SMALL_STATE(988)] = 20685, - [SMALL_STATE(989)] = 20749, - [SMALL_STATE(990)] = 20809, - [SMALL_STATE(991)] = 20869, - [SMALL_STATE(992)] = 20935, - [SMALL_STATE(993)] = 20999, - [SMALL_STATE(994)] = 21059, - [SMALL_STATE(995)] = 21119, - [SMALL_STATE(996)] = 21185, - [SMALL_STATE(997)] = 21249, - [SMALL_STATE(998)] = 21309, - [SMALL_STATE(999)] = 21369, - [SMALL_STATE(1000)] = 21429, - [SMALL_STATE(1001)] = 21489, - [SMALL_STATE(1002)] = 21555, - [SMALL_STATE(1003)] = 21619, - [SMALL_STATE(1004)] = 21685, - [SMALL_STATE(1005)] = 21745, - [SMALL_STATE(1006)] = 21809, - [SMALL_STATE(1007)] = 21869, - [SMALL_STATE(1008)] = 21929, - [SMALL_STATE(1009)] = 21989, - [SMALL_STATE(1010)] = 22049, - [SMALL_STATE(1011)] = 22109, - [SMALL_STATE(1012)] = 22169, - [SMALL_STATE(1013)] = 22229, - [SMALL_STATE(1014)] = 22289, - [SMALL_STATE(1015)] = 22349, - [SMALL_STATE(1016)] = 22409, - [SMALL_STATE(1017)] = 22469, - [SMALL_STATE(1018)] = 22529, - [SMALL_STATE(1019)] = 22589, - [SMALL_STATE(1020)] = 22649, - [SMALL_STATE(1021)] = 22709, - [SMALL_STATE(1022)] = 22769, - [SMALL_STATE(1023)] = 22829, - [SMALL_STATE(1024)] = 22889, - [SMALL_STATE(1025)] = 22949, - [SMALL_STATE(1026)] = 23009, - [SMALL_STATE(1027)] = 23069, - [SMALL_STATE(1028)] = 23129, - [SMALL_STATE(1029)] = 23189, - [SMALL_STATE(1030)] = 23249, - [SMALL_STATE(1031)] = 23309, - [SMALL_STATE(1032)] = 23369, - [SMALL_STATE(1033)] = 23429, - [SMALL_STATE(1034)] = 23489, - [SMALL_STATE(1035)] = 23549, - [SMALL_STATE(1036)] = 23609, - [SMALL_STATE(1037)] = 23669, - [SMALL_STATE(1038)] = 23729, - [SMALL_STATE(1039)] = 23789, - [SMALL_STATE(1040)] = 23849, - [SMALL_STATE(1041)] = 23909, - [SMALL_STATE(1042)] = 23969, - [SMALL_STATE(1043)] = 24029, - [SMALL_STATE(1044)] = 24089, - [SMALL_STATE(1045)] = 24149, - [SMALL_STATE(1046)] = 24209, - [SMALL_STATE(1047)] = 24269, - [SMALL_STATE(1048)] = 24329, - [SMALL_STATE(1049)] = 24389, - [SMALL_STATE(1050)] = 24449, - [SMALL_STATE(1051)] = 24509, - [SMALL_STATE(1052)] = 24569, - [SMALL_STATE(1053)] = 24629, - [SMALL_STATE(1054)] = 24689, - [SMALL_STATE(1055)] = 24749, - [SMALL_STATE(1056)] = 24809, - [SMALL_STATE(1057)] = 24869, - [SMALL_STATE(1058)] = 24929, - [SMALL_STATE(1059)] = 24989, - [SMALL_STATE(1060)] = 25049, - [SMALL_STATE(1061)] = 25109, - [SMALL_STATE(1062)] = 25169, - [SMALL_STATE(1063)] = 25229, - [SMALL_STATE(1064)] = 25289, - [SMALL_STATE(1065)] = 25349, - [SMALL_STATE(1066)] = 25409, - [SMALL_STATE(1067)] = 25469, - [SMALL_STATE(1068)] = 25529, - [SMALL_STATE(1069)] = 25589, - [SMALL_STATE(1070)] = 25649, - [SMALL_STATE(1071)] = 25713, - [SMALL_STATE(1072)] = 25773, - [SMALL_STATE(1073)] = 25833, - [SMALL_STATE(1074)] = 25893, - [SMALL_STATE(1075)] = 25953, - [SMALL_STATE(1076)] = 26013, - [SMALL_STATE(1077)] = 26073, - [SMALL_STATE(1078)] = 26133, - [SMALL_STATE(1079)] = 26199, - [SMALL_STATE(1080)] = 26259, - [SMALL_STATE(1081)] = 26319, - [SMALL_STATE(1082)] = 26379, - [SMALL_STATE(1083)] = 26439, - [SMALL_STATE(1084)] = 26499, - [SMALL_STATE(1085)] = 26559, - [SMALL_STATE(1086)] = 26619, - [SMALL_STATE(1087)] = 26679, - [SMALL_STATE(1088)] = 26739, - [SMALL_STATE(1089)] = 26799, - [SMALL_STATE(1090)] = 26859, - [SMALL_STATE(1091)] = 26919, - [SMALL_STATE(1092)] = 26979, - [SMALL_STATE(1093)] = 27039, - [SMALL_STATE(1094)] = 27099, - [SMALL_STATE(1095)] = 27159, - [SMALL_STATE(1096)] = 27219, - [SMALL_STATE(1097)] = 27279, - [SMALL_STATE(1098)] = 27339, - [SMALL_STATE(1099)] = 27399, - [SMALL_STATE(1100)] = 27459, - [SMALL_STATE(1101)] = 27519, - [SMALL_STATE(1102)] = 27579, - [SMALL_STATE(1103)] = 27639, - [SMALL_STATE(1104)] = 27699, - [SMALL_STATE(1105)] = 27759, - [SMALL_STATE(1106)] = 27819, - [SMALL_STATE(1107)] = 27885, - [SMALL_STATE(1108)] = 27945, - [SMALL_STATE(1109)] = 28005, - [SMALL_STATE(1110)] = 28065, - [SMALL_STATE(1111)] = 28125, - [SMALL_STATE(1112)] = 28185, - [SMALL_STATE(1113)] = 28245, - [SMALL_STATE(1114)] = 28305, - [SMALL_STATE(1115)] = 28365, - [SMALL_STATE(1116)] = 28425, - [SMALL_STATE(1117)] = 28485, - [SMALL_STATE(1118)] = 28545, - [SMALL_STATE(1119)] = 28605, - [SMALL_STATE(1120)] = 28665, - [SMALL_STATE(1121)] = 28725, - [SMALL_STATE(1122)] = 28785, - [SMALL_STATE(1123)] = 28845, - [SMALL_STATE(1124)] = 28905, - [SMALL_STATE(1125)] = 28965, - [SMALL_STATE(1126)] = 29025, - [SMALL_STATE(1127)] = 29085, - [SMALL_STATE(1128)] = 29145, - [SMALL_STATE(1129)] = 29205, - [SMALL_STATE(1130)] = 29265, - [SMALL_STATE(1131)] = 29325, - [SMALL_STATE(1132)] = 29385, - [SMALL_STATE(1133)] = 29445, - [SMALL_STATE(1134)] = 29505, - [SMALL_STATE(1135)] = 29565, - [SMALL_STATE(1136)] = 29625, - [SMALL_STATE(1137)] = 29685, - [SMALL_STATE(1138)] = 29745, - [SMALL_STATE(1139)] = 29805, - [SMALL_STATE(1140)] = 29865, - [SMALL_STATE(1141)] = 29925, - [SMALL_STATE(1142)] = 29985, - [SMALL_STATE(1143)] = 30045, - [SMALL_STATE(1144)] = 30105, - [SMALL_STATE(1145)] = 30165, - [SMALL_STATE(1146)] = 30225, - [SMALL_STATE(1147)] = 30285, - [SMALL_STATE(1148)] = 30345, - [SMALL_STATE(1149)] = 30405, - [SMALL_STATE(1150)] = 30465, - [SMALL_STATE(1151)] = 30531, - [SMALL_STATE(1152)] = 30591, - [SMALL_STATE(1153)] = 30651, - [SMALL_STATE(1154)] = 30711, - [SMALL_STATE(1155)] = 30771, - [SMALL_STATE(1156)] = 30831, - [SMALL_STATE(1157)] = 30891, - [SMALL_STATE(1158)] = 30951, - [SMALL_STATE(1159)] = 31011, - [SMALL_STATE(1160)] = 31071, - [SMALL_STATE(1161)] = 31131, - [SMALL_STATE(1162)] = 31195, - [SMALL_STATE(1163)] = 31255, - [SMALL_STATE(1164)] = 31315, - [SMALL_STATE(1165)] = 31375, - [SMALL_STATE(1166)] = 31435, - [SMALL_STATE(1167)] = 31495, - [SMALL_STATE(1168)] = 31555, - [SMALL_STATE(1169)] = 31615, - [SMALL_STATE(1170)] = 31681, - [SMALL_STATE(1171)] = 31741, - [SMALL_STATE(1172)] = 31801, - [SMALL_STATE(1173)] = 31861, - [SMALL_STATE(1174)] = 31921, - [SMALL_STATE(1175)] = 31981, - [SMALL_STATE(1176)] = 32041, - [SMALL_STATE(1177)] = 32101, - [SMALL_STATE(1178)] = 32161, - [SMALL_STATE(1179)] = 32221, - [SMALL_STATE(1180)] = 32281, - [SMALL_STATE(1181)] = 32341, - [SMALL_STATE(1182)] = 32401, - [SMALL_STATE(1183)] = 32461, - [SMALL_STATE(1184)] = 32521, - [SMALL_STATE(1185)] = 32581, - [SMALL_STATE(1186)] = 32641, - [SMALL_STATE(1187)] = 32701, - [SMALL_STATE(1188)] = 32761, - [SMALL_STATE(1189)] = 32821, - [SMALL_STATE(1190)] = 32881, - [SMALL_STATE(1191)] = 32941, - [SMALL_STATE(1192)] = 33001, - [SMALL_STATE(1193)] = 33061, - [SMALL_STATE(1194)] = 33121, - [SMALL_STATE(1195)] = 33181, - [SMALL_STATE(1196)] = 33241, - [SMALL_STATE(1197)] = 33301, - [SMALL_STATE(1198)] = 33361, - [SMALL_STATE(1199)] = 33421, - [SMALL_STATE(1200)] = 33481, - [SMALL_STATE(1201)] = 33541, - [SMALL_STATE(1202)] = 33601, - [SMALL_STATE(1203)] = 33661, - [SMALL_STATE(1204)] = 33721, - [SMALL_STATE(1205)] = 33781, - [SMALL_STATE(1206)] = 33841, - [SMALL_STATE(1207)] = 33901, - [SMALL_STATE(1208)] = 33961, - [SMALL_STATE(1209)] = 34025, - [SMALL_STATE(1210)] = 34085, - [SMALL_STATE(1211)] = 34145, - [SMALL_STATE(1212)] = 34205, - [SMALL_STATE(1213)] = 34265, - [SMALL_STATE(1214)] = 34325, - [SMALL_STATE(1215)] = 34385, - [SMALL_STATE(1216)] = 34445, - [SMALL_STATE(1217)] = 34505, - [SMALL_STATE(1218)] = 34565, - [SMALL_STATE(1219)] = 34625, - [SMALL_STATE(1220)] = 34685, - [SMALL_STATE(1221)] = 34745, - [SMALL_STATE(1222)] = 34805, - [SMALL_STATE(1223)] = 34865, - [SMALL_STATE(1224)] = 34925, - [SMALL_STATE(1225)] = 34985, - [SMALL_STATE(1226)] = 35045, - [SMALL_STATE(1227)] = 35105, - [SMALL_STATE(1228)] = 35165, - [SMALL_STATE(1229)] = 35225, - [SMALL_STATE(1230)] = 35285, - [SMALL_STATE(1231)] = 35345, - [SMALL_STATE(1232)] = 35405, - [SMALL_STATE(1233)] = 35465, - [SMALL_STATE(1234)] = 35525, - [SMALL_STATE(1235)] = 35585, - [SMALL_STATE(1236)] = 35645, - [SMALL_STATE(1237)] = 35711, - [SMALL_STATE(1238)] = 35771, - [SMALL_STATE(1239)] = 35831, - [SMALL_STATE(1240)] = 35891, - [SMALL_STATE(1241)] = 35951, - [SMALL_STATE(1242)] = 36011, - [SMALL_STATE(1243)] = 36071, - [SMALL_STATE(1244)] = 36131, - [SMALL_STATE(1245)] = 36191, - [SMALL_STATE(1246)] = 36251, - [SMALL_STATE(1247)] = 36311, - [SMALL_STATE(1248)] = 36371, - [SMALL_STATE(1249)] = 36431, - [SMALL_STATE(1250)] = 36491, - [SMALL_STATE(1251)] = 36551, - [SMALL_STATE(1252)] = 36611, - [SMALL_STATE(1253)] = 36671, - [SMALL_STATE(1254)] = 36731, - [SMALL_STATE(1255)] = 36791, - [SMALL_STATE(1256)] = 36851, - [SMALL_STATE(1257)] = 36917, - [SMALL_STATE(1258)] = 36977, - [SMALL_STATE(1259)] = 37037, - [SMALL_STATE(1260)] = 37097, - [SMALL_STATE(1261)] = 37157, - [SMALL_STATE(1262)] = 37217, - [SMALL_STATE(1263)] = 37277, - [SMALL_STATE(1264)] = 37337, - [SMALL_STATE(1265)] = 37397, - [SMALL_STATE(1266)] = 37457, - [SMALL_STATE(1267)] = 37517, - [SMALL_STATE(1268)] = 37577, - [SMALL_STATE(1269)] = 37637, - [SMALL_STATE(1270)] = 37697, - [SMALL_STATE(1271)] = 37757, - [SMALL_STATE(1272)] = 37817, - [SMALL_STATE(1273)] = 37877, - [SMALL_STATE(1274)] = 37937, - [SMALL_STATE(1275)] = 37997, - [SMALL_STATE(1276)] = 38057, - [SMALL_STATE(1277)] = 38117, - [SMALL_STATE(1278)] = 38177, - [SMALL_STATE(1279)] = 38237, - [SMALL_STATE(1280)] = 38297, - [SMALL_STATE(1281)] = 38357, - [SMALL_STATE(1282)] = 38417, - [SMALL_STATE(1283)] = 38477, - [SMALL_STATE(1284)] = 38537, - [SMALL_STATE(1285)] = 38597, - [SMALL_STATE(1286)] = 38657, - [SMALL_STATE(1287)] = 38717, - [SMALL_STATE(1288)] = 38777, - [SMALL_STATE(1289)] = 38837, - [SMALL_STATE(1290)] = 38897, - [SMALL_STATE(1291)] = 38957, - [SMALL_STATE(1292)] = 39017, - [SMALL_STATE(1293)] = 39077, - [SMALL_STATE(1294)] = 39137, - [SMALL_STATE(1295)] = 39197, - [SMALL_STATE(1296)] = 39257, - [SMALL_STATE(1297)] = 39317, - [SMALL_STATE(1298)] = 39377, - [SMALL_STATE(1299)] = 39437, - [SMALL_STATE(1300)] = 39497, - [SMALL_STATE(1301)] = 39557, - [SMALL_STATE(1302)] = 39617, - [SMALL_STATE(1303)] = 39677, - [SMALL_STATE(1304)] = 39737, - [SMALL_STATE(1305)] = 39797, - [SMALL_STATE(1306)] = 39857, - [SMALL_STATE(1307)] = 39917, - [SMALL_STATE(1308)] = 39977, - [SMALL_STATE(1309)] = 40037, - [SMALL_STATE(1310)] = 40097, - [SMALL_STATE(1311)] = 40157, - [SMALL_STATE(1312)] = 40217, - [SMALL_STATE(1313)] = 40277, - [SMALL_STATE(1314)] = 40337, - [SMALL_STATE(1315)] = 40397, - [SMALL_STATE(1316)] = 40457, - [SMALL_STATE(1317)] = 40517, - [SMALL_STATE(1318)] = 40577, - [SMALL_STATE(1319)] = 40637, - [SMALL_STATE(1320)] = 40697, - [SMALL_STATE(1321)] = 40757, - [SMALL_STATE(1322)] = 40817, - [SMALL_STATE(1323)] = 40877, - [SMALL_STATE(1324)] = 40937, - [SMALL_STATE(1325)] = 40997, - [SMALL_STATE(1326)] = 41057, - [SMALL_STATE(1327)] = 41117, - [SMALL_STATE(1328)] = 41177, - [SMALL_STATE(1329)] = 41237, - [SMALL_STATE(1330)] = 41297, - [SMALL_STATE(1331)] = 41357, - [SMALL_STATE(1332)] = 41417, - [SMALL_STATE(1333)] = 41477, - [SMALL_STATE(1334)] = 41537, - [SMALL_STATE(1335)] = 41597, - [SMALL_STATE(1336)] = 41657, - [SMALL_STATE(1337)] = 41717, - [SMALL_STATE(1338)] = 41777, - [SMALL_STATE(1339)] = 41837, - [SMALL_STATE(1340)] = 41897, - [SMALL_STATE(1341)] = 41957, - [SMALL_STATE(1342)] = 42017, - [SMALL_STATE(1343)] = 42077, - [SMALL_STATE(1344)] = 42137, - [SMALL_STATE(1345)] = 42197, - [SMALL_STATE(1346)] = 42257, - [SMALL_STATE(1347)] = 42317, - [SMALL_STATE(1348)] = 42377, - [SMALL_STATE(1349)] = 42437, - [SMALL_STATE(1350)] = 42497, - [SMALL_STATE(1351)] = 42557, - [SMALL_STATE(1352)] = 42617, - [SMALL_STATE(1353)] = 42677, - [SMALL_STATE(1354)] = 42737, - [SMALL_STATE(1355)] = 42797, - [SMALL_STATE(1356)] = 42857, - [SMALL_STATE(1357)] = 42917, - [SMALL_STATE(1358)] = 42977, - [SMALL_STATE(1359)] = 43037, - [SMALL_STATE(1360)] = 43097, - [SMALL_STATE(1361)] = 43157, - [SMALL_STATE(1362)] = 43217, - [SMALL_STATE(1363)] = 43277, - [SMALL_STATE(1364)] = 43337, - [SMALL_STATE(1365)] = 43397, - [SMALL_STATE(1366)] = 43457, - [SMALL_STATE(1367)] = 43517, - [SMALL_STATE(1368)] = 43577, - [SMALL_STATE(1369)] = 43637, - [SMALL_STATE(1370)] = 43697, - [SMALL_STATE(1371)] = 43757, - [SMALL_STATE(1372)] = 43817, - [SMALL_STATE(1373)] = 43877, - [SMALL_STATE(1374)] = 43937, - [SMALL_STATE(1375)] = 43997, - [SMALL_STATE(1376)] = 44057, - [SMALL_STATE(1377)] = 44117, - [SMALL_STATE(1378)] = 44177, - [SMALL_STATE(1379)] = 44237, - [SMALL_STATE(1380)] = 44297, - [SMALL_STATE(1381)] = 44357, - [SMALL_STATE(1382)] = 44417, - [SMALL_STATE(1383)] = 44477, - [SMALL_STATE(1384)] = 44537, - [SMALL_STATE(1385)] = 44597, - [SMALL_STATE(1386)] = 44657, - [SMALL_STATE(1387)] = 44717, - [SMALL_STATE(1388)] = 44777, - [SMALL_STATE(1389)] = 44837, - [SMALL_STATE(1390)] = 44897, - [SMALL_STATE(1391)] = 44957, - [SMALL_STATE(1392)] = 45017, - [SMALL_STATE(1393)] = 45077, - [SMALL_STATE(1394)] = 45137, - [SMALL_STATE(1395)] = 45197, - [SMALL_STATE(1396)] = 45257, - [SMALL_STATE(1397)] = 45317, - [SMALL_STATE(1398)] = 45377, - [SMALL_STATE(1399)] = 45437, - [SMALL_STATE(1400)] = 45497, - [SMALL_STATE(1401)] = 45557, - [SMALL_STATE(1402)] = 45617, - [SMALL_STATE(1403)] = 45677, - [SMALL_STATE(1404)] = 45737, - [SMALL_STATE(1405)] = 45797, - [SMALL_STATE(1406)] = 45857, - [SMALL_STATE(1407)] = 45917, - [SMALL_STATE(1408)] = 45977, - [SMALL_STATE(1409)] = 46037, - [SMALL_STATE(1410)] = 46097, - [SMALL_STATE(1411)] = 46157, - [SMALL_STATE(1412)] = 46217, - [SMALL_STATE(1413)] = 46277, - [SMALL_STATE(1414)] = 46337, - [SMALL_STATE(1415)] = 46397, - [SMALL_STATE(1416)] = 46457, - [SMALL_STATE(1417)] = 46517, - [SMALL_STATE(1418)] = 46577, - [SMALL_STATE(1419)] = 46637, - [SMALL_STATE(1420)] = 46697, - [SMALL_STATE(1421)] = 46757, - [SMALL_STATE(1422)] = 46817, - [SMALL_STATE(1423)] = 46877, - [SMALL_STATE(1424)] = 46937, - [SMALL_STATE(1425)] = 46997, - [SMALL_STATE(1426)] = 47057, - [SMALL_STATE(1427)] = 47117, - [SMALL_STATE(1428)] = 47177, - [SMALL_STATE(1429)] = 47237, - [SMALL_STATE(1430)] = 47297, - [SMALL_STATE(1431)] = 47357, - [SMALL_STATE(1432)] = 47417, - [SMALL_STATE(1433)] = 47477, - [SMALL_STATE(1434)] = 47537, - [SMALL_STATE(1435)] = 47597, - [SMALL_STATE(1436)] = 47657, - [SMALL_STATE(1437)] = 47717, - [SMALL_STATE(1438)] = 47777, - [SMALL_STATE(1439)] = 47837, - [SMALL_STATE(1440)] = 47897, - [SMALL_STATE(1441)] = 47957, - [SMALL_STATE(1442)] = 48017, - [SMALL_STATE(1443)] = 48077, - [SMALL_STATE(1444)] = 48137, - [SMALL_STATE(1445)] = 48197, - [SMALL_STATE(1446)] = 48257, - [SMALL_STATE(1447)] = 48317, - [SMALL_STATE(1448)] = 48377, - [SMALL_STATE(1449)] = 48437, - [SMALL_STATE(1450)] = 48497, - [SMALL_STATE(1451)] = 48557, - [SMALL_STATE(1452)] = 48617, - [SMALL_STATE(1453)] = 48677, - [SMALL_STATE(1454)] = 48737, - [SMALL_STATE(1455)] = 48797, - [SMALL_STATE(1456)] = 48857, - [SMALL_STATE(1457)] = 48917, - [SMALL_STATE(1458)] = 48977, - [SMALL_STATE(1459)] = 49037, - [SMALL_STATE(1460)] = 49097, - [SMALL_STATE(1461)] = 49157, - [SMALL_STATE(1462)] = 49217, - [SMALL_STATE(1463)] = 49277, - [SMALL_STATE(1464)] = 49337, - [SMALL_STATE(1465)] = 49397, - [SMALL_STATE(1466)] = 49457, - [SMALL_STATE(1467)] = 49517, - [SMALL_STATE(1468)] = 49577, - [SMALL_STATE(1469)] = 49637, - [SMALL_STATE(1470)] = 49697, - [SMALL_STATE(1471)] = 49757, - [SMALL_STATE(1472)] = 49817, - [SMALL_STATE(1473)] = 49877, - [SMALL_STATE(1474)] = 49937, - [SMALL_STATE(1475)] = 49997, - [SMALL_STATE(1476)] = 50057, - [SMALL_STATE(1477)] = 50117, - [SMALL_STATE(1478)] = 50177, - [SMALL_STATE(1479)] = 50237, - [SMALL_STATE(1480)] = 50297, - [SMALL_STATE(1481)] = 50357, - [SMALL_STATE(1482)] = 50417, - [SMALL_STATE(1483)] = 50477, - [SMALL_STATE(1484)] = 50537, - [SMALL_STATE(1485)] = 50597, - [SMALL_STATE(1486)] = 50657, - [SMALL_STATE(1487)] = 50717, - [SMALL_STATE(1488)] = 50777, - [SMALL_STATE(1489)] = 50837, - [SMALL_STATE(1490)] = 50897, - [SMALL_STATE(1491)] = 50957, - [SMALL_STATE(1492)] = 51017, - [SMALL_STATE(1493)] = 51077, - [SMALL_STATE(1494)] = 51137, - [SMALL_STATE(1495)] = 51197, - [SMALL_STATE(1496)] = 51257, - [SMALL_STATE(1497)] = 51317, - [SMALL_STATE(1498)] = 51377, - [SMALL_STATE(1499)] = 51437, - [SMALL_STATE(1500)] = 51497, - [SMALL_STATE(1501)] = 51557, - [SMALL_STATE(1502)] = 51617, - [SMALL_STATE(1503)] = 51677, - [SMALL_STATE(1504)] = 51737, - [SMALL_STATE(1505)] = 51797, - [SMALL_STATE(1506)] = 51857, - [SMALL_STATE(1507)] = 51917, - [SMALL_STATE(1508)] = 51977, - [SMALL_STATE(1509)] = 52037, - [SMALL_STATE(1510)] = 52097, - [SMALL_STATE(1511)] = 52157, - [SMALL_STATE(1512)] = 52217, - [SMALL_STATE(1513)] = 52277, - [SMALL_STATE(1514)] = 52337, - [SMALL_STATE(1515)] = 52397, - [SMALL_STATE(1516)] = 52457, - [SMALL_STATE(1517)] = 52517, - [SMALL_STATE(1518)] = 52577, - [SMALL_STATE(1519)] = 52637, - [SMALL_STATE(1520)] = 52697, - [SMALL_STATE(1521)] = 52757, - [SMALL_STATE(1522)] = 52817, - [SMALL_STATE(1523)] = 52877, - [SMALL_STATE(1524)] = 52937, - [SMALL_STATE(1525)] = 52997, - [SMALL_STATE(1526)] = 53057, - [SMALL_STATE(1527)] = 53117, - [SMALL_STATE(1528)] = 53177, - [SMALL_STATE(1529)] = 53237, - [SMALL_STATE(1530)] = 53297, - [SMALL_STATE(1531)] = 53357, - [SMALL_STATE(1532)] = 53417, - [SMALL_STATE(1533)] = 53477, - [SMALL_STATE(1534)] = 53537, - [SMALL_STATE(1535)] = 53597, - [SMALL_STATE(1536)] = 53663, - [SMALL_STATE(1537)] = 53723, - [SMALL_STATE(1538)] = 53783, - [SMALL_STATE(1539)] = 53843, - [SMALL_STATE(1540)] = 53903, - [SMALL_STATE(1541)] = 53963, - [SMALL_STATE(1542)] = 54023, - [SMALL_STATE(1543)] = 54083, - [SMALL_STATE(1544)] = 54143, - [SMALL_STATE(1545)] = 54203, - [SMALL_STATE(1546)] = 54263, - [SMALL_STATE(1547)] = 54323, - [SMALL_STATE(1548)] = 54383, - [SMALL_STATE(1549)] = 54443, - [SMALL_STATE(1550)] = 54503, - [SMALL_STATE(1551)] = 54563, - [SMALL_STATE(1552)] = 54623, - [SMALL_STATE(1553)] = 54683, - [SMALL_STATE(1554)] = 54743, - [SMALL_STATE(1555)] = 54803, - [SMALL_STATE(1556)] = 54863, - [SMALL_STATE(1557)] = 54923, - [SMALL_STATE(1558)] = 54983, - [SMALL_STATE(1559)] = 55043, - [SMALL_STATE(1560)] = 55103, - [SMALL_STATE(1561)] = 55163, - [SMALL_STATE(1562)] = 55223, - [SMALL_STATE(1563)] = 55283, - [SMALL_STATE(1564)] = 55343, - [SMALL_STATE(1565)] = 55403, - [SMALL_STATE(1566)] = 55463, - [SMALL_STATE(1567)] = 55523, - [SMALL_STATE(1568)] = 55583, - [SMALL_STATE(1569)] = 55643, - [SMALL_STATE(1570)] = 55703, - [SMALL_STATE(1571)] = 55763, - [SMALL_STATE(1572)] = 55823, - [SMALL_STATE(1573)] = 55883, - [SMALL_STATE(1574)] = 55943, - [SMALL_STATE(1575)] = 56003, - [SMALL_STATE(1576)] = 56063, - [SMALL_STATE(1577)] = 56123, - [SMALL_STATE(1578)] = 56183, - [SMALL_STATE(1579)] = 56243, - [SMALL_STATE(1580)] = 56303, - [SMALL_STATE(1581)] = 56363, - [SMALL_STATE(1582)] = 56423, - [SMALL_STATE(1583)] = 56483, - [SMALL_STATE(1584)] = 56543, - [SMALL_STATE(1585)] = 56603, - [SMALL_STATE(1586)] = 56663, - [SMALL_STATE(1587)] = 56723, - [SMALL_STATE(1588)] = 56783, - [SMALL_STATE(1589)] = 56843, - [SMALL_STATE(1590)] = 56903, - [SMALL_STATE(1591)] = 56963, - [SMALL_STATE(1592)] = 57023, - [SMALL_STATE(1593)] = 57083, - [SMALL_STATE(1594)] = 57143, - [SMALL_STATE(1595)] = 57203, - [SMALL_STATE(1596)] = 57263, - [SMALL_STATE(1597)] = 57323, - [SMALL_STATE(1598)] = 57383, - [SMALL_STATE(1599)] = 57443, - [SMALL_STATE(1600)] = 57503, - [SMALL_STATE(1601)] = 57563, - [SMALL_STATE(1602)] = 57623, - [SMALL_STATE(1603)] = 57683, - [SMALL_STATE(1604)] = 57743, - [SMALL_STATE(1605)] = 57803, - [SMALL_STATE(1606)] = 57863, - [SMALL_STATE(1607)] = 57923, - [SMALL_STATE(1608)] = 57983, - [SMALL_STATE(1609)] = 58043, - [SMALL_STATE(1610)] = 58103, - [SMALL_STATE(1611)] = 58163, - [SMALL_STATE(1612)] = 58223, - [SMALL_STATE(1613)] = 58283, - [SMALL_STATE(1614)] = 58343, - [SMALL_STATE(1615)] = 58403, - [SMALL_STATE(1616)] = 58463, - [SMALL_STATE(1617)] = 58523, - [SMALL_STATE(1618)] = 58583, - [SMALL_STATE(1619)] = 58643, - [SMALL_STATE(1620)] = 58703, - [SMALL_STATE(1621)] = 58763, - [SMALL_STATE(1622)] = 58823, - [SMALL_STATE(1623)] = 58883, - [SMALL_STATE(1624)] = 58943, - [SMALL_STATE(1625)] = 59003, - [SMALL_STATE(1626)] = 59063, - [SMALL_STATE(1627)] = 59123, - [SMALL_STATE(1628)] = 59183, - [SMALL_STATE(1629)] = 59243, - [SMALL_STATE(1630)] = 59303, - [SMALL_STATE(1631)] = 59363, - [SMALL_STATE(1632)] = 59423, - [SMALL_STATE(1633)] = 59483, - [SMALL_STATE(1634)] = 59543, - [SMALL_STATE(1635)] = 59603, - [SMALL_STATE(1636)] = 59663, - [SMALL_STATE(1637)] = 59723, - [SMALL_STATE(1638)] = 59783, - [SMALL_STATE(1639)] = 59843, - [SMALL_STATE(1640)] = 59903, - [SMALL_STATE(1641)] = 59963, - [SMALL_STATE(1642)] = 60023, - [SMALL_STATE(1643)] = 60083, - [SMALL_STATE(1644)] = 60143, - [SMALL_STATE(1645)] = 60203, - [SMALL_STATE(1646)] = 60263, - [SMALL_STATE(1647)] = 60323, - [SMALL_STATE(1648)] = 60383, - [SMALL_STATE(1649)] = 60443, - [SMALL_STATE(1650)] = 60503, - [SMALL_STATE(1651)] = 60563, - [SMALL_STATE(1652)] = 60623, - [SMALL_STATE(1653)] = 60683, - [SMALL_STATE(1654)] = 60743, - [SMALL_STATE(1655)] = 60803, - [SMALL_STATE(1656)] = 60863, - [SMALL_STATE(1657)] = 60923, - [SMALL_STATE(1658)] = 60983, - [SMALL_STATE(1659)] = 61043, - [SMALL_STATE(1660)] = 61103, - [SMALL_STATE(1661)] = 61163, - [SMALL_STATE(1662)] = 61223, - [SMALL_STATE(1663)] = 61283, - [SMALL_STATE(1664)] = 61343, - [SMALL_STATE(1665)] = 61403, - [SMALL_STATE(1666)] = 61463, - [SMALL_STATE(1667)] = 61523, - [SMALL_STATE(1668)] = 61583, - [SMALL_STATE(1669)] = 61643, - [SMALL_STATE(1670)] = 61703, - [SMALL_STATE(1671)] = 61763, - [SMALL_STATE(1672)] = 61823, - [SMALL_STATE(1673)] = 61883, - [SMALL_STATE(1674)] = 61943, - [SMALL_STATE(1675)] = 62003, - [SMALL_STATE(1676)] = 62063, - [SMALL_STATE(1677)] = 62123, - [SMALL_STATE(1678)] = 62183, - [SMALL_STATE(1679)] = 62243, - [SMALL_STATE(1680)] = 62303, - [SMALL_STATE(1681)] = 62363, - [SMALL_STATE(1682)] = 62423, - [SMALL_STATE(1683)] = 62483, - [SMALL_STATE(1684)] = 62543, - [SMALL_STATE(1685)] = 62603, - [SMALL_STATE(1686)] = 62663, - [SMALL_STATE(1687)] = 62723, - [SMALL_STATE(1688)] = 62783, - [SMALL_STATE(1689)] = 62843, - [SMALL_STATE(1690)] = 62903, - [SMALL_STATE(1691)] = 62963, - [SMALL_STATE(1692)] = 63023, - [SMALL_STATE(1693)] = 63083, - [SMALL_STATE(1694)] = 63143, - [SMALL_STATE(1695)] = 63203, - [SMALL_STATE(1696)] = 63263, - [SMALL_STATE(1697)] = 63323, - [SMALL_STATE(1698)] = 63383, - [SMALL_STATE(1699)] = 63443, - [SMALL_STATE(1700)] = 63503, - [SMALL_STATE(1701)] = 63563, - [SMALL_STATE(1702)] = 63623, - [SMALL_STATE(1703)] = 63689, - [SMALL_STATE(1704)] = 63749, - [SMALL_STATE(1705)] = 63809, - [SMALL_STATE(1706)] = 63869, - [SMALL_STATE(1707)] = 63929, - [SMALL_STATE(1708)] = 63989, - [SMALL_STATE(1709)] = 64049, - [SMALL_STATE(1710)] = 64109, - [SMALL_STATE(1711)] = 64169, - [SMALL_STATE(1712)] = 64229, - [SMALL_STATE(1713)] = 64289, - [SMALL_STATE(1714)] = 64349, - [SMALL_STATE(1715)] = 64409, - [SMALL_STATE(1716)] = 64469, - [SMALL_STATE(1717)] = 64529, - [SMALL_STATE(1718)] = 64589, - [SMALL_STATE(1719)] = 64649, - [SMALL_STATE(1720)] = 64709, - [SMALL_STATE(1721)] = 64769, - [SMALL_STATE(1722)] = 64829, - [SMALL_STATE(1723)] = 64889, - [SMALL_STATE(1724)] = 64949, - [SMALL_STATE(1725)] = 65009, - [SMALL_STATE(1726)] = 65069, - [SMALL_STATE(1727)] = 65129, - [SMALL_STATE(1728)] = 65189, - [SMALL_STATE(1729)] = 65249, - [SMALL_STATE(1730)] = 65309, - [SMALL_STATE(1731)] = 65369, - [SMALL_STATE(1732)] = 65429, - [SMALL_STATE(1733)] = 65489, - [SMALL_STATE(1734)] = 65549, - [SMALL_STATE(1735)] = 65609, - [SMALL_STATE(1736)] = 65669, - [SMALL_STATE(1737)] = 65729, - [SMALL_STATE(1738)] = 65789, - [SMALL_STATE(1739)] = 65849, - [SMALL_STATE(1740)] = 65909, - [SMALL_STATE(1741)] = 65969, - [SMALL_STATE(1742)] = 66029, - [SMALL_STATE(1743)] = 66089, - [SMALL_STATE(1744)] = 66149, - [SMALL_STATE(1745)] = 66209, - [SMALL_STATE(1746)] = 66269, - [SMALL_STATE(1747)] = 66329, - [SMALL_STATE(1748)] = 66389, - [SMALL_STATE(1749)] = 66449, - [SMALL_STATE(1750)] = 66509, - [SMALL_STATE(1751)] = 66569, - [SMALL_STATE(1752)] = 66629, - [SMALL_STATE(1753)] = 66689, - [SMALL_STATE(1754)] = 66749, - [SMALL_STATE(1755)] = 66809, - [SMALL_STATE(1756)] = 66869, - [SMALL_STATE(1757)] = 66929, - [SMALL_STATE(1758)] = 66989, - [SMALL_STATE(1759)] = 67049, - [SMALL_STATE(1760)] = 67109, - [SMALL_STATE(1761)] = 67169, - [SMALL_STATE(1762)] = 67229, - [SMALL_STATE(1763)] = 67289, - [SMALL_STATE(1764)] = 67349, - [SMALL_STATE(1765)] = 67409, - [SMALL_STATE(1766)] = 67469, - [SMALL_STATE(1767)] = 67529, - [SMALL_STATE(1768)] = 67589, - [SMALL_STATE(1769)] = 67649, - [SMALL_STATE(1770)] = 67709, - [SMALL_STATE(1771)] = 67769, - [SMALL_STATE(1772)] = 67829, - [SMALL_STATE(1773)] = 67889, - [SMALL_STATE(1774)] = 67949, - [SMALL_STATE(1775)] = 68009, - [SMALL_STATE(1776)] = 68069, - [SMALL_STATE(1777)] = 68129, - [SMALL_STATE(1778)] = 68189, - [SMALL_STATE(1779)] = 68249, - [SMALL_STATE(1780)] = 68309, - [SMALL_STATE(1781)] = 68369, - [SMALL_STATE(1782)] = 68429, - [SMALL_STATE(1783)] = 68489, - [SMALL_STATE(1784)] = 68549, - [SMALL_STATE(1785)] = 68609, - [SMALL_STATE(1786)] = 68675, - [SMALL_STATE(1787)] = 68735, - [SMALL_STATE(1788)] = 68795, - [SMALL_STATE(1789)] = 68855, - [SMALL_STATE(1790)] = 68915, - [SMALL_STATE(1791)] = 68975, - [SMALL_STATE(1792)] = 69035, - [SMALL_STATE(1793)] = 69095, - [SMALL_STATE(1794)] = 69155, - [SMALL_STATE(1795)] = 69215, - [SMALL_STATE(1796)] = 69275, - [SMALL_STATE(1797)] = 69335, - [SMALL_STATE(1798)] = 69395, - [SMALL_STATE(1799)] = 69455, - [SMALL_STATE(1800)] = 69515, - [SMALL_STATE(1801)] = 69575, - [SMALL_STATE(1802)] = 69635, - [SMALL_STATE(1803)] = 69695, - [SMALL_STATE(1804)] = 69755, - [SMALL_STATE(1805)] = 69815, - [SMALL_STATE(1806)] = 69875, - [SMALL_STATE(1807)] = 69935, - [SMALL_STATE(1808)] = 69995, - [SMALL_STATE(1809)] = 70055, - [SMALL_STATE(1810)] = 70115, - [SMALL_STATE(1811)] = 70175, - [SMALL_STATE(1812)] = 70235, - [SMALL_STATE(1813)] = 70295, - [SMALL_STATE(1814)] = 70355, - [SMALL_STATE(1815)] = 70415, - [SMALL_STATE(1816)] = 70475, - [SMALL_STATE(1817)] = 70535, - [SMALL_STATE(1818)] = 70595, - [SMALL_STATE(1819)] = 70655, - [SMALL_STATE(1820)] = 70715, - [SMALL_STATE(1821)] = 70775, - [SMALL_STATE(1822)] = 70835, - [SMALL_STATE(1823)] = 70895, - [SMALL_STATE(1824)] = 70955, - [SMALL_STATE(1825)] = 71015, - [SMALL_STATE(1826)] = 71075, - [SMALL_STATE(1827)] = 71135, - [SMALL_STATE(1828)] = 71195, - [SMALL_STATE(1829)] = 71255, - [SMALL_STATE(1830)] = 71315, - [SMALL_STATE(1831)] = 71375, - [SMALL_STATE(1832)] = 71435, - [SMALL_STATE(1833)] = 71495, - [SMALL_STATE(1834)] = 71555, - [SMALL_STATE(1835)] = 71615, - [SMALL_STATE(1836)] = 71675, - [SMALL_STATE(1837)] = 71735, - [SMALL_STATE(1838)] = 71795, - [SMALL_STATE(1839)] = 71855, - [SMALL_STATE(1840)] = 71915, - [SMALL_STATE(1841)] = 71975, - [SMALL_STATE(1842)] = 72035, - [SMALL_STATE(1843)] = 72095, - [SMALL_STATE(1844)] = 72155, - [SMALL_STATE(1845)] = 72215, - [SMALL_STATE(1846)] = 72275, - [SMALL_STATE(1847)] = 72335, - [SMALL_STATE(1848)] = 72395, - [SMALL_STATE(1849)] = 72455, - [SMALL_STATE(1850)] = 72515, - [SMALL_STATE(1851)] = 72575, - [SMALL_STATE(1852)] = 72635, - [SMALL_STATE(1853)] = 72695, - [SMALL_STATE(1854)] = 72755, - [SMALL_STATE(1855)] = 72815, - [SMALL_STATE(1856)] = 72875, - [SMALL_STATE(1857)] = 72935, - [SMALL_STATE(1858)] = 72995, - [SMALL_STATE(1859)] = 73055, - [SMALL_STATE(1860)] = 73115, - [SMALL_STATE(1861)] = 73175, - [SMALL_STATE(1862)] = 73235, - [SMALL_STATE(1863)] = 73295, - [SMALL_STATE(1864)] = 73355, - [SMALL_STATE(1865)] = 73415, - [SMALL_STATE(1866)] = 73475, - [SMALL_STATE(1867)] = 73535, - [SMALL_STATE(1868)] = 73595, - [SMALL_STATE(1869)] = 73661, - [SMALL_STATE(1870)] = 73721, - [SMALL_STATE(1871)] = 73781, - [SMALL_STATE(1872)] = 73841, - [SMALL_STATE(1873)] = 73901, - [SMALL_STATE(1874)] = 73961, - [SMALL_STATE(1875)] = 74021, - [SMALL_STATE(1876)] = 74081, - [SMALL_STATE(1877)] = 74141, - [SMALL_STATE(1878)] = 74201, - [SMALL_STATE(1879)] = 74261, - [SMALL_STATE(1880)] = 74321, - [SMALL_STATE(1881)] = 74381, - [SMALL_STATE(1882)] = 74441, - [SMALL_STATE(1883)] = 74501, - [SMALL_STATE(1884)] = 74561, - [SMALL_STATE(1885)] = 74621, - [SMALL_STATE(1886)] = 74681, - [SMALL_STATE(1887)] = 74741, - [SMALL_STATE(1888)] = 74801, - [SMALL_STATE(1889)] = 74861, - [SMALL_STATE(1890)] = 74921, - [SMALL_STATE(1891)] = 74981, - [SMALL_STATE(1892)] = 75041, - [SMALL_STATE(1893)] = 75101, - [SMALL_STATE(1894)] = 75161, - [SMALL_STATE(1895)] = 75221, - [SMALL_STATE(1896)] = 75281, - [SMALL_STATE(1897)] = 75341, - [SMALL_STATE(1898)] = 75401, - [SMALL_STATE(1899)] = 75461, - [SMALL_STATE(1900)] = 75521, - [SMALL_STATE(1901)] = 75581, - [SMALL_STATE(1902)] = 75641, - [SMALL_STATE(1903)] = 75701, - [SMALL_STATE(1904)] = 75761, - [SMALL_STATE(1905)] = 75821, - [SMALL_STATE(1906)] = 75881, - [SMALL_STATE(1907)] = 75941, - [SMALL_STATE(1908)] = 76001, - [SMALL_STATE(1909)] = 76061, - [SMALL_STATE(1910)] = 76121, - [SMALL_STATE(1911)] = 76181, - [SMALL_STATE(1912)] = 76241, - [SMALL_STATE(1913)] = 76301, - [SMALL_STATE(1914)] = 76361, - [SMALL_STATE(1915)] = 76421, - [SMALL_STATE(1916)] = 76481, - [SMALL_STATE(1917)] = 76541, - [SMALL_STATE(1918)] = 76601, - [SMALL_STATE(1919)] = 76661, - [SMALL_STATE(1920)] = 76721, - [SMALL_STATE(1921)] = 76781, - [SMALL_STATE(1922)] = 76841, - [SMALL_STATE(1923)] = 76901, - [SMALL_STATE(1924)] = 76961, - [SMALL_STATE(1925)] = 77021, - [SMALL_STATE(1926)] = 77081, - [SMALL_STATE(1927)] = 77141, - [SMALL_STATE(1928)] = 77201, - [SMALL_STATE(1929)] = 77261, - [SMALL_STATE(1930)] = 77321, - [SMALL_STATE(1931)] = 77381, - [SMALL_STATE(1932)] = 77441, - [SMALL_STATE(1933)] = 77500, - [SMALL_STATE(1934)] = 77559, - [SMALL_STATE(1935)] = 77617, - [SMALL_STATE(1936)] = 77675, - [SMALL_STATE(1937)] = 77733, - [SMALL_STATE(1938)] = 77791, - [SMALL_STATE(1939)] = 77849, - [SMALL_STATE(1940)] = 77907, - [SMALL_STATE(1941)] = 77965, - [SMALL_STATE(1942)] = 78023, - [SMALL_STATE(1943)] = 78081, - [SMALL_STATE(1944)] = 78139, - [SMALL_STATE(1945)] = 78197, - [SMALL_STATE(1946)] = 78255, - [SMALL_STATE(1947)] = 78313, - [SMALL_STATE(1948)] = 78371, - [SMALL_STATE(1949)] = 78429, - [SMALL_STATE(1950)] = 78487, - [SMALL_STATE(1951)] = 78545, - [SMALL_STATE(1952)] = 78603, - [SMALL_STATE(1953)] = 78661, - [SMALL_STATE(1954)] = 78719, - [SMALL_STATE(1955)] = 78777, - [SMALL_STATE(1956)] = 78835, - [SMALL_STATE(1957)] = 78893, - [SMALL_STATE(1958)] = 78951, - [SMALL_STATE(1959)] = 79009, - [SMALL_STATE(1960)] = 79067, - [SMALL_STATE(1961)] = 79125, - [SMALL_STATE(1962)] = 79183, - [SMALL_STATE(1963)] = 79241, - [SMALL_STATE(1964)] = 79299, - [SMALL_STATE(1965)] = 79357, - [SMALL_STATE(1966)] = 79415, - [SMALL_STATE(1967)] = 79473, - [SMALL_STATE(1968)] = 79531, - [SMALL_STATE(1969)] = 79589, - [SMALL_STATE(1970)] = 79647, - [SMALL_STATE(1971)] = 79705, - [SMALL_STATE(1972)] = 79763, - [SMALL_STATE(1973)] = 79821, - [SMALL_STATE(1974)] = 79879, - [SMALL_STATE(1975)] = 79937, - [SMALL_STATE(1976)] = 79995, - [SMALL_STATE(1977)] = 80053, - [SMALL_STATE(1978)] = 80111, - [SMALL_STATE(1979)] = 80169, - [SMALL_STATE(1980)] = 80227, - [SMALL_STATE(1981)] = 80285, - [SMALL_STATE(1982)] = 80343, - [SMALL_STATE(1983)] = 80401, - [SMALL_STATE(1984)] = 80459, - [SMALL_STATE(1985)] = 80517, - [SMALL_STATE(1986)] = 80575, - [SMALL_STATE(1987)] = 80633, - [SMALL_STATE(1988)] = 80691, - [SMALL_STATE(1989)] = 80749, - [SMALL_STATE(1990)] = 80807, - [SMALL_STATE(1991)] = 80865, - [SMALL_STATE(1992)] = 80923, - [SMALL_STATE(1993)] = 80981, - [SMALL_STATE(1994)] = 81039, - [SMALL_STATE(1995)] = 81097, - [SMALL_STATE(1996)] = 81155, - [SMALL_STATE(1997)] = 81213, - [SMALL_STATE(1998)] = 81271, - [SMALL_STATE(1999)] = 81329, - [SMALL_STATE(2000)] = 81387, - [SMALL_STATE(2001)] = 81445, - [SMALL_STATE(2002)] = 81503, - [SMALL_STATE(2003)] = 81561, - [SMALL_STATE(2004)] = 81619, - [SMALL_STATE(2005)] = 81677, - [SMALL_STATE(2006)] = 81735, - [SMALL_STATE(2007)] = 81793, - [SMALL_STATE(2008)] = 81851, - [SMALL_STATE(2009)] = 81909, - [SMALL_STATE(2010)] = 81967, - [SMALL_STATE(2011)] = 82025, - [SMALL_STATE(2012)] = 82083, - [SMALL_STATE(2013)] = 82141, - [SMALL_STATE(2014)] = 82199, - [SMALL_STATE(2015)] = 82257, - [SMALL_STATE(2016)] = 82315, - [SMALL_STATE(2017)] = 82373, - [SMALL_STATE(2018)] = 82431, - [SMALL_STATE(2019)] = 82489, - [SMALL_STATE(2020)] = 82547, - [SMALL_STATE(2021)] = 82605, - [SMALL_STATE(2022)] = 82663, - [SMALL_STATE(2023)] = 82721, - [SMALL_STATE(2024)] = 82779, - [SMALL_STATE(2025)] = 82837, - [SMALL_STATE(2026)] = 82895, - [SMALL_STATE(2027)] = 82953, - [SMALL_STATE(2028)] = 83011, - [SMALL_STATE(2029)] = 83069, - [SMALL_STATE(2030)] = 83127, - [SMALL_STATE(2031)] = 83185, - [SMALL_STATE(2032)] = 83243, - [SMALL_STATE(2033)] = 83301, - [SMALL_STATE(2034)] = 83359, - [SMALL_STATE(2035)] = 83417, - [SMALL_STATE(2036)] = 83475, - [SMALL_STATE(2037)] = 83533, - [SMALL_STATE(2038)] = 83591, - [SMALL_STATE(2039)] = 83649, - [SMALL_STATE(2040)] = 83707, - [SMALL_STATE(2041)] = 83765, - [SMALL_STATE(2042)] = 83823, - [SMALL_STATE(2043)] = 83881, - [SMALL_STATE(2044)] = 83939, - [SMALL_STATE(2045)] = 83997, - [SMALL_STATE(2046)] = 84055, - [SMALL_STATE(2047)] = 84113, - [SMALL_STATE(2048)] = 84171, - [SMALL_STATE(2049)] = 84229, - [SMALL_STATE(2050)] = 84287, - [SMALL_STATE(2051)] = 84345, - [SMALL_STATE(2052)] = 84403, - [SMALL_STATE(2053)] = 84461, - [SMALL_STATE(2054)] = 84519, - [SMALL_STATE(2055)] = 84577, - [SMALL_STATE(2056)] = 84635, - [SMALL_STATE(2057)] = 84693, - [SMALL_STATE(2058)] = 84751, - [SMALL_STATE(2059)] = 84809, - [SMALL_STATE(2060)] = 84867, - [SMALL_STATE(2061)] = 84925, - [SMALL_STATE(2062)] = 84983, - [SMALL_STATE(2063)] = 85041, - [SMALL_STATE(2064)] = 85099, - [SMALL_STATE(2065)] = 85157, - [SMALL_STATE(2066)] = 85215, - [SMALL_STATE(2067)] = 85273, - [SMALL_STATE(2068)] = 85331, - [SMALL_STATE(2069)] = 85389, - [SMALL_STATE(2070)] = 85447, - [SMALL_STATE(2071)] = 85505, - [SMALL_STATE(2072)] = 85563, - [SMALL_STATE(2073)] = 85621, - [SMALL_STATE(2074)] = 85679, - [SMALL_STATE(2075)] = 85737, - [SMALL_STATE(2076)] = 85795, - [SMALL_STATE(2077)] = 85853, - [SMALL_STATE(2078)] = 85911, - [SMALL_STATE(2079)] = 85969, - [SMALL_STATE(2080)] = 86027, - [SMALL_STATE(2081)] = 86085, - [SMALL_STATE(2082)] = 86143, - [SMALL_STATE(2083)] = 86201, - [SMALL_STATE(2084)] = 86259, - [SMALL_STATE(2085)] = 86317, - [SMALL_STATE(2086)] = 86375, - [SMALL_STATE(2087)] = 86433, - [SMALL_STATE(2088)] = 86491, - [SMALL_STATE(2089)] = 86549, - [SMALL_STATE(2090)] = 86607, - [SMALL_STATE(2091)] = 86665, - [SMALL_STATE(2092)] = 86723, - [SMALL_STATE(2093)] = 86781, - [SMALL_STATE(2094)] = 86839, - [SMALL_STATE(2095)] = 86897, - [SMALL_STATE(2096)] = 86955, - [SMALL_STATE(2097)] = 87013, - [SMALL_STATE(2098)] = 87071, - [SMALL_STATE(2099)] = 87129, - [SMALL_STATE(2100)] = 87187, - [SMALL_STATE(2101)] = 87245, - [SMALL_STATE(2102)] = 87303, - [SMALL_STATE(2103)] = 87361, - [SMALL_STATE(2104)] = 87419, - [SMALL_STATE(2105)] = 87477, - [SMALL_STATE(2106)] = 87535, - [SMALL_STATE(2107)] = 87593, - [SMALL_STATE(2108)] = 87651, - [SMALL_STATE(2109)] = 87709, - [SMALL_STATE(2110)] = 87767, - [SMALL_STATE(2111)] = 87825, - [SMALL_STATE(2112)] = 87883, - [SMALL_STATE(2113)] = 87941, - [SMALL_STATE(2114)] = 87999, - [SMALL_STATE(2115)] = 88057, - [SMALL_STATE(2116)] = 88115, - [SMALL_STATE(2117)] = 88173, - [SMALL_STATE(2118)] = 88231, - [SMALL_STATE(2119)] = 88289, - [SMALL_STATE(2120)] = 88347, - [SMALL_STATE(2121)] = 88405, - [SMALL_STATE(2122)] = 88463, - [SMALL_STATE(2123)] = 88521, - [SMALL_STATE(2124)] = 88579, - [SMALL_STATE(2125)] = 88637, - [SMALL_STATE(2126)] = 88695, - [SMALL_STATE(2127)] = 88753, - [SMALL_STATE(2128)] = 88811, - [SMALL_STATE(2129)] = 88869, - [SMALL_STATE(2130)] = 88927, - [SMALL_STATE(2131)] = 88985, - [SMALL_STATE(2132)] = 89043, - [SMALL_STATE(2133)] = 89101, - [SMALL_STATE(2134)] = 89159, - [SMALL_STATE(2135)] = 89217, - [SMALL_STATE(2136)] = 89275, - [SMALL_STATE(2137)] = 89333, - [SMALL_STATE(2138)] = 89391, - [SMALL_STATE(2139)] = 89449, - [SMALL_STATE(2140)] = 89507, - [SMALL_STATE(2141)] = 89565, - [SMALL_STATE(2142)] = 89623, - [SMALL_STATE(2143)] = 89681, - [SMALL_STATE(2144)] = 89739, - [SMALL_STATE(2145)] = 89797, - [SMALL_STATE(2146)] = 89855, - [SMALL_STATE(2147)] = 89913, - [SMALL_STATE(2148)] = 89971, - [SMALL_STATE(2149)] = 90029, - [SMALL_STATE(2150)] = 90087, - [SMALL_STATE(2151)] = 90145, - [SMALL_STATE(2152)] = 90203, - [SMALL_STATE(2153)] = 90261, - [SMALL_STATE(2154)] = 90319, - [SMALL_STATE(2155)] = 90377, - [SMALL_STATE(2156)] = 90435, - [SMALL_STATE(2157)] = 90493, - [SMALL_STATE(2158)] = 90551, - [SMALL_STATE(2159)] = 90609, - [SMALL_STATE(2160)] = 90667, - [SMALL_STATE(2161)] = 90725, - [SMALL_STATE(2162)] = 90783, - [SMALL_STATE(2163)] = 90841, - [SMALL_STATE(2164)] = 90899, - [SMALL_STATE(2165)] = 90957, - [SMALL_STATE(2166)] = 91015, - [SMALL_STATE(2167)] = 91073, - [SMALL_STATE(2168)] = 91131, - [SMALL_STATE(2169)] = 91189, - [SMALL_STATE(2170)] = 91247, - [SMALL_STATE(2171)] = 91305, - [SMALL_STATE(2172)] = 91363, - [SMALL_STATE(2173)] = 91421, - [SMALL_STATE(2174)] = 91479, - [SMALL_STATE(2175)] = 91537, - [SMALL_STATE(2176)] = 91595, - [SMALL_STATE(2177)] = 91653, - [SMALL_STATE(2178)] = 91711, - [SMALL_STATE(2179)] = 91769, - [SMALL_STATE(2180)] = 91827, - [SMALL_STATE(2181)] = 91885, - [SMALL_STATE(2182)] = 91943, - [SMALL_STATE(2183)] = 92001, - [SMALL_STATE(2184)] = 92059, - [SMALL_STATE(2185)] = 92117, - [SMALL_STATE(2186)] = 92175, - [SMALL_STATE(2187)] = 92233, - [SMALL_STATE(2188)] = 92291, - [SMALL_STATE(2189)] = 92349, - [SMALL_STATE(2190)] = 92407, - [SMALL_STATE(2191)] = 92465, - [SMALL_STATE(2192)] = 92523, - [SMALL_STATE(2193)] = 92581, - [SMALL_STATE(2194)] = 92639, - [SMALL_STATE(2195)] = 92697, - [SMALL_STATE(2196)] = 92755, - [SMALL_STATE(2197)] = 92813, - [SMALL_STATE(2198)] = 92871, - [SMALL_STATE(2199)] = 92929, - [SMALL_STATE(2200)] = 92987, - [SMALL_STATE(2201)] = 93045, - [SMALL_STATE(2202)] = 93103, - [SMALL_STATE(2203)] = 93161, - [SMALL_STATE(2204)] = 93219, - [SMALL_STATE(2205)] = 93277, - [SMALL_STATE(2206)] = 93335, - [SMALL_STATE(2207)] = 93393, - [SMALL_STATE(2208)] = 93451, - [SMALL_STATE(2209)] = 93509, - [SMALL_STATE(2210)] = 93567, - [SMALL_STATE(2211)] = 93625, - [SMALL_STATE(2212)] = 93683, - [SMALL_STATE(2213)] = 93741, - [SMALL_STATE(2214)] = 93799, - [SMALL_STATE(2215)] = 93857, - [SMALL_STATE(2216)] = 93915, - [SMALL_STATE(2217)] = 93973, - [SMALL_STATE(2218)] = 94031, - [SMALL_STATE(2219)] = 94089, - [SMALL_STATE(2220)] = 94147, - [SMALL_STATE(2221)] = 94205, - [SMALL_STATE(2222)] = 94263, - [SMALL_STATE(2223)] = 94321, - [SMALL_STATE(2224)] = 94379, - [SMALL_STATE(2225)] = 94437, - [SMALL_STATE(2226)] = 94495, - [SMALL_STATE(2227)] = 94553, - [SMALL_STATE(2228)] = 94611, - [SMALL_STATE(2229)] = 94669, - [SMALL_STATE(2230)] = 94727, - [SMALL_STATE(2231)] = 94785, - [SMALL_STATE(2232)] = 94843, - [SMALL_STATE(2233)] = 94901, - [SMALL_STATE(2234)] = 94959, - [SMALL_STATE(2235)] = 95017, - [SMALL_STATE(2236)] = 95075, - [SMALL_STATE(2237)] = 95133, - [SMALL_STATE(2238)] = 95191, - [SMALL_STATE(2239)] = 95249, - [SMALL_STATE(2240)] = 95307, - [SMALL_STATE(2241)] = 95365, - [SMALL_STATE(2242)] = 95423, - [SMALL_STATE(2243)] = 95481, - [SMALL_STATE(2244)] = 95539, - [SMALL_STATE(2245)] = 95597, - [SMALL_STATE(2246)] = 95655, - [SMALL_STATE(2247)] = 95713, - [SMALL_STATE(2248)] = 95771, - [SMALL_STATE(2249)] = 95829, - [SMALL_STATE(2250)] = 95887, - [SMALL_STATE(2251)] = 95945, - [SMALL_STATE(2252)] = 96003, - [SMALL_STATE(2253)] = 96061, - [SMALL_STATE(2254)] = 96119, - [SMALL_STATE(2255)] = 96177, - [SMALL_STATE(2256)] = 96235, - [SMALL_STATE(2257)] = 96293, - [SMALL_STATE(2258)] = 96351, - [SMALL_STATE(2259)] = 96409, - [SMALL_STATE(2260)] = 96467, - [SMALL_STATE(2261)] = 96525, - [SMALL_STATE(2262)] = 96583, - [SMALL_STATE(2263)] = 96641, - [SMALL_STATE(2264)] = 96699, - [SMALL_STATE(2265)] = 96757, - [SMALL_STATE(2266)] = 96815, - [SMALL_STATE(2267)] = 96873, - [SMALL_STATE(2268)] = 96931, - [SMALL_STATE(2269)] = 96989, - [SMALL_STATE(2270)] = 97047, - [SMALL_STATE(2271)] = 97105, - [SMALL_STATE(2272)] = 97163, - [SMALL_STATE(2273)] = 97221, - [SMALL_STATE(2274)] = 97279, - [SMALL_STATE(2275)] = 97337, - [SMALL_STATE(2276)] = 97395, - [SMALL_STATE(2277)] = 97453, - [SMALL_STATE(2278)] = 97511, - [SMALL_STATE(2279)] = 97569, - [SMALL_STATE(2280)] = 97627, - [SMALL_STATE(2281)] = 97685, - [SMALL_STATE(2282)] = 97743, - [SMALL_STATE(2283)] = 97801, - [SMALL_STATE(2284)] = 97859, - [SMALL_STATE(2285)] = 97917, - [SMALL_STATE(2286)] = 97975, - [SMALL_STATE(2287)] = 98033, - [SMALL_STATE(2288)] = 98091, - [SMALL_STATE(2289)] = 98149, - [SMALL_STATE(2290)] = 98207, - [SMALL_STATE(2291)] = 98265, - [SMALL_STATE(2292)] = 98323, - [SMALL_STATE(2293)] = 98381, - [SMALL_STATE(2294)] = 98439, - [SMALL_STATE(2295)] = 98497, - [SMALL_STATE(2296)] = 98555, - [SMALL_STATE(2297)] = 98613, - [SMALL_STATE(2298)] = 98671, - [SMALL_STATE(2299)] = 98729, - [SMALL_STATE(2300)] = 98787, - [SMALL_STATE(2301)] = 98845, - [SMALL_STATE(2302)] = 98903, - [SMALL_STATE(2303)] = 98961, - [SMALL_STATE(2304)] = 99019, - [SMALL_STATE(2305)] = 99077, - [SMALL_STATE(2306)] = 99135, - [SMALL_STATE(2307)] = 99193, - [SMALL_STATE(2308)] = 99251, - [SMALL_STATE(2309)] = 99309, - [SMALL_STATE(2310)] = 99367, - [SMALL_STATE(2311)] = 99425, - [SMALL_STATE(2312)] = 99483, - [SMALL_STATE(2313)] = 99541, - [SMALL_STATE(2314)] = 99599, - [SMALL_STATE(2315)] = 99657, - [SMALL_STATE(2316)] = 99715, - [SMALL_STATE(2317)] = 99773, - [SMALL_STATE(2318)] = 99831, - [SMALL_STATE(2319)] = 99889, - [SMALL_STATE(2320)] = 99947, - [SMALL_STATE(2321)] = 100005, - [SMALL_STATE(2322)] = 100063, - [SMALL_STATE(2323)] = 100121, - [SMALL_STATE(2324)] = 100179, - [SMALL_STATE(2325)] = 100237, - [SMALL_STATE(2326)] = 100295, - [SMALL_STATE(2327)] = 100353, - [SMALL_STATE(2328)] = 100411, - [SMALL_STATE(2329)] = 100469, - [SMALL_STATE(2330)] = 100527, - [SMALL_STATE(2331)] = 100585, - [SMALL_STATE(2332)] = 100643, - [SMALL_STATE(2333)] = 100701, - [SMALL_STATE(2334)] = 100759, - [SMALL_STATE(2335)] = 100817, - [SMALL_STATE(2336)] = 100875, - [SMALL_STATE(2337)] = 100933, - [SMALL_STATE(2338)] = 100991, - [SMALL_STATE(2339)] = 101049, - [SMALL_STATE(2340)] = 101107, - [SMALL_STATE(2341)] = 101165, - [SMALL_STATE(2342)] = 101223, - [SMALL_STATE(2343)] = 101281, - [SMALL_STATE(2344)] = 101339, - [SMALL_STATE(2345)] = 101397, - [SMALL_STATE(2346)] = 101455, - [SMALL_STATE(2347)] = 101513, - [SMALL_STATE(2348)] = 101571, - [SMALL_STATE(2349)] = 101629, - [SMALL_STATE(2350)] = 101687, - [SMALL_STATE(2351)] = 101745, - [SMALL_STATE(2352)] = 101803, - [SMALL_STATE(2353)] = 101861, - [SMALL_STATE(2354)] = 101919, - [SMALL_STATE(2355)] = 101977, - [SMALL_STATE(2356)] = 102035, - [SMALL_STATE(2357)] = 102093, - [SMALL_STATE(2358)] = 102151, - [SMALL_STATE(2359)] = 102209, - [SMALL_STATE(2360)] = 102267, - [SMALL_STATE(2361)] = 102325, - [SMALL_STATE(2362)] = 102383, - [SMALL_STATE(2363)] = 102441, - [SMALL_STATE(2364)] = 102499, - [SMALL_STATE(2365)] = 102557, - [SMALL_STATE(2366)] = 102615, - [SMALL_STATE(2367)] = 102673, - [SMALL_STATE(2368)] = 102731, - [SMALL_STATE(2369)] = 102789, - [SMALL_STATE(2370)] = 102847, - [SMALL_STATE(2371)] = 102905, - [SMALL_STATE(2372)] = 102963, - [SMALL_STATE(2373)] = 103021, - [SMALL_STATE(2374)] = 103079, - [SMALL_STATE(2375)] = 103137, - [SMALL_STATE(2376)] = 103195, - [SMALL_STATE(2377)] = 103253, - [SMALL_STATE(2378)] = 103311, - [SMALL_STATE(2379)] = 103369, - [SMALL_STATE(2380)] = 103427, - [SMALL_STATE(2381)] = 103485, - [SMALL_STATE(2382)] = 103543, - [SMALL_STATE(2383)] = 103601, - [SMALL_STATE(2384)] = 103659, - [SMALL_STATE(2385)] = 103717, - [SMALL_STATE(2386)] = 103775, - [SMALL_STATE(2387)] = 103833, - [SMALL_STATE(2388)] = 103891, - [SMALL_STATE(2389)] = 103949, - [SMALL_STATE(2390)] = 104007, - [SMALL_STATE(2391)] = 104065, - [SMALL_STATE(2392)] = 104123, - [SMALL_STATE(2393)] = 104181, - [SMALL_STATE(2394)] = 104239, - [SMALL_STATE(2395)] = 104297, - [SMALL_STATE(2396)] = 104355, - [SMALL_STATE(2397)] = 104413, - [SMALL_STATE(2398)] = 104471, - [SMALL_STATE(2399)] = 104529, - [SMALL_STATE(2400)] = 104587, - [SMALL_STATE(2401)] = 104645, - [SMALL_STATE(2402)] = 104703, - [SMALL_STATE(2403)] = 104761, - [SMALL_STATE(2404)] = 104819, - [SMALL_STATE(2405)] = 104877, - [SMALL_STATE(2406)] = 104935, - [SMALL_STATE(2407)] = 104993, - [SMALL_STATE(2408)] = 105051, - [SMALL_STATE(2409)] = 105109, - [SMALL_STATE(2410)] = 105167, - [SMALL_STATE(2411)] = 105225, - [SMALL_STATE(2412)] = 105283, - [SMALL_STATE(2413)] = 105341, - [SMALL_STATE(2414)] = 105399, - [SMALL_STATE(2415)] = 105457, - [SMALL_STATE(2416)] = 105515, - [SMALL_STATE(2417)] = 105573, - [SMALL_STATE(2418)] = 105631, - [SMALL_STATE(2419)] = 105689, - [SMALL_STATE(2420)] = 105747, - [SMALL_STATE(2421)] = 105805, - [SMALL_STATE(2422)] = 105863, - [SMALL_STATE(2423)] = 105921, - [SMALL_STATE(2424)] = 105979, - [SMALL_STATE(2425)] = 106037, - [SMALL_STATE(2426)] = 106095, - [SMALL_STATE(2427)] = 106153, - [SMALL_STATE(2428)] = 106211, - [SMALL_STATE(2429)] = 106269, - [SMALL_STATE(2430)] = 106327, - [SMALL_STATE(2431)] = 106385, - [SMALL_STATE(2432)] = 106443, - [SMALL_STATE(2433)] = 106501, - [SMALL_STATE(2434)] = 106559, - [SMALL_STATE(2435)] = 106617, - [SMALL_STATE(2436)] = 106675, - [SMALL_STATE(2437)] = 106733, - [SMALL_STATE(2438)] = 106791, - [SMALL_STATE(2439)] = 106849, - [SMALL_STATE(2440)] = 106907, - [SMALL_STATE(2441)] = 106965, - [SMALL_STATE(2442)] = 107023, - [SMALL_STATE(2443)] = 107081, - [SMALL_STATE(2444)] = 107139, - [SMALL_STATE(2445)] = 107197, - [SMALL_STATE(2446)] = 107255, - [SMALL_STATE(2447)] = 107313, - [SMALL_STATE(2448)] = 107371, - [SMALL_STATE(2449)] = 107429, - [SMALL_STATE(2450)] = 107487, - [SMALL_STATE(2451)] = 107545, - [SMALL_STATE(2452)] = 107603, - [SMALL_STATE(2453)] = 107661, - [SMALL_STATE(2454)] = 107719, - [SMALL_STATE(2455)] = 107777, - [SMALL_STATE(2456)] = 107835, - [SMALL_STATE(2457)] = 107893, - [SMALL_STATE(2458)] = 107951, - [SMALL_STATE(2459)] = 108009, - [SMALL_STATE(2460)] = 108067, - [SMALL_STATE(2461)] = 108125, - [SMALL_STATE(2462)] = 108183, - [SMALL_STATE(2463)] = 108241, - [SMALL_STATE(2464)] = 108299, - [SMALL_STATE(2465)] = 108357, - [SMALL_STATE(2466)] = 108415, - [SMALL_STATE(2467)] = 108473, - [SMALL_STATE(2468)] = 108531, - [SMALL_STATE(2469)] = 108589, - [SMALL_STATE(2470)] = 108647, - [SMALL_STATE(2471)] = 108705, - [SMALL_STATE(2472)] = 108763, - [SMALL_STATE(2473)] = 108821, - [SMALL_STATE(2474)] = 108879, - [SMALL_STATE(2475)] = 108937, - [SMALL_STATE(2476)] = 108995, - [SMALL_STATE(2477)] = 109053, - [SMALL_STATE(2478)] = 109111, - [SMALL_STATE(2479)] = 109169, - [SMALL_STATE(2480)] = 109227, - [SMALL_STATE(2481)] = 109285, - [SMALL_STATE(2482)] = 109343, - [SMALL_STATE(2483)] = 109401, - [SMALL_STATE(2484)] = 109459, - [SMALL_STATE(2485)] = 109517, - [SMALL_STATE(2486)] = 109575, - [SMALL_STATE(2487)] = 109633, - [SMALL_STATE(2488)] = 109691, - [SMALL_STATE(2489)] = 109749, - [SMALL_STATE(2490)] = 109807, - [SMALL_STATE(2491)] = 109865, - [SMALL_STATE(2492)] = 109923, - [SMALL_STATE(2493)] = 109981, - [SMALL_STATE(2494)] = 110039, - [SMALL_STATE(2495)] = 110097, - [SMALL_STATE(2496)] = 110155, - [SMALL_STATE(2497)] = 110213, - [SMALL_STATE(2498)] = 110271, - [SMALL_STATE(2499)] = 110329, - [SMALL_STATE(2500)] = 110387, - [SMALL_STATE(2501)] = 110445, - [SMALL_STATE(2502)] = 110503, - [SMALL_STATE(2503)] = 110561, - [SMALL_STATE(2504)] = 110619, - [SMALL_STATE(2505)] = 110677, - [SMALL_STATE(2506)] = 110735, - [SMALL_STATE(2507)] = 110793, - [SMALL_STATE(2508)] = 110851, - [SMALL_STATE(2509)] = 110909, - [SMALL_STATE(2510)] = 110967, - [SMALL_STATE(2511)] = 111025, - [SMALL_STATE(2512)] = 111083, - [SMALL_STATE(2513)] = 111141, - [SMALL_STATE(2514)] = 111199, - [SMALL_STATE(2515)] = 111257, - [SMALL_STATE(2516)] = 111315, - [SMALL_STATE(2517)] = 111373, - [SMALL_STATE(2518)] = 111431, - [SMALL_STATE(2519)] = 111489, - [SMALL_STATE(2520)] = 111547, - [SMALL_STATE(2521)] = 111605, - [SMALL_STATE(2522)] = 111663, - [SMALL_STATE(2523)] = 111721, - [SMALL_STATE(2524)] = 111779, - [SMALL_STATE(2525)] = 111837, - [SMALL_STATE(2526)] = 111895, - [SMALL_STATE(2527)] = 111953, - [SMALL_STATE(2528)] = 112011, - [SMALL_STATE(2529)] = 112069, - [SMALL_STATE(2530)] = 112127, - [SMALL_STATE(2531)] = 112185, - [SMALL_STATE(2532)] = 112243, - [SMALL_STATE(2533)] = 112301, - [SMALL_STATE(2534)] = 112359, - [SMALL_STATE(2535)] = 112417, - [SMALL_STATE(2536)] = 112475, - [SMALL_STATE(2537)] = 112533, - [SMALL_STATE(2538)] = 112591, - [SMALL_STATE(2539)] = 112649, - [SMALL_STATE(2540)] = 112707, - [SMALL_STATE(2541)] = 112765, - [SMALL_STATE(2542)] = 112823, - [SMALL_STATE(2543)] = 112881, - [SMALL_STATE(2544)] = 112939, - [SMALL_STATE(2545)] = 112997, - [SMALL_STATE(2546)] = 113055, - [SMALL_STATE(2547)] = 113113, - [SMALL_STATE(2548)] = 113171, - [SMALL_STATE(2549)] = 113229, - [SMALL_STATE(2550)] = 113287, - [SMALL_STATE(2551)] = 113345, - [SMALL_STATE(2552)] = 113403, - [SMALL_STATE(2553)] = 113461, - [SMALL_STATE(2554)] = 113519, - [SMALL_STATE(2555)] = 113577, - [SMALL_STATE(2556)] = 113635, - [SMALL_STATE(2557)] = 113693, - [SMALL_STATE(2558)] = 113751, - [SMALL_STATE(2559)] = 113809, - [SMALL_STATE(2560)] = 113867, - [SMALL_STATE(2561)] = 113925, - [SMALL_STATE(2562)] = 113983, - [SMALL_STATE(2563)] = 114041, - [SMALL_STATE(2564)] = 114099, - [SMALL_STATE(2565)] = 114157, - [SMALL_STATE(2566)] = 114215, - [SMALL_STATE(2567)] = 114273, - [SMALL_STATE(2568)] = 114331, - [SMALL_STATE(2569)] = 114389, - [SMALL_STATE(2570)] = 114447, - [SMALL_STATE(2571)] = 114505, - [SMALL_STATE(2572)] = 114563, - [SMALL_STATE(2573)] = 114621, - [SMALL_STATE(2574)] = 114679, - [SMALL_STATE(2575)] = 114737, - [SMALL_STATE(2576)] = 114795, - [SMALL_STATE(2577)] = 114853, - [SMALL_STATE(2578)] = 114911, - [SMALL_STATE(2579)] = 114969, - [SMALL_STATE(2580)] = 115027, - [SMALL_STATE(2581)] = 115085, - [SMALL_STATE(2582)] = 115143, - [SMALL_STATE(2583)] = 115201, - [SMALL_STATE(2584)] = 115259, - [SMALL_STATE(2585)] = 115317, - [SMALL_STATE(2586)] = 115375, - [SMALL_STATE(2587)] = 115433, - [SMALL_STATE(2588)] = 115491, - [SMALL_STATE(2589)] = 115549, - [SMALL_STATE(2590)] = 115607, - [SMALL_STATE(2591)] = 115665, - [SMALL_STATE(2592)] = 115723, - [SMALL_STATE(2593)] = 115781, - [SMALL_STATE(2594)] = 115839, - [SMALL_STATE(2595)] = 115897, - [SMALL_STATE(2596)] = 115955, - [SMALL_STATE(2597)] = 116013, - [SMALL_STATE(2598)] = 116071, - [SMALL_STATE(2599)] = 116129, - [SMALL_STATE(2600)] = 116187, - [SMALL_STATE(2601)] = 116245, - [SMALL_STATE(2602)] = 116303, - [SMALL_STATE(2603)] = 116361, - [SMALL_STATE(2604)] = 116419, - [SMALL_STATE(2605)] = 116477, - [SMALL_STATE(2606)] = 116535, - [SMALL_STATE(2607)] = 116593, - [SMALL_STATE(2608)] = 116651, - [SMALL_STATE(2609)] = 116709, - [SMALL_STATE(2610)] = 116767, - [SMALL_STATE(2611)] = 116825, - [SMALL_STATE(2612)] = 116883, - [SMALL_STATE(2613)] = 116941, - [SMALL_STATE(2614)] = 116999, - [SMALL_STATE(2615)] = 117057, - [SMALL_STATE(2616)] = 117115, - [SMALL_STATE(2617)] = 117173, - [SMALL_STATE(2618)] = 117231, - [SMALL_STATE(2619)] = 117289, - [SMALL_STATE(2620)] = 117347, - [SMALL_STATE(2621)] = 117405, - [SMALL_STATE(2622)] = 117463, - [SMALL_STATE(2623)] = 117521, - [SMALL_STATE(2624)] = 117579, - [SMALL_STATE(2625)] = 117637, - [SMALL_STATE(2626)] = 117695, - [SMALL_STATE(2627)] = 117753, - [SMALL_STATE(2628)] = 117811, - [SMALL_STATE(2629)] = 117869, - [SMALL_STATE(2630)] = 117927, - [SMALL_STATE(2631)] = 117985, - [SMALL_STATE(2632)] = 118043, - [SMALL_STATE(2633)] = 118101, - [SMALL_STATE(2634)] = 118159, - [SMALL_STATE(2635)] = 118217, - [SMALL_STATE(2636)] = 118275, - [SMALL_STATE(2637)] = 118333, - [SMALL_STATE(2638)] = 118391, - [SMALL_STATE(2639)] = 118449, - [SMALL_STATE(2640)] = 118507, - [SMALL_STATE(2641)] = 118565, - [SMALL_STATE(2642)] = 118623, - [SMALL_STATE(2643)] = 118681, - [SMALL_STATE(2644)] = 118739, - [SMALL_STATE(2645)] = 118797, - [SMALL_STATE(2646)] = 118855, - [SMALL_STATE(2647)] = 118913, - [SMALL_STATE(2648)] = 118971, - [SMALL_STATE(2649)] = 119029, - [SMALL_STATE(2650)] = 119087, - [SMALL_STATE(2651)] = 119145, - [SMALL_STATE(2652)] = 119203, - [SMALL_STATE(2653)] = 119261, - [SMALL_STATE(2654)] = 119319, - [SMALL_STATE(2655)] = 119377, - [SMALL_STATE(2656)] = 119435, - [SMALL_STATE(2657)] = 119493, - [SMALL_STATE(2658)] = 119551, - [SMALL_STATE(2659)] = 119609, - [SMALL_STATE(2660)] = 119667, - [SMALL_STATE(2661)] = 119725, - [SMALL_STATE(2662)] = 119783, - [SMALL_STATE(2663)] = 119841, - [SMALL_STATE(2664)] = 119899, - [SMALL_STATE(2665)] = 119957, - [SMALL_STATE(2666)] = 120015, - [SMALL_STATE(2667)] = 120073, - [SMALL_STATE(2668)] = 120131, - [SMALL_STATE(2669)] = 120189, - [SMALL_STATE(2670)] = 120247, - [SMALL_STATE(2671)] = 120305, - [SMALL_STATE(2672)] = 120363, - [SMALL_STATE(2673)] = 120421, - [SMALL_STATE(2674)] = 120479, - [SMALL_STATE(2675)] = 120537, - [SMALL_STATE(2676)] = 120595, - [SMALL_STATE(2677)] = 120653, - [SMALL_STATE(2678)] = 120711, - [SMALL_STATE(2679)] = 120769, - [SMALL_STATE(2680)] = 120827, - [SMALL_STATE(2681)] = 120885, - [SMALL_STATE(2682)] = 120943, - [SMALL_STATE(2683)] = 121001, - [SMALL_STATE(2684)] = 121059, - [SMALL_STATE(2685)] = 121117, - [SMALL_STATE(2686)] = 121175, - [SMALL_STATE(2687)] = 121233, - [SMALL_STATE(2688)] = 121291, - [SMALL_STATE(2689)] = 121349, - [SMALL_STATE(2690)] = 121407, - [SMALL_STATE(2691)] = 121465, - [SMALL_STATE(2692)] = 121523, - [SMALL_STATE(2693)] = 121581, - [SMALL_STATE(2694)] = 121639, - [SMALL_STATE(2695)] = 121697, - [SMALL_STATE(2696)] = 121755, - [SMALL_STATE(2697)] = 121813, - [SMALL_STATE(2698)] = 121871, - [SMALL_STATE(2699)] = 121929, - [SMALL_STATE(2700)] = 121987, - [SMALL_STATE(2701)] = 122045, - [SMALL_STATE(2702)] = 122103, - [SMALL_STATE(2703)] = 122161, - [SMALL_STATE(2704)] = 122219, - [SMALL_STATE(2705)] = 122277, - [SMALL_STATE(2706)] = 122335, - [SMALL_STATE(2707)] = 122393, - [SMALL_STATE(2708)] = 122451, - [SMALL_STATE(2709)] = 122509, - [SMALL_STATE(2710)] = 122567, - [SMALL_STATE(2711)] = 122625, - [SMALL_STATE(2712)] = 122683, - [SMALL_STATE(2713)] = 122741, - [SMALL_STATE(2714)] = 122799, - [SMALL_STATE(2715)] = 122857, - [SMALL_STATE(2716)] = 122915, - [SMALL_STATE(2717)] = 122973, - [SMALL_STATE(2718)] = 123031, - [SMALL_STATE(2719)] = 123089, - [SMALL_STATE(2720)] = 123147, - [SMALL_STATE(2721)] = 123205, - [SMALL_STATE(2722)] = 123263, - [SMALL_STATE(2723)] = 123321, - [SMALL_STATE(2724)] = 123379, - [SMALL_STATE(2725)] = 123437, - [SMALL_STATE(2726)] = 123495, - [SMALL_STATE(2727)] = 123553, - [SMALL_STATE(2728)] = 123611, - [SMALL_STATE(2729)] = 123669, - [SMALL_STATE(2730)] = 123727, - [SMALL_STATE(2731)] = 123785, - [SMALL_STATE(2732)] = 123843, - [SMALL_STATE(2733)] = 123901, - [SMALL_STATE(2734)] = 123959, - [SMALL_STATE(2735)] = 124017, - [SMALL_STATE(2736)] = 124075, - [SMALL_STATE(2737)] = 124133, - [SMALL_STATE(2738)] = 124191, - [SMALL_STATE(2739)] = 124249, - [SMALL_STATE(2740)] = 124307, - [SMALL_STATE(2741)] = 124365, - [SMALL_STATE(2742)] = 124423, - [SMALL_STATE(2743)] = 124481, - [SMALL_STATE(2744)] = 124539, - [SMALL_STATE(2745)] = 124597, - [SMALL_STATE(2746)] = 124655, - [SMALL_STATE(2747)] = 124713, - [SMALL_STATE(2748)] = 124771, - [SMALL_STATE(2749)] = 124829, - [SMALL_STATE(2750)] = 124887, - [SMALL_STATE(2751)] = 124945, - [SMALL_STATE(2752)] = 125003, - [SMALL_STATE(2753)] = 125061, - [SMALL_STATE(2754)] = 125119, - [SMALL_STATE(2755)] = 125177, - [SMALL_STATE(2756)] = 125235, - [SMALL_STATE(2757)] = 125293, - [SMALL_STATE(2758)] = 125351, - [SMALL_STATE(2759)] = 125409, - [SMALL_STATE(2760)] = 125467, - [SMALL_STATE(2761)] = 125525, - [SMALL_STATE(2762)] = 125583, - [SMALL_STATE(2763)] = 125641, - [SMALL_STATE(2764)] = 125699, - [SMALL_STATE(2765)] = 125757, - [SMALL_STATE(2766)] = 125815, - [SMALL_STATE(2767)] = 125873, - [SMALL_STATE(2768)] = 125931, - [SMALL_STATE(2769)] = 125989, - [SMALL_STATE(2770)] = 126047, - [SMALL_STATE(2771)] = 126105, - [SMALL_STATE(2772)] = 126163, - [SMALL_STATE(2773)] = 126221, - [SMALL_STATE(2774)] = 126279, - [SMALL_STATE(2775)] = 126337, - [SMALL_STATE(2776)] = 126395, - [SMALL_STATE(2777)] = 126453, - [SMALL_STATE(2778)] = 126511, - [SMALL_STATE(2779)] = 126569, - [SMALL_STATE(2780)] = 126627, - [SMALL_STATE(2781)] = 126685, - [SMALL_STATE(2782)] = 126743, - [SMALL_STATE(2783)] = 126801, - [SMALL_STATE(2784)] = 126859, - [SMALL_STATE(2785)] = 126917, - [SMALL_STATE(2786)] = 126975, - [SMALL_STATE(2787)] = 127033, - [SMALL_STATE(2788)] = 127091, - [SMALL_STATE(2789)] = 127149, - [SMALL_STATE(2790)] = 127207, - [SMALL_STATE(2791)] = 127265, - [SMALL_STATE(2792)] = 127323, - [SMALL_STATE(2793)] = 127381, - [SMALL_STATE(2794)] = 127439, - [SMALL_STATE(2795)] = 127497, - [SMALL_STATE(2796)] = 127555, - [SMALL_STATE(2797)] = 127613, - [SMALL_STATE(2798)] = 127671, - [SMALL_STATE(2799)] = 127729, - [SMALL_STATE(2800)] = 127787, - [SMALL_STATE(2801)] = 127845, - [SMALL_STATE(2802)] = 127903, - [SMALL_STATE(2803)] = 127961, - [SMALL_STATE(2804)] = 128019, - [SMALL_STATE(2805)] = 128077, - [SMALL_STATE(2806)] = 128135, - [SMALL_STATE(2807)] = 128193, - [SMALL_STATE(2808)] = 128251, - [SMALL_STATE(2809)] = 128309, - [SMALL_STATE(2810)] = 128367, - [SMALL_STATE(2811)] = 128425, - [SMALL_STATE(2812)] = 128483, - [SMALL_STATE(2813)] = 128541, - [SMALL_STATE(2814)] = 128599, - [SMALL_STATE(2815)] = 128657, - [SMALL_STATE(2816)] = 128715, - [SMALL_STATE(2817)] = 128773, - [SMALL_STATE(2818)] = 128831, - [SMALL_STATE(2819)] = 128889, - [SMALL_STATE(2820)] = 128947, - [SMALL_STATE(2821)] = 129005, - [SMALL_STATE(2822)] = 129063, - [SMALL_STATE(2823)] = 129121, - [SMALL_STATE(2824)] = 129179, - [SMALL_STATE(2825)] = 129237, - [SMALL_STATE(2826)] = 129295, - [SMALL_STATE(2827)] = 129353, - [SMALL_STATE(2828)] = 129411, - [SMALL_STATE(2829)] = 129469, - [SMALL_STATE(2830)] = 129527, - [SMALL_STATE(2831)] = 129585, - [SMALL_STATE(2832)] = 129643, - [SMALL_STATE(2833)] = 129701, - [SMALL_STATE(2834)] = 129759, - [SMALL_STATE(2835)] = 129817, - [SMALL_STATE(2836)] = 129875, - [SMALL_STATE(2837)] = 129933, - [SMALL_STATE(2838)] = 129991, - [SMALL_STATE(2839)] = 130049, - [SMALL_STATE(2840)] = 130107, - [SMALL_STATE(2841)] = 130165, - [SMALL_STATE(2842)] = 130223, - [SMALL_STATE(2843)] = 130281, - [SMALL_STATE(2844)] = 130339, - [SMALL_STATE(2845)] = 130397, - [SMALL_STATE(2846)] = 130455, - [SMALL_STATE(2847)] = 130513, - [SMALL_STATE(2848)] = 130571, - [SMALL_STATE(2849)] = 130629, - [SMALL_STATE(2850)] = 130687, - [SMALL_STATE(2851)] = 130745, - [SMALL_STATE(2852)] = 130803, - [SMALL_STATE(2853)] = 130861, - [SMALL_STATE(2854)] = 130919, - [SMALL_STATE(2855)] = 130977, - [SMALL_STATE(2856)] = 131035, - [SMALL_STATE(2857)] = 131093, - [SMALL_STATE(2858)] = 131151, - [SMALL_STATE(2859)] = 131209, - [SMALL_STATE(2860)] = 131267, - [SMALL_STATE(2861)] = 131325, - [SMALL_STATE(2862)] = 131383, - [SMALL_STATE(2863)] = 131441, - [SMALL_STATE(2864)] = 131499, - [SMALL_STATE(2865)] = 131557, - [SMALL_STATE(2866)] = 131615, - [SMALL_STATE(2867)] = 131673, - [SMALL_STATE(2868)] = 131731, - [SMALL_STATE(2869)] = 131789, - [SMALL_STATE(2870)] = 131847, - [SMALL_STATE(2871)] = 131905, - [SMALL_STATE(2872)] = 131963, - [SMALL_STATE(2873)] = 132021, - [SMALL_STATE(2874)] = 132079, - [SMALL_STATE(2875)] = 132137, - [SMALL_STATE(2876)] = 132195, - [SMALL_STATE(2877)] = 132253, - [SMALL_STATE(2878)] = 132311, - [SMALL_STATE(2879)] = 132369, - [SMALL_STATE(2880)] = 132427, - [SMALL_STATE(2881)] = 132485, - [SMALL_STATE(2882)] = 132543, - [SMALL_STATE(2883)] = 132601, - [SMALL_STATE(2884)] = 132659, - [SMALL_STATE(2885)] = 132717, - [SMALL_STATE(2886)] = 132775, - [SMALL_STATE(2887)] = 132833, - [SMALL_STATE(2888)] = 132891, - [SMALL_STATE(2889)] = 132949, - [SMALL_STATE(2890)] = 133007, - [SMALL_STATE(2891)] = 133065, - [SMALL_STATE(2892)] = 133123, - [SMALL_STATE(2893)] = 133181, - [SMALL_STATE(2894)] = 133239, - [SMALL_STATE(2895)] = 133297, - [SMALL_STATE(2896)] = 133355, - [SMALL_STATE(2897)] = 133413, - [SMALL_STATE(2898)] = 133471, - [SMALL_STATE(2899)] = 133529, - [SMALL_STATE(2900)] = 133587, - [SMALL_STATE(2901)] = 133645, - [SMALL_STATE(2902)] = 133703, - [SMALL_STATE(2903)] = 133761, - [SMALL_STATE(2904)] = 133819, - [SMALL_STATE(2905)] = 133877, - [SMALL_STATE(2906)] = 133935, - [SMALL_STATE(2907)] = 133993, - [SMALL_STATE(2908)] = 134051, - [SMALL_STATE(2909)] = 134109, - [SMALL_STATE(2910)] = 134167, - [SMALL_STATE(2911)] = 134225, - [SMALL_STATE(2912)] = 134283, - [SMALL_STATE(2913)] = 134341, - [SMALL_STATE(2914)] = 134399, - [SMALL_STATE(2915)] = 134457, - [SMALL_STATE(2916)] = 134515, - [SMALL_STATE(2917)] = 134573, - [SMALL_STATE(2918)] = 134631, - [SMALL_STATE(2919)] = 134689, - [SMALL_STATE(2920)] = 134747, - [SMALL_STATE(2921)] = 134805, - [SMALL_STATE(2922)] = 134863, - [SMALL_STATE(2923)] = 134921, - [SMALL_STATE(2924)] = 134979, - [SMALL_STATE(2925)] = 135037, - [SMALL_STATE(2926)] = 135095, - [SMALL_STATE(2927)] = 135153, - [SMALL_STATE(2928)] = 135211, - [SMALL_STATE(2929)] = 135269, - [SMALL_STATE(2930)] = 135327, - [SMALL_STATE(2931)] = 135385, - [SMALL_STATE(2932)] = 135443, - [SMALL_STATE(2933)] = 135501, - [SMALL_STATE(2934)] = 135559, - [SMALL_STATE(2935)] = 135617, - [SMALL_STATE(2936)] = 135675, - [SMALL_STATE(2937)] = 135733, - [SMALL_STATE(2938)] = 135791, - [SMALL_STATE(2939)] = 135849, - [SMALL_STATE(2940)] = 135907, - [SMALL_STATE(2941)] = 135965, - [SMALL_STATE(2942)] = 136023, - [SMALL_STATE(2943)] = 136081, - [SMALL_STATE(2944)] = 136139, - [SMALL_STATE(2945)] = 136197, - [SMALL_STATE(2946)] = 136255, - [SMALL_STATE(2947)] = 136313, - [SMALL_STATE(2948)] = 136371, - [SMALL_STATE(2949)] = 136429, - [SMALL_STATE(2950)] = 136487, - [SMALL_STATE(2951)] = 136545, - [SMALL_STATE(2952)] = 136603, - [SMALL_STATE(2953)] = 136661, - [SMALL_STATE(2954)] = 136719, - [SMALL_STATE(2955)] = 136777, - [SMALL_STATE(2956)] = 136835, - [SMALL_STATE(2957)] = 136893, - [SMALL_STATE(2958)] = 136951, - [SMALL_STATE(2959)] = 137009, - [SMALL_STATE(2960)] = 137067, - [SMALL_STATE(2961)] = 137125, - [SMALL_STATE(2962)] = 137183, - [SMALL_STATE(2963)] = 137241, - [SMALL_STATE(2964)] = 137299, - [SMALL_STATE(2965)] = 137357, - [SMALL_STATE(2966)] = 137415, - [SMALL_STATE(2967)] = 137473, - [SMALL_STATE(2968)] = 137531, - [SMALL_STATE(2969)] = 137589, - [SMALL_STATE(2970)] = 137647, - [SMALL_STATE(2971)] = 137705, - [SMALL_STATE(2972)] = 137763, - [SMALL_STATE(2973)] = 137821, - [SMALL_STATE(2974)] = 137879, - [SMALL_STATE(2975)] = 137937, - [SMALL_STATE(2976)] = 137995, - [SMALL_STATE(2977)] = 138053, - [SMALL_STATE(2978)] = 138111, - [SMALL_STATE(2979)] = 138169, - [SMALL_STATE(2980)] = 138227, - [SMALL_STATE(2981)] = 138285, - [SMALL_STATE(2982)] = 138343, - [SMALL_STATE(2983)] = 138401, - [SMALL_STATE(2984)] = 138459, - [SMALL_STATE(2985)] = 138517, - [SMALL_STATE(2986)] = 138575, - [SMALL_STATE(2987)] = 138633, - [SMALL_STATE(2988)] = 138691, - [SMALL_STATE(2989)] = 138749, - [SMALL_STATE(2990)] = 138807, - [SMALL_STATE(2991)] = 138865, - [SMALL_STATE(2992)] = 138923, - [SMALL_STATE(2993)] = 138981, - [SMALL_STATE(2994)] = 139039, - [SMALL_STATE(2995)] = 139097, - [SMALL_STATE(2996)] = 139155, - [SMALL_STATE(2997)] = 139213, - [SMALL_STATE(2998)] = 139271, - [SMALL_STATE(2999)] = 139329, - [SMALL_STATE(3000)] = 139387, - [SMALL_STATE(3001)] = 139445, - [SMALL_STATE(3002)] = 139503, - [SMALL_STATE(3003)] = 139561, - [SMALL_STATE(3004)] = 139619, - [SMALL_STATE(3005)] = 139677, - [SMALL_STATE(3006)] = 139735, - [SMALL_STATE(3007)] = 139793, - [SMALL_STATE(3008)] = 139851, - [SMALL_STATE(3009)] = 139909, - [SMALL_STATE(3010)] = 139967, - [SMALL_STATE(3011)] = 140025, - [SMALL_STATE(3012)] = 140083, - [SMALL_STATE(3013)] = 140141, - [SMALL_STATE(3014)] = 140199, - [SMALL_STATE(3015)] = 140257, - [SMALL_STATE(3016)] = 140315, - [SMALL_STATE(3017)] = 140373, - [SMALL_STATE(3018)] = 140431, - [SMALL_STATE(3019)] = 140489, - [SMALL_STATE(3020)] = 140547, - [SMALL_STATE(3021)] = 140605, - [SMALL_STATE(3022)] = 140663, - [SMALL_STATE(3023)] = 140721, - [SMALL_STATE(3024)] = 140779, - [SMALL_STATE(3025)] = 140837, - [SMALL_STATE(3026)] = 140895, - [SMALL_STATE(3027)] = 140953, - [SMALL_STATE(3028)] = 141011, - [SMALL_STATE(3029)] = 141069, - [SMALL_STATE(3030)] = 141127, - [SMALL_STATE(3031)] = 141185, - [SMALL_STATE(3032)] = 141243, - [SMALL_STATE(3033)] = 141301, - [SMALL_STATE(3034)] = 141359, - [SMALL_STATE(3035)] = 141417, - [SMALL_STATE(3036)] = 141475, - [SMALL_STATE(3037)] = 141533, - [SMALL_STATE(3038)] = 141591, - [SMALL_STATE(3039)] = 141649, - [SMALL_STATE(3040)] = 141707, - [SMALL_STATE(3041)] = 141765, - [SMALL_STATE(3042)] = 141823, - [SMALL_STATE(3043)] = 141881, - [SMALL_STATE(3044)] = 141939, - [SMALL_STATE(3045)] = 141997, - [SMALL_STATE(3046)] = 142055, - [SMALL_STATE(3047)] = 142113, - [SMALL_STATE(3048)] = 142171, - [SMALL_STATE(3049)] = 142229, - [SMALL_STATE(3050)] = 142287, - [SMALL_STATE(3051)] = 142345, - [SMALL_STATE(3052)] = 142403, - [SMALL_STATE(3053)] = 142461, - [SMALL_STATE(3054)] = 142519, - [SMALL_STATE(3055)] = 142577, - [SMALL_STATE(3056)] = 142635, - [SMALL_STATE(3057)] = 142693, - [SMALL_STATE(3058)] = 142751, - [SMALL_STATE(3059)] = 142809, - [SMALL_STATE(3060)] = 142867, - [SMALL_STATE(3061)] = 142925, - [SMALL_STATE(3062)] = 142983, - [SMALL_STATE(3063)] = 143041, - [SMALL_STATE(3064)] = 143099, - [SMALL_STATE(3065)] = 143157, - [SMALL_STATE(3066)] = 143215, - [SMALL_STATE(3067)] = 143273, - [SMALL_STATE(3068)] = 143331, - [SMALL_STATE(3069)] = 143389, - [SMALL_STATE(3070)] = 143447, - [SMALL_STATE(3071)] = 143505, - [SMALL_STATE(3072)] = 143563, - [SMALL_STATE(3073)] = 143621, - [SMALL_STATE(3074)] = 143679, - [SMALL_STATE(3075)] = 143737, - [SMALL_STATE(3076)] = 143795, - [SMALL_STATE(3077)] = 143853, - [SMALL_STATE(3078)] = 143911, - [SMALL_STATE(3079)] = 143969, - [SMALL_STATE(3080)] = 144027, - [SMALL_STATE(3081)] = 144085, - [SMALL_STATE(3082)] = 144143, - [SMALL_STATE(3083)] = 144201, - [SMALL_STATE(3084)] = 144259, - [SMALL_STATE(3085)] = 144317, - [SMALL_STATE(3086)] = 144375, - [SMALL_STATE(3087)] = 144433, - [SMALL_STATE(3088)] = 144491, - [SMALL_STATE(3089)] = 144549, - [SMALL_STATE(3090)] = 144607, - [SMALL_STATE(3091)] = 144665, - [SMALL_STATE(3092)] = 144723, - [SMALL_STATE(3093)] = 144781, - [SMALL_STATE(3094)] = 144839, - [SMALL_STATE(3095)] = 144897, - [SMALL_STATE(3096)] = 144955, - [SMALL_STATE(3097)] = 145013, - [SMALL_STATE(3098)] = 145071, - [SMALL_STATE(3099)] = 145129, - [SMALL_STATE(3100)] = 145187, - [SMALL_STATE(3101)] = 145245, - [SMALL_STATE(3102)] = 145303, - [SMALL_STATE(3103)] = 145361, - [SMALL_STATE(3104)] = 145419, - [SMALL_STATE(3105)] = 145477, - [SMALL_STATE(3106)] = 145535, - [SMALL_STATE(3107)] = 145593, - [SMALL_STATE(3108)] = 145651, - [SMALL_STATE(3109)] = 145709, - [SMALL_STATE(3110)] = 145767, - [SMALL_STATE(3111)] = 145825, - [SMALL_STATE(3112)] = 145883, - [SMALL_STATE(3113)] = 145941, - [SMALL_STATE(3114)] = 145999, - [SMALL_STATE(3115)] = 146057, - [SMALL_STATE(3116)] = 146115, - [SMALL_STATE(3117)] = 146173, - [SMALL_STATE(3118)] = 146231, - [SMALL_STATE(3119)] = 146289, - [SMALL_STATE(3120)] = 146347, - [SMALL_STATE(3121)] = 146405, - [SMALL_STATE(3122)] = 146463, - [SMALL_STATE(3123)] = 146521, - [SMALL_STATE(3124)] = 146579, - [SMALL_STATE(3125)] = 146637, - [SMALL_STATE(3126)] = 146695, - [SMALL_STATE(3127)] = 146753, - [SMALL_STATE(3128)] = 146811, - [SMALL_STATE(3129)] = 146869, - [SMALL_STATE(3130)] = 146927, - [SMALL_STATE(3131)] = 146985, - [SMALL_STATE(3132)] = 147043, - [SMALL_STATE(3133)] = 147101, - [SMALL_STATE(3134)] = 147159, - [SMALL_STATE(3135)] = 147217, - [SMALL_STATE(3136)] = 147275, - [SMALL_STATE(3137)] = 147333, - [SMALL_STATE(3138)] = 147391, - [SMALL_STATE(3139)] = 147449, - [SMALL_STATE(3140)] = 147507, - [SMALL_STATE(3141)] = 147565, - [SMALL_STATE(3142)] = 147623, - [SMALL_STATE(3143)] = 147681, - [SMALL_STATE(3144)] = 147739, - [SMALL_STATE(3145)] = 147797, - [SMALL_STATE(3146)] = 147855, - [SMALL_STATE(3147)] = 147913, - [SMALL_STATE(3148)] = 147971, - [SMALL_STATE(3149)] = 148029, - [SMALL_STATE(3150)] = 148087, - [SMALL_STATE(3151)] = 148145, - [SMALL_STATE(3152)] = 148203, - [SMALL_STATE(3153)] = 148261, - [SMALL_STATE(3154)] = 148319, - [SMALL_STATE(3155)] = 148377, - [SMALL_STATE(3156)] = 148435, - [SMALL_STATE(3157)] = 148493, - [SMALL_STATE(3158)] = 148551, - [SMALL_STATE(3159)] = 148609, - [SMALL_STATE(3160)] = 148667, - [SMALL_STATE(3161)] = 148725, - [SMALL_STATE(3162)] = 148783, - [SMALL_STATE(3163)] = 148841, - [SMALL_STATE(3164)] = 148899, - [SMALL_STATE(3165)] = 148957, - [SMALL_STATE(3166)] = 149015, - [SMALL_STATE(3167)] = 149073, - [SMALL_STATE(3168)] = 149131, - [SMALL_STATE(3169)] = 149189, - [SMALL_STATE(3170)] = 149247, - [SMALL_STATE(3171)] = 149305, - [SMALL_STATE(3172)] = 149363, - [SMALL_STATE(3173)] = 149421, - [SMALL_STATE(3174)] = 149479, - [SMALL_STATE(3175)] = 149537, - [SMALL_STATE(3176)] = 149595, - [SMALL_STATE(3177)] = 149653, - [SMALL_STATE(3178)] = 149711, - [SMALL_STATE(3179)] = 149769, - [SMALL_STATE(3180)] = 149827, - [SMALL_STATE(3181)] = 149885, - [SMALL_STATE(3182)] = 149943, - [SMALL_STATE(3183)] = 150001, - [SMALL_STATE(3184)] = 150059, - [SMALL_STATE(3185)] = 150117, - [SMALL_STATE(3186)] = 150175, - [SMALL_STATE(3187)] = 150233, - [SMALL_STATE(3188)] = 150291, - [SMALL_STATE(3189)] = 150349, - [SMALL_STATE(3190)] = 150407, - [SMALL_STATE(3191)] = 150465, - [SMALL_STATE(3192)] = 150523, - [SMALL_STATE(3193)] = 150581, - [SMALL_STATE(3194)] = 150639, - [SMALL_STATE(3195)] = 150697, - [SMALL_STATE(3196)] = 150755, - [SMALL_STATE(3197)] = 150813, - [SMALL_STATE(3198)] = 150871, - [SMALL_STATE(3199)] = 150929, - [SMALL_STATE(3200)] = 150987, - [SMALL_STATE(3201)] = 151045, - [SMALL_STATE(3202)] = 151103, - [SMALL_STATE(3203)] = 151161, - [SMALL_STATE(3204)] = 151219, - [SMALL_STATE(3205)] = 151277, - [SMALL_STATE(3206)] = 151335, - [SMALL_STATE(3207)] = 151393, - [SMALL_STATE(3208)] = 151451, - [SMALL_STATE(3209)] = 151509, - [SMALL_STATE(3210)] = 151567, - [SMALL_STATE(3211)] = 151625, - [SMALL_STATE(3212)] = 151683, - [SMALL_STATE(3213)] = 151741, - [SMALL_STATE(3214)] = 151799, - [SMALL_STATE(3215)] = 151857, - [SMALL_STATE(3216)] = 151915, - [SMALL_STATE(3217)] = 151973, - [SMALL_STATE(3218)] = 152031, - [SMALL_STATE(3219)] = 152089, - [SMALL_STATE(3220)] = 152147, - [SMALL_STATE(3221)] = 152205, - [SMALL_STATE(3222)] = 152263, - [SMALL_STATE(3223)] = 152321, - [SMALL_STATE(3224)] = 152379, - [SMALL_STATE(3225)] = 152437, - [SMALL_STATE(3226)] = 152495, - [SMALL_STATE(3227)] = 152553, - [SMALL_STATE(3228)] = 152611, - [SMALL_STATE(3229)] = 152669, - [SMALL_STATE(3230)] = 152727, - [SMALL_STATE(3231)] = 152785, - [SMALL_STATE(3232)] = 152843, - [SMALL_STATE(3233)] = 152901, - [SMALL_STATE(3234)] = 152959, - [SMALL_STATE(3235)] = 153017, - [SMALL_STATE(3236)] = 153075, - [SMALL_STATE(3237)] = 153133, - [SMALL_STATE(3238)] = 153191, - [SMALL_STATE(3239)] = 153249, - [SMALL_STATE(3240)] = 153307, - [SMALL_STATE(3241)] = 153365, - [SMALL_STATE(3242)] = 153423, - [SMALL_STATE(3243)] = 153481, - [SMALL_STATE(3244)] = 153539, - [SMALL_STATE(3245)] = 153597, - [SMALL_STATE(3246)] = 153655, - [SMALL_STATE(3247)] = 153713, - [SMALL_STATE(3248)] = 153771, - [SMALL_STATE(3249)] = 153829, - [SMALL_STATE(3250)] = 153887, - [SMALL_STATE(3251)] = 153945, - [SMALL_STATE(3252)] = 154003, - [SMALL_STATE(3253)] = 154061, - [SMALL_STATE(3254)] = 154119, - [SMALL_STATE(3255)] = 154177, - [SMALL_STATE(3256)] = 154235, - [SMALL_STATE(3257)] = 154293, - [SMALL_STATE(3258)] = 154351, - [SMALL_STATE(3259)] = 154409, - [SMALL_STATE(3260)] = 154467, - [SMALL_STATE(3261)] = 154525, - [SMALL_STATE(3262)] = 154583, - [SMALL_STATE(3263)] = 154641, - [SMALL_STATE(3264)] = 154699, - [SMALL_STATE(3265)] = 154757, - [SMALL_STATE(3266)] = 154815, - [SMALL_STATE(3267)] = 154873, - [SMALL_STATE(3268)] = 154931, - [SMALL_STATE(3269)] = 154989, - [SMALL_STATE(3270)] = 155047, - [SMALL_STATE(3271)] = 155105, - [SMALL_STATE(3272)] = 155163, - [SMALL_STATE(3273)] = 155221, - [SMALL_STATE(3274)] = 155279, - [SMALL_STATE(3275)] = 155337, - [SMALL_STATE(3276)] = 155395, - [SMALL_STATE(3277)] = 155453, - [SMALL_STATE(3278)] = 155511, - [SMALL_STATE(3279)] = 155569, - [SMALL_STATE(3280)] = 155627, - [SMALL_STATE(3281)] = 155685, - [SMALL_STATE(3282)] = 155743, - [SMALL_STATE(3283)] = 155801, - [SMALL_STATE(3284)] = 155859, - [SMALL_STATE(3285)] = 155917, - [SMALL_STATE(3286)] = 155975, - [SMALL_STATE(3287)] = 156033, - [SMALL_STATE(3288)] = 156091, - [SMALL_STATE(3289)] = 156149, - [SMALL_STATE(3290)] = 156207, - [SMALL_STATE(3291)] = 156265, - [SMALL_STATE(3292)] = 156323, - [SMALL_STATE(3293)] = 156381, - [SMALL_STATE(3294)] = 156439, - [SMALL_STATE(3295)] = 156497, - [SMALL_STATE(3296)] = 156555, - [SMALL_STATE(3297)] = 156613, - [SMALL_STATE(3298)] = 156671, - [SMALL_STATE(3299)] = 156729, - [SMALL_STATE(3300)] = 156787, - [SMALL_STATE(3301)] = 156845, - [SMALL_STATE(3302)] = 156903, - [SMALL_STATE(3303)] = 156961, - [SMALL_STATE(3304)] = 157019, - [SMALL_STATE(3305)] = 157077, - [SMALL_STATE(3306)] = 157135, - [SMALL_STATE(3307)] = 157193, - [SMALL_STATE(3308)] = 157251, - [SMALL_STATE(3309)] = 157309, - [SMALL_STATE(3310)] = 157367, - [SMALL_STATE(3311)] = 157425, - [SMALL_STATE(3312)] = 157483, - [SMALL_STATE(3313)] = 157541, - [SMALL_STATE(3314)] = 157599, - [SMALL_STATE(3315)] = 157657, - [SMALL_STATE(3316)] = 157715, - [SMALL_STATE(3317)] = 157773, - [SMALL_STATE(3318)] = 157831, - [SMALL_STATE(3319)] = 157889, - [SMALL_STATE(3320)] = 157947, - [SMALL_STATE(3321)] = 158005, - [SMALL_STATE(3322)] = 158063, - [SMALL_STATE(3323)] = 158121, - [SMALL_STATE(3324)] = 158179, - [SMALL_STATE(3325)] = 158237, - [SMALL_STATE(3326)] = 158295, - [SMALL_STATE(3327)] = 158353, - [SMALL_STATE(3328)] = 158411, - [SMALL_STATE(3329)] = 158469, - [SMALL_STATE(3330)] = 158527, - [SMALL_STATE(3331)] = 158585, - [SMALL_STATE(3332)] = 158643, - [SMALL_STATE(3333)] = 158701, - [SMALL_STATE(3334)] = 158759, - [SMALL_STATE(3335)] = 158817, - [SMALL_STATE(3336)] = 158875, - [SMALL_STATE(3337)] = 158933, - [SMALL_STATE(3338)] = 158991, - [SMALL_STATE(3339)] = 159049, - [SMALL_STATE(3340)] = 159107, - [SMALL_STATE(3341)] = 159165, - [SMALL_STATE(3342)] = 159223, - [SMALL_STATE(3343)] = 159281, - [SMALL_STATE(3344)] = 159339, - [SMALL_STATE(3345)] = 159397, - [SMALL_STATE(3346)] = 159455, - [SMALL_STATE(3347)] = 159513, - [SMALL_STATE(3348)] = 159571, - [SMALL_STATE(3349)] = 159629, - [SMALL_STATE(3350)] = 159687, - [SMALL_STATE(3351)] = 159745, - [SMALL_STATE(3352)] = 159803, - [SMALL_STATE(3353)] = 159861, - [SMALL_STATE(3354)] = 159919, - [SMALL_STATE(3355)] = 159977, - [SMALL_STATE(3356)] = 160035, - [SMALL_STATE(3357)] = 160093, - [SMALL_STATE(3358)] = 160151, - [SMALL_STATE(3359)] = 160209, - [SMALL_STATE(3360)] = 160267, - [SMALL_STATE(3361)] = 160325, - [SMALL_STATE(3362)] = 160383, - [SMALL_STATE(3363)] = 160441, - [SMALL_STATE(3364)] = 160499, - [SMALL_STATE(3365)] = 160557, - [SMALL_STATE(3366)] = 160615, - [SMALL_STATE(3367)] = 160673, - [SMALL_STATE(3368)] = 160731, - [SMALL_STATE(3369)] = 160789, - [SMALL_STATE(3370)] = 160847, - [SMALL_STATE(3371)] = 160905, - [SMALL_STATE(3372)] = 160963, - [SMALL_STATE(3373)] = 161021, - [SMALL_STATE(3374)] = 161079, - [SMALL_STATE(3375)] = 161137, - [SMALL_STATE(3376)] = 161195, - [SMALL_STATE(3377)] = 161253, - [SMALL_STATE(3378)] = 161311, - [SMALL_STATE(3379)] = 161369, - [SMALL_STATE(3380)] = 161427, - [SMALL_STATE(3381)] = 161485, - [SMALL_STATE(3382)] = 161543, - [SMALL_STATE(3383)] = 161601, - [SMALL_STATE(3384)] = 161659, - [SMALL_STATE(3385)] = 161717, - [SMALL_STATE(3386)] = 161775, - [SMALL_STATE(3387)] = 161833, - [SMALL_STATE(3388)] = 161891, - [SMALL_STATE(3389)] = 161949, - [SMALL_STATE(3390)] = 162007, - [SMALL_STATE(3391)] = 162065, - [SMALL_STATE(3392)] = 162123, - [SMALL_STATE(3393)] = 162181, - [SMALL_STATE(3394)] = 162239, - [SMALL_STATE(3395)] = 162297, - [SMALL_STATE(3396)] = 162355, - [SMALL_STATE(3397)] = 162413, - [SMALL_STATE(3398)] = 162471, - [SMALL_STATE(3399)] = 162529, - [SMALL_STATE(3400)] = 162587, - [SMALL_STATE(3401)] = 162645, - [SMALL_STATE(3402)] = 162703, - [SMALL_STATE(3403)] = 162761, - [SMALL_STATE(3404)] = 162819, - [SMALL_STATE(3405)] = 162877, - [SMALL_STATE(3406)] = 162935, - [SMALL_STATE(3407)] = 162993, - [SMALL_STATE(3408)] = 163051, - [SMALL_STATE(3409)] = 163109, - [SMALL_STATE(3410)] = 163167, - [SMALL_STATE(3411)] = 163225, - [SMALL_STATE(3412)] = 163283, - [SMALL_STATE(3413)] = 163341, - [SMALL_STATE(3414)] = 163399, - [SMALL_STATE(3415)] = 163457, - [SMALL_STATE(3416)] = 163515, - [SMALL_STATE(3417)] = 163573, - [SMALL_STATE(3418)] = 163631, - [SMALL_STATE(3419)] = 163689, - [SMALL_STATE(3420)] = 163747, - [SMALL_STATE(3421)] = 163805, - [SMALL_STATE(3422)] = 163863, - [SMALL_STATE(3423)] = 163921, - [SMALL_STATE(3424)] = 163979, - [SMALL_STATE(3425)] = 164037, - [SMALL_STATE(3426)] = 164095, - [SMALL_STATE(3427)] = 164153, - [SMALL_STATE(3428)] = 164211, - [SMALL_STATE(3429)] = 164269, - [SMALL_STATE(3430)] = 164327, - [SMALL_STATE(3431)] = 164385, - [SMALL_STATE(3432)] = 164443, - [SMALL_STATE(3433)] = 164501, - [SMALL_STATE(3434)] = 164559, - [SMALL_STATE(3435)] = 164617, - [SMALL_STATE(3436)] = 164675, - [SMALL_STATE(3437)] = 164733, - [SMALL_STATE(3438)] = 164791, - [SMALL_STATE(3439)] = 164849, - [SMALL_STATE(3440)] = 164907, - [SMALL_STATE(3441)] = 164965, - [SMALL_STATE(3442)] = 165023, - [SMALL_STATE(3443)] = 165081, - [SMALL_STATE(3444)] = 165139, - [SMALL_STATE(3445)] = 165197, - [SMALL_STATE(3446)] = 165255, - [SMALL_STATE(3447)] = 165313, - [SMALL_STATE(3448)] = 165371, - [SMALL_STATE(3449)] = 165429, - [SMALL_STATE(3450)] = 165487, - [SMALL_STATE(3451)] = 165545, - [SMALL_STATE(3452)] = 165603, - [SMALL_STATE(3453)] = 165661, - [SMALL_STATE(3454)] = 165719, - [SMALL_STATE(3455)] = 165777, - [SMALL_STATE(3456)] = 165835, - [SMALL_STATE(3457)] = 165893, - [SMALL_STATE(3458)] = 165951, - [SMALL_STATE(3459)] = 166009, - [SMALL_STATE(3460)] = 166067, - [SMALL_STATE(3461)] = 166125, - [SMALL_STATE(3462)] = 166183, - [SMALL_STATE(3463)] = 166241, - [SMALL_STATE(3464)] = 166299, - [SMALL_STATE(3465)] = 166357, - [SMALL_STATE(3466)] = 166415, - [SMALL_STATE(3467)] = 166473, - [SMALL_STATE(3468)] = 166531, - [SMALL_STATE(3469)] = 166589, - [SMALL_STATE(3470)] = 166647, - [SMALL_STATE(3471)] = 166705, - [SMALL_STATE(3472)] = 166763, - [SMALL_STATE(3473)] = 166821, - [SMALL_STATE(3474)] = 166879, - [SMALL_STATE(3475)] = 166937, - [SMALL_STATE(3476)] = 166995, - [SMALL_STATE(3477)] = 167053, - [SMALL_STATE(3478)] = 167111, - [SMALL_STATE(3479)] = 167169, - [SMALL_STATE(3480)] = 167227, - [SMALL_STATE(3481)] = 167285, - [SMALL_STATE(3482)] = 167343, - [SMALL_STATE(3483)] = 167401, - [SMALL_STATE(3484)] = 167459, - [SMALL_STATE(3485)] = 167517, - [SMALL_STATE(3486)] = 167575, - [SMALL_STATE(3487)] = 167633, - [SMALL_STATE(3488)] = 167691, - [SMALL_STATE(3489)] = 167749, - [SMALL_STATE(3490)] = 167807, - [SMALL_STATE(3491)] = 167865, - [SMALL_STATE(3492)] = 167923, - [SMALL_STATE(3493)] = 167981, - [SMALL_STATE(3494)] = 168039, - [SMALL_STATE(3495)] = 168097, - [SMALL_STATE(3496)] = 168155, - [SMALL_STATE(3497)] = 168213, - [SMALL_STATE(3498)] = 168271, - [SMALL_STATE(3499)] = 168329, - [SMALL_STATE(3500)] = 168387, - [SMALL_STATE(3501)] = 168445, - [SMALL_STATE(3502)] = 168503, - [SMALL_STATE(3503)] = 168561, - [SMALL_STATE(3504)] = 168619, - [SMALL_STATE(3505)] = 168677, - [SMALL_STATE(3506)] = 168735, - [SMALL_STATE(3507)] = 168793, - [SMALL_STATE(3508)] = 168851, - [SMALL_STATE(3509)] = 168909, - [SMALL_STATE(3510)] = 168967, - [SMALL_STATE(3511)] = 169025, - [SMALL_STATE(3512)] = 169083, - [SMALL_STATE(3513)] = 169141, - [SMALL_STATE(3514)] = 169199, - [SMALL_STATE(3515)] = 169257, - [SMALL_STATE(3516)] = 169315, - [SMALL_STATE(3517)] = 169373, - [SMALL_STATE(3518)] = 169431, - [SMALL_STATE(3519)] = 169489, - [SMALL_STATE(3520)] = 169547, - [SMALL_STATE(3521)] = 169605, - [SMALL_STATE(3522)] = 169663, - [SMALL_STATE(3523)] = 169721, - [SMALL_STATE(3524)] = 169779, - [SMALL_STATE(3525)] = 169837, - [SMALL_STATE(3526)] = 169895, - [SMALL_STATE(3527)] = 169953, - [SMALL_STATE(3528)] = 170011, - [SMALL_STATE(3529)] = 170069, - [SMALL_STATE(3530)] = 170127, - [SMALL_STATE(3531)] = 170185, - [SMALL_STATE(3532)] = 170243, - [SMALL_STATE(3533)] = 170301, - [SMALL_STATE(3534)] = 170359, - [SMALL_STATE(3535)] = 170417, - [SMALL_STATE(3536)] = 170475, - [SMALL_STATE(3537)] = 170533, - [SMALL_STATE(3538)] = 170591, - [SMALL_STATE(3539)] = 170649, - [SMALL_STATE(3540)] = 170707, - [SMALL_STATE(3541)] = 170765, - [SMALL_STATE(3542)] = 170823, - [SMALL_STATE(3543)] = 170881, - [SMALL_STATE(3544)] = 170939, - [SMALL_STATE(3545)] = 170997, - [SMALL_STATE(3546)] = 171055, - [SMALL_STATE(3547)] = 171113, - [SMALL_STATE(3548)] = 171171, - [SMALL_STATE(3549)] = 171229, - [SMALL_STATE(3550)] = 171287, - [SMALL_STATE(3551)] = 171345, - [SMALL_STATE(3552)] = 171403, - [SMALL_STATE(3553)] = 171461, - [SMALL_STATE(3554)] = 171519, - [SMALL_STATE(3555)] = 171577, - [SMALL_STATE(3556)] = 171635, - [SMALL_STATE(3557)] = 171693, - [SMALL_STATE(3558)] = 171751, - [SMALL_STATE(3559)] = 171809, - [SMALL_STATE(3560)] = 171867, - [SMALL_STATE(3561)] = 171925, - [SMALL_STATE(3562)] = 171983, - [SMALL_STATE(3563)] = 172041, - [SMALL_STATE(3564)] = 172099, - [SMALL_STATE(3565)] = 172157, - [SMALL_STATE(3566)] = 172215, - [SMALL_STATE(3567)] = 172273, - [SMALL_STATE(3568)] = 172331, - [SMALL_STATE(3569)] = 172389, - [SMALL_STATE(3570)] = 172447, - [SMALL_STATE(3571)] = 172505, - [SMALL_STATE(3572)] = 172563, - [SMALL_STATE(3573)] = 172595, - [SMALL_STATE(3574)] = 172627, - [SMALL_STATE(3575)] = 172659, - [SMALL_STATE(3576)] = 172691, - [SMALL_STATE(3577)] = 172723, - [SMALL_STATE(3578)] = 172755, - [SMALL_STATE(3579)] = 172787, - [SMALL_STATE(3580)] = 172819, - [SMALL_STATE(3581)] = 172851, - [SMALL_STATE(3582)] = 172883, - [SMALL_STATE(3583)] = 172915, - [SMALL_STATE(3584)] = 172947, - [SMALL_STATE(3585)] = 172979, - [SMALL_STATE(3586)] = 173011, - [SMALL_STATE(3587)] = 173043, - [SMALL_STATE(3588)] = 173075, - [SMALL_STATE(3589)] = 173107, - [SMALL_STATE(3590)] = 173139, - [SMALL_STATE(3591)] = 173171, - [SMALL_STATE(3592)] = 173203, - [SMALL_STATE(3593)] = 173235, - [SMALL_STATE(3594)] = 173267, - [SMALL_STATE(3595)] = 173299, - [SMALL_STATE(3596)] = 173331, - [SMALL_STATE(3597)] = 173363, - [SMALL_STATE(3598)] = 173395, - [SMALL_STATE(3599)] = 173427, - [SMALL_STATE(3600)] = 173459, - [SMALL_STATE(3601)] = 173491, - [SMALL_STATE(3602)] = 173523, - [SMALL_STATE(3603)] = 173555, - [SMALL_STATE(3604)] = 173587, - [SMALL_STATE(3605)] = 173619, - [SMALL_STATE(3606)] = 173651, - [SMALL_STATE(3607)] = 173683, - [SMALL_STATE(3608)] = 173706, - [SMALL_STATE(3609)] = 173729, - [SMALL_STATE(3610)] = 173752, - [SMALL_STATE(3611)] = 173775, - [SMALL_STATE(3612)] = 173798, - [SMALL_STATE(3613)] = 173821, - [SMALL_STATE(3614)] = 173844, - [SMALL_STATE(3615)] = 173867, - [SMALL_STATE(3616)] = 173890, - [SMALL_STATE(3617)] = 173913, - [SMALL_STATE(3618)] = 173940, - [SMALL_STATE(3619)] = 173963, - [SMALL_STATE(3620)] = 173986, - [SMALL_STATE(3621)] = 174009, - [SMALL_STATE(3622)] = 174032, - [SMALL_STATE(3623)] = 174055, - [SMALL_STATE(3624)] = 174078, - [SMALL_STATE(3625)] = 174105, - [SMALL_STATE(3626)] = 174128, - [SMALL_STATE(3627)] = 174151, - [SMALL_STATE(3628)] = 174174, - [SMALL_STATE(3629)] = 174201, - [SMALL_STATE(3630)] = 174224, - [SMALL_STATE(3631)] = 174247, - [SMALL_STATE(3632)] = 174270, - [SMALL_STATE(3633)] = 174293, - [SMALL_STATE(3634)] = 174316, - [SMALL_STATE(3635)] = 174339, - [SMALL_STATE(3636)] = 174362, - [SMALL_STATE(3637)] = 174385, - [SMALL_STATE(3638)] = 174408, - [SMALL_STATE(3639)] = 174431, - [SMALL_STATE(3640)] = 174454, - [SMALL_STATE(3641)] = 174477, - [SMALL_STATE(3642)] = 174500, - [SMALL_STATE(3643)] = 174523, - [SMALL_STATE(3644)] = 174546, - [SMALL_STATE(3645)] = 174569, - [SMALL_STATE(3646)] = 174592, - [SMALL_STATE(3647)] = 174615, - [SMALL_STATE(3648)] = 174638, - [SMALL_STATE(3649)] = 174661, - [SMALL_STATE(3650)] = 174684, - [SMALL_STATE(3651)] = 174707, - [SMALL_STATE(3652)] = 174730, - [SMALL_STATE(3653)] = 174753, - [SMALL_STATE(3654)] = 174776, - [SMALL_STATE(3655)] = 174799, - [SMALL_STATE(3656)] = 174822, - [SMALL_STATE(3657)] = 174845, - [SMALL_STATE(3658)] = 174868, - [SMALL_STATE(3659)] = 174891, - [SMALL_STATE(3660)] = 174914, - [SMALL_STATE(3661)] = 174937, - [SMALL_STATE(3662)] = 174960, - [SMALL_STATE(3663)] = 174983, - [SMALL_STATE(3664)] = 175006, - [SMALL_STATE(3665)] = 175029, - [SMALL_STATE(3666)] = 175052, - [SMALL_STATE(3667)] = 175079, - [SMALL_STATE(3668)] = 175102, - [SMALL_STATE(3669)] = 175129, - [SMALL_STATE(3670)] = 175152, - [SMALL_STATE(3671)] = 175175, - [SMALL_STATE(3672)] = 175198, - [SMALL_STATE(3673)] = 175221, - [SMALL_STATE(3674)] = 175244, - [SMALL_STATE(3675)] = 175267, - [SMALL_STATE(3676)] = 175290, - [SMALL_STATE(3677)] = 175313, - [SMALL_STATE(3678)] = 175336, - [SMALL_STATE(3679)] = 175359, - [SMALL_STATE(3680)] = 175382, - [SMALL_STATE(3681)] = 175405, - [SMALL_STATE(3682)] = 175428, - [SMALL_STATE(3683)] = 175451, - [SMALL_STATE(3684)] = 175474, - [SMALL_STATE(3685)] = 175497, - [SMALL_STATE(3686)] = 175520, - [SMALL_STATE(3687)] = 175547, - [SMALL_STATE(3688)] = 175570, - [SMALL_STATE(3689)] = 175593, - [SMALL_STATE(3690)] = 175616, - [SMALL_STATE(3691)] = 175639, - [SMALL_STATE(3692)] = 175662, - [SMALL_STATE(3693)] = 175685, - [SMALL_STATE(3694)] = 175708, - [SMALL_STATE(3695)] = 175731, - [SMALL_STATE(3696)] = 175754, - [SMALL_STATE(3697)] = 175777, - [SMALL_STATE(3698)] = 175800, - [SMALL_STATE(3699)] = 175823, - [SMALL_STATE(3700)] = 175846, - [SMALL_STATE(3701)] = 175873, - [SMALL_STATE(3702)] = 175896, - [SMALL_STATE(3703)] = 175919, - [SMALL_STATE(3704)] = 175942, - [SMALL_STATE(3705)] = 175965, - [SMALL_STATE(3706)] = 175988, - [SMALL_STATE(3707)] = 176011, - [SMALL_STATE(3708)] = 176034, - [SMALL_STATE(3709)] = 176057, - [SMALL_STATE(3710)] = 176080, - [SMALL_STATE(3711)] = 176103, - [SMALL_STATE(3712)] = 176126, - [SMALL_STATE(3713)] = 176149, - [SMALL_STATE(3714)] = 176172, - [SMALL_STATE(3715)] = 176195, - [SMALL_STATE(3716)] = 176222, - [SMALL_STATE(3717)] = 176245, - [SMALL_STATE(3718)] = 176272, - [SMALL_STATE(3719)] = 176295, - [SMALL_STATE(3720)] = 176318, - [SMALL_STATE(3721)] = 176341, - [SMALL_STATE(3722)] = 176364, - [SMALL_STATE(3723)] = 176387, - [SMALL_STATE(3724)] = 176410, - [SMALL_STATE(3725)] = 176433, - [SMALL_STATE(3726)] = 176456, - [SMALL_STATE(3727)] = 176479, - [SMALL_STATE(3728)] = 176502, - [SMALL_STATE(3729)] = 176529, - [SMALL_STATE(3730)] = 176552, - [SMALL_STATE(3731)] = 176575, - [SMALL_STATE(3732)] = 176598, - [SMALL_STATE(3733)] = 176621, - [SMALL_STATE(3734)] = 176644, - [SMALL_STATE(3735)] = 176667, - [SMALL_STATE(3736)] = 176690, - [SMALL_STATE(3737)] = 176713, - [SMALL_STATE(3738)] = 176736, - [SMALL_STATE(3739)] = 176759, - [SMALL_STATE(3740)] = 176782, - [SMALL_STATE(3741)] = 176805, - [SMALL_STATE(3742)] = 176832, - [SMALL_STATE(3743)] = 176855, - [SMALL_STATE(3744)] = 176878, - [SMALL_STATE(3745)] = 176901, - [SMALL_STATE(3746)] = 176924, - [SMALL_STATE(3747)] = 176947, - [SMALL_STATE(3748)] = 176970, - [SMALL_STATE(3749)] = 176993, - [SMALL_STATE(3750)] = 177016, - [SMALL_STATE(3751)] = 177039, - [SMALL_STATE(3752)] = 177062, - [SMALL_STATE(3753)] = 177089, - [SMALL_STATE(3754)] = 177112, - [SMALL_STATE(3755)] = 177135, - [SMALL_STATE(3756)] = 177158, - [SMALL_STATE(3757)] = 177181, - [SMALL_STATE(3758)] = 177204, - [SMALL_STATE(3759)] = 177227, - [SMALL_STATE(3760)] = 177250, - [SMALL_STATE(3761)] = 177273, - [SMALL_STATE(3762)] = 177296, - [SMALL_STATE(3763)] = 177319, - [SMALL_STATE(3764)] = 177342, - [SMALL_STATE(3765)] = 177365, - [SMALL_STATE(3766)] = 177388, - [SMALL_STATE(3767)] = 177415, - [SMALL_STATE(3768)] = 177438, - [SMALL_STATE(3769)] = 177461, - [SMALL_STATE(3770)] = 177484, - [SMALL_STATE(3771)] = 177507, - [SMALL_STATE(3772)] = 177530, - [SMALL_STATE(3773)] = 177553, - [SMALL_STATE(3774)] = 177576, - [SMALL_STATE(3775)] = 177599, - [SMALL_STATE(3776)] = 177622, - [SMALL_STATE(3777)] = 177645, - [SMALL_STATE(3778)] = 177668, - [SMALL_STATE(3779)] = 177691, - [SMALL_STATE(3780)] = 177714, - [SMALL_STATE(3781)] = 177741, - [SMALL_STATE(3782)] = 177768, - [SMALL_STATE(3783)] = 177791, - [SMALL_STATE(3784)] = 177814, - [SMALL_STATE(3785)] = 177837, - [SMALL_STATE(3786)] = 177860, - [SMALL_STATE(3787)] = 177883, - [SMALL_STATE(3788)] = 177910, - [SMALL_STATE(3789)] = 177937, - [SMALL_STATE(3790)] = 177960, - [SMALL_STATE(3791)] = 177983, - [SMALL_STATE(3792)] = 178006, - [SMALL_STATE(3793)] = 178029, - [SMALL_STATE(3794)] = 178052, - [SMALL_STATE(3795)] = 178075, - [SMALL_STATE(3796)] = 178098, - [SMALL_STATE(3797)] = 178121, - [SMALL_STATE(3798)] = 178144, - [SMALL_STATE(3799)] = 178167, - [SMALL_STATE(3800)] = 178190, - [SMALL_STATE(3801)] = 178213, - [SMALL_STATE(3802)] = 178236, - [SMALL_STATE(3803)] = 178259, - [SMALL_STATE(3804)] = 178286, - [SMALL_STATE(3805)] = 178309, - [SMALL_STATE(3806)] = 178332, - [SMALL_STATE(3807)] = 178355, - [SMALL_STATE(3808)] = 178378, - [SMALL_STATE(3809)] = 178401, - [SMALL_STATE(3810)] = 178424, - [SMALL_STATE(3811)] = 178447, - [SMALL_STATE(3812)] = 178470, - [SMALL_STATE(3813)] = 178493, - [SMALL_STATE(3814)] = 178516, - [SMALL_STATE(3815)] = 178539, - [SMALL_STATE(3816)] = 178562, - [SMALL_STATE(3817)] = 178585, - [SMALL_STATE(3818)] = 178608, - [SMALL_STATE(3819)] = 178631, - [SMALL_STATE(3820)] = 178654, - [SMALL_STATE(3821)] = 178677, - [SMALL_STATE(3822)] = 178700, - [SMALL_STATE(3823)] = 178723, - [SMALL_STATE(3824)] = 178750, - [SMALL_STATE(3825)] = 178777, - [SMALL_STATE(3826)] = 178800, - [SMALL_STATE(3827)] = 178823, - [SMALL_STATE(3828)] = 178846, - [SMALL_STATE(3829)] = 178869, - [SMALL_STATE(3830)] = 178892, - [SMALL_STATE(3831)] = 178919, - [SMALL_STATE(3832)] = 178942, - [SMALL_STATE(3833)] = 178965, - [SMALL_STATE(3834)] = 178988, - [SMALL_STATE(3835)] = 179011, - [SMALL_STATE(3836)] = 179034, - [SMALL_STATE(3837)] = 179057, - [SMALL_STATE(3838)] = 179080, - [SMALL_STATE(3839)] = 179103, - [SMALL_STATE(3840)] = 179126, - [SMALL_STATE(3841)] = 179149, - [SMALL_STATE(3842)] = 179172, - [SMALL_STATE(3843)] = 179195, - [SMALL_STATE(3844)] = 179222, - [SMALL_STATE(3845)] = 179245, - [SMALL_STATE(3846)] = 179268, - [SMALL_STATE(3847)] = 179295, - [SMALL_STATE(3848)] = 179318, - [SMALL_STATE(3849)] = 179341, - [SMALL_STATE(3850)] = 179364, - [SMALL_STATE(3851)] = 179387, - [SMALL_STATE(3852)] = 179410, - [SMALL_STATE(3853)] = 179433, - [SMALL_STATE(3854)] = 179456, - [SMALL_STATE(3855)] = 179479, - [SMALL_STATE(3856)] = 179502, - [SMALL_STATE(3857)] = 179529, - [SMALL_STATE(3858)] = 179552, - [SMALL_STATE(3859)] = 179575, - [SMALL_STATE(3860)] = 179598, - [SMALL_STATE(3861)] = 179621, - [SMALL_STATE(3862)] = 179644, - [SMALL_STATE(3863)] = 179667, - [SMALL_STATE(3864)] = 179690, - [SMALL_STATE(3865)] = 179713, - [SMALL_STATE(3866)] = 179736, - [SMALL_STATE(3867)] = 179759, - [SMALL_STATE(3868)] = 179782, - [SMALL_STATE(3869)] = 179805, - [SMALL_STATE(3870)] = 179828, - [SMALL_STATE(3871)] = 179851, - [SMALL_STATE(3872)] = 179874, - [SMALL_STATE(3873)] = 179897, - [SMALL_STATE(3874)] = 179920, - [SMALL_STATE(3875)] = 179947, - [SMALL_STATE(3876)] = 179970, - [SMALL_STATE(3877)] = 179997, - [SMALL_STATE(3878)] = 180020, - [SMALL_STATE(3879)] = 180047, - [SMALL_STATE(3880)] = 180070, - [SMALL_STATE(3881)] = 180093, - [SMALL_STATE(3882)] = 180116, - [SMALL_STATE(3883)] = 180139, - [SMALL_STATE(3884)] = 180162, - [SMALL_STATE(3885)] = 180185, - [SMALL_STATE(3886)] = 180208, - [SMALL_STATE(3887)] = 180231, - [SMALL_STATE(3888)] = 180254, - [SMALL_STATE(3889)] = 180277, - [SMALL_STATE(3890)] = 180300, - [SMALL_STATE(3891)] = 180327, - [SMALL_STATE(3892)] = 180350, - [SMALL_STATE(3893)] = 180373, - [SMALL_STATE(3894)] = 180396, - [SMALL_STATE(3895)] = 180419, - [SMALL_STATE(3896)] = 180442, - [SMALL_STATE(3897)] = 180465, - [SMALL_STATE(3898)] = 180488, - [SMALL_STATE(3899)] = 180511, - [SMALL_STATE(3900)] = 180538, - [SMALL_STATE(3901)] = 180561, - [SMALL_STATE(3902)] = 180584, - [SMALL_STATE(3903)] = 180607, - [SMALL_STATE(3904)] = 180630, - [SMALL_STATE(3905)] = 180653, - [SMALL_STATE(3906)] = 180676, - [SMALL_STATE(3907)] = 180699, - [SMALL_STATE(3908)] = 180722, - [SMALL_STATE(3909)] = 180745, - [SMALL_STATE(3910)] = 180768, - [SMALL_STATE(3911)] = 180791, - [SMALL_STATE(3912)] = 180814, - [SMALL_STATE(3913)] = 180837, - [SMALL_STATE(3914)] = 180860, - [SMALL_STATE(3915)] = 180883, - [SMALL_STATE(3916)] = 180906, - [SMALL_STATE(3917)] = 180929, - [SMALL_STATE(3918)] = 180952, - [SMALL_STATE(3919)] = 180975, - [SMALL_STATE(3920)] = 180998, - [SMALL_STATE(3921)] = 181025, - [SMALL_STATE(3922)] = 181048, - [SMALL_STATE(3923)] = 181071, - [SMALL_STATE(3924)] = 181094, - [SMALL_STATE(3925)] = 181117, - [SMALL_STATE(3926)] = 181140, - [SMALL_STATE(3927)] = 181167, - [SMALL_STATE(3928)] = 181190, - [SMALL_STATE(3929)] = 181213, - [SMALL_STATE(3930)] = 181236, - [SMALL_STATE(3931)] = 181259, - [SMALL_STATE(3932)] = 181282, - [SMALL_STATE(3933)] = 181305, - [SMALL_STATE(3934)] = 181332, - [SMALL_STATE(3935)] = 181359, - [SMALL_STATE(3936)] = 181382, - [SMALL_STATE(3937)] = 181405, - [SMALL_STATE(3938)] = 181428, - [SMALL_STATE(3939)] = 181451, - [SMALL_STATE(3940)] = 181474, - [SMALL_STATE(3941)] = 181497, - [SMALL_STATE(3942)] = 181520, - [SMALL_STATE(3943)] = 181547, - [SMALL_STATE(3944)] = 181570, - [SMALL_STATE(3945)] = 181593, - [SMALL_STATE(3946)] = 181616, - [SMALL_STATE(3947)] = 181639, - [SMALL_STATE(3948)] = 181662, - [SMALL_STATE(3949)] = 181685, - [SMALL_STATE(3950)] = 181712, - [SMALL_STATE(3951)] = 181735, - [SMALL_STATE(3952)] = 181758, - [SMALL_STATE(3953)] = 181781, - [SMALL_STATE(3954)] = 181804, - [SMALL_STATE(3955)] = 181827, - [SMALL_STATE(3956)] = 181850, - [SMALL_STATE(3957)] = 181873, - [SMALL_STATE(3958)] = 181896, - [SMALL_STATE(3959)] = 181919, - [SMALL_STATE(3960)] = 181942, - [SMALL_STATE(3961)] = 181965, - [SMALL_STATE(3962)] = 181988, - [SMALL_STATE(3963)] = 182012, - [SMALL_STATE(3964)] = 182036, - [SMALL_STATE(3965)] = 182060, - [SMALL_STATE(3966)] = 182084, - [SMALL_STATE(3967)] = 182108, - [SMALL_STATE(3968)] = 182132, - [SMALL_STATE(3969)] = 182156, - [SMALL_STATE(3970)] = 182180, - [SMALL_STATE(3971)] = 182204, - [SMALL_STATE(3972)] = 182228, - [SMALL_STATE(3973)] = 182252, - [SMALL_STATE(3974)] = 182276, - [SMALL_STATE(3975)] = 182300, - [SMALL_STATE(3976)] = 182324, - [SMALL_STATE(3977)] = 182348, - [SMALL_STATE(3978)] = 182372, - [SMALL_STATE(3979)] = 182396, - [SMALL_STATE(3980)] = 182420, - [SMALL_STATE(3981)] = 182444, - [SMALL_STATE(3982)] = 182468, - [SMALL_STATE(3983)] = 182492, - [SMALL_STATE(3984)] = 182516, - [SMALL_STATE(3985)] = 182540, - [SMALL_STATE(3986)] = 182564, - [SMALL_STATE(3987)] = 182588, - [SMALL_STATE(3988)] = 182612, - [SMALL_STATE(3989)] = 182636, - [SMALL_STATE(3990)] = 182660, - [SMALL_STATE(3991)] = 182684, - [SMALL_STATE(3992)] = 182708, - [SMALL_STATE(3993)] = 182732, - [SMALL_STATE(3994)] = 182756, - [SMALL_STATE(3995)] = 182780, - [SMALL_STATE(3996)] = 182804, - [SMALL_STATE(3997)] = 182828, - [SMALL_STATE(3998)] = 182852, - [SMALL_STATE(3999)] = 182876, - [SMALL_STATE(4000)] = 182900, - [SMALL_STATE(4001)] = 182924, - [SMALL_STATE(4002)] = 182948, - [SMALL_STATE(4003)] = 182972, - [SMALL_STATE(4004)] = 182996, - [SMALL_STATE(4005)] = 183020, - [SMALL_STATE(4006)] = 183044, - [SMALL_STATE(4007)] = 183068, - [SMALL_STATE(4008)] = 183092, - [SMALL_STATE(4009)] = 183116, - [SMALL_STATE(4010)] = 183140, - [SMALL_STATE(4011)] = 183164, - [SMALL_STATE(4012)] = 183188, - [SMALL_STATE(4013)] = 183212, - [SMALL_STATE(4014)] = 183236, - [SMALL_STATE(4015)] = 183260, - [SMALL_STATE(4016)] = 183284, - [SMALL_STATE(4017)] = 183308, - [SMALL_STATE(4018)] = 183332, - [SMALL_STATE(4019)] = 183356, - [SMALL_STATE(4020)] = 183380, - [SMALL_STATE(4021)] = 183404, - [SMALL_STATE(4022)] = 183428, - [SMALL_STATE(4023)] = 183452, - [SMALL_STATE(4024)] = 183476, - [SMALL_STATE(4025)] = 183500, - [SMALL_STATE(4026)] = 183524, - [SMALL_STATE(4027)] = 183548, - [SMALL_STATE(4028)] = 183572, - [SMALL_STATE(4029)] = 183596, - [SMALL_STATE(4030)] = 183620, - [SMALL_STATE(4031)] = 183644, - [SMALL_STATE(4032)] = 183668, - [SMALL_STATE(4033)] = 183692, - [SMALL_STATE(4034)] = 183716, - [SMALL_STATE(4035)] = 183740, - [SMALL_STATE(4036)] = 183764, - [SMALL_STATE(4037)] = 183788, - [SMALL_STATE(4038)] = 183812, - [SMALL_STATE(4039)] = 183836, - [SMALL_STATE(4040)] = 183860, - [SMALL_STATE(4041)] = 183884, - [SMALL_STATE(4042)] = 183908, - [SMALL_STATE(4043)] = 183932, - [SMALL_STATE(4044)] = 183956, - [SMALL_STATE(4045)] = 183980, - [SMALL_STATE(4046)] = 184004, - [SMALL_STATE(4047)] = 184028, - [SMALL_STATE(4048)] = 184052, - [SMALL_STATE(4049)] = 184076, - [SMALL_STATE(4050)] = 184100, - [SMALL_STATE(4051)] = 184124, - [SMALL_STATE(4052)] = 184148, - [SMALL_STATE(4053)] = 184172, - [SMALL_STATE(4054)] = 184196, - [SMALL_STATE(4055)] = 184220, - [SMALL_STATE(4056)] = 184244, - [SMALL_STATE(4057)] = 184268, - [SMALL_STATE(4058)] = 184292, - [SMALL_STATE(4059)] = 184316, - [SMALL_STATE(4060)] = 184340, - [SMALL_STATE(4061)] = 184364, - [SMALL_STATE(4062)] = 184388, - [SMALL_STATE(4063)] = 184412, - [SMALL_STATE(4064)] = 184436, - [SMALL_STATE(4065)] = 184460, - [SMALL_STATE(4066)] = 184484, - [SMALL_STATE(4067)] = 184508, - [SMALL_STATE(4068)] = 184525, - [SMALL_STATE(4069)] = 184542, - [SMALL_STATE(4070)] = 184560, - [SMALL_STATE(4071)] = 184578, - [SMALL_STATE(4072)] = 184594, - [SMALL_STATE(4073)] = 184612, - [SMALL_STATE(4074)] = 184630, - [SMALL_STATE(4075)] = 184646, - [SMALL_STATE(4076)] = 184664, - [SMALL_STATE(4077)] = 184682, - [SMALL_STATE(4078)] = 184700, - [SMALL_STATE(4079)] = 184718, - [SMALL_STATE(4080)] = 184736, - [SMALL_STATE(4081)] = 184754, - [SMALL_STATE(4082)] = 184772, - [SMALL_STATE(4083)] = 184790, - [SMALL_STATE(4084)] = 184806, - [SMALL_STATE(4085)] = 184824, - [SMALL_STATE(4086)] = 184840, - [SMALL_STATE(4087)] = 184858, - [SMALL_STATE(4088)] = 184876, - [SMALL_STATE(4089)] = 184894, - [SMALL_STATE(4090)] = 184912, - [SMALL_STATE(4091)] = 184930, - [SMALL_STATE(4092)] = 184948, - [SMALL_STATE(4093)] = 184966, - [SMALL_STATE(4094)] = 184982, - [SMALL_STATE(4095)] = 184998, - [SMALL_STATE(4096)] = 185014, - [SMALL_STATE(4097)] = 185030, - [SMALL_STATE(4098)] = 185048, - [SMALL_STATE(4099)] = 185066, - [SMALL_STATE(4100)] = 185084, - [SMALL_STATE(4101)] = 185102, - [SMALL_STATE(4102)] = 185120, - [SMALL_STATE(4103)] = 185138, - [SMALL_STATE(4104)] = 185156, - [SMALL_STATE(4105)] = 185174, - [SMALL_STATE(4106)] = 185192, - [SMALL_STATE(4107)] = 185210, - [SMALL_STATE(4108)] = 185228, - [SMALL_STATE(4109)] = 185246, - [SMALL_STATE(4110)] = 185262, - [SMALL_STATE(4111)] = 185280, - [SMALL_STATE(4112)] = 185298, - [SMALL_STATE(4113)] = 185314, - [SMALL_STATE(4114)] = 185332, - [SMALL_STATE(4115)] = 185350, - [SMALL_STATE(4116)] = 185368, - [SMALL_STATE(4117)] = 185386, - [SMALL_STATE(4118)] = 185404, - [SMALL_STATE(4119)] = 185422, - [SMALL_STATE(4120)] = 185440, - [SMALL_STATE(4121)] = 185458, - [SMALL_STATE(4122)] = 185476, - [SMALL_STATE(4123)] = 185494, - [SMALL_STATE(4124)] = 185512, - [SMALL_STATE(4125)] = 185530, - [SMALL_STATE(4126)] = 185546, - [SMALL_STATE(4127)] = 185564, - [SMALL_STATE(4128)] = 185582, - [SMALL_STATE(4129)] = 185600, - [SMALL_STATE(4130)] = 185618, - [SMALL_STATE(4131)] = 185636, - [SMALL_STATE(4132)] = 185654, - [SMALL_STATE(4133)] = 185672, - [SMALL_STATE(4134)] = 185690, - [SMALL_STATE(4135)] = 185708, - [SMALL_STATE(4136)] = 185726, - [SMALL_STATE(4137)] = 185744, - [SMALL_STATE(4138)] = 185762, - [SMALL_STATE(4139)] = 185780, - [SMALL_STATE(4140)] = 185796, - [SMALL_STATE(4141)] = 185814, - [SMALL_STATE(4142)] = 185832, - [SMALL_STATE(4143)] = 185850, - [SMALL_STATE(4144)] = 185868, - [SMALL_STATE(4145)] = 185886, - [SMALL_STATE(4146)] = 185904, - [SMALL_STATE(4147)] = 185922, - [SMALL_STATE(4148)] = 185940, - [SMALL_STATE(4149)] = 185958, - [SMALL_STATE(4150)] = 185976, - [SMALL_STATE(4151)] = 185994, - [SMALL_STATE(4152)] = 186012, - [SMALL_STATE(4153)] = 186030, - [SMALL_STATE(4154)] = 186048, - [SMALL_STATE(4155)] = 186066, - [SMALL_STATE(4156)] = 186084, - [SMALL_STATE(4157)] = 186102, - [SMALL_STATE(4158)] = 186120, - [SMALL_STATE(4159)] = 186138, - [SMALL_STATE(4160)] = 186156, - [SMALL_STATE(4161)] = 186174, - [SMALL_STATE(4162)] = 186192, - [SMALL_STATE(4163)] = 186210, - [SMALL_STATE(4164)] = 186228, - [SMALL_STATE(4165)] = 186246, - [SMALL_STATE(4166)] = 186264, - [SMALL_STATE(4167)] = 186282, - [SMALL_STATE(4168)] = 186300, - [SMALL_STATE(4169)] = 186318, - [SMALL_STATE(4170)] = 186336, - [SMALL_STATE(4171)] = 186354, - [SMALL_STATE(4172)] = 186372, - [SMALL_STATE(4173)] = 186390, - [SMALL_STATE(4174)] = 186408, - [SMALL_STATE(4175)] = 186426, - [SMALL_STATE(4176)] = 186444, - [SMALL_STATE(4177)] = 186462, - [SMALL_STATE(4178)] = 186480, - [SMALL_STATE(4179)] = 186498, - [SMALL_STATE(4180)] = 186516, - [SMALL_STATE(4181)] = 186534, - [SMALL_STATE(4182)] = 186552, - [SMALL_STATE(4183)] = 186570, - [SMALL_STATE(4184)] = 186588, - [SMALL_STATE(4185)] = 186606, - [SMALL_STATE(4186)] = 186624, - [SMALL_STATE(4187)] = 186639, - [SMALL_STATE(4188)] = 186654, - [SMALL_STATE(4189)] = 186669, - [SMALL_STATE(4190)] = 186684, - [SMALL_STATE(4191)] = 186699, - [SMALL_STATE(4192)] = 186714, - [SMALL_STATE(4193)] = 186729, - [SMALL_STATE(4194)] = 186744, - [SMALL_STATE(4195)] = 186759, - [SMALL_STATE(4196)] = 186774, - [SMALL_STATE(4197)] = 186788, - [SMALL_STATE(4198)] = 186798, - [SMALL_STATE(4199)] = 186808, - [SMALL_STATE(4200)] = 186822, - [SMALL_STATE(4201)] = 186836, - [SMALL_STATE(4202)] = 186850, - [SMALL_STATE(4203)] = 186864, - [SMALL_STATE(4204)] = 186878, - [SMALL_STATE(4205)] = 186892, - [SMALL_STATE(4206)] = 186906, - [SMALL_STATE(4207)] = 186920, - [SMALL_STATE(4208)] = 186934, - [SMALL_STATE(4209)] = 186948, - [SMALL_STATE(4210)] = 186962, - [SMALL_STATE(4211)] = 186976, - [SMALL_STATE(4212)] = 186990, - [SMALL_STATE(4213)] = 187004, - [SMALL_STATE(4214)] = 187018, - [SMALL_STATE(4215)] = 187032, - [SMALL_STATE(4216)] = 187046, - [SMALL_STATE(4217)] = 187060, - [SMALL_STATE(4218)] = 187070, - [SMALL_STATE(4219)] = 187084, - [SMALL_STATE(4220)] = 187098, - [SMALL_STATE(4221)] = 187112, - [SMALL_STATE(4222)] = 187126, - [SMALL_STATE(4223)] = 187140, - [SMALL_STATE(4224)] = 187154, - [SMALL_STATE(4225)] = 187168, - [SMALL_STATE(4226)] = 187182, - [SMALL_STATE(4227)] = 187196, - [SMALL_STATE(4228)] = 187210, - [SMALL_STATE(4229)] = 187224, - [SMALL_STATE(4230)] = 187234, - [SMALL_STATE(4231)] = 187248, - [SMALL_STATE(4232)] = 187262, - [SMALL_STATE(4233)] = 187276, - [SMALL_STATE(4234)] = 187290, - [SMALL_STATE(4235)] = 187304, - [SMALL_STATE(4236)] = 187318, - [SMALL_STATE(4237)] = 187332, - [SMALL_STATE(4238)] = 187346, - [SMALL_STATE(4239)] = 187360, - [SMALL_STATE(4240)] = 187374, - [SMALL_STATE(4241)] = 187388, - [SMALL_STATE(4242)] = 187402, - [SMALL_STATE(4243)] = 187416, - [SMALL_STATE(4244)] = 187430, - [SMALL_STATE(4245)] = 187444, - [SMALL_STATE(4246)] = 187458, - [SMALL_STATE(4247)] = 187468, - [SMALL_STATE(4248)] = 187482, - [SMALL_STATE(4249)] = 187496, - [SMALL_STATE(4250)] = 187510, - [SMALL_STATE(4251)] = 187524, - [SMALL_STATE(4252)] = 187538, - [SMALL_STATE(4253)] = 187552, - [SMALL_STATE(4254)] = 187562, - [SMALL_STATE(4255)] = 187576, - [SMALL_STATE(4256)] = 187586, - [SMALL_STATE(4257)] = 187600, - [SMALL_STATE(4258)] = 187614, - [SMALL_STATE(4259)] = 187628, - [SMALL_STATE(4260)] = 187642, - [SMALL_STATE(4261)] = 187656, - [SMALL_STATE(4262)] = 187670, - [SMALL_STATE(4263)] = 187684, - [SMALL_STATE(4264)] = 187698, - [SMALL_STATE(4265)] = 187712, - [SMALL_STATE(4266)] = 187726, - [SMALL_STATE(4267)] = 187740, - [SMALL_STATE(4268)] = 187754, - [SMALL_STATE(4269)] = 187768, - [SMALL_STATE(4270)] = 187782, - [SMALL_STATE(4271)] = 187796, - [SMALL_STATE(4272)] = 187806, - [SMALL_STATE(4273)] = 187820, - [SMALL_STATE(4274)] = 187834, - [SMALL_STATE(4275)] = 187848, - [SMALL_STATE(4276)] = 187862, - [SMALL_STATE(4277)] = 187876, - [SMALL_STATE(4278)] = 187890, - [SMALL_STATE(4279)] = 187904, - [SMALL_STATE(4280)] = 187918, - [SMALL_STATE(4281)] = 187932, - [SMALL_STATE(4282)] = 187946, - [SMALL_STATE(4283)] = 187960, - [SMALL_STATE(4284)] = 187974, - [SMALL_STATE(4285)] = 187988, - [SMALL_STATE(4286)] = 188002, - [SMALL_STATE(4287)] = 188016, - [SMALL_STATE(4288)] = 188026, - [SMALL_STATE(4289)] = 188036, - [SMALL_STATE(4290)] = 188050, - [SMALL_STATE(4291)] = 188060, - [SMALL_STATE(4292)] = 188074, - [SMALL_STATE(4293)] = 188088, - [SMALL_STATE(4294)] = 188102, - [SMALL_STATE(4295)] = 188116, - [SMALL_STATE(4296)] = 188130, - [SMALL_STATE(4297)] = 188144, - [SMALL_STATE(4298)] = 188158, - [SMALL_STATE(4299)] = 188172, - [SMALL_STATE(4300)] = 188186, - [SMALL_STATE(4301)] = 188196, - [SMALL_STATE(4302)] = 188210, - [SMALL_STATE(4303)] = 188224, - [SMALL_STATE(4304)] = 188238, - [SMALL_STATE(4305)] = 188252, - [SMALL_STATE(4306)] = 188266, - [SMALL_STATE(4307)] = 188280, - [SMALL_STATE(4308)] = 188294, - [SMALL_STATE(4309)] = 188308, - [SMALL_STATE(4310)] = 188322, - [SMALL_STATE(4311)] = 188336, - [SMALL_STATE(4312)] = 188350, - [SMALL_STATE(4313)] = 188364, - [SMALL_STATE(4314)] = 188374, - [SMALL_STATE(4315)] = 188388, - [SMALL_STATE(4316)] = 188402, - [SMALL_STATE(4317)] = 188416, - [SMALL_STATE(4318)] = 188430, - [SMALL_STATE(4319)] = 188444, - [SMALL_STATE(4320)] = 188458, - [SMALL_STATE(4321)] = 188472, - [SMALL_STATE(4322)] = 188486, - [SMALL_STATE(4323)] = 188500, - [SMALL_STATE(4324)] = 188514, - [SMALL_STATE(4325)] = 188528, - [SMALL_STATE(4326)] = 188542, - [SMALL_STATE(4327)] = 188556, - [SMALL_STATE(4328)] = 188570, - [SMALL_STATE(4329)] = 188580, - [SMALL_STATE(4330)] = 188594, - [SMALL_STATE(4331)] = 188608, - [SMALL_STATE(4332)] = 188622, - [SMALL_STATE(4333)] = 188636, - [SMALL_STATE(4334)] = 188650, - [SMALL_STATE(4335)] = 188664, - [SMALL_STATE(4336)] = 188678, - [SMALL_STATE(4337)] = 188692, - [SMALL_STATE(4338)] = 188706, - [SMALL_STATE(4339)] = 188720, - [SMALL_STATE(4340)] = 188734, - [SMALL_STATE(4341)] = 188746, - [SMALL_STATE(4342)] = 188760, - [SMALL_STATE(4343)] = 188770, - [SMALL_STATE(4344)] = 188784, - [SMALL_STATE(4345)] = 188798, - [SMALL_STATE(4346)] = 188812, - [SMALL_STATE(4347)] = 188826, - [SMALL_STATE(4348)] = 188840, - [SMALL_STATE(4349)] = 188854, - [SMALL_STATE(4350)] = 188868, - [SMALL_STATE(4351)] = 188882, - [SMALL_STATE(4352)] = 188896, - [SMALL_STATE(4353)] = 188910, - [SMALL_STATE(4354)] = 188924, - [SMALL_STATE(4355)] = 188938, - [SMALL_STATE(4356)] = 188952, - [SMALL_STATE(4357)] = 188966, - [SMALL_STATE(4358)] = 188980, - [SMALL_STATE(4359)] = 188994, - [SMALL_STATE(4360)] = 189008, - [SMALL_STATE(4361)] = 189022, - [SMALL_STATE(4362)] = 189036, - [SMALL_STATE(4363)] = 189050, - [SMALL_STATE(4364)] = 189064, - [SMALL_STATE(4365)] = 189078, - [SMALL_STATE(4366)] = 189092, - [SMALL_STATE(4367)] = 189106, - [SMALL_STATE(4368)] = 189120, - [SMALL_STATE(4369)] = 189134, - [SMALL_STATE(4370)] = 189148, - [SMALL_STATE(4371)] = 189162, - [SMALL_STATE(4372)] = 189176, - [SMALL_STATE(4373)] = 189186, - [SMALL_STATE(4374)] = 189196, - [SMALL_STATE(4375)] = 189206, - [SMALL_STATE(4376)] = 189216, - [SMALL_STATE(4377)] = 189226, - [SMALL_STATE(4378)] = 189236, - [SMALL_STATE(4379)] = 189246, - [SMALL_STATE(4380)] = 189256, - [SMALL_STATE(4381)] = 189266, - [SMALL_STATE(4382)] = 189276, - [SMALL_STATE(4383)] = 189286, - [SMALL_STATE(4384)] = 189296, - [SMALL_STATE(4385)] = 189306, - [SMALL_STATE(4386)] = 189316, - [SMALL_STATE(4387)] = 189326, - [SMALL_STATE(4388)] = 189336, - [SMALL_STATE(4389)] = 189346, - [SMALL_STATE(4390)] = 189356, - [SMALL_STATE(4391)] = 189366, - [SMALL_STATE(4392)] = 189376, - [SMALL_STATE(4393)] = 189386, - [SMALL_STATE(4394)] = 189396, - [SMALL_STATE(4395)] = 189406, - [SMALL_STATE(4396)] = 189416, - [SMALL_STATE(4397)] = 189426, - [SMALL_STATE(4398)] = 189436, - [SMALL_STATE(4399)] = 189446, - [SMALL_STATE(4400)] = 189456, - [SMALL_STATE(4401)] = 189466, - [SMALL_STATE(4402)] = 189476, - [SMALL_STATE(4403)] = 189486, - [SMALL_STATE(4404)] = 189496, - [SMALL_STATE(4405)] = 189506, - [SMALL_STATE(4406)] = 189516, - [SMALL_STATE(4407)] = 189526, - [SMALL_STATE(4408)] = 189536, - [SMALL_STATE(4409)] = 189546, - [SMALL_STATE(4410)] = 189556, - [SMALL_STATE(4411)] = 189566, - [SMALL_STATE(4412)] = 189576, - [SMALL_STATE(4413)] = 189586, - [SMALL_STATE(4414)] = 189596, - [SMALL_STATE(4415)] = 189606, - [SMALL_STATE(4416)] = 189614, - [SMALL_STATE(4417)] = 189624, - [SMALL_STATE(4418)] = 189634, - [SMALL_STATE(4419)] = 189644, - [SMALL_STATE(4420)] = 189654, - [SMALL_STATE(4421)] = 189664, - [SMALL_STATE(4422)] = 189674, - [SMALL_STATE(4423)] = 189684, - [SMALL_STATE(4424)] = 189694, - [SMALL_STATE(4425)] = 189704, - [SMALL_STATE(4426)] = 189714, - [SMALL_STATE(4427)] = 189724, - [SMALL_STATE(4428)] = 189734, - [SMALL_STATE(4429)] = 189744, - [SMALL_STATE(4430)] = 189754, - [SMALL_STATE(4431)] = 189764, - [SMALL_STATE(4432)] = 189774, - [SMALL_STATE(4433)] = 189784, - [SMALL_STATE(4434)] = 189794, - [SMALL_STATE(4435)] = 189804, - [SMALL_STATE(4436)] = 189814, - [SMALL_STATE(4437)] = 189824, - [SMALL_STATE(4438)] = 189834, - [SMALL_STATE(4439)] = 189844, - [SMALL_STATE(4440)] = 189854, - [SMALL_STATE(4441)] = 189864, - [SMALL_STATE(4442)] = 189874, - [SMALL_STATE(4443)] = 189884, - [SMALL_STATE(4444)] = 189894, - [SMALL_STATE(4445)] = 189904, - [SMALL_STATE(4446)] = 189914, - [SMALL_STATE(4447)] = 189924, - [SMALL_STATE(4448)] = 189934, - [SMALL_STATE(4449)] = 189944, - [SMALL_STATE(4450)] = 189954, - [SMALL_STATE(4451)] = 189964, - [SMALL_STATE(4452)] = 189974, - [SMALL_STATE(4453)] = 189984, - [SMALL_STATE(4454)] = 189994, - [SMALL_STATE(4455)] = 190004, - [SMALL_STATE(4456)] = 190014, - [SMALL_STATE(4457)] = 190024, - [SMALL_STATE(4458)] = 190034, - [SMALL_STATE(4459)] = 190044, - [SMALL_STATE(4460)] = 190054, - [SMALL_STATE(4461)] = 190064, - [SMALL_STATE(4462)] = 190074, - [SMALL_STATE(4463)] = 190084, - [SMALL_STATE(4464)] = 190094, - [SMALL_STATE(4465)] = 190104, - [SMALL_STATE(4466)] = 190114, - [SMALL_STATE(4467)] = 190124, - [SMALL_STATE(4468)] = 190134, - [SMALL_STATE(4469)] = 190144, - [SMALL_STATE(4470)] = 190154, - [SMALL_STATE(4471)] = 190164, - [SMALL_STATE(4472)] = 190174, - [SMALL_STATE(4473)] = 190184, - [SMALL_STATE(4474)] = 190194, - [SMALL_STATE(4475)] = 190204, - [SMALL_STATE(4476)] = 190214, - [SMALL_STATE(4477)] = 190224, - [SMALL_STATE(4478)] = 190234, - [SMALL_STATE(4479)] = 190244, - [SMALL_STATE(4480)] = 190254, - [SMALL_STATE(4481)] = 190264, - [SMALL_STATE(4482)] = 190274, - [SMALL_STATE(4483)] = 190284, - [SMALL_STATE(4484)] = 190294, - [SMALL_STATE(4485)] = 190304, - [SMALL_STATE(4486)] = 190314, - [SMALL_STATE(4487)] = 190324, - [SMALL_STATE(4488)] = 190334, - [SMALL_STATE(4489)] = 190344, - [SMALL_STATE(4490)] = 190354, - [SMALL_STATE(4491)] = 190364, - [SMALL_STATE(4492)] = 190374, - [SMALL_STATE(4493)] = 190384, - [SMALL_STATE(4494)] = 190394, - [SMALL_STATE(4495)] = 190404, - [SMALL_STATE(4496)] = 190414, - [SMALL_STATE(4497)] = 190424, - [SMALL_STATE(4498)] = 190434, - [SMALL_STATE(4499)] = 190444, - [SMALL_STATE(4500)] = 190454, - [SMALL_STATE(4501)] = 190464, - [SMALL_STATE(4502)] = 190474, - [SMALL_STATE(4503)] = 190484, - [SMALL_STATE(4504)] = 190494, - [SMALL_STATE(4505)] = 190504, - [SMALL_STATE(4506)] = 190514, - [SMALL_STATE(4507)] = 190524, - [SMALL_STATE(4508)] = 190534, - [SMALL_STATE(4509)] = 190544, - [SMALL_STATE(4510)] = 190554, - [SMALL_STATE(4511)] = 190564, - [SMALL_STATE(4512)] = 190574, - [SMALL_STATE(4513)] = 190584, - [SMALL_STATE(4514)] = 190594, - [SMALL_STATE(4515)] = 190604, - [SMALL_STATE(4516)] = 190614, - [SMALL_STATE(4517)] = 190624, - [SMALL_STATE(4518)] = 190634, - [SMALL_STATE(4519)] = 190644, - [SMALL_STATE(4520)] = 190654, - [SMALL_STATE(4521)] = 190664, - [SMALL_STATE(4522)] = 190674, - [SMALL_STATE(4523)] = 190684, - [SMALL_STATE(4524)] = 190694, - [SMALL_STATE(4525)] = 190704, - [SMALL_STATE(4526)] = 190714, - [SMALL_STATE(4527)] = 190724, - [SMALL_STATE(4528)] = 190734, - [SMALL_STATE(4529)] = 190744, - [SMALL_STATE(4530)] = 190754, - [SMALL_STATE(4531)] = 190764, - [SMALL_STATE(4532)] = 190774, - [SMALL_STATE(4533)] = 190784, - [SMALL_STATE(4534)] = 190794, - [SMALL_STATE(4535)] = 190804, - [SMALL_STATE(4536)] = 190814, - [SMALL_STATE(4537)] = 190824, - [SMALL_STATE(4538)] = 190834, - [SMALL_STATE(4539)] = 190844, - [SMALL_STATE(4540)] = 190854, - [SMALL_STATE(4541)] = 190864, - [SMALL_STATE(4542)] = 190874, - [SMALL_STATE(4543)] = 190884, - [SMALL_STATE(4544)] = 190894, - [SMALL_STATE(4545)] = 190904, - [SMALL_STATE(4546)] = 190914, - [SMALL_STATE(4547)] = 190924, - [SMALL_STATE(4548)] = 190934, - [SMALL_STATE(4549)] = 190944, - [SMALL_STATE(4550)] = 190954, - [SMALL_STATE(4551)] = 190964, - [SMALL_STATE(4552)] = 190974, - [SMALL_STATE(4553)] = 190984, - [SMALL_STATE(4554)] = 190994, - [SMALL_STATE(4555)] = 191004, - [SMALL_STATE(4556)] = 191014, - [SMALL_STATE(4557)] = 191024, - [SMALL_STATE(4558)] = 191034, - [SMALL_STATE(4559)] = 191044, - [SMALL_STATE(4560)] = 191054, - [SMALL_STATE(4561)] = 191064, - [SMALL_STATE(4562)] = 191074, - [SMALL_STATE(4563)] = 191084, - [SMALL_STATE(4564)] = 191094, - [SMALL_STATE(4565)] = 191104, - [SMALL_STATE(4566)] = 191114, - [SMALL_STATE(4567)] = 191124, - [SMALL_STATE(4568)] = 191134, - [SMALL_STATE(4569)] = 191144, - [SMALL_STATE(4570)] = 191154, - [SMALL_STATE(4571)] = 191164, - [SMALL_STATE(4572)] = 191174, - [SMALL_STATE(4573)] = 191184, - [SMALL_STATE(4574)] = 191194, - [SMALL_STATE(4575)] = 191204, - [SMALL_STATE(4576)] = 191214, - [SMALL_STATE(4577)] = 191224, - [SMALL_STATE(4578)] = 191234, - [SMALL_STATE(4579)] = 191244, - [SMALL_STATE(4580)] = 191254, - [SMALL_STATE(4581)] = 191264, - [SMALL_STATE(4582)] = 191274, - [SMALL_STATE(4583)] = 191284, - [SMALL_STATE(4584)] = 191294, - [SMALL_STATE(4585)] = 191304, - [SMALL_STATE(4586)] = 191314, - [SMALL_STATE(4587)] = 191324, - [SMALL_STATE(4588)] = 191334, - [SMALL_STATE(4589)] = 191344, - [SMALL_STATE(4590)] = 191354, - [SMALL_STATE(4591)] = 191364, - [SMALL_STATE(4592)] = 191374, - [SMALL_STATE(4593)] = 191384, - [SMALL_STATE(4594)] = 191394, - [SMALL_STATE(4595)] = 191404, - [SMALL_STATE(4596)] = 191414, - [SMALL_STATE(4597)] = 191424, - [SMALL_STATE(4598)] = 191434, - [SMALL_STATE(4599)] = 191444, - [SMALL_STATE(4600)] = 191454, - [SMALL_STATE(4601)] = 191464, - [SMALL_STATE(4602)] = 191474, - [SMALL_STATE(4603)] = 191484, - [SMALL_STATE(4604)] = 191494, - [SMALL_STATE(4605)] = 191504, - [SMALL_STATE(4606)] = 191514, - [SMALL_STATE(4607)] = 191524, - [SMALL_STATE(4608)] = 191534, - [SMALL_STATE(4609)] = 191544, - [SMALL_STATE(4610)] = 191554, - [SMALL_STATE(4611)] = 191564, - [SMALL_STATE(4612)] = 191574, - [SMALL_STATE(4613)] = 191584, - [SMALL_STATE(4614)] = 191594, - [SMALL_STATE(4615)] = 191600, - [SMALL_STATE(4616)] = 191610, - [SMALL_STATE(4617)] = 191620, - [SMALL_STATE(4618)] = 191630, - [SMALL_STATE(4619)] = 191640, - [SMALL_STATE(4620)] = 191650, - [SMALL_STATE(4621)] = 191660, - [SMALL_STATE(4622)] = 191670, - [SMALL_STATE(4623)] = 191680, - [SMALL_STATE(4624)] = 191690, - [SMALL_STATE(4625)] = 191700, - [SMALL_STATE(4626)] = 191710, - [SMALL_STATE(4627)] = 191720, - [SMALL_STATE(4628)] = 191730, - [SMALL_STATE(4629)] = 191740, - [SMALL_STATE(4630)] = 191750, - [SMALL_STATE(4631)] = 191760, - [SMALL_STATE(4632)] = 191770, - [SMALL_STATE(4633)] = 191780, - [SMALL_STATE(4634)] = 191790, - [SMALL_STATE(4635)] = 191800, - [SMALL_STATE(4636)] = 191810, - [SMALL_STATE(4637)] = 191820, - [SMALL_STATE(4638)] = 191830, - [SMALL_STATE(4639)] = 191840, - [SMALL_STATE(4640)] = 191850, - [SMALL_STATE(4641)] = 191860, - [SMALL_STATE(4642)] = 191870, - [SMALL_STATE(4643)] = 191880, - [SMALL_STATE(4644)] = 191890, - [SMALL_STATE(4645)] = 191900, - [SMALL_STATE(4646)] = 191910, - [SMALL_STATE(4647)] = 191920, - [SMALL_STATE(4648)] = 191930, - [SMALL_STATE(4649)] = 191940, - [SMALL_STATE(4650)] = 191950, - [SMALL_STATE(4651)] = 191960, - [SMALL_STATE(4652)] = 191970, - [SMALL_STATE(4653)] = 191980, - [SMALL_STATE(4654)] = 191990, - [SMALL_STATE(4655)] = 192000, - [SMALL_STATE(4656)] = 192010, - [SMALL_STATE(4657)] = 192020, - [SMALL_STATE(4658)] = 192030, - [SMALL_STATE(4659)] = 192040, - [SMALL_STATE(4660)] = 192050, - [SMALL_STATE(4661)] = 192060, - [SMALL_STATE(4662)] = 192070, - [SMALL_STATE(4663)] = 192080, - [SMALL_STATE(4664)] = 192090, - [SMALL_STATE(4665)] = 192100, - [SMALL_STATE(4666)] = 192110, - [SMALL_STATE(4667)] = 192120, - [SMALL_STATE(4668)] = 192130, - [SMALL_STATE(4669)] = 192140, - [SMALL_STATE(4670)] = 192150, - [SMALL_STATE(4671)] = 192160, - [SMALL_STATE(4672)] = 192170, - [SMALL_STATE(4673)] = 192180, - [SMALL_STATE(4674)] = 192190, - [SMALL_STATE(4675)] = 192200, - [SMALL_STATE(4676)] = 192210, - [SMALL_STATE(4677)] = 192220, - [SMALL_STATE(4678)] = 192230, - [SMALL_STATE(4679)] = 192240, - [SMALL_STATE(4680)] = 192250, - [SMALL_STATE(4681)] = 192260, - [SMALL_STATE(4682)] = 192270, - [SMALL_STATE(4683)] = 192280, - [SMALL_STATE(4684)] = 192290, - [SMALL_STATE(4685)] = 192300, - [SMALL_STATE(4686)] = 192310, - [SMALL_STATE(4687)] = 192320, - [SMALL_STATE(4688)] = 192330, - [SMALL_STATE(4689)] = 192340, - [SMALL_STATE(4690)] = 192350, - [SMALL_STATE(4691)] = 192360, - [SMALL_STATE(4692)] = 192370, - [SMALL_STATE(4693)] = 192380, - [SMALL_STATE(4694)] = 192390, - [SMALL_STATE(4695)] = 192400, - [SMALL_STATE(4696)] = 192410, - [SMALL_STATE(4697)] = 192420, - [SMALL_STATE(4698)] = 192430, - [SMALL_STATE(4699)] = 192440, - [SMALL_STATE(4700)] = 192450, - [SMALL_STATE(4701)] = 192460, - [SMALL_STATE(4702)] = 192470, - [SMALL_STATE(4703)] = 192480, - [SMALL_STATE(4704)] = 192490, - [SMALL_STATE(4705)] = 192500, - [SMALL_STATE(4706)] = 192510, - [SMALL_STATE(4707)] = 192520, - [SMALL_STATE(4708)] = 192530, - [SMALL_STATE(4709)] = 192540, - [SMALL_STATE(4710)] = 192550, - [SMALL_STATE(4711)] = 192560, - [SMALL_STATE(4712)] = 192570, - [SMALL_STATE(4713)] = 192580, - [SMALL_STATE(4714)] = 192590, - [SMALL_STATE(4715)] = 192600, - [SMALL_STATE(4716)] = 192610, - [SMALL_STATE(4717)] = 192620, - [SMALL_STATE(4718)] = 192630, - [SMALL_STATE(4719)] = 192640, - [SMALL_STATE(4720)] = 192650, - [SMALL_STATE(4721)] = 192660, - [SMALL_STATE(4722)] = 192670, - [SMALL_STATE(4723)] = 192680, - [SMALL_STATE(4724)] = 192690, - [SMALL_STATE(4725)] = 192700, - [SMALL_STATE(4726)] = 192710, - [SMALL_STATE(4727)] = 192720, - [SMALL_STATE(4728)] = 192730, - [SMALL_STATE(4729)] = 192740, - [SMALL_STATE(4730)] = 192750, - [SMALL_STATE(4731)] = 192760, - [SMALL_STATE(4732)] = 192770, - [SMALL_STATE(4733)] = 192780, - [SMALL_STATE(4734)] = 192790, - [SMALL_STATE(4735)] = 192800, - [SMALL_STATE(4736)] = 192810, - [SMALL_STATE(4737)] = 192820, - [SMALL_STATE(4738)] = 192830, - [SMALL_STATE(4739)] = 192840, - [SMALL_STATE(4740)] = 192850, - [SMALL_STATE(4741)] = 192860, - [SMALL_STATE(4742)] = 192868, - [SMALL_STATE(4743)] = 192878, - [SMALL_STATE(4744)] = 192888, - [SMALL_STATE(4745)] = 192898, - [SMALL_STATE(4746)] = 192908, - [SMALL_STATE(4747)] = 192918, - [SMALL_STATE(4748)] = 192928, - [SMALL_STATE(4749)] = 192938, - [SMALL_STATE(4750)] = 192948, - [SMALL_STATE(4751)] = 192958, - [SMALL_STATE(4752)] = 192968, - [SMALL_STATE(4753)] = 192978, - [SMALL_STATE(4754)] = 192988, - [SMALL_STATE(4755)] = 192998, - [SMALL_STATE(4756)] = 193008, - [SMALL_STATE(4757)] = 193018, - [SMALL_STATE(4758)] = 193028, - [SMALL_STATE(4759)] = 193038, - [SMALL_STATE(4760)] = 193048, - [SMALL_STATE(4761)] = 193058, - [SMALL_STATE(4762)] = 193068, - [SMALL_STATE(4763)] = 193078, - [SMALL_STATE(4764)] = 193088, - [SMALL_STATE(4765)] = 193098, - [SMALL_STATE(4766)] = 193108, - [SMALL_STATE(4767)] = 193118, - [SMALL_STATE(4768)] = 193128, - [SMALL_STATE(4769)] = 193138, - [SMALL_STATE(4770)] = 193148, - [SMALL_STATE(4771)] = 193158, - [SMALL_STATE(4772)] = 193168, - [SMALL_STATE(4773)] = 193178, - [SMALL_STATE(4774)] = 193188, - [SMALL_STATE(4775)] = 193198, - [SMALL_STATE(4776)] = 193208, - [SMALL_STATE(4777)] = 193218, - [SMALL_STATE(4778)] = 193228, - [SMALL_STATE(4779)] = 193238, - [SMALL_STATE(4780)] = 193248, - [SMALL_STATE(4781)] = 193258, - [SMALL_STATE(4782)] = 193268, - [SMALL_STATE(4783)] = 193278, - [SMALL_STATE(4784)] = 193288, - [SMALL_STATE(4785)] = 193298, - [SMALL_STATE(4786)] = 193308, - [SMALL_STATE(4787)] = 193318, - [SMALL_STATE(4788)] = 193328, - [SMALL_STATE(4789)] = 193338, - [SMALL_STATE(4790)] = 193348, - [SMALL_STATE(4791)] = 193358, - [SMALL_STATE(4792)] = 193368, - [SMALL_STATE(4793)] = 193378, - [SMALL_STATE(4794)] = 193388, - [SMALL_STATE(4795)] = 193398, - [SMALL_STATE(4796)] = 193408, - [SMALL_STATE(4797)] = 193418, - [SMALL_STATE(4798)] = 193428, - [SMALL_STATE(4799)] = 193438, - [SMALL_STATE(4800)] = 193448, - [SMALL_STATE(4801)] = 193458, - [SMALL_STATE(4802)] = 193468, - [SMALL_STATE(4803)] = 193478, - [SMALL_STATE(4804)] = 193488, - [SMALL_STATE(4805)] = 193498, - [SMALL_STATE(4806)] = 193508, - [SMALL_STATE(4807)] = 193518, - [SMALL_STATE(4808)] = 193528, - [SMALL_STATE(4809)] = 193538, - [SMALL_STATE(4810)] = 193548, - [SMALL_STATE(4811)] = 193558, - [SMALL_STATE(4812)] = 193568, - [SMALL_STATE(4813)] = 193578, - [SMALL_STATE(4814)] = 193588, - [SMALL_STATE(4815)] = 193598, - [SMALL_STATE(4816)] = 193608, - [SMALL_STATE(4817)] = 193618, - [SMALL_STATE(4818)] = 193628, - [SMALL_STATE(4819)] = 193638, - [SMALL_STATE(4820)] = 193648, - [SMALL_STATE(4821)] = 193658, - [SMALL_STATE(4822)] = 193668, - [SMALL_STATE(4823)] = 193678, - [SMALL_STATE(4824)] = 193688, - [SMALL_STATE(4825)] = 193698, - [SMALL_STATE(4826)] = 193708, - [SMALL_STATE(4827)] = 193718, - [SMALL_STATE(4828)] = 193728, - [SMALL_STATE(4829)] = 193738, - [SMALL_STATE(4830)] = 193748, - [SMALL_STATE(4831)] = 193758, - [SMALL_STATE(4832)] = 193768, - [SMALL_STATE(4833)] = 193778, - [SMALL_STATE(4834)] = 193788, - [SMALL_STATE(4835)] = 193798, - [SMALL_STATE(4836)] = 193808, - [SMALL_STATE(4837)] = 193818, - [SMALL_STATE(4838)] = 193828, - [SMALL_STATE(4839)] = 193838, - [SMALL_STATE(4840)] = 193848, - [SMALL_STATE(4841)] = 193858, - [SMALL_STATE(4842)] = 193868, - [SMALL_STATE(4843)] = 193878, - [SMALL_STATE(4844)] = 193888, - [SMALL_STATE(4845)] = 193898, - [SMALL_STATE(4846)] = 193908, - [SMALL_STATE(4847)] = 193918, - [SMALL_STATE(4848)] = 193928, - [SMALL_STATE(4849)] = 193938, - [SMALL_STATE(4850)] = 193948, - [SMALL_STATE(4851)] = 193958, - [SMALL_STATE(4852)] = 193968, - [SMALL_STATE(4853)] = 193978, - [SMALL_STATE(4854)] = 193988, - [SMALL_STATE(4855)] = 193998, - [SMALL_STATE(4856)] = 194008, - [SMALL_STATE(4857)] = 194018, - [SMALL_STATE(4858)] = 194028, - [SMALL_STATE(4859)] = 194038, - [SMALL_STATE(4860)] = 194048, - [SMALL_STATE(4861)] = 194058, - [SMALL_STATE(4862)] = 194068, - [SMALL_STATE(4863)] = 194078, - [SMALL_STATE(4864)] = 194088, - [SMALL_STATE(4865)] = 194098, - [SMALL_STATE(4866)] = 194108, - [SMALL_STATE(4867)] = 194118, - [SMALL_STATE(4868)] = 194128, - [SMALL_STATE(4869)] = 194138, - [SMALL_STATE(4870)] = 194148, - [SMALL_STATE(4871)] = 194158, - [SMALL_STATE(4872)] = 194168, - [SMALL_STATE(4873)] = 194178, - [SMALL_STATE(4874)] = 194188, - [SMALL_STATE(4875)] = 194198, - [SMALL_STATE(4876)] = 194208, - [SMALL_STATE(4877)] = 194218, - [SMALL_STATE(4878)] = 194228, - [SMALL_STATE(4879)] = 194238, - [SMALL_STATE(4880)] = 194248, - [SMALL_STATE(4881)] = 194258, - [SMALL_STATE(4882)] = 194268, - [SMALL_STATE(4883)] = 194278, - [SMALL_STATE(4884)] = 194288, - [SMALL_STATE(4885)] = 194298, - [SMALL_STATE(4886)] = 194308, - [SMALL_STATE(4887)] = 194318, - [SMALL_STATE(4888)] = 194328, - [SMALL_STATE(4889)] = 194338, - [SMALL_STATE(4890)] = 194348, - [SMALL_STATE(4891)] = 194358, - [SMALL_STATE(4892)] = 194368, - [SMALL_STATE(4893)] = 194378, - [SMALL_STATE(4894)] = 194388, - [SMALL_STATE(4895)] = 194398, - [SMALL_STATE(4896)] = 194408, - [SMALL_STATE(4897)] = 194418, - [SMALL_STATE(4898)] = 194428, - [SMALL_STATE(4899)] = 194438, - [SMALL_STATE(4900)] = 194448, - [SMALL_STATE(4901)] = 194458, - [SMALL_STATE(4902)] = 194468, - [SMALL_STATE(4903)] = 194478, - [SMALL_STATE(4904)] = 194488, - [SMALL_STATE(4905)] = 194498, - [SMALL_STATE(4906)] = 194508, - [SMALL_STATE(4907)] = 194518, - [SMALL_STATE(4908)] = 194528, - [SMALL_STATE(4909)] = 194538, - [SMALL_STATE(4910)] = 194548, - [SMALL_STATE(4911)] = 194558, - [SMALL_STATE(4912)] = 194568, - [SMALL_STATE(4913)] = 194578, - [SMALL_STATE(4914)] = 194588, - [SMALL_STATE(4915)] = 194598, - [SMALL_STATE(4916)] = 194608, - [SMALL_STATE(4917)] = 194618, - [SMALL_STATE(4918)] = 194628, - [SMALL_STATE(4919)] = 194638, - [SMALL_STATE(4920)] = 194648, - [SMALL_STATE(4921)] = 194658, - [SMALL_STATE(4922)] = 194668, - [SMALL_STATE(4923)] = 194678, - [SMALL_STATE(4924)] = 194688, - [SMALL_STATE(4925)] = 194698, - [SMALL_STATE(4926)] = 194708, - [SMALL_STATE(4927)] = 194718, - [SMALL_STATE(4928)] = 194728, - [SMALL_STATE(4929)] = 194738, - [SMALL_STATE(4930)] = 194748, - [SMALL_STATE(4931)] = 194758, - [SMALL_STATE(4932)] = 194768, - [SMALL_STATE(4933)] = 194778, - [SMALL_STATE(4934)] = 194788, - [SMALL_STATE(4935)] = 194798, - [SMALL_STATE(4936)] = 194808, - [SMALL_STATE(4937)] = 194818, - [SMALL_STATE(4938)] = 194828, - [SMALL_STATE(4939)] = 194838, - [SMALL_STATE(4940)] = 194848, - [SMALL_STATE(4941)] = 194858, - [SMALL_STATE(4942)] = 194868, - [SMALL_STATE(4943)] = 194878, - [SMALL_STATE(4944)] = 194888, - [SMALL_STATE(4945)] = 194898, - [SMALL_STATE(4946)] = 194908, - [SMALL_STATE(4947)] = 194918, - [SMALL_STATE(4948)] = 194928, - [SMALL_STATE(4949)] = 194938, - [SMALL_STATE(4950)] = 194948, - [SMALL_STATE(4951)] = 194958, - [SMALL_STATE(4952)] = 194968, - [SMALL_STATE(4953)] = 194978, - [SMALL_STATE(4954)] = 194988, - [SMALL_STATE(4955)] = 194998, - [SMALL_STATE(4956)] = 195008, - [SMALL_STATE(4957)] = 195018, - [SMALL_STATE(4958)] = 195028, - [SMALL_STATE(4959)] = 195038, - [SMALL_STATE(4960)] = 195048, - [SMALL_STATE(4961)] = 195058, - [SMALL_STATE(4962)] = 195068, - [SMALL_STATE(4963)] = 195078, - [SMALL_STATE(4964)] = 195088, - [SMALL_STATE(4965)] = 195098, - [SMALL_STATE(4966)] = 195108, - [SMALL_STATE(4967)] = 195118, - [SMALL_STATE(4968)] = 195128, - [SMALL_STATE(4969)] = 195138, - [SMALL_STATE(4970)] = 195148, - [SMALL_STATE(4971)] = 195158, - [SMALL_STATE(4972)] = 195168, - [SMALL_STATE(4973)] = 195178, - [SMALL_STATE(4974)] = 195188, - [SMALL_STATE(4975)] = 195194, - [SMALL_STATE(4976)] = 195204, - [SMALL_STATE(4977)] = 195214, - [SMALL_STATE(4978)] = 195224, - [SMALL_STATE(4979)] = 195234, - [SMALL_STATE(4980)] = 195244, - [SMALL_STATE(4981)] = 195254, - [SMALL_STATE(4982)] = 195264, - [SMALL_STATE(4983)] = 195274, - [SMALL_STATE(4984)] = 195284, - [SMALL_STATE(4985)] = 195294, - [SMALL_STATE(4986)] = 195304, - [SMALL_STATE(4987)] = 195314, - [SMALL_STATE(4988)] = 195324, - [SMALL_STATE(4989)] = 195334, - [SMALL_STATE(4990)] = 195344, - [SMALL_STATE(4991)] = 195354, - [SMALL_STATE(4992)] = 195364, - [SMALL_STATE(4993)] = 195374, - [SMALL_STATE(4994)] = 195384, - [SMALL_STATE(4995)] = 195394, - [SMALL_STATE(4996)] = 195404, - [SMALL_STATE(4997)] = 195414, - [SMALL_STATE(4998)] = 195424, - [SMALL_STATE(4999)] = 195434, - [SMALL_STATE(5000)] = 195444, - [SMALL_STATE(5001)] = 195454, - [SMALL_STATE(5002)] = 195464, - [SMALL_STATE(5003)] = 195474, - [SMALL_STATE(5004)] = 195484, - [SMALL_STATE(5005)] = 195494, - [SMALL_STATE(5006)] = 195504, - [SMALL_STATE(5007)] = 195514, - [SMALL_STATE(5008)] = 195524, - [SMALL_STATE(5009)] = 195534, - [SMALL_STATE(5010)] = 195544, - [SMALL_STATE(5011)] = 195554, - [SMALL_STATE(5012)] = 195564, - [SMALL_STATE(5013)] = 195574, - [SMALL_STATE(5014)] = 195584, - [SMALL_STATE(5015)] = 195594, - [SMALL_STATE(5016)] = 195604, - [SMALL_STATE(5017)] = 195614, - [SMALL_STATE(5018)] = 195624, - [SMALL_STATE(5019)] = 195634, - [SMALL_STATE(5020)] = 195644, - [SMALL_STATE(5021)] = 195654, - [SMALL_STATE(5022)] = 195664, - [SMALL_STATE(5023)] = 195674, - [SMALL_STATE(5024)] = 195684, - [SMALL_STATE(5025)] = 195694, - [SMALL_STATE(5026)] = 195704, - [SMALL_STATE(5027)] = 195714, - [SMALL_STATE(5028)] = 195724, - [SMALL_STATE(5029)] = 195734, - [SMALL_STATE(5030)] = 195744, - [SMALL_STATE(5031)] = 195754, - [SMALL_STATE(5032)] = 195764, - [SMALL_STATE(5033)] = 195774, - [SMALL_STATE(5034)] = 195784, - [SMALL_STATE(5035)] = 195794, - [SMALL_STATE(5036)] = 195804, - [SMALL_STATE(5037)] = 195814, - [SMALL_STATE(5038)] = 195824, - [SMALL_STATE(5039)] = 195834, - [SMALL_STATE(5040)] = 195844, - [SMALL_STATE(5041)] = 195854, - [SMALL_STATE(5042)] = 195864, - [SMALL_STATE(5043)] = 195874, - [SMALL_STATE(5044)] = 195884, - [SMALL_STATE(5045)] = 195894, - [SMALL_STATE(5046)] = 195904, - [SMALL_STATE(5047)] = 195914, - [SMALL_STATE(5048)] = 195924, - [SMALL_STATE(5049)] = 195934, - [SMALL_STATE(5050)] = 195944, - [SMALL_STATE(5051)] = 195954, - [SMALL_STATE(5052)] = 195964, - [SMALL_STATE(5053)] = 195974, - [SMALL_STATE(5054)] = 195984, - [SMALL_STATE(5055)] = 195994, - [SMALL_STATE(5056)] = 196004, - [SMALL_STATE(5057)] = 196014, - [SMALL_STATE(5058)] = 196024, - [SMALL_STATE(5059)] = 196034, - [SMALL_STATE(5060)] = 196044, - [SMALL_STATE(5061)] = 196054, - [SMALL_STATE(5062)] = 196064, - [SMALL_STATE(5063)] = 196074, - [SMALL_STATE(5064)] = 196084, - [SMALL_STATE(5065)] = 196094, - [SMALL_STATE(5066)] = 196104, - [SMALL_STATE(5067)] = 196114, - [SMALL_STATE(5068)] = 196124, - [SMALL_STATE(5069)] = 196134, - [SMALL_STATE(5070)] = 196144, - [SMALL_STATE(5071)] = 196154, - [SMALL_STATE(5072)] = 196164, - [SMALL_STATE(5073)] = 196174, - [SMALL_STATE(5074)] = 196184, - [SMALL_STATE(5075)] = 196194, - [SMALL_STATE(5076)] = 196204, - [SMALL_STATE(5077)] = 196214, - [SMALL_STATE(5078)] = 196224, - [SMALL_STATE(5079)] = 196234, - [SMALL_STATE(5080)] = 196244, - [SMALL_STATE(5081)] = 196254, - [SMALL_STATE(5082)] = 196264, - [SMALL_STATE(5083)] = 196274, - [SMALL_STATE(5084)] = 196284, - [SMALL_STATE(5085)] = 196294, - [SMALL_STATE(5086)] = 196304, - [SMALL_STATE(5087)] = 196314, - [SMALL_STATE(5088)] = 196324, - [SMALL_STATE(5089)] = 196334, - [SMALL_STATE(5090)] = 196344, - [SMALL_STATE(5091)] = 196354, - [SMALL_STATE(5092)] = 196364, - [SMALL_STATE(5093)] = 196374, - [SMALL_STATE(5094)] = 196384, - [SMALL_STATE(5095)] = 196394, - [SMALL_STATE(5096)] = 196404, - [SMALL_STATE(5097)] = 196414, - [SMALL_STATE(5098)] = 196424, - [SMALL_STATE(5099)] = 196434, - [SMALL_STATE(5100)] = 196444, - [SMALL_STATE(5101)] = 196454, - [SMALL_STATE(5102)] = 196464, - [SMALL_STATE(5103)] = 196474, - [SMALL_STATE(5104)] = 196484, - [SMALL_STATE(5105)] = 196494, - [SMALL_STATE(5106)] = 196504, - [SMALL_STATE(5107)] = 196514, - [SMALL_STATE(5108)] = 196524, - [SMALL_STATE(5109)] = 196534, - [SMALL_STATE(5110)] = 196544, - [SMALL_STATE(5111)] = 196554, - [SMALL_STATE(5112)] = 196564, - [SMALL_STATE(5113)] = 196574, - [SMALL_STATE(5114)] = 196584, - [SMALL_STATE(5115)] = 196594, - [SMALL_STATE(5116)] = 196604, - [SMALL_STATE(5117)] = 196614, - [SMALL_STATE(5118)] = 196624, - [SMALL_STATE(5119)] = 196634, - [SMALL_STATE(5120)] = 196644, - [SMALL_STATE(5121)] = 196654, - [SMALL_STATE(5122)] = 196664, - [SMALL_STATE(5123)] = 196674, - [SMALL_STATE(5124)] = 196684, - [SMALL_STATE(5125)] = 196694, - [SMALL_STATE(5126)] = 196704, - [SMALL_STATE(5127)] = 196714, - [SMALL_STATE(5128)] = 196724, - [SMALL_STATE(5129)] = 196734, - [SMALL_STATE(5130)] = 196744, - [SMALL_STATE(5131)] = 196754, - [SMALL_STATE(5132)] = 196764, - [SMALL_STATE(5133)] = 196774, - [SMALL_STATE(5134)] = 196784, - [SMALL_STATE(5135)] = 196794, - [SMALL_STATE(5136)] = 196804, - [SMALL_STATE(5137)] = 196814, - [SMALL_STATE(5138)] = 196824, - [SMALL_STATE(5139)] = 196834, - [SMALL_STATE(5140)] = 196844, - [SMALL_STATE(5141)] = 196854, - [SMALL_STATE(5142)] = 196864, - [SMALL_STATE(5143)] = 196874, - [SMALL_STATE(5144)] = 196884, - [SMALL_STATE(5145)] = 196894, - [SMALL_STATE(5146)] = 196904, - [SMALL_STATE(5147)] = 196914, - [SMALL_STATE(5148)] = 196924, - [SMALL_STATE(5149)] = 196934, - [SMALL_STATE(5150)] = 196944, - [SMALL_STATE(5151)] = 196954, - [SMALL_STATE(5152)] = 196964, - [SMALL_STATE(5153)] = 196974, - [SMALL_STATE(5154)] = 196984, - [SMALL_STATE(5155)] = 196994, - [SMALL_STATE(5156)] = 197004, - [SMALL_STATE(5157)] = 197014, - [SMALL_STATE(5158)] = 197024, - [SMALL_STATE(5159)] = 197034, - [SMALL_STATE(5160)] = 197044, - [SMALL_STATE(5161)] = 197054, - [SMALL_STATE(5162)] = 197064, - [SMALL_STATE(5163)] = 197074, - [SMALL_STATE(5164)] = 197084, - [SMALL_STATE(5165)] = 197094, - [SMALL_STATE(5166)] = 197104, - [SMALL_STATE(5167)] = 197114, - [SMALL_STATE(5168)] = 197120, - [SMALL_STATE(5169)] = 197130, - [SMALL_STATE(5170)] = 197140, - [SMALL_STATE(5171)] = 197150, - [SMALL_STATE(5172)] = 197160, - [SMALL_STATE(5173)] = 197170, - [SMALL_STATE(5174)] = 197180, - [SMALL_STATE(5175)] = 197190, - [SMALL_STATE(5176)] = 197200, - [SMALL_STATE(5177)] = 197210, - [SMALL_STATE(5178)] = 197220, - [SMALL_STATE(5179)] = 197230, - [SMALL_STATE(5180)] = 197240, - [SMALL_STATE(5181)] = 197250, - [SMALL_STATE(5182)] = 197260, - [SMALL_STATE(5183)] = 197270, - [SMALL_STATE(5184)] = 197280, - [SMALL_STATE(5185)] = 197290, - [SMALL_STATE(5186)] = 197300, - [SMALL_STATE(5187)] = 197310, - [SMALL_STATE(5188)] = 197320, - [SMALL_STATE(5189)] = 197330, - [SMALL_STATE(5190)] = 197340, - [SMALL_STATE(5191)] = 197350, - [SMALL_STATE(5192)] = 197360, - [SMALL_STATE(5193)] = 197370, - [SMALL_STATE(5194)] = 197380, - [SMALL_STATE(5195)] = 197390, - [SMALL_STATE(5196)] = 197400, - [SMALL_STATE(5197)] = 197410, - [SMALL_STATE(5198)] = 197420, - [SMALL_STATE(5199)] = 197430, - [SMALL_STATE(5200)] = 197440, - [SMALL_STATE(5201)] = 197450, - [SMALL_STATE(5202)] = 197460, - [SMALL_STATE(5203)] = 197470, - [SMALL_STATE(5204)] = 197480, - [SMALL_STATE(5205)] = 197490, - [SMALL_STATE(5206)] = 197500, - [SMALL_STATE(5207)] = 197510, - [SMALL_STATE(5208)] = 197520, - [SMALL_STATE(5209)] = 197530, - [SMALL_STATE(5210)] = 197540, - [SMALL_STATE(5211)] = 197550, - [SMALL_STATE(5212)] = 197560, - [SMALL_STATE(5213)] = 197570, - [SMALL_STATE(5214)] = 197580, - [SMALL_STATE(5215)] = 197590, - [SMALL_STATE(5216)] = 197600, - [SMALL_STATE(5217)] = 197610, - [SMALL_STATE(5218)] = 197620, - [SMALL_STATE(5219)] = 197630, - [SMALL_STATE(5220)] = 197640, - [SMALL_STATE(5221)] = 197650, - [SMALL_STATE(5222)] = 197660, - [SMALL_STATE(5223)] = 197670, - [SMALL_STATE(5224)] = 197680, - [SMALL_STATE(5225)] = 197690, - [SMALL_STATE(5226)] = 197700, - [SMALL_STATE(5227)] = 197710, - [SMALL_STATE(5228)] = 197720, - [SMALL_STATE(5229)] = 197730, - [SMALL_STATE(5230)] = 197740, - [SMALL_STATE(5231)] = 197750, - [SMALL_STATE(5232)] = 197760, - [SMALL_STATE(5233)] = 197770, - [SMALL_STATE(5234)] = 197780, - [SMALL_STATE(5235)] = 197790, - [SMALL_STATE(5236)] = 197798, - [SMALL_STATE(5237)] = 197808, - [SMALL_STATE(5238)] = 197818, - [SMALL_STATE(5239)] = 197828, - [SMALL_STATE(5240)] = 197838, - [SMALL_STATE(5241)] = 197848, - [SMALL_STATE(5242)] = 197858, - [SMALL_STATE(5243)] = 197868, - [SMALL_STATE(5244)] = 197878, - [SMALL_STATE(5245)] = 197888, - [SMALL_STATE(5246)] = 197898, - [SMALL_STATE(5247)] = 197908, - [SMALL_STATE(5248)] = 197918, - [SMALL_STATE(5249)] = 197928, - [SMALL_STATE(5250)] = 197938, - [SMALL_STATE(5251)] = 197948, - [SMALL_STATE(5252)] = 197958, - [SMALL_STATE(5253)] = 197968, - [SMALL_STATE(5254)] = 197978, - [SMALL_STATE(5255)] = 197988, - [SMALL_STATE(5256)] = 197998, - [SMALL_STATE(5257)] = 198008, - [SMALL_STATE(5258)] = 198018, - [SMALL_STATE(5259)] = 198028, - [SMALL_STATE(5260)] = 198038, - [SMALL_STATE(5261)] = 198048, - [SMALL_STATE(5262)] = 198058, - [SMALL_STATE(5263)] = 198068, - [SMALL_STATE(5264)] = 198078, - [SMALL_STATE(5265)] = 198088, - [SMALL_STATE(5266)] = 198098, - [SMALL_STATE(5267)] = 198108, - [SMALL_STATE(5268)] = 198118, - [SMALL_STATE(5269)] = 198128, - [SMALL_STATE(5270)] = 198138, - [SMALL_STATE(5271)] = 198148, - [SMALL_STATE(5272)] = 198158, - [SMALL_STATE(5273)] = 198168, - [SMALL_STATE(5274)] = 198178, - [SMALL_STATE(5275)] = 198188, - [SMALL_STATE(5276)] = 198198, - [SMALL_STATE(5277)] = 198208, - [SMALL_STATE(5278)] = 198218, - [SMALL_STATE(5279)] = 198228, - [SMALL_STATE(5280)] = 198238, - [SMALL_STATE(5281)] = 198248, - [SMALL_STATE(5282)] = 198258, - [SMALL_STATE(5283)] = 198268, - [SMALL_STATE(5284)] = 198278, - [SMALL_STATE(5285)] = 198288, - [SMALL_STATE(5286)] = 198298, - [SMALL_STATE(5287)] = 198308, - [SMALL_STATE(5288)] = 198318, - [SMALL_STATE(5289)] = 198328, - [SMALL_STATE(5290)] = 198338, - [SMALL_STATE(5291)] = 198345, - [SMALL_STATE(5292)] = 198352, - [SMALL_STATE(5293)] = 198359, - [SMALL_STATE(5294)] = 198366, - [SMALL_STATE(5295)] = 198373, - [SMALL_STATE(5296)] = 198380, - [SMALL_STATE(5297)] = 198387, - [SMALL_STATE(5298)] = 198394, - [SMALL_STATE(5299)] = 198401, - [SMALL_STATE(5300)] = 198408, - [SMALL_STATE(5301)] = 198413, - [SMALL_STATE(5302)] = 198420, - [SMALL_STATE(5303)] = 198427, - [SMALL_STATE(5304)] = 198434, - [SMALL_STATE(5305)] = 198439, - [SMALL_STATE(5306)] = 198446, - [SMALL_STATE(5307)] = 198453, - [SMALL_STATE(5308)] = 198460, - [SMALL_STATE(5309)] = 198465, - [SMALL_STATE(5310)] = 198472, - [SMALL_STATE(5311)] = 198479, - [SMALL_STATE(5312)] = 198486, - [SMALL_STATE(5313)] = 198493, - [SMALL_STATE(5314)] = 198500, - [SMALL_STATE(5315)] = 198507, - [SMALL_STATE(5316)] = 198514, - [SMALL_STATE(5317)] = 198521, - [SMALL_STATE(5318)] = 198528, - [SMALL_STATE(5319)] = 198535, - [SMALL_STATE(5320)] = 198542, - [SMALL_STATE(5321)] = 198549, - [SMALL_STATE(5322)] = 198556, - [SMALL_STATE(5323)] = 198563, - [SMALL_STATE(5324)] = 198570, - [SMALL_STATE(5325)] = 198577, - [SMALL_STATE(5326)] = 198584, - [SMALL_STATE(5327)] = 198589, - [SMALL_STATE(5328)] = 198596, - [SMALL_STATE(5329)] = 198603, - [SMALL_STATE(5330)] = 198610, - [SMALL_STATE(5331)] = 198617, - [SMALL_STATE(5332)] = 198624, - [SMALL_STATE(5333)] = 198631, - [SMALL_STATE(5334)] = 198638, - [SMALL_STATE(5335)] = 198645, - [SMALL_STATE(5336)] = 198652, - [SMALL_STATE(5337)] = 198659, - [SMALL_STATE(5338)] = 198666, - [SMALL_STATE(5339)] = 198673, - [SMALL_STATE(5340)] = 198680, - [SMALL_STATE(5341)] = 198687, - [SMALL_STATE(5342)] = 198694, - [SMALL_STATE(5343)] = 198701, - [SMALL_STATE(5344)] = 198708, - [SMALL_STATE(5345)] = 198715, - [SMALL_STATE(5346)] = 198722, - [SMALL_STATE(5347)] = 198729, - [SMALL_STATE(5348)] = 198736, - [SMALL_STATE(5349)] = 198743, - [SMALL_STATE(5350)] = 198750, - [SMALL_STATE(5351)] = 198757, - [SMALL_STATE(5352)] = 198764, - [SMALL_STATE(5353)] = 198771, - [SMALL_STATE(5354)] = 198778, - [SMALL_STATE(5355)] = 198785, - [SMALL_STATE(5356)] = 198792, - [SMALL_STATE(5357)] = 198799, - [SMALL_STATE(5358)] = 198806, - [SMALL_STATE(5359)] = 198813, - [SMALL_STATE(5360)] = 198820, - [SMALL_STATE(5361)] = 198827, - [SMALL_STATE(5362)] = 198834, - [SMALL_STATE(5363)] = 198841, - [SMALL_STATE(5364)] = 198848, - [SMALL_STATE(5365)] = 198855, - [SMALL_STATE(5366)] = 198862, - [SMALL_STATE(5367)] = 198869, - [SMALL_STATE(5368)] = 198876, - [SMALL_STATE(5369)] = 198883, - [SMALL_STATE(5370)] = 198890, - [SMALL_STATE(5371)] = 198897, - [SMALL_STATE(5372)] = 198904, - [SMALL_STATE(5373)] = 198911, - [SMALL_STATE(5374)] = 198918, - [SMALL_STATE(5375)] = 198925, - [SMALL_STATE(5376)] = 198932, - [SMALL_STATE(5377)] = 198939, - [SMALL_STATE(5378)] = 198946, - [SMALL_STATE(5379)] = 198953, - [SMALL_STATE(5380)] = 198960, - [SMALL_STATE(5381)] = 198967, - [SMALL_STATE(5382)] = 198974, - [SMALL_STATE(5383)] = 198981, - [SMALL_STATE(5384)] = 198988, - [SMALL_STATE(5385)] = 198995, - [SMALL_STATE(5386)] = 199002, - [SMALL_STATE(5387)] = 199009, - [SMALL_STATE(5388)] = 199016, - [SMALL_STATE(5389)] = 199023, - [SMALL_STATE(5390)] = 199030, - [SMALL_STATE(5391)] = 199037, - [SMALL_STATE(5392)] = 199044, - [SMALL_STATE(5393)] = 199051, - [SMALL_STATE(5394)] = 199058, - [SMALL_STATE(5395)] = 199065, - [SMALL_STATE(5396)] = 199072, - [SMALL_STATE(5397)] = 199079, - [SMALL_STATE(5398)] = 199086, - [SMALL_STATE(5399)] = 199093, - [SMALL_STATE(5400)] = 199100, - [SMALL_STATE(5401)] = 199107, - [SMALL_STATE(5402)] = 199114, - [SMALL_STATE(5403)] = 199121, - [SMALL_STATE(5404)] = 199128, - [SMALL_STATE(5405)] = 199135, - [SMALL_STATE(5406)] = 199142, - [SMALL_STATE(5407)] = 199149, - [SMALL_STATE(5408)] = 199156, - [SMALL_STATE(5409)] = 199163, - [SMALL_STATE(5410)] = 199168, - [SMALL_STATE(5411)] = 199175, - [SMALL_STATE(5412)] = 199182, - [SMALL_STATE(5413)] = 199189, - [SMALL_STATE(5414)] = 199196, - [SMALL_STATE(5415)] = 199203, - [SMALL_STATE(5416)] = 199210, - [SMALL_STATE(5417)] = 199217, - [SMALL_STATE(5418)] = 199224, - [SMALL_STATE(5419)] = 199231, - [SMALL_STATE(5420)] = 199238, - [SMALL_STATE(5421)] = 199245, - [SMALL_STATE(5422)] = 199252, - [SMALL_STATE(5423)] = 199259, - [SMALL_STATE(5424)] = 199266, - [SMALL_STATE(5425)] = 199273, - [SMALL_STATE(5426)] = 199280, - [SMALL_STATE(5427)] = 199287, - [SMALL_STATE(5428)] = 199294, - [SMALL_STATE(5429)] = 199301, - [SMALL_STATE(5430)] = 199308, - [SMALL_STATE(5431)] = 199315, - [SMALL_STATE(5432)] = 199322, - [SMALL_STATE(5433)] = 199329, - [SMALL_STATE(5434)] = 199336, - [SMALL_STATE(5435)] = 199343, - [SMALL_STATE(5436)] = 199350, - [SMALL_STATE(5437)] = 199357, - [SMALL_STATE(5438)] = 199364, - [SMALL_STATE(5439)] = 199371, - [SMALL_STATE(5440)] = 199378, - [SMALL_STATE(5441)] = 199385, - [SMALL_STATE(5442)] = 199392, - [SMALL_STATE(5443)] = 199399, - [SMALL_STATE(5444)] = 199403, - [SMALL_STATE(5445)] = 199407, - [SMALL_STATE(5446)] = 199411, - [SMALL_STATE(5447)] = 199415, - [SMALL_STATE(5448)] = 199419, - [SMALL_STATE(5449)] = 199423, - [SMALL_STATE(5450)] = 199427, - [SMALL_STATE(5451)] = 199431, - [SMALL_STATE(5452)] = 199435, - [SMALL_STATE(5453)] = 199439, - [SMALL_STATE(5454)] = 199443, - [SMALL_STATE(5455)] = 199447, - [SMALL_STATE(5456)] = 199451, - [SMALL_STATE(5457)] = 199455, - [SMALL_STATE(5458)] = 199459, - [SMALL_STATE(5459)] = 199463, - [SMALL_STATE(5460)] = 199467, - [SMALL_STATE(5461)] = 199471, - [SMALL_STATE(5462)] = 199475, - [SMALL_STATE(5463)] = 199479, - [SMALL_STATE(5464)] = 199483, - [SMALL_STATE(5465)] = 199487, - [SMALL_STATE(5466)] = 199491, - [SMALL_STATE(5467)] = 199495, - [SMALL_STATE(5468)] = 199499, - [SMALL_STATE(5469)] = 199503, - [SMALL_STATE(5470)] = 199507, - [SMALL_STATE(5471)] = 199511, - [SMALL_STATE(5472)] = 199515, - [SMALL_STATE(5473)] = 199519, - [SMALL_STATE(5474)] = 199523, - [SMALL_STATE(5475)] = 199527, - [SMALL_STATE(5476)] = 199531, - [SMALL_STATE(5477)] = 199535, - [SMALL_STATE(5478)] = 199539, - [SMALL_STATE(5479)] = 199543, - [SMALL_STATE(5480)] = 199547, - [SMALL_STATE(5481)] = 199551, - [SMALL_STATE(5482)] = 199555, - [SMALL_STATE(5483)] = 199559, - [SMALL_STATE(5484)] = 199563, - [SMALL_STATE(5485)] = 199567, - [SMALL_STATE(5486)] = 199571, - [SMALL_STATE(5487)] = 199575, - [SMALL_STATE(5488)] = 199579, - [SMALL_STATE(5489)] = 199583, - [SMALL_STATE(5490)] = 199587, - [SMALL_STATE(5491)] = 199591, - [SMALL_STATE(5492)] = 199595, - [SMALL_STATE(5493)] = 199599, - [SMALL_STATE(5494)] = 199603, - [SMALL_STATE(5495)] = 199607, - [SMALL_STATE(5496)] = 199611, - [SMALL_STATE(5497)] = 199615, - [SMALL_STATE(5498)] = 199619, - [SMALL_STATE(5499)] = 199623, - [SMALL_STATE(5500)] = 199627, - [SMALL_STATE(5501)] = 199631, - [SMALL_STATE(5502)] = 199635, - [SMALL_STATE(5503)] = 199639, - [SMALL_STATE(5504)] = 199643, - [SMALL_STATE(5505)] = 199647, - [SMALL_STATE(5506)] = 199651, - [SMALL_STATE(5507)] = 199655, - [SMALL_STATE(5508)] = 199659, - [SMALL_STATE(5509)] = 199663, - [SMALL_STATE(5510)] = 199667, - [SMALL_STATE(5511)] = 199671, - [SMALL_STATE(5512)] = 199675, - [SMALL_STATE(5513)] = 199679, - [SMALL_STATE(5514)] = 199683, - [SMALL_STATE(5515)] = 199687, - [SMALL_STATE(5516)] = 199691, - [SMALL_STATE(5517)] = 199695, - [SMALL_STATE(5518)] = 199699, - [SMALL_STATE(5519)] = 199703, - [SMALL_STATE(5520)] = 199707, - [SMALL_STATE(5521)] = 199711, - [SMALL_STATE(5522)] = 199715, - [SMALL_STATE(5523)] = 199719, - [SMALL_STATE(5524)] = 199723, - [SMALL_STATE(5525)] = 199727, - [SMALL_STATE(5526)] = 199731, - [SMALL_STATE(5527)] = 199735, - [SMALL_STATE(5528)] = 199739, - [SMALL_STATE(5529)] = 199743, - [SMALL_STATE(5530)] = 199747, - [SMALL_STATE(5531)] = 199751, - [SMALL_STATE(5532)] = 199755, - [SMALL_STATE(5533)] = 199759, - [SMALL_STATE(5534)] = 199763, - [SMALL_STATE(5535)] = 199767, - [SMALL_STATE(5536)] = 199771, - [SMALL_STATE(5537)] = 199775, - [SMALL_STATE(5538)] = 199779, - [SMALL_STATE(5539)] = 199783, - [SMALL_STATE(5540)] = 199787, - [SMALL_STATE(5541)] = 199791, - [SMALL_STATE(5542)] = 199795, - [SMALL_STATE(5543)] = 199799, - [SMALL_STATE(5544)] = 199803, - [SMALL_STATE(5545)] = 199807, - [SMALL_STATE(5546)] = 199811, - [SMALL_STATE(5547)] = 199815, - [SMALL_STATE(5548)] = 199819, - [SMALL_STATE(5549)] = 199823, - [SMALL_STATE(5550)] = 199827, - [SMALL_STATE(5551)] = 199831, - [SMALL_STATE(5552)] = 199835, - [SMALL_STATE(5553)] = 199839, - [SMALL_STATE(5554)] = 199843, - [SMALL_STATE(5555)] = 199847, - [SMALL_STATE(5556)] = 199851, - [SMALL_STATE(5557)] = 199855, - [SMALL_STATE(5558)] = 199859, - [SMALL_STATE(5559)] = 199863, - [SMALL_STATE(5560)] = 199867, - [SMALL_STATE(5561)] = 199871, - [SMALL_STATE(5562)] = 199875, - [SMALL_STATE(5563)] = 199879, - [SMALL_STATE(5564)] = 199883, - [SMALL_STATE(5565)] = 199887, - [SMALL_STATE(5566)] = 199891, - [SMALL_STATE(5567)] = 199895, - [SMALL_STATE(5568)] = 199899, - [SMALL_STATE(5569)] = 199903, - [SMALL_STATE(5570)] = 199907, - [SMALL_STATE(5571)] = 199911, - [SMALL_STATE(5572)] = 199915, - [SMALL_STATE(5573)] = 199919, - [SMALL_STATE(5574)] = 199923, - [SMALL_STATE(5575)] = 199927, - [SMALL_STATE(5576)] = 199931, - [SMALL_STATE(5577)] = 199935, - [SMALL_STATE(5578)] = 199939, - [SMALL_STATE(5579)] = 199943, - [SMALL_STATE(5580)] = 199947, - [SMALL_STATE(5581)] = 199951, - [SMALL_STATE(5582)] = 199955, - [SMALL_STATE(5583)] = 199959, - [SMALL_STATE(5584)] = 199963, - [SMALL_STATE(5585)] = 199967, - [SMALL_STATE(5586)] = 199971, - [SMALL_STATE(5587)] = 199975, - [SMALL_STATE(5588)] = 199979, - [SMALL_STATE(5589)] = 199983, - [SMALL_STATE(5590)] = 199987, - [SMALL_STATE(5591)] = 199991, - [SMALL_STATE(5592)] = 199995, - [SMALL_STATE(5593)] = 199999, - [SMALL_STATE(5594)] = 200003, - [SMALL_STATE(5595)] = 200007, - [SMALL_STATE(5596)] = 200011, - [SMALL_STATE(5597)] = 200015, - [SMALL_STATE(5598)] = 200019, - [SMALL_STATE(5599)] = 200023, - [SMALL_STATE(5600)] = 200027, - [SMALL_STATE(5601)] = 200031, - [SMALL_STATE(5602)] = 200035, - [SMALL_STATE(5603)] = 200039, - [SMALL_STATE(5604)] = 200043, - [SMALL_STATE(5605)] = 200047, - [SMALL_STATE(5606)] = 200051, - [SMALL_STATE(5607)] = 200055, - [SMALL_STATE(5608)] = 200059, - [SMALL_STATE(5609)] = 200063, - [SMALL_STATE(5610)] = 200067, - [SMALL_STATE(5611)] = 200071, - [SMALL_STATE(5612)] = 200075, - [SMALL_STATE(5613)] = 200079, - [SMALL_STATE(5614)] = 200083, - [SMALL_STATE(5615)] = 200087, - [SMALL_STATE(5616)] = 200091, - [SMALL_STATE(5617)] = 200095, - [SMALL_STATE(5618)] = 200099, - [SMALL_STATE(5619)] = 200103, - [SMALL_STATE(5620)] = 200107, - [SMALL_STATE(5621)] = 200111, - [SMALL_STATE(5622)] = 200115, - [SMALL_STATE(5623)] = 200119, - [SMALL_STATE(5624)] = 200123, - [SMALL_STATE(5625)] = 200127, - [SMALL_STATE(5626)] = 200131, - [SMALL_STATE(5627)] = 200135, - [SMALL_STATE(5628)] = 200139, - [SMALL_STATE(5629)] = 200143, - [SMALL_STATE(5630)] = 200147, - [SMALL_STATE(5631)] = 200151, - [SMALL_STATE(5632)] = 200155, - [SMALL_STATE(5633)] = 200159, - [SMALL_STATE(5634)] = 200163, - [SMALL_STATE(5635)] = 200167, - [SMALL_STATE(5636)] = 200171, - [SMALL_STATE(5637)] = 200175, - [SMALL_STATE(5638)] = 200179, - [SMALL_STATE(5639)] = 200183, - [SMALL_STATE(5640)] = 200187, - [SMALL_STATE(5641)] = 200191, - [SMALL_STATE(5642)] = 200195, - [SMALL_STATE(5643)] = 200199, - [SMALL_STATE(5644)] = 200203, - [SMALL_STATE(5645)] = 200207, - [SMALL_STATE(5646)] = 200211, - [SMALL_STATE(5647)] = 200215, - [SMALL_STATE(5648)] = 200219, - [SMALL_STATE(5649)] = 200223, - [SMALL_STATE(5650)] = 200227, - [SMALL_STATE(5651)] = 200231, - [SMALL_STATE(5652)] = 200235, - [SMALL_STATE(5653)] = 200239, - [SMALL_STATE(5654)] = 200243, - [SMALL_STATE(5655)] = 200247, - [SMALL_STATE(5656)] = 200251, - [SMALL_STATE(5657)] = 200255, - [SMALL_STATE(5658)] = 200259, - [SMALL_STATE(5659)] = 200263, - [SMALL_STATE(5660)] = 200267, - [SMALL_STATE(5661)] = 200271, - [SMALL_STATE(5662)] = 200275, - [SMALL_STATE(5663)] = 200279, - [SMALL_STATE(5664)] = 200283, - [SMALL_STATE(5665)] = 200287, - [SMALL_STATE(5666)] = 200291, - [SMALL_STATE(5667)] = 200295, - [SMALL_STATE(5668)] = 200299, - [SMALL_STATE(5669)] = 200303, - [SMALL_STATE(5670)] = 200307, - [SMALL_STATE(5671)] = 200311, - [SMALL_STATE(5672)] = 200315, - [SMALL_STATE(5673)] = 200319, - [SMALL_STATE(5674)] = 200323, - [SMALL_STATE(5675)] = 200327, - [SMALL_STATE(5676)] = 200331, - [SMALL_STATE(5677)] = 200335, - [SMALL_STATE(5678)] = 200339, - [SMALL_STATE(5679)] = 200343, - [SMALL_STATE(5680)] = 200347, - [SMALL_STATE(5681)] = 200351, - [SMALL_STATE(5682)] = 200355, - [SMALL_STATE(5683)] = 200359, - [SMALL_STATE(5684)] = 200363, - [SMALL_STATE(5685)] = 200367, - [SMALL_STATE(5686)] = 200371, - [SMALL_STATE(5687)] = 200375, - [SMALL_STATE(5688)] = 200379, - [SMALL_STATE(5689)] = 200383, - [SMALL_STATE(5690)] = 200387, - [SMALL_STATE(5691)] = 200391, - [SMALL_STATE(5692)] = 200395, - [SMALL_STATE(5693)] = 200399, - [SMALL_STATE(5694)] = 200403, - [SMALL_STATE(5695)] = 200407, - [SMALL_STATE(5696)] = 200411, - [SMALL_STATE(5697)] = 200415, - [SMALL_STATE(5698)] = 200419, - [SMALL_STATE(5699)] = 200423, - [SMALL_STATE(5700)] = 200427, - [SMALL_STATE(5701)] = 200431, - [SMALL_STATE(5702)] = 200435, - [SMALL_STATE(5703)] = 200439, - [SMALL_STATE(5704)] = 200443, - [SMALL_STATE(5705)] = 200447, - [SMALL_STATE(5706)] = 200451, - [SMALL_STATE(5707)] = 200455, - [SMALL_STATE(5708)] = 200459, - [SMALL_STATE(5709)] = 200463, - [SMALL_STATE(5710)] = 200467, - [SMALL_STATE(5711)] = 200471, - [SMALL_STATE(5712)] = 200475, - [SMALL_STATE(5713)] = 200479, - [SMALL_STATE(5714)] = 200483, - [SMALL_STATE(5715)] = 200487, - [SMALL_STATE(5716)] = 200491, - [SMALL_STATE(5717)] = 200495, - [SMALL_STATE(5718)] = 200499, - [SMALL_STATE(5719)] = 200503, - [SMALL_STATE(5720)] = 200507, - [SMALL_STATE(5721)] = 200511, - [SMALL_STATE(5722)] = 200515, - [SMALL_STATE(5723)] = 200519, - [SMALL_STATE(5724)] = 200523, - [SMALL_STATE(5725)] = 200527, - [SMALL_STATE(5726)] = 200531, - [SMALL_STATE(5727)] = 200535, - [SMALL_STATE(5728)] = 200539, - [SMALL_STATE(5729)] = 200543, - [SMALL_STATE(5730)] = 200547, - [SMALL_STATE(5731)] = 200551, - [SMALL_STATE(5732)] = 200555, - [SMALL_STATE(5733)] = 200559, - [SMALL_STATE(5734)] = 200563, - [SMALL_STATE(5735)] = 200567, - [SMALL_STATE(5736)] = 200571, - [SMALL_STATE(5737)] = 200575, - [SMALL_STATE(5738)] = 200579, - [SMALL_STATE(5739)] = 200583, - [SMALL_STATE(5740)] = 200587, - [SMALL_STATE(5741)] = 200591, - [SMALL_STATE(5742)] = 200595, - [SMALL_STATE(5743)] = 200599, - [SMALL_STATE(5744)] = 200603, - [SMALL_STATE(5745)] = 200607, - [SMALL_STATE(5746)] = 200611, - [SMALL_STATE(5747)] = 200615, - [SMALL_STATE(5748)] = 200619, - [SMALL_STATE(5749)] = 200623, - [SMALL_STATE(5750)] = 200627, - [SMALL_STATE(5751)] = 200631, - [SMALL_STATE(5752)] = 200635, - [SMALL_STATE(5753)] = 200639, - [SMALL_STATE(5754)] = 200643, - [SMALL_STATE(5755)] = 200647, - [SMALL_STATE(5756)] = 200651, - [SMALL_STATE(5757)] = 200655, - [SMALL_STATE(5758)] = 200659, - [SMALL_STATE(5759)] = 200663, - [SMALL_STATE(5760)] = 200667, - [SMALL_STATE(5761)] = 200671, - [SMALL_STATE(5762)] = 200675, - [SMALL_STATE(5763)] = 200679, - [SMALL_STATE(5764)] = 200683, - [SMALL_STATE(5765)] = 200687, - [SMALL_STATE(5766)] = 200691, - [SMALL_STATE(5767)] = 200695, - [SMALL_STATE(5768)] = 200699, - [SMALL_STATE(5769)] = 200703, - [SMALL_STATE(5770)] = 200707, - [SMALL_STATE(5771)] = 200711, - [SMALL_STATE(5772)] = 200715, - [SMALL_STATE(5773)] = 200719, - [SMALL_STATE(5774)] = 200723, - [SMALL_STATE(5775)] = 200727, - [SMALL_STATE(5776)] = 200731, - [SMALL_STATE(5777)] = 200735, - [SMALL_STATE(5778)] = 200739, - [SMALL_STATE(5779)] = 200743, - [SMALL_STATE(5780)] = 200747, - [SMALL_STATE(5781)] = 200751, - [SMALL_STATE(5782)] = 200755, - [SMALL_STATE(5783)] = 200759, - [SMALL_STATE(5784)] = 200763, - [SMALL_STATE(5785)] = 200767, - [SMALL_STATE(5786)] = 200771, - [SMALL_STATE(5787)] = 200775, - [SMALL_STATE(5788)] = 200779, - [SMALL_STATE(5789)] = 200783, - [SMALL_STATE(5790)] = 200787, - [SMALL_STATE(5791)] = 200791, - [SMALL_STATE(5792)] = 200795, - [SMALL_STATE(5793)] = 200799, - [SMALL_STATE(5794)] = 200803, - [SMALL_STATE(5795)] = 200807, - [SMALL_STATE(5796)] = 200811, - [SMALL_STATE(5797)] = 200815, - [SMALL_STATE(5798)] = 200819, - [SMALL_STATE(5799)] = 200823, - [SMALL_STATE(5800)] = 200827, - [SMALL_STATE(5801)] = 200831, - [SMALL_STATE(5802)] = 200835, - [SMALL_STATE(5803)] = 200839, - [SMALL_STATE(5804)] = 200843, - [SMALL_STATE(5805)] = 200847, - [SMALL_STATE(5806)] = 200851, - [SMALL_STATE(5807)] = 200855, - [SMALL_STATE(5808)] = 200859, - [SMALL_STATE(5809)] = 200863, - [SMALL_STATE(5810)] = 200867, - [SMALL_STATE(5811)] = 200871, - [SMALL_STATE(5812)] = 200875, - [SMALL_STATE(5813)] = 200879, - [SMALL_STATE(5814)] = 200883, - [SMALL_STATE(5815)] = 200887, - [SMALL_STATE(5816)] = 200891, - [SMALL_STATE(5817)] = 200895, - [SMALL_STATE(5818)] = 200899, - [SMALL_STATE(5819)] = 200903, - [SMALL_STATE(5820)] = 200907, - [SMALL_STATE(5821)] = 200911, - [SMALL_STATE(5822)] = 200915, - [SMALL_STATE(5823)] = 200919, - [SMALL_STATE(5824)] = 200923, - [SMALL_STATE(5825)] = 200927, - [SMALL_STATE(5826)] = 200931, - [SMALL_STATE(5827)] = 200935, - [SMALL_STATE(5828)] = 200939, - [SMALL_STATE(5829)] = 200943, - [SMALL_STATE(5830)] = 200947, - [SMALL_STATE(5831)] = 200951, - [SMALL_STATE(5832)] = 200955, - [SMALL_STATE(5833)] = 200959, - [SMALL_STATE(5834)] = 200963, - [SMALL_STATE(5835)] = 200967, - [SMALL_STATE(5836)] = 200971, - [SMALL_STATE(5837)] = 200975, - [SMALL_STATE(5838)] = 200979, - [SMALL_STATE(5839)] = 200983, - [SMALL_STATE(5840)] = 200987, - [SMALL_STATE(5841)] = 200991, - [SMALL_STATE(5842)] = 200995, - [SMALL_STATE(5843)] = 200999, - [SMALL_STATE(5844)] = 201003, - [SMALL_STATE(5845)] = 201007, - [SMALL_STATE(5846)] = 201011, - [SMALL_STATE(5847)] = 201015, - [SMALL_STATE(5848)] = 201019, - [SMALL_STATE(5849)] = 201023, - [SMALL_STATE(5850)] = 201027, - [SMALL_STATE(5851)] = 201031, - [SMALL_STATE(5852)] = 201035, - [SMALL_STATE(5853)] = 201039, - [SMALL_STATE(5854)] = 201043, - [SMALL_STATE(5855)] = 201047, - [SMALL_STATE(5856)] = 201051, - [SMALL_STATE(5857)] = 201055, - [SMALL_STATE(5858)] = 201059, - [SMALL_STATE(5859)] = 201063, - [SMALL_STATE(5860)] = 201067, - [SMALL_STATE(5861)] = 201071, - [SMALL_STATE(5862)] = 201075, - [SMALL_STATE(5863)] = 201079, - [SMALL_STATE(5864)] = 201083, - [SMALL_STATE(5865)] = 201087, - [SMALL_STATE(5866)] = 201091, - [SMALL_STATE(5867)] = 201095, - [SMALL_STATE(5868)] = 201099, - [SMALL_STATE(5869)] = 201103, - [SMALL_STATE(5870)] = 201107, - [SMALL_STATE(5871)] = 201111, - [SMALL_STATE(5872)] = 201115, - [SMALL_STATE(5873)] = 201119, - [SMALL_STATE(5874)] = 201123, - [SMALL_STATE(5875)] = 201127, - [SMALL_STATE(5876)] = 201131, - [SMALL_STATE(5877)] = 201135, - [SMALL_STATE(5878)] = 201139, - [SMALL_STATE(5879)] = 201143, - [SMALL_STATE(5880)] = 201147, - [SMALL_STATE(5881)] = 201151, - [SMALL_STATE(5882)] = 201155, - [SMALL_STATE(5883)] = 201159, - [SMALL_STATE(5884)] = 201163, - [SMALL_STATE(5885)] = 201167, - [SMALL_STATE(5886)] = 201171, - [SMALL_STATE(5887)] = 201175, - [SMALL_STATE(5888)] = 201179, - [SMALL_STATE(5889)] = 201183, - [SMALL_STATE(5890)] = 201187, - [SMALL_STATE(5891)] = 201191, - [SMALL_STATE(5892)] = 201195, - [SMALL_STATE(5893)] = 201199, - [SMALL_STATE(5894)] = 201203, - [SMALL_STATE(5895)] = 201207, - [SMALL_STATE(5896)] = 201211, - [SMALL_STATE(5897)] = 201215, - [SMALL_STATE(5898)] = 201219, - [SMALL_STATE(5899)] = 201223, - [SMALL_STATE(5900)] = 201227, - [SMALL_STATE(5901)] = 201231, - [SMALL_STATE(5902)] = 201235, - [SMALL_STATE(5903)] = 201239, - [SMALL_STATE(5904)] = 201243, - [SMALL_STATE(5905)] = 201247, - [SMALL_STATE(5906)] = 201251, - [SMALL_STATE(5907)] = 201255, - [SMALL_STATE(5908)] = 201259, - [SMALL_STATE(5909)] = 201263, - [SMALL_STATE(5910)] = 201267, - [SMALL_STATE(5911)] = 201271, - [SMALL_STATE(5912)] = 201275, - [SMALL_STATE(5913)] = 201279, - [SMALL_STATE(5914)] = 201283, - [SMALL_STATE(5915)] = 201287, - [SMALL_STATE(5916)] = 201291, - [SMALL_STATE(5917)] = 201295, - [SMALL_STATE(5918)] = 201299, - [SMALL_STATE(5919)] = 201303, - [SMALL_STATE(5920)] = 201307, - [SMALL_STATE(5921)] = 201311, - [SMALL_STATE(5922)] = 201315, - [SMALL_STATE(5923)] = 201319, - [SMALL_STATE(5924)] = 201323, - [SMALL_STATE(5925)] = 201327, - [SMALL_STATE(5926)] = 201331, - [SMALL_STATE(5927)] = 201335, - [SMALL_STATE(5928)] = 201339, - [SMALL_STATE(5929)] = 201343, - [SMALL_STATE(5930)] = 201347, - [SMALL_STATE(5931)] = 201351, - [SMALL_STATE(5932)] = 201355, - [SMALL_STATE(5933)] = 201359, - [SMALL_STATE(5934)] = 201363, - [SMALL_STATE(5935)] = 201367, - [SMALL_STATE(5936)] = 201371, - [SMALL_STATE(5937)] = 201375, - [SMALL_STATE(5938)] = 201379, - [SMALL_STATE(5939)] = 201383, - [SMALL_STATE(5940)] = 201387, - [SMALL_STATE(5941)] = 201391, - [SMALL_STATE(5942)] = 201395, - [SMALL_STATE(5943)] = 201399, - [SMALL_STATE(5944)] = 201403, - [SMALL_STATE(5945)] = 201407, - [SMALL_STATE(5946)] = 201411, - [SMALL_STATE(5947)] = 201415, - [SMALL_STATE(5948)] = 201419, - [SMALL_STATE(5949)] = 201423, - [SMALL_STATE(5950)] = 201427, - [SMALL_STATE(5951)] = 201431, - [SMALL_STATE(5952)] = 201435, - [SMALL_STATE(5953)] = 201439, - [SMALL_STATE(5954)] = 201443, - [SMALL_STATE(5955)] = 201447, - [SMALL_STATE(5956)] = 201451, - [SMALL_STATE(5957)] = 201455, - [SMALL_STATE(5958)] = 201459, - [SMALL_STATE(5959)] = 201463, - [SMALL_STATE(5960)] = 201467, - [SMALL_STATE(5961)] = 201471, - [SMALL_STATE(5962)] = 201475, - [SMALL_STATE(5963)] = 201479, - [SMALL_STATE(5964)] = 201483, - [SMALL_STATE(5965)] = 201487, - [SMALL_STATE(5966)] = 201491, - [SMALL_STATE(5967)] = 201495, - [SMALL_STATE(5968)] = 201499, - [SMALL_STATE(5969)] = 201503, - [SMALL_STATE(5970)] = 201507, - [SMALL_STATE(5971)] = 201511, - [SMALL_STATE(5972)] = 201515, - [SMALL_STATE(5973)] = 201519, - [SMALL_STATE(5974)] = 201523, - [SMALL_STATE(5975)] = 201527, - [SMALL_STATE(5976)] = 201531, - [SMALL_STATE(5977)] = 201535, - [SMALL_STATE(5978)] = 201539, - [SMALL_STATE(5979)] = 201543, - [SMALL_STATE(5980)] = 201547, - [SMALL_STATE(5981)] = 201551, - [SMALL_STATE(5982)] = 201555, - [SMALL_STATE(5983)] = 201559, - [SMALL_STATE(5984)] = 201563, - [SMALL_STATE(5985)] = 201567, - [SMALL_STATE(5986)] = 201571, - [SMALL_STATE(5987)] = 201575, - [SMALL_STATE(5988)] = 201579, - [SMALL_STATE(5989)] = 201583, - [SMALL_STATE(5990)] = 201587, - [SMALL_STATE(5991)] = 201591, - [SMALL_STATE(5992)] = 201595, - [SMALL_STATE(5993)] = 201599, - [SMALL_STATE(5994)] = 201603, - [SMALL_STATE(5995)] = 201607, - [SMALL_STATE(5996)] = 201611, - [SMALL_STATE(5997)] = 201615, - [SMALL_STATE(5998)] = 201619, - [SMALL_STATE(5999)] = 201623, - [SMALL_STATE(6000)] = 201627, - [SMALL_STATE(6001)] = 201631, - [SMALL_STATE(6002)] = 201635, - [SMALL_STATE(6003)] = 201639, - [SMALL_STATE(6004)] = 201643, - [SMALL_STATE(6005)] = 201647, - [SMALL_STATE(6006)] = 201651, - [SMALL_STATE(6007)] = 201655, - [SMALL_STATE(6008)] = 201659, - [SMALL_STATE(6009)] = 201663, - [SMALL_STATE(6010)] = 201667, - [SMALL_STATE(6011)] = 201671, - [SMALL_STATE(6012)] = 201675, - [SMALL_STATE(6013)] = 201679, - [SMALL_STATE(6014)] = 201683, - [SMALL_STATE(6015)] = 201687, - [SMALL_STATE(6016)] = 201691, - [SMALL_STATE(6017)] = 201695, - [SMALL_STATE(6018)] = 201699, - [SMALL_STATE(6019)] = 201703, - [SMALL_STATE(6020)] = 201707, - [SMALL_STATE(6021)] = 201711, - [SMALL_STATE(6022)] = 201715, - [SMALL_STATE(6023)] = 201719, - [SMALL_STATE(6024)] = 201723, - [SMALL_STATE(6025)] = 201727, - [SMALL_STATE(6026)] = 201731, - [SMALL_STATE(6027)] = 201735, - [SMALL_STATE(6028)] = 201739, - [SMALL_STATE(6029)] = 201743, - [SMALL_STATE(6030)] = 201747, - [SMALL_STATE(6031)] = 201751, - [SMALL_STATE(6032)] = 201755, - [SMALL_STATE(6033)] = 201759, - [SMALL_STATE(6034)] = 201763, - [SMALL_STATE(6035)] = 201767, - [SMALL_STATE(6036)] = 201771, - [SMALL_STATE(6037)] = 201775, - [SMALL_STATE(6038)] = 201779, - [SMALL_STATE(6039)] = 201783, - [SMALL_STATE(6040)] = 201787, - [SMALL_STATE(6041)] = 201791, - [SMALL_STATE(6042)] = 201795, - [SMALL_STATE(6043)] = 201799, - [SMALL_STATE(6044)] = 201803, - [SMALL_STATE(6045)] = 201807, - [SMALL_STATE(6046)] = 201811, - [SMALL_STATE(6047)] = 201815, - [SMALL_STATE(6048)] = 201819, - [SMALL_STATE(6049)] = 201823, - [SMALL_STATE(6050)] = 201827, - [SMALL_STATE(6051)] = 201831, - [SMALL_STATE(6052)] = 201835, - [SMALL_STATE(6053)] = 201839, - [SMALL_STATE(6054)] = 201843, - [SMALL_STATE(6055)] = 201847, - [SMALL_STATE(6056)] = 201851, - [SMALL_STATE(6057)] = 201855, - [SMALL_STATE(6058)] = 201859, - [SMALL_STATE(6059)] = 201863, - [SMALL_STATE(6060)] = 201867, - [SMALL_STATE(6061)] = 201871, - [SMALL_STATE(6062)] = 201875, - [SMALL_STATE(6063)] = 201879, - [SMALL_STATE(6064)] = 201883, - [SMALL_STATE(6065)] = 201887, - [SMALL_STATE(6066)] = 201891, - [SMALL_STATE(6067)] = 201895, - [SMALL_STATE(6068)] = 201899, - [SMALL_STATE(6069)] = 201903, - [SMALL_STATE(6070)] = 201907, - [SMALL_STATE(6071)] = 201911, - [SMALL_STATE(6072)] = 201915, - [SMALL_STATE(6073)] = 201919, - [SMALL_STATE(6074)] = 201923, - [SMALL_STATE(6075)] = 201927, - [SMALL_STATE(6076)] = 201931, - [SMALL_STATE(6077)] = 201935, - [SMALL_STATE(6078)] = 201939, - [SMALL_STATE(6079)] = 201943, - [SMALL_STATE(6080)] = 201947, - [SMALL_STATE(6081)] = 201951, - [SMALL_STATE(6082)] = 201955, - [SMALL_STATE(6083)] = 201959, - [SMALL_STATE(6084)] = 201963, - [SMALL_STATE(6085)] = 201967, - [SMALL_STATE(6086)] = 201971, - [SMALL_STATE(6087)] = 201975, - [SMALL_STATE(6088)] = 201979, - [SMALL_STATE(6089)] = 201983, - [SMALL_STATE(6090)] = 201987, - [SMALL_STATE(6091)] = 201991, - [SMALL_STATE(6092)] = 201995, - [SMALL_STATE(6093)] = 201999, - [SMALL_STATE(6094)] = 202003, - [SMALL_STATE(6095)] = 202007, - [SMALL_STATE(6096)] = 202011, - [SMALL_STATE(6097)] = 202015, - [SMALL_STATE(6098)] = 202019, - [SMALL_STATE(6099)] = 202023, - [SMALL_STATE(6100)] = 202027, - [SMALL_STATE(6101)] = 202031, - [SMALL_STATE(6102)] = 202035, - [SMALL_STATE(6103)] = 202039, - [SMALL_STATE(6104)] = 202043, - [SMALL_STATE(6105)] = 202047, - [SMALL_STATE(6106)] = 202051, - [SMALL_STATE(6107)] = 202055, - [SMALL_STATE(6108)] = 202059, - [SMALL_STATE(6109)] = 202063, - [SMALL_STATE(6110)] = 202067, - [SMALL_STATE(6111)] = 202071, - [SMALL_STATE(6112)] = 202075, - [SMALL_STATE(6113)] = 202079, - [SMALL_STATE(6114)] = 202083, - [SMALL_STATE(6115)] = 202087, - [SMALL_STATE(6116)] = 202091, - [SMALL_STATE(6117)] = 202095, - [SMALL_STATE(6118)] = 202099, - [SMALL_STATE(6119)] = 202103, - [SMALL_STATE(6120)] = 202107, - [SMALL_STATE(6121)] = 202111, - [SMALL_STATE(6122)] = 202115, - [SMALL_STATE(6123)] = 202119, - [SMALL_STATE(6124)] = 202123, - [SMALL_STATE(6125)] = 202127, - [SMALL_STATE(6126)] = 202131, - [SMALL_STATE(6127)] = 202135, - [SMALL_STATE(6128)] = 202139, - [SMALL_STATE(6129)] = 202143, - [SMALL_STATE(6130)] = 202147, - [SMALL_STATE(6131)] = 202151, - [SMALL_STATE(6132)] = 202155, - [SMALL_STATE(6133)] = 202159, - [SMALL_STATE(6134)] = 202163, - [SMALL_STATE(6135)] = 202167, - [SMALL_STATE(6136)] = 202171, - [SMALL_STATE(6137)] = 202175, - [SMALL_STATE(6138)] = 202179, - [SMALL_STATE(6139)] = 202183, - [SMALL_STATE(6140)] = 202187, - [SMALL_STATE(6141)] = 202191, - [SMALL_STATE(6142)] = 202195, - [SMALL_STATE(6143)] = 202199, - [SMALL_STATE(6144)] = 202203, - [SMALL_STATE(6145)] = 202207, - [SMALL_STATE(6146)] = 202211, - [SMALL_STATE(6147)] = 202215, - [SMALL_STATE(6148)] = 202219, - [SMALL_STATE(6149)] = 202223, - [SMALL_STATE(6150)] = 202227, - [SMALL_STATE(6151)] = 202231, - [SMALL_STATE(6152)] = 202235, - [SMALL_STATE(6153)] = 202239, - [SMALL_STATE(6154)] = 202243, - [SMALL_STATE(6155)] = 202247, - [SMALL_STATE(6156)] = 202251, - [SMALL_STATE(6157)] = 202255, - [SMALL_STATE(6158)] = 202259, - [SMALL_STATE(6159)] = 202263, - [SMALL_STATE(6160)] = 202267, - [SMALL_STATE(6161)] = 202271, - [SMALL_STATE(6162)] = 202275, - [SMALL_STATE(6163)] = 202279, - [SMALL_STATE(6164)] = 202283, - [SMALL_STATE(6165)] = 202287, - [SMALL_STATE(6166)] = 202291, - [SMALL_STATE(6167)] = 202295, - [SMALL_STATE(6168)] = 202299, - [SMALL_STATE(6169)] = 202303, - [SMALL_STATE(6170)] = 202307, - [SMALL_STATE(6171)] = 202311, - [SMALL_STATE(6172)] = 202315, - [SMALL_STATE(6173)] = 202319, - [SMALL_STATE(6174)] = 202323, - [SMALL_STATE(6175)] = 202327, - [SMALL_STATE(6176)] = 202331, - [SMALL_STATE(6177)] = 202335, - [SMALL_STATE(6178)] = 202339, - [SMALL_STATE(6179)] = 202343, - [SMALL_STATE(6180)] = 202347, - [SMALL_STATE(6181)] = 202351, - [SMALL_STATE(6182)] = 202355, - [SMALL_STATE(6183)] = 202359, - [SMALL_STATE(6184)] = 202363, - [SMALL_STATE(6185)] = 202367, - [SMALL_STATE(6186)] = 202371, - [SMALL_STATE(6187)] = 202375, - [SMALL_STATE(6188)] = 202379, - [SMALL_STATE(6189)] = 202383, - [SMALL_STATE(6190)] = 202387, - [SMALL_STATE(6191)] = 202391, - [SMALL_STATE(6192)] = 202395, - [SMALL_STATE(6193)] = 202399, - [SMALL_STATE(6194)] = 202403, - [SMALL_STATE(6195)] = 202407, - [SMALL_STATE(6196)] = 202411, - [SMALL_STATE(6197)] = 202415, - [SMALL_STATE(6198)] = 202419, - [SMALL_STATE(6199)] = 202423, - [SMALL_STATE(6200)] = 202427, - [SMALL_STATE(6201)] = 202431, - [SMALL_STATE(6202)] = 202435, - [SMALL_STATE(6203)] = 202439, - [SMALL_STATE(6204)] = 202443, - [SMALL_STATE(6205)] = 202447, - [SMALL_STATE(6206)] = 202451, - [SMALL_STATE(6207)] = 202455, - [SMALL_STATE(6208)] = 202459, - [SMALL_STATE(6209)] = 202463, - [SMALL_STATE(6210)] = 202467, - [SMALL_STATE(6211)] = 202471, - [SMALL_STATE(6212)] = 202475, - [SMALL_STATE(6213)] = 202479, - [SMALL_STATE(6214)] = 202483, - [SMALL_STATE(6215)] = 202487, - [SMALL_STATE(6216)] = 202491, - [SMALL_STATE(6217)] = 202495, - [SMALL_STATE(6218)] = 202499, - [SMALL_STATE(6219)] = 202503, - [SMALL_STATE(6220)] = 202507, - [SMALL_STATE(6221)] = 202511, - [SMALL_STATE(6222)] = 202515, - [SMALL_STATE(6223)] = 202519, - [SMALL_STATE(6224)] = 202523, - [SMALL_STATE(6225)] = 202527, - [SMALL_STATE(6226)] = 202531, - [SMALL_STATE(6227)] = 202535, - [SMALL_STATE(6228)] = 202539, - [SMALL_STATE(6229)] = 202543, - [SMALL_STATE(6230)] = 202547, - [SMALL_STATE(6231)] = 202551, - [SMALL_STATE(6232)] = 202555, - [SMALL_STATE(6233)] = 202559, - [SMALL_STATE(6234)] = 202563, - [SMALL_STATE(6235)] = 202567, - [SMALL_STATE(6236)] = 202571, - [SMALL_STATE(6237)] = 202575, - [SMALL_STATE(6238)] = 202579, - [SMALL_STATE(6239)] = 202583, - [SMALL_STATE(6240)] = 202587, - [SMALL_STATE(6241)] = 202591, - [SMALL_STATE(6242)] = 202595, - [SMALL_STATE(6243)] = 202599, - [SMALL_STATE(6244)] = 202603, - [SMALL_STATE(6245)] = 202607, - [SMALL_STATE(6246)] = 202611, - [SMALL_STATE(6247)] = 202615, - [SMALL_STATE(6248)] = 202619, - [SMALL_STATE(6249)] = 202623, - [SMALL_STATE(6250)] = 202627, - [SMALL_STATE(6251)] = 202631, - [SMALL_STATE(6252)] = 202635, - [SMALL_STATE(6253)] = 202639, - [SMALL_STATE(6254)] = 202643, - [SMALL_STATE(6255)] = 202647, - [SMALL_STATE(6256)] = 202651, - [SMALL_STATE(6257)] = 202655, - [SMALL_STATE(6258)] = 202659, - [SMALL_STATE(6259)] = 202663, - [SMALL_STATE(6260)] = 202667, - [SMALL_STATE(6261)] = 202671, - [SMALL_STATE(6262)] = 202675, - [SMALL_STATE(6263)] = 202679, - [SMALL_STATE(6264)] = 202683, - [SMALL_STATE(6265)] = 202687, - [SMALL_STATE(6266)] = 202691, - [SMALL_STATE(6267)] = 202695, - [SMALL_STATE(6268)] = 202699, - [SMALL_STATE(6269)] = 202703, - [SMALL_STATE(6270)] = 202707, - [SMALL_STATE(6271)] = 202711, - [SMALL_STATE(6272)] = 202715, - [SMALL_STATE(6273)] = 202719, - [SMALL_STATE(6274)] = 202723, - [SMALL_STATE(6275)] = 202727, - [SMALL_STATE(6276)] = 202731, - [SMALL_STATE(6277)] = 202735, - [SMALL_STATE(6278)] = 202739, - [SMALL_STATE(6279)] = 202743, - [SMALL_STATE(6280)] = 202747, - [SMALL_STATE(6281)] = 202751, - [SMALL_STATE(6282)] = 202755, - [SMALL_STATE(6283)] = 202759, - [SMALL_STATE(6284)] = 202763, - [SMALL_STATE(6285)] = 202767, - [SMALL_STATE(6286)] = 202771, - [SMALL_STATE(6287)] = 202775, - [SMALL_STATE(6288)] = 202779, - [SMALL_STATE(6289)] = 202783, - [SMALL_STATE(6290)] = 202787, - [SMALL_STATE(6291)] = 202791, - [SMALL_STATE(6292)] = 202795, - [SMALL_STATE(6293)] = 202799, - [SMALL_STATE(6294)] = 202803, - [SMALL_STATE(6295)] = 202807, - [SMALL_STATE(6296)] = 202811, - [SMALL_STATE(6297)] = 202815, - [SMALL_STATE(6298)] = 202819, - [SMALL_STATE(6299)] = 202823, - [SMALL_STATE(6300)] = 202827, - [SMALL_STATE(6301)] = 202831, - [SMALL_STATE(6302)] = 202835, - [SMALL_STATE(6303)] = 202839, - [SMALL_STATE(6304)] = 202843, - [SMALL_STATE(6305)] = 202847, - [SMALL_STATE(6306)] = 202851, - [SMALL_STATE(6307)] = 202855, - [SMALL_STATE(6308)] = 202859, - [SMALL_STATE(6309)] = 202863, - [SMALL_STATE(6310)] = 202867, - [SMALL_STATE(6311)] = 202871, - [SMALL_STATE(6312)] = 202875, - [SMALL_STATE(6313)] = 202879, - [SMALL_STATE(6314)] = 202883, - [SMALL_STATE(6315)] = 202887, - [SMALL_STATE(6316)] = 202891, - [SMALL_STATE(6317)] = 202895, - [SMALL_STATE(6318)] = 202899, - [SMALL_STATE(6319)] = 202903, - [SMALL_STATE(6320)] = 202907, - [SMALL_STATE(6321)] = 202911, - [SMALL_STATE(6322)] = 202915, - [SMALL_STATE(6323)] = 202919, - [SMALL_STATE(6324)] = 202923, - [SMALL_STATE(6325)] = 202927, - [SMALL_STATE(6326)] = 202931, - [SMALL_STATE(6327)] = 202935, - [SMALL_STATE(6328)] = 202939, - [SMALL_STATE(6329)] = 202943, - [SMALL_STATE(6330)] = 202947, - [SMALL_STATE(6331)] = 202951, - [SMALL_STATE(6332)] = 202955, - [SMALL_STATE(6333)] = 202959, - [SMALL_STATE(6334)] = 202963, - [SMALL_STATE(6335)] = 202967, - [SMALL_STATE(6336)] = 202971, - [SMALL_STATE(6337)] = 202975, - [SMALL_STATE(6338)] = 202979, - [SMALL_STATE(6339)] = 202983, - [SMALL_STATE(6340)] = 202987, - [SMALL_STATE(6341)] = 202991, - [SMALL_STATE(6342)] = 202995, - [SMALL_STATE(6343)] = 202999, - [SMALL_STATE(6344)] = 203003, - [SMALL_STATE(6345)] = 203007, - [SMALL_STATE(6346)] = 203011, - [SMALL_STATE(6347)] = 203015, - [SMALL_STATE(6348)] = 203019, - [SMALL_STATE(6349)] = 203023, - [SMALL_STATE(6350)] = 203027, - [SMALL_STATE(6351)] = 203031, - [SMALL_STATE(6352)] = 203035, - [SMALL_STATE(6353)] = 203039, - [SMALL_STATE(6354)] = 203043, - [SMALL_STATE(6355)] = 203047, - [SMALL_STATE(6356)] = 203051, - [SMALL_STATE(6357)] = 203055, - [SMALL_STATE(6358)] = 203059, - [SMALL_STATE(6359)] = 203063, - [SMALL_STATE(6360)] = 203067, - [SMALL_STATE(6361)] = 203071, - [SMALL_STATE(6362)] = 203075, - [SMALL_STATE(6363)] = 203079, - [SMALL_STATE(6364)] = 203083, - [SMALL_STATE(6365)] = 203087, - [SMALL_STATE(6366)] = 203091, - [SMALL_STATE(6367)] = 203095, - [SMALL_STATE(6368)] = 203099, - [SMALL_STATE(6369)] = 203103, - [SMALL_STATE(6370)] = 203107, - [SMALL_STATE(6371)] = 203111, - [SMALL_STATE(6372)] = 203115, - [SMALL_STATE(6373)] = 203119, - [SMALL_STATE(6374)] = 203123, - [SMALL_STATE(6375)] = 203127, - [SMALL_STATE(6376)] = 203131, - [SMALL_STATE(6377)] = 203135, - [SMALL_STATE(6378)] = 203139, - [SMALL_STATE(6379)] = 203143, - [SMALL_STATE(6380)] = 203147, - [SMALL_STATE(6381)] = 203151, - [SMALL_STATE(6382)] = 203155, - [SMALL_STATE(6383)] = 203159, - [SMALL_STATE(6384)] = 203163, - [SMALL_STATE(6385)] = 203167, - [SMALL_STATE(6386)] = 203171, - [SMALL_STATE(6387)] = 203175, - [SMALL_STATE(6388)] = 203179, - [SMALL_STATE(6389)] = 203183, - [SMALL_STATE(6390)] = 203187, - [SMALL_STATE(6391)] = 203191, - [SMALL_STATE(6392)] = 203195, - [SMALL_STATE(6393)] = 203199, - [SMALL_STATE(6394)] = 203203, - [SMALL_STATE(6395)] = 203207, - [SMALL_STATE(6396)] = 203211, - [SMALL_STATE(6397)] = 203215, - [SMALL_STATE(6398)] = 203219, - [SMALL_STATE(6399)] = 203223, - [SMALL_STATE(6400)] = 203227, - [SMALL_STATE(6401)] = 203231, - [SMALL_STATE(6402)] = 203235, - [SMALL_STATE(6403)] = 203239, - [SMALL_STATE(6404)] = 203243, - [SMALL_STATE(6405)] = 203247, - [SMALL_STATE(6406)] = 203251, - [SMALL_STATE(6407)] = 203255, - [SMALL_STATE(6408)] = 203259, - [SMALL_STATE(6409)] = 203263, - [SMALL_STATE(6410)] = 203267, - [SMALL_STATE(6411)] = 203271, - [SMALL_STATE(6412)] = 203275, - [SMALL_STATE(6413)] = 203279, - [SMALL_STATE(6414)] = 203283, - [SMALL_STATE(6415)] = 203287, - [SMALL_STATE(6416)] = 203291, - [SMALL_STATE(6417)] = 203295, - [SMALL_STATE(6418)] = 203299, - [SMALL_STATE(6419)] = 203303, - [SMALL_STATE(6420)] = 203307, - [SMALL_STATE(6421)] = 203311, - [SMALL_STATE(6422)] = 203315, - [SMALL_STATE(6423)] = 203319, - [SMALL_STATE(6424)] = 203323, - [SMALL_STATE(6425)] = 203327, - [SMALL_STATE(6426)] = 203331, - [SMALL_STATE(6427)] = 203335, - [SMALL_STATE(6428)] = 203339, - [SMALL_STATE(6429)] = 203343, - [SMALL_STATE(6430)] = 203347, - [SMALL_STATE(6431)] = 203351, - [SMALL_STATE(6432)] = 203355, - [SMALL_STATE(6433)] = 203359, - [SMALL_STATE(6434)] = 203363, - [SMALL_STATE(6435)] = 203367, - [SMALL_STATE(6436)] = 203371, - [SMALL_STATE(6437)] = 203375, - [SMALL_STATE(6438)] = 203379, - [SMALL_STATE(6439)] = 203383, - [SMALL_STATE(6440)] = 203387, - [SMALL_STATE(6441)] = 203391, - [SMALL_STATE(6442)] = 203395, - [SMALL_STATE(6443)] = 203399, - [SMALL_STATE(6444)] = 203403, - [SMALL_STATE(6445)] = 203407, - [SMALL_STATE(6446)] = 203411, - [SMALL_STATE(6447)] = 203415, - [SMALL_STATE(6448)] = 203419, - [SMALL_STATE(6449)] = 203423, - [SMALL_STATE(6450)] = 203427, - [SMALL_STATE(6451)] = 203431, - [SMALL_STATE(6452)] = 203435, - [SMALL_STATE(6453)] = 203439, - [SMALL_STATE(6454)] = 203443, - [SMALL_STATE(6455)] = 203447, - [SMALL_STATE(6456)] = 203451, - [SMALL_STATE(6457)] = 203455, - [SMALL_STATE(6458)] = 203459, - [SMALL_STATE(6459)] = 203463, - [SMALL_STATE(6460)] = 203467, - [SMALL_STATE(6461)] = 203471, - [SMALL_STATE(6462)] = 203475, - [SMALL_STATE(6463)] = 203479, - [SMALL_STATE(6464)] = 203483, - [SMALL_STATE(6465)] = 203487, - [SMALL_STATE(6466)] = 203491, - [SMALL_STATE(6467)] = 203495, - [SMALL_STATE(6468)] = 203499, - [SMALL_STATE(6469)] = 203503, - [SMALL_STATE(6470)] = 203507, - [SMALL_STATE(6471)] = 203511, - [SMALL_STATE(6472)] = 203515, - [SMALL_STATE(6473)] = 203519, - [SMALL_STATE(6474)] = 203523, - [SMALL_STATE(6475)] = 203527, - [SMALL_STATE(6476)] = 203531, - [SMALL_STATE(6477)] = 203535, - [SMALL_STATE(6478)] = 203539, - [SMALL_STATE(6479)] = 203543, - [SMALL_STATE(6480)] = 203547, - [SMALL_STATE(6481)] = 203551, - [SMALL_STATE(6482)] = 203555, - [SMALL_STATE(6483)] = 203559, - [SMALL_STATE(6484)] = 203563, - [SMALL_STATE(6485)] = 203567, - [SMALL_STATE(6486)] = 203571, - [SMALL_STATE(6487)] = 203575, - [SMALL_STATE(6488)] = 203579, - [SMALL_STATE(6489)] = 203583, - [SMALL_STATE(6490)] = 203587, - [SMALL_STATE(6491)] = 203591, - [SMALL_STATE(6492)] = 203595, - [SMALL_STATE(6493)] = 203599, - [SMALL_STATE(6494)] = 203603, - [SMALL_STATE(6495)] = 203607, - [SMALL_STATE(6496)] = 203611, - [SMALL_STATE(6497)] = 203615, - [SMALL_STATE(6498)] = 203619, - [SMALL_STATE(6499)] = 203623, - [SMALL_STATE(6500)] = 203627, - [SMALL_STATE(6501)] = 203631, - [SMALL_STATE(6502)] = 203635, - [SMALL_STATE(6503)] = 203639, - [SMALL_STATE(6504)] = 203643, - [SMALL_STATE(6505)] = 203647, - [SMALL_STATE(6506)] = 203651, - [SMALL_STATE(6507)] = 203655, - [SMALL_STATE(6508)] = 203659, - [SMALL_STATE(6509)] = 203663, - [SMALL_STATE(6510)] = 203667, - [SMALL_STATE(6511)] = 203671, - [SMALL_STATE(6512)] = 203675, - [SMALL_STATE(6513)] = 203679, - [SMALL_STATE(6514)] = 203683, - [SMALL_STATE(6515)] = 203687, - [SMALL_STATE(6516)] = 203691, - [SMALL_STATE(6517)] = 203695, - [SMALL_STATE(6518)] = 203699, - [SMALL_STATE(6519)] = 203703, - [SMALL_STATE(6520)] = 203707, - [SMALL_STATE(6521)] = 203711, - [SMALL_STATE(6522)] = 203715, - [SMALL_STATE(6523)] = 203719, - [SMALL_STATE(6524)] = 203723, - [SMALL_STATE(6525)] = 203727, - [SMALL_STATE(6526)] = 203731, - [SMALL_STATE(6527)] = 203735, - [SMALL_STATE(6528)] = 203739, - [SMALL_STATE(6529)] = 203743, - [SMALL_STATE(6530)] = 203747, - [SMALL_STATE(6531)] = 203751, - [SMALL_STATE(6532)] = 203755, - [SMALL_STATE(6533)] = 203759, - [SMALL_STATE(6534)] = 203763, - [SMALL_STATE(6535)] = 203767, - [SMALL_STATE(6536)] = 203771, - [SMALL_STATE(6537)] = 203775, - [SMALL_STATE(6538)] = 203779, - [SMALL_STATE(6539)] = 203783, - [SMALL_STATE(6540)] = 203787, - [SMALL_STATE(6541)] = 203791, - [SMALL_STATE(6542)] = 203795, - [SMALL_STATE(6543)] = 203799, - [SMALL_STATE(6544)] = 203803, - [SMALL_STATE(6545)] = 203807, - [SMALL_STATE(6546)] = 203811, - [SMALL_STATE(6547)] = 203815, - [SMALL_STATE(6548)] = 203819, - [SMALL_STATE(6549)] = 203823, - [SMALL_STATE(6550)] = 203827, - [SMALL_STATE(6551)] = 203831, - [SMALL_STATE(6552)] = 203835, - [SMALL_STATE(6553)] = 203839, - [SMALL_STATE(6554)] = 203843, - [SMALL_STATE(6555)] = 203847, - [SMALL_STATE(6556)] = 203851, - [SMALL_STATE(6557)] = 203855, - [SMALL_STATE(6558)] = 203859, - [SMALL_STATE(6559)] = 203863, - [SMALL_STATE(6560)] = 203867, - [SMALL_STATE(6561)] = 203871, - [SMALL_STATE(6562)] = 203875, - [SMALL_STATE(6563)] = 203879, - [SMALL_STATE(6564)] = 203883, - [SMALL_STATE(6565)] = 203887, - [SMALL_STATE(6566)] = 203891, - [SMALL_STATE(6567)] = 203895, - [SMALL_STATE(6568)] = 203899, - [SMALL_STATE(6569)] = 203903, - [SMALL_STATE(6570)] = 203907, - [SMALL_STATE(6571)] = 203911, - [SMALL_STATE(6572)] = 203915, - [SMALL_STATE(6573)] = 203919, - [SMALL_STATE(6574)] = 203923, - [SMALL_STATE(6575)] = 203927, - [SMALL_STATE(6576)] = 203931, - [SMALL_STATE(6577)] = 203935, - [SMALL_STATE(6578)] = 203939, - [SMALL_STATE(6579)] = 203943, - [SMALL_STATE(6580)] = 203947, - [SMALL_STATE(6581)] = 203951, - [SMALL_STATE(6582)] = 203955, - [SMALL_STATE(6583)] = 203959, - [SMALL_STATE(6584)] = 203963, - [SMALL_STATE(6585)] = 203967, - [SMALL_STATE(6586)] = 203971, - [SMALL_STATE(6587)] = 203975, - [SMALL_STATE(6588)] = 203979, - [SMALL_STATE(6589)] = 203983, - [SMALL_STATE(6590)] = 203987, - [SMALL_STATE(6591)] = 203991, - [SMALL_STATE(6592)] = 203995, - [SMALL_STATE(6593)] = 203999, - [SMALL_STATE(6594)] = 204003, - [SMALL_STATE(6595)] = 204007, - [SMALL_STATE(6596)] = 204011, - [SMALL_STATE(6597)] = 204015, - [SMALL_STATE(6598)] = 204019, - [SMALL_STATE(6599)] = 204023, - [SMALL_STATE(6600)] = 204027, - [SMALL_STATE(6601)] = 204031, - [SMALL_STATE(6602)] = 204035, - [SMALL_STATE(6603)] = 204039, - [SMALL_STATE(6604)] = 204043, - [SMALL_STATE(6605)] = 204047, - [SMALL_STATE(6606)] = 204051, - [SMALL_STATE(6607)] = 204055, - [SMALL_STATE(6608)] = 204059, - [SMALL_STATE(6609)] = 204063, - [SMALL_STATE(6610)] = 204067, - [SMALL_STATE(6611)] = 204071, - [SMALL_STATE(6612)] = 204075, - [SMALL_STATE(6613)] = 204079, - [SMALL_STATE(6614)] = 204083, - [SMALL_STATE(6615)] = 204087, - [SMALL_STATE(6616)] = 204091, - [SMALL_STATE(6617)] = 204095, - [SMALL_STATE(6618)] = 204099, - [SMALL_STATE(6619)] = 204103, - [SMALL_STATE(6620)] = 204107, - [SMALL_STATE(6621)] = 204111, - [SMALL_STATE(6622)] = 204115, - [SMALL_STATE(6623)] = 204119, - [SMALL_STATE(6624)] = 204123, - [SMALL_STATE(6625)] = 204127, - [SMALL_STATE(6626)] = 204131, - [SMALL_STATE(6627)] = 204135, - [SMALL_STATE(6628)] = 204139, - [SMALL_STATE(6629)] = 204143, - [SMALL_STATE(6630)] = 204147, - [SMALL_STATE(6631)] = 204151, - [SMALL_STATE(6632)] = 204155, - [SMALL_STATE(6633)] = 204159, - [SMALL_STATE(6634)] = 204163, - [SMALL_STATE(6635)] = 204167, - [SMALL_STATE(6636)] = 204171, - [SMALL_STATE(6637)] = 204175, - [SMALL_STATE(6638)] = 204179, - [SMALL_STATE(6639)] = 204183, - [SMALL_STATE(6640)] = 204187, - [SMALL_STATE(6641)] = 204191, - [SMALL_STATE(6642)] = 204195, - [SMALL_STATE(6643)] = 204199, - [SMALL_STATE(6644)] = 204203, - [SMALL_STATE(6645)] = 204207, - [SMALL_STATE(6646)] = 204211, - [SMALL_STATE(6647)] = 204215, - [SMALL_STATE(6648)] = 204219, - [SMALL_STATE(6649)] = 204223, - [SMALL_STATE(6650)] = 204227, - [SMALL_STATE(6651)] = 204231, - [SMALL_STATE(6652)] = 204235, - [SMALL_STATE(6653)] = 204239, - [SMALL_STATE(6654)] = 204243, - [SMALL_STATE(6655)] = 204247, - [SMALL_STATE(6656)] = 204251, - [SMALL_STATE(6657)] = 204255, - [SMALL_STATE(6658)] = 204259, - [SMALL_STATE(6659)] = 204263, - [SMALL_STATE(6660)] = 204267, - [SMALL_STATE(6661)] = 204271, - [SMALL_STATE(6662)] = 204275, - [SMALL_STATE(6663)] = 204279, - [SMALL_STATE(6664)] = 204283, - [SMALL_STATE(6665)] = 204287, - [SMALL_STATE(6666)] = 204291, - [SMALL_STATE(6667)] = 204295, - [SMALL_STATE(6668)] = 204299, - [SMALL_STATE(6669)] = 204303, - [SMALL_STATE(6670)] = 204307, - [SMALL_STATE(6671)] = 204311, - [SMALL_STATE(6672)] = 204315, - [SMALL_STATE(6673)] = 204319, - [SMALL_STATE(6674)] = 204323, - [SMALL_STATE(6675)] = 204327, - [SMALL_STATE(6676)] = 204331, - [SMALL_STATE(6677)] = 204335, - [SMALL_STATE(6678)] = 204339, - [SMALL_STATE(6679)] = 204343, - [SMALL_STATE(6680)] = 204347, - [SMALL_STATE(6681)] = 204351, - [SMALL_STATE(6682)] = 204355, - [SMALL_STATE(6683)] = 204359, - [SMALL_STATE(6684)] = 204363, - [SMALL_STATE(6685)] = 204367, - [SMALL_STATE(6686)] = 204371, - [SMALL_STATE(6687)] = 204375, - [SMALL_STATE(6688)] = 204379, - [SMALL_STATE(6689)] = 204383, - [SMALL_STATE(6690)] = 204387, - [SMALL_STATE(6691)] = 204391, - [SMALL_STATE(6692)] = 204395, - [SMALL_STATE(6693)] = 204399, - [SMALL_STATE(6694)] = 204403, - [SMALL_STATE(6695)] = 204407, - [SMALL_STATE(6696)] = 204411, - [SMALL_STATE(6697)] = 204415, - [SMALL_STATE(6698)] = 204419, - [SMALL_STATE(6699)] = 204423, - [SMALL_STATE(6700)] = 204427, - [SMALL_STATE(6701)] = 204431, - [SMALL_STATE(6702)] = 204435, - [SMALL_STATE(6703)] = 204439, - [SMALL_STATE(6704)] = 204443, - [SMALL_STATE(6705)] = 204447, - [SMALL_STATE(6706)] = 204451, - [SMALL_STATE(6707)] = 204455, - [SMALL_STATE(6708)] = 204459, - [SMALL_STATE(6709)] = 204463, - [SMALL_STATE(6710)] = 204467, - [SMALL_STATE(6711)] = 204471, - [SMALL_STATE(6712)] = 204475, - [SMALL_STATE(6713)] = 204479, - [SMALL_STATE(6714)] = 204483, - [SMALL_STATE(6715)] = 204487, - [SMALL_STATE(6716)] = 204491, - [SMALL_STATE(6717)] = 204495, - [SMALL_STATE(6718)] = 204499, - [SMALL_STATE(6719)] = 204503, - [SMALL_STATE(6720)] = 204507, - [SMALL_STATE(6721)] = 204511, - [SMALL_STATE(6722)] = 204515, - [SMALL_STATE(6723)] = 204519, - [SMALL_STATE(6724)] = 204523, - [SMALL_STATE(6725)] = 204527, - [SMALL_STATE(6726)] = 204531, - [SMALL_STATE(6727)] = 204535, - [SMALL_STATE(6728)] = 204539, - [SMALL_STATE(6729)] = 204543, - [SMALL_STATE(6730)] = 204547, - [SMALL_STATE(6731)] = 204551, - [SMALL_STATE(6732)] = 204555, - [SMALL_STATE(6733)] = 204559, - [SMALL_STATE(6734)] = 204563, - [SMALL_STATE(6735)] = 204567, - [SMALL_STATE(6736)] = 204571, - [SMALL_STATE(6737)] = 204575, - [SMALL_STATE(6738)] = 204579, - [SMALL_STATE(6739)] = 204583, + [SMALL_STATE(659)] = 70, + [SMALL_STATE(660)] = 140, + [SMALL_STATE(661)] = 210, + [SMALL_STATE(662)] = 280, + [SMALL_STATE(663)] = 350, + [SMALL_STATE(664)] = 420, + [SMALL_STATE(665)] = 490, + [SMALL_STATE(666)] = 560, + [SMALL_STATE(667)] = 630, + [SMALL_STATE(668)] = 700, + [SMALL_STATE(669)] = 770, + [SMALL_STATE(670)] = 840, + [SMALL_STATE(671)] = 910, + [SMALL_STATE(672)] = 980, + [SMALL_STATE(673)] = 1049, + [SMALL_STATE(674)] = 1116, + [SMALL_STATE(675)] = 1183, + [SMALL_STATE(676)] = 1250, + [SMALL_STATE(677)] = 1319, + [SMALL_STATE(678)] = 1386, + [SMALL_STATE(679)] = 1455, + [SMALL_STATE(680)] = 1522, + [SMALL_STATE(681)] = 1591, + [SMALL_STATE(682)] = 1658, + [SMALL_STATE(683)] = 1727, + [SMALL_STATE(684)] = 1796, + [SMALL_STATE(685)] = 1863, + [SMALL_STATE(686)] = 1932, + [SMALL_STATE(687)] = 1999, + [SMALL_STATE(688)] = 2068, + [SMALL_STATE(689)] = 2137, + [SMALL_STATE(690)] = 2204, + [SMALL_STATE(691)] = 2271, + [SMALL_STATE(692)] = 2340, + [SMALL_STATE(693)] = 2407, + [SMALL_STATE(694)] = 2476, + [SMALL_STATE(695)] = 2543, + [SMALL_STATE(696)] = 2612, + [SMALL_STATE(697)] = 2679, + [SMALL_STATE(698)] = 2746, + [SMALL_STATE(699)] = 2815, + [SMALL_STATE(700)] = 2884, + [SMALL_STATE(701)] = 2951, + [SMALL_STATE(702)] = 3018, + [SMALL_STATE(703)] = 3087, + [SMALL_STATE(704)] = 3156, + [SMALL_STATE(705)] = 3223, + [SMALL_STATE(706)] = 3292, + [SMALL_STATE(707)] = 3361, + [SMALL_STATE(708)] = 3428, + [SMALL_STATE(709)] = 3497, + [SMALL_STATE(710)] = 3564, + [SMALL_STATE(711)] = 3633, + [SMALL_STATE(712)] = 3702, + [SMALL_STATE(713)] = 3769, + [SMALL_STATE(714)] = 3838, + [SMALL_STATE(715)] = 3905, + [SMALL_STATE(716)] = 3974, + [SMALL_STATE(717)] = 4043, + [SMALL_STATE(718)] = 4110, + [SMALL_STATE(719)] = 4179, + [SMALL_STATE(720)] = 4246, + [SMALL_STATE(721)] = 4315, + [SMALL_STATE(722)] = 4382, + [SMALL_STATE(723)] = 4451, + [SMALL_STATE(724)] = 4520, + [SMALL_STATE(725)] = 4587, + [SMALL_STATE(726)] = 4654, + [SMALL_STATE(727)] = 4721, + [SMALL_STATE(728)] = 4788, + [SMALL_STATE(729)] = 4856, + [SMALL_STATE(730)] = 4924, + [SMALL_STATE(731)] = 4992, + [SMALL_STATE(732)] = 5060, + [SMALL_STATE(733)] = 5128, + [SMALL_STATE(734)] = 5196, + [SMALL_STATE(735)] = 5264, + [SMALL_STATE(736)] = 5332, + [SMALL_STATE(737)] = 5400, + [SMALL_STATE(738)] = 5468, + [SMALL_STATE(739)] = 5536, + [SMALL_STATE(740)] = 5604, + [SMALL_STATE(741)] = 5672, + [SMALL_STATE(742)] = 5740, + [SMALL_STATE(743)] = 5808, + [SMALL_STATE(744)] = 5876, + [SMALL_STATE(745)] = 5944, + [SMALL_STATE(746)] = 6012, + [SMALL_STATE(747)] = 6080, + [SMALL_STATE(748)] = 6148, + [SMALL_STATE(749)] = 6216, + [SMALL_STATE(750)] = 6277, + [SMALL_STATE(751)] = 6338, + [SMALL_STATE(752)] = 6403, + [SMALL_STATE(753)] = 6470, + [SMALL_STATE(754)] = 6531, + [SMALL_STATE(755)] = 6598, + [SMALL_STATE(756)] = 6659, + [SMALL_STATE(757)] = 6724, + [SMALL_STATE(758)] = 6791, + [SMALL_STATE(759)] = 6852, + [SMALL_STATE(760)] = 6913, + [SMALL_STATE(761)] = 6978, + [SMALL_STATE(762)] = 7045, + [SMALL_STATE(763)] = 7106, + [SMALL_STATE(764)] = 7167, + [SMALL_STATE(765)] = 7228, + [SMALL_STATE(766)] = 7289, + [SMALL_STATE(767)] = 7350, + [SMALL_STATE(768)] = 7411, + [SMALL_STATE(769)] = 7472, + [SMALL_STATE(770)] = 7533, + [SMALL_STATE(771)] = 7594, + [SMALL_STATE(772)] = 7655, + [SMALL_STATE(773)] = 7716, + [SMALL_STATE(774)] = 7777, + [SMALL_STATE(775)] = 7838, + [SMALL_STATE(776)] = 7899, + [SMALL_STATE(777)] = 7960, + [SMALL_STATE(778)] = 8021, + [SMALL_STATE(779)] = 8082, + [SMALL_STATE(780)] = 8143, + [SMALL_STATE(781)] = 8204, + [SMALL_STATE(782)] = 8265, + [SMALL_STATE(783)] = 8326, + [SMALL_STATE(784)] = 8387, + [SMALL_STATE(785)] = 8448, + [SMALL_STATE(786)] = 8509, + [SMALL_STATE(787)] = 8570, + [SMALL_STATE(788)] = 8631, + [SMALL_STATE(789)] = 8692, + [SMALL_STATE(790)] = 8753, + [SMALL_STATE(791)] = 8814, + [SMALL_STATE(792)] = 8875, + [SMALL_STATE(793)] = 8936, + [SMALL_STATE(794)] = 8997, + [SMALL_STATE(795)] = 9058, + [SMALL_STATE(796)] = 9119, + [SMALL_STATE(797)] = 9180, + [SMALL_STATE(798)] = 9241, + [SMALL_STATE(799)] = 9302, + [SMALL_STATE(800)] = 9363, + [SMALL_STATE(801)] = 9424, + [SMALL_STATE(802)] = 9485, + [SMALL_STATE(803)] = 9546, + [SMALL_STATE(804)] = 9607, + [SMALL_STATE(805)] = 9668, + [SMALL_STATE(806)] = 9733, + [SMALL_STATE(807)] = 9794, + [SMALL_STATE(808)] = 9855, + [SMALL_STATE(809)] = 9916, + [SMALL_STATE(810)] = 9977, + [SMALL_STATE(811)] = 10038, + [SMALL_STATE(812)] = 10099, + [SMALL_STATE(813)] = 10160, + [SMALL_STATE(814)] = 10221, + [SMALL_STATE(815)] = 10282, + [SMALL_STATE(816)] = 10343, + [SMALL_STATE(817)] = 10404, + [SMALL_STATE(818)] = 10465, + [SMALL_STATE(819)] = 10526, + [SMALL_STATE(820)] = 10587, + [SMALL_STATE(821)] = 10648, + [SMALL_STATE(822)] = 10709, + [SMALL_STATE(823)] = 10770, + [SMALL_STATE(824)] = 10831, + [SMALL_STATE(825)] = 10892, + [SMALL_STATE(826)] = 10953, + [SMALL_STATE(827)] = 11014, + [SMALL_STATE(828)] = 11075, + [SMALL_STATE(829)] = 11136, + [SMALL_STATE(830)] = 11197, + [SMALL_STATE(831)] = 11258, + [SMALL_STATE(832)] = 11319, + [SMALL_STATE(833)] = 11380, + [SMALL_STATE(834)] = 11441, + [SMALL_STATE(835)] = 11502, + [SMALL_STATE(836)] = 11563, + [SMALL_STATE(837)] = 11624, + [SMALL_STATE(838)] = 11685, + [SMALL_STATE(839)] = 11746, + [SMALL_STATE(840)] = 11807, + [SMALL_STATE(841)] = 11868, + [SMALL_STATE(842)] = 11929, + [SMALL_STATE(843)] = 11990, + [SMALL_STATE(844)] = 12051, + [SMALL_STATE(845)] = 12112, + [SMALL_STATE(846)] = 12173, + [SMALL_STATE(847)] = 12234, + [SMALL_STATE(848)] = 12295, + [SMALL_STATE(849)] = 12356, + [SMALL_STATE(850)] = 12417, + [SMALL_STATE(851)] = 12478, + [SMALL_STATE(852)] = 12539, + [SMALL_STATE(853)] = 12600, + [SMALL_STATE(854)] = 12661, + [SMALL_STATE(855)] = 12722, + [SMALL_STATE(856)] = 12783, + [SMALL_STATE(857)] = 12844, + [SMALL_STATE(858)] = 12905, + [SMALL_STATE(859)] = 12966, + [SMALL_STATE(860)] = 13027, + [SMALL_STATE(861)] = 13088, + [SMALL_STATE(862)] = 13149, + [SMALL_STATE(863)] = 13210, + [SMALL_STATE(864)] = 13271, + [SMALL_STATE(865)] = 13332, + [SMALL_STATE(866)] = 13393, + [SMALL_STATE(867)] = 13454, + [SMALL_STATE(868)] = 13515, + [SMALL_STATE(869)] = 13576, + [SMALL_STATE(870)] = 13637, + [SMALL_STATE(871)] = 13698, + [SMALL_STATE(872)] = 13765, + [SMALL_STATE(873)] = 13826, + [SMALL_STATE(874)] = 13887, + [SMALL_STATE(875)] = 13948, + [SMALL_STATE(876)] = 14009, + [SMALL_STATE(877)] = 14070, + [SMALL_STATE(878)] = 14131, + [SMALL_STATE(879)] = 14192, + [SMALL_STATE(880)] = 14253, + [SMALL_STATE(881)] = 14314, + [SMALL_STATE(882)] = 14375, + [SMALL_STATE(883)] = 14436, + [SMALL_STATE(884)] = 14497, + [SMALL_STATE(885)] = 14558, + [SMALL_STATE(886)] = 14619, + [SMALL_STATE(887)] = 14680, + [SMALL_STATE(888)] = 14741, + [SMALL_STATE(889)] = 14802, + [SMALL_STATE(890)] = 14863, + [SMALL_STATE(891)] = 14924, + [SMALL_STATE(892)] = 14985, + [SMALL_STATE(893)] = 15046, + [SMALL_STATE(894)] = 15107, + [SMALL_STATE(895)] = 15168, + [SMALL_STATE(896)] = 15229, + [SMALL_STATE(897)] = 15290, + [SMALL_STATE(898)] = 15351, + [SMALL_STATE(899)] = 15416, + [SMALL_STATE(900)] = 15477, + [SMALL_STATE(901)] = 15538, + [SMALL_STATE(902)] = 15599, + [SMALL_STATE(903)] = 15660, + [SMALL_STATE(904)] = 15721, + [SMALL_STATE(905)] = 15782, + [SMALL_STATE(906)] = 15843, + [SMALL_STATE(907)] = 15910, + [SMALL_STATE(908)] = 15971, + [SMALL_STATE(909)] = 16032, + [SMALL_STATE(910)] = 16093, + [SMALL_STATE(911)] = 16154, + [SMALL_STATE(912)] = 16215, + [SMALL_STATE(913)] = 16276, + [SMALL_STATE(914)] = 16337, + [SMALL_STATE(915)] = 16398, + [SMALL_STATE(916)] = 16459, + [SMALL_STATE(917)] = 16520, + [SMALL_STATE(918)] = 16581, + [SMALL_STATE(919)] = 16642, + [SMALL_STATE(920)] = 16703, + [SMALL_STATE(921)] = 16764, + [SMALL_STATE(922)] = 16825, + [SMALL_STATE(923)] = 16886, + [SMALL_STATE(924)] = 16947, + [SMALL_STATE(925)] = 17008, + [SMALL_STATE(926)] = 17069, + [SMALL_STATE(927)] = 17130, + [SMALL_STATE(928)] = 17191, + [SMALL_STATE(929)] = 17252, + [SMALL_STATE(930)] = 17313, + [SMALL_STATE(931)] = 17374, + [SMALL_STATE(932)] = 17435, + [SMALL_STATE(933)] = 17496, + [SMALL_STATE(934)] = 17563, + [SMALL_STATE(935)] = 17630, + [SMALL_STATE(936)] = 17697, + [SMALL_STATE(937)] = 17764, + [SMALL_STATE(938)] = 17831, + [SMALL_STATE(939)] = 17898, + [SMALL_STATE(940)] = 17965, + [SMALL_STATE(941)] = 18032, + [SMALL_STATE(942)] = 18099, + [SMALL_STATE(943)] = 18166, + [SMALL_STATE(944)] = 18233, + [SMALL_STATE(945)] = 18300, + [SMALL_STATE(946)] = 18367, + [SMALL_STATE(947)] = 18434, + [SMALL_STATE(948)] = 18495, + [SMALL_STATE(949)] = 18560, + [SMALL_STATE(950)] = 18621, + [SMALL_STATE(951)] = 18682, + [SMALL_STATE(952)] = 18743, + [SMALL_STATE(953)] = 18810, + [SMALL_STATE(954)] = 18875, + [SMALL_STATE(955)] = 18936, + [SMALL_STATE(956)] = 18997, + [SMALL_STATE(957)] = 19058, + [SMALL_STATE(958)] = 19119, + [SMALL_STATE(959)] = 19186, + [SMALL_STATE(960)] = 19251, + [SMALL_STATE(961)] = 19312, + [SMALL_STATE(962)] = 19373, + [SMALL_STATE(963)] = 19434, + [SMALL_STATE(964)] = 19495, + [SMALL_STATE(965)] = 19562, + [SMALL_STATE(966)] = 19627, + [SMALL_STATE(967)] = 19688, + [SMALL_STATE(968)] = 19749, + [SMALL_STATE(969)] = 19816, + [SMALL_STATE(970)] = 19881, + [SMALL_STATE(971)] = 19942, + [SMALL_STATE(972)] = 20003, + [SMALL_STATE(973)] = 20070, + [SMALL_STATE(974)] = 20135, + [SMALL_STATE(975)] = 20196, + [SMALL_STATE(976)] = 20257, + [SMALL_STATE(977)] = 20324, + [SMALL_STATE(978)] = 20385, + [SMALL_STATE(979)] = 20450, + [SMALL_STATE(980)] = 20511, + [SMALL_STATE(981)] = 20578, + [SMALL_STATE(982)] = 20643, + [SMALL_STATE(983)] = 20704, + [SMALL_STATE(984)] = 20765, + [SMALL_STATE(985)] = 20832, + [SMALL_STATE(986)] = 20897, + [SMALL_STATE(987)] = 20958, + [SMALL_STATE(988)] = 21019, + [SMALL_STATE(989)] = 21086, + [SMALL_STATE(990)] = 21151, + [SMALL_STATE(991)] = 21212, + [SMALL_STATE(992)] = 21277, + [SMALL_STATE(993)] = 21338, + [SMALL_STATE(994)] = 21405, + [SMALL_STATE(995)] = 21470, + [SMALL_STATE(996)] = 21531, + [SMALL_STATE(997)] = 21592, + [SMALL_STATE(998)] = 21653, + [SMALL_STATE(999)] = 21718, + [SMALL_STATE(1000)] = 21785, + [SMALL_STATE(1001)] = 21846, + [SMALL_STATE(1002)] = 21907, + [SMALL_STATE(1003)] = 21968, + [SMALL_STATE(1004)] = 22029, + [SMALL_STATE(1005)] = 22090, + [SMALL_STATE(1006)] = 22151, + [SMALL_STATE(1007)] = 22212, + [SMALL_STATE(1008)] = 22273, + [SMALL_STATE(1009)] = 22334, + [SMALL_STATE(1010)] = 22395, + [SMALL_STATE(1011)] = 22456, + [SMALL_STATE(1012)] = 22517, + [SMALL_STATE(1013)] = 22578, + [SMALL_STATE(1014)] = 22639, + [SMALL_STATE(1015)] = 22700, + [SMALL_STATE(1016)] = 22761, + [SMALL_STATE(1017)] = 22822, + [SMALL_STATE(1018)] = 22883, + [SMALL_STATE(1019)] = 22944, + [SMALL_STATE(1020)] = 23005, + [SMALL_STATE(1021)] = 23066, + [SMALL_STATE(1022)] = 23127, + [SMALL_STATE(1023)] = 23188, + [SMALL_STATE(1024)] = 23249, + [SMALL_STATE(1025)] = 23310, + [SMALL_STATE(1026)] = 23377, + [SMALL_STATE(1027)] = 23438, + [SMALL_STATE(1028)] = 23499, + [SMALL_STATE(1029)] = 23560, + [SMALL_STATE(1030)] = 23621, + [SMALL_STATE(1031)] = 23682, + [SMALL_STATE(1032)] = 23743, + [SMALL_STATE(1033)] = 23804, + [SMALL_STATE(1034)] = 23865, + [SMALL_STATE(1035)] = 23926, + [SMALL_STATE(1036)] = 23987, + [SMALL_STATE(1037)] = 24048, + [SMALL_STATE(1038)] = 24109, + [SMALL_STATE(1039)] = 24170, + [SMALL_STATE(1040)] = 24231, + [SMALL_STATE(1041)] = 24292, + [SMALL_STATE(1042)] = 24353, + [SMALL_STATE(1043)] = 24414, + [SMALL_STATE(1044)] = 24475, + [SMALL_STATE(1045)] = 24536, + [SMALL_STATE(1046)] = 24597, + [SMALL_STATE(1047)] = 24658, + [SMALL_STATE(1048)] = 24719, + [SMALL_STATE(1049)] = 24780, + [SMALL_STATE(1050)] = 24841, + [SMALL_STATE(1051)] = 24902, + [SMALL_STATE(1052)] = 24963, + [SMALL_STATE(1053)] = 25024, + [SMALL_STATE(1054)] = 25085, + [SMALL_STATE(1055)] = 25146, + [SMALL_STATE(1056)] = 25207, + [SMALL_STATE(1057)] = 25268, + [SMALL_STATE(1058)] = 25329, + [SMALL_STATE(1059)] = 25390, + [SMALL_STATE(1060)] = 25451, + [SMALL_STATE(1061)] = 25512, + [SMALL_STATE(1062)] = 25573, + [SMALL_STATE(1063)] = 25634, + [SMALL_STATE(1064)] = 25695, + [SMALL_STATE(1065)] = 25756, + [SMALL_STATE(1066)] = 25817, + [SMALL_STATE(1067)] = 25878, + [SMALL_STATE(1068)] = 25939, + [SMALL_STATE(1069)] = 26000, + [SMALL_STATE(1070)] = 26061, + [SMALL_STATE(1071)] = 26122, + [SMALL_STATE(1072)] = 26183, + [SMALL_STATE(1073)] = 26244, + [SMALL_STATE(1074)] = 26305, + [SMALL_STATE(1075)] = 26366, + [SMALL_STATE(1076)] = 26427, + [SMALL_STATE(1077)] = 26488, + [SMALL_STATE(1078)] = 26549, + [SMALL_STATE(1079)] = 26610, + [SMALL_STATE(1080)] = 26671, + [SMALL_STATE(1081)] = 26732, + [SMALL_STATE(1082)] = 26793, + [SMALL_STATE(1083)] = 26854, + [SMALL_STATE(1084)] = 26919, + [SMALL_STATE(1085)] = 26980, + [SMALL_STATE(1086)] = 27041, + [SMALL_STATE(1087)] = 27108, + [SMALL_STATE(1088)] = 27169, + [SMALL_STATE(1089)] = 27230, + [SMALL_STATE(1090)] = 27291, + [SMALL_STATE(1091)] = 27352, + [SMALL_STATE(1092)] = 27419, + [SMALL_STATE(1093)] = 27480, + [SMALL_STATE(1094)] = 27541, + [SMALL_STATE(1095)] = 27602, + [SMALL_STATE(1096)] = 27663, + [SMALL_STATE(1097)] = 27724, + [SMALL_STATE(1098)] = 27785, + [SMALL_STATE(1099)] = 27846, + [SMALL_STATE(1100)] = 27907, + [SMALL_STATE(1101)] = 27968, + [SMALL_STATE(1102)] = 28029, + [SMALL_STATE(1103)] = 28090, + [SMALL_STATE(1104)] = 28151, + [SMALL_STATE(1105)] = 28212, + [SMALL_STATE(1106)] = 28273, + [SMALL_STATE(1107)] = 28334, + [SMALL_STATE(1108)] = 28395, + [SMALL_STATE(1109)] = 28456, + [SMALL_STATE(1110)] = 28517, + [SMALL_STATE(1111)] = 28578, + [SMALL_STATE(1112)] = 28639, + [SMALL_STATE(1113)] = 28700, + [SMALL_STATE(1114)] = 28761, + [SMALL_STATE(1115)] = 28822, + [SMALL_STATE(1116)] = 28883, + [SMALL_STATE(1117)] = 28944, + [SMALL_STATE(1118)] = 29009, + [SMALL_STATE(1119)] = 29070, + [SMALL_STATE(1120)] = 29131, + [SMALL_STATE(1121)] = 29192, + [SMALL_STATE(1122)] = 29253, + [SMALL_STATE(1123)] = 29314, + [SMALL_STATE(1124)] = 29375, + [SMALL_STATE(1125)] = 29436, + [SMALL_STATE(1126)] = 29497, + [SMALL_STATE(1127)] = 29558, + [SMALL_STATE(1128)] = 29619, + [SMALL_STATE(1129)] = 29680, + [SMALL_STATE(1130)] = 29741, + [SMALL_STATE(1131)] = 29802, + [SMALL_STATE(1132)] = 29863, + [SMALL_STATE(1133)] = 29924, + [SMALL_STATE(1134)] = 29985, + [SMALL_STATE(1135)] = 30046, + [SMALL_STATE(1136)] = 30107, + [SMALL_STATE(1137)] = 30168, + [SMALL_STATE(1138)] = 30229, + [SMALL_STATE(1139)] = 30290, + [SMALL_STATE(1140)] = 30351, + [SMALL_STATE(1141)] = 30412, + [SMALL_STATE(1142)] = 30473, + [SMALL_STATE(1143)] = 30534, + [SMALL_STATE(1144)] = 30595, + [SMALL_STATE(1145)] = 30656, + [SMALL_STATE(1146)] = 30717, + [SMALL_STATE(1147)] = 30778, + [SMALL_STATE(1148)] = 30839, + [SMALL_STATE(1149)] = 30900, + [SMALL_STATE(1150)] = 30961, + [SMALL_STATE(1151)] = 31028, + [SMALL_STATE(1152)] = 31089, + [SMALL_STATE(1153)] = 31150, + [SMALL_STATE(1154)] = 31211, + [SMALL_STATE(1155)] = 31272, + [SMALL_STATE(1156)] = 31333, + [SMALL_STATE(1157)] = 31394, + [SMALL_STATE(1158)] = 31455, + [SMALL_STATE(1159)] = 31516, + [SMALL_STATE(1160)] = 31577, + [SMALL_STATE(1161)] = 31638, + [SMALL_STATE(1162)] = 31699, + [SMALL_STATE(1163)] = 31760, + [SMALL_STATE(1164)] = 31821, + [SMALL_STATE(1165)] = 31882, + [SMALL_STATE(1166)] = 31943, + [SMALL_STATE(1167)] = 32004, + [SMALL_STATE(1168)] = 32065, + [SMALL_STATE(1169)] = 32126, + [SMALL_STATE(1170)] = 32187, + [SMALL_STATE(1171)] = 32248, + [SMALL_STATE(1172)] = 32309, + [SMALL_STATE(1173)] = 32370, + [SMALL_STATE(1174)] = 32431, + [SMALL_STATE(1175)] = 32492, + [SMALL_STATE(1176)] = 32557, + [SMALL_STATE(1177)] = 32618, + [SMALL_STATE(1178)] = 32679, + [SMALL_STATE(1179)] = 32740, + [SMALL_STATE(1180)] = 32801, + [SMALL_STATE(1181)] = 32862, + [SMALL_STATE(1182)] = 32923, + [SMALL_STATE(1183)] = 32984, + [SMALL_STATE(1184)] = 33051, + [SMALL_STATE(1185)] = 33112, + [SMALL_STATE(1186)] = 33173, + [SMALL_STATE(1187)] = 33234, + [SMALL_STATE(1188)] = 33295, + [SMALL_STATE(1189)] = 33356, + [SMALL_STATE(1190)] = 33417, + [SMALL_STATE(1191)] = 33478, + [SMALL_STATE(1192)] = 33539, + [SMALL_STATE(1193)] = 33600, + [SMALL_STATE(1194)] = 33661, + [SMALL_STATE(1195)] = 33722, + [SMALL_STATE(1196)] = 33783, + [SMALL_STATE(1197)] = 33844, + [SMALL_STATE(1198)] = 33905, + [SMALL_STATE(1199)] = 33966, + [SMALL_STATE(1200)] = 34027, + [SMALL_STATE(1201)] = 34088, + [SMALL_STATE(1202)] = 34149, + [SMALL_STATE(1203)] = 34210, + [SMALL_STATE(1204)] = 34271, + [SMALL_STATE(1205)] = 34332, + [SMALL_STATE(1206)] = 34393, + [SMALL_STATE(1207)] = 34454, + [SMALL_STATE(1208)] = 34515, + [SMALL_STATE(1209)] = 34576, + [SMALL_STATE(1210)] = 34637, + [SMALL_STATE(1211)] = 34698, + [SMALL_STATE(1212)] = 34759, + [SMALL_STATE(1213)] = 34820, + [SMALL_STATE(1214)] = 34881, + [SMALL_STATE(1215)] = 34942, + [SMALL_STATE(1216)] = 35003, + [SMALL_STATE(1217)] = 35064, + [SMALL_STATE(1218)] = 35125, + [SMALL_STATE(1219)] = 35186, + [SMALL_STATE(1220)] = 35247, + [SMALL_STATE(1221)] = 35308, + [SMALL_STATE(1222)] = 35369, + [SMALL_STATE(1223)] = 35430, + [SMALL_STATE(1224)] = 35491, + [SMALL_STATE(1225)] = 35552, + [SMALL_STATE(1226)] = 35613, + [SMALL_STATE(1227)] = 35674, + [SMALL_STATE(1228)] = 35735, + [SMALL_STATE(1229)] = 35796, + [SMALL_STATE(1230)] = 35857, + [SMALL_STATE(1231)] = 35918, + [SMALL_STATE(1232)] = 35979, + [SMALL_STATE(1233)] = 36040, + [SMALL_STATE(1234)] = 36101, + [SMALL_STATE(1235)] = 36162, + [SMALL_STATE(1236)] = 36223, + [SMALL_STATE(1237)] = 36284, + [SMALL_STATE(1238)] = 36345, + [SMALL_STATE(1239)] = 36406, + [SMALL_STATE(1240)] = 36467, + [SMALL_STATE(1241)] = 36528, + [SMALL_STATE(1242)] = 36595, + [SMALL_STATE(1243)] = 36656, + [SMALL_STATE(1244)] = 36717, + [SMALL_STATE(1245)] = 36778, + [SMALL_STATE(1246)] = 36839, + [SMALL_STATE(1247)] = 36900, + [SMALL_STATE(1248)] = 36961, + [SMALL_STATE(1249)] = 37022, + [SMALL_STATE(1250)] = 37083, + [SMALL_STATE(1251)] = 37144, + [SMALL_STATE(1252)] = 37205, + [SMALL_STATE(1253)] = 37266, + [SMALL_STATE(1254)] = 37327, + [SMALL_STATE(1255)] = 37388, + [SMALL_STATE(1256)] = 37449, + [SMALL_STATE(1257)] = 37510, + [SMALL_STATE(1258)] = 37571, + [SMALL_STATE(1259)] = 37632, + [SMALL_STATE(1260)] = 37693, + [SMALL_STATE(1261)] = 37754, + [SMALL_STATE(1262)] = 37815, + [SMALL_STATE(1263)] = 37876, + [SMALL_STATE(1264)] = 37937, + [SMALL_STATE(1265)] = 37998, + [SMALL_STATE(1266)] = 38059, + [SMALL_STATE(1267)] = 38120, + [SMALL_STATE(1268)] = 38181, + [SMALL_STATE(1269)] = 38242, + [SMALL_STATE(1270)] = 38303, + [SMALL_STATE(1271)] = 38364, + [SMALL_STATE(1272)] = 38431, + [SMALL_STATE(1273)] = 38492, + [SMALL_STATE(1274)] = 38553, + [SMALL_STATE(1275)] = 38614, + [SMALL_STATE(1276)] = 38675, + [SMALL_STATE(1277)] = 38736, + [SMALL_STATE(1278)] = 38797, + [SMALL_STATE(1279)] = 38858, + [SMALL_STATE(1280)] = 38919, + [SMALL_STATE(1281)] = 38980, + [SMALL_STATE(1282)] = 39041, + [SMALL_STATE(1283)] = 39102, + [SMALL_STATE(1284)] = 39163, + [SMALL_STATE(1285)] = 39224, + [SMALL_STATE(1286)] = 39285, + [SMALL_STATE(1287)] = 39346, + [SMALL_STATE(1288)] = 39407, + [SMALL_STATE(1289)] = 39468, + [SMALL_STATE(1290)] = 39529, + [SMALL_STATE(1291)] = 39590, + [SMALL_STATE(1292)] = 39651, + [SMALL_STATE(1293)] = 39712, + [SMALL_STATE(1294)] = 39773, + [SMALL_STATE(1295)] = 39834, + [SMALL_STATE(1296)] = 39895, + [SMALL_STATE(1297)] = 39956, + [SMALL_STATE(1298)] = 40017, + [SMALL_STATE(1299)] = 40078, + [SMALL_STATE(1300)] = 40139, + [SMALL_STATE(1301)] = 40200, + [SMALL_STATE(1302)] = 40261, + [SMALL_STATE(1303)] = 40322, + [SMALL_STATE(1304)] = 40383, + [SMALL_STATE(1305)] = 40444, + [SMALL_STATE(1306)] = 40505, + [SMALL_STATE(1307)] = 40566, + [SMALL_STATE(1308)] = 40627, + [SMALL_STATE(1309)] = 40688, + [SMALL_STATE(1310)] = 40749, + [SMALL_STATE(1311)] = 40810, + [SMALL_STATE(1312)] = 40871, + [SMALL_STATE(1313)] = 40932, + [SMALL_STATE(1314)] = 40993, + [SMALL_STATE(1315)] = 41054, + [SMALL_STATE(1316)] = 41115, + [SMALL_STATE(1317)] = 41176, + [SMALL_STATE(1318)] = 41237, + [SMALL_STATE(1319)] = 41298, + [SMALL_STATE(1320)] = 41359, + [SMALL_STATE(1321)] = 41420, + [SMALL_STATE(1322)] = 41481, + [SMALL_STATE(1323)] = 41542, + [SMALL_STATE(1324)] = 41603, + [SMALL_STATE(1325)] = 41664, + [SMALL_STATE(1326)] = 41725, + [SMALL_STATE(1327)] = 41786, + [SMALL_STATE(1328)] = 41847, + [SMALL_STATE(1329)] = 41908, + [SMALL_STATE(1330)] = 41969, + [SMALL_STATE(1331)] = 42030, + [SMALL_STATE(1332)] = 42091, + [SMALL_STATE(1333)] = 42152, + [SMALL_STATE(1334)] = 42213, + [SMALL_STATE(1335)] = 42274, + [SMALL_STATE(1336)] = 42335, + [SMALL_STATE(1337)] = 42396, + [SMALL_STATE(1338)] = 42457, + [SMALL_STATE(1339)] = 42518, + [SMALL_STATE(1340)] = 42579, + [SMALL_STATE(1341)] = 42640, + [SMALL_STATE(1342)] = 42701, + [SMALL_STATE(1343)] = 42762, + [SMALL_STATE(1344)] = 42823, + [SMALL_STATE(1345)] = 42884, + [SMALL_STATE(1346)] = 42945, + [SMALL_STATE(1347)] = 43006, + [SMALL_STATE(1348)] = 43067, + [SMALL_STATE(1349)] = 43128, + [SMALL_STATE(1350)] = 43189, + [SMALL_STATE(1351)] = 43250, + [SMALL_STATE(1352)] = 43311, + [SMALL_STATE(1353)] = 43372, + [SMALL_STATE(1354)] = 43433, + [SMALL_STATE(1355)] = 43494, + [SMALL_STATE(1356)] = 43555, + [SMALL_STATE(1357)] = 43616, + [SMALL_STATE(1358)] = 43677, + [SMALL_STATE(1359)] = 43738, + [SMALL_STATE(1360)] = 43799, + [SMALL_STATE(1361)] = 43860, + [SMALL_STATE(1362)] = 43921, + [SMALL_STATE(1363)] = 43982, + [SMALL_STATE(1364)] = 44043, + [SMALL_STATE(1365)] = 44104, + [SMALL_STATE(1366)] = 44165, + [SMALL_STATE(1367)] = 44226, + [SMALL_STATE(1368)] = 44287, + [SMALL_STATE(1369)] = 44348, + [SMALL_STATE(1370)] = 44409, + [SMALL_STATE(1371)] = 44470, + [SMALL_STATE(1372)] = 44531, + [SMALL_STATE(1373)] = 44592, + [SMALL_STATE(1374)] = 44653, + [SMALL_STATE(1375)] = 44714, + [SMALL_STATE(1376)] = 44775, + [SMALL_STATE(1377)] = 44836, + [SMALL_STATE(1378)] = 44897, + [SMALL_STATE(1379)] = 44958, + [SMALL_STATE(1380)] = 45019, + [SMALL_STATE(1381)] = 45080, + [SMALL_STATE(1382)] = 45141, + [SMALL_STATE(1383)] = 45202, + [SMALL_STATE(1384)] = 45263, + [SMALL_STATE(1385)] = 45324, + [SMALL_STATE(1386)] = 45385, + [SMALL_STATE(1387)] = 45446, + [SMALL_STATE(1388)] = 45507, + [SMALL_STATE(1389)] = 45568, + [SMALL_STATE(1390)] = 45629, + [SMALL_STATE(1391)] = 45690, + [SMALL_STATE(1392)] = 45751, + [SMALL_STATE(1393)] = 45812, + [SMALL_STATE(1394)] = 45873, + [SMALL_STATE(1395)] = 45934, + [SMALL_STATE(1396)] = 45995, + [SMALL_STATE(1397)] = 46056, + [SMALL_STATE(1398)] = 46117, + [SMALL_STATE(1399)] = 46178, + [SMALL_STATE(1400)] = 46239, + [SMALL_STATE(1401)] = 46300, + [SMALL_STATE(1402)] = 46361, + [SMALL_STATE(1403)] = 46422, + [SMALL_STATE(1404)] = 46483, + [SMALL_STATE(1405)] = 46544, + [SMALL_STATE(1406)] = 46605, + [SMALL_STATE(1407)] = 46666, + [SMALL_STATE(1408)] = 46727, + [SMALL_STATE(1409)] = 46788, + [SMALL_STATE(1410)] = 46849, + [SMALL_STATE(1411)] = 46910, + [SMALL_STATE(1412)] = 46971, + [SMALL_STATE(1413)] = 47032, + [SMALL_STATE(1414)] = 47093, + [SMALL_STATE(1415)] = 47154, + [SMALL_STATE(1416)] = 47215, + [SMALL_STATE(1417)] = 47276, + [SMALL_STATE(1418)] = 47337, + [SMALL_STATE(1419)] = 47398, + [SMALL_STATE(1420)] = 47459, + [SMALL_STATE(1421)] = 47520, + [SMALL_STATE(1422)] = 47581, + [SMALL_STATE(1423)] = 47642, + [SMALL_STATE(1424)] = 47703, + [SMALL_STATE(1425)] = 47764, + [SMALL_STATE(1426)] = 47825, + [SMALL_STATE(1427)] = 47886, + [SMALL_STATE(1428)] = 47947, + [SMALL_STATE(1429)] = 48008, + [SMALL_STATE(1430)] = 48069, + [SMALL_STATE(1431)] = 48130, + [SMALL_STATE(1432)] = 48191, + [SMALL_STATE(1433)] = 48252, + [SMALL_STATE(1434)] = 48313, + [SMALL_STATE(1435)] = 48374, + [SMALL_STATE(1436)] = 48435, + [SMALL_STATE(1437)] = 48496, + [SMALL_STATE(1438)] = 48557, + [SMALL_STATE(1439)] = 48618, + [SMALL_STATE(1440)] = 48679, + [SMALL_STATE(1441)] = 48740, + [SMALL_STATE(1442)] = 48801, + [SMALL_STATE(1443)] = 48862, + [SMALL_STATE(1444)] = 48923, + [SMALL_STATE(1445)] = 48984, + [SMALL_STATE(1446)] = 49045, + [SMALL_STATE(1447)] = 49106, + [SMALL_STATE(1448)] = 49167, + [SMALL_STATE(1449)] = 49228, + [SMALL_STATE(1450)] = 49289, + [SMALL_STATE(1451)] = 49350, + [SMALL_STATE(1452)] = 49411, + [SMALL_STATE(1453)] = 49472, + [SMALL_STATE(1454)] = 49533, + [SMALL_STATE(1455)] = 49594, + [SMALL_STATE(1456)] = 49655, + [SMALL_STATE(1457)] = 49716, + [SMALL_STATE(1458)] = 49777, + [SMALL_STATE(1459)] = 49838, + [SMALL_STATE(1460)] = 49899, + [SMALL_STATE(1461)] = 49960, + [SMALL_STATE(1462)] = 50021, + [SMALL_STATE(1463)] = 50082, + [SMALL_STATE(1464)] = 50143, + [SMALL_STATE(1465)] = 50204, + [SMALL_STATE(1466)] = 50265, + [SMALL_STATE(1467)] = 50326, + [SMALL_STATE(1468)] = 50387, + [SMALL_STATE(1469)] = 50448, + [SMALL_STATE(1470)] = 50509, + [SMALL_STATE(1471)] = 50570, + [SMALL_STATE(1472)] = 50631, + [SMALL_STATE(1473)] = 50692, + [SMALL_STATE(1474)] = 50753, + [SMALL_STATE(1475)] = 50814, + [SMALL_STATE(1476)] = 50875, + [SMALL_STATE(1477)] = 50936, + [SMALL_STATE(1478)] = 50997, + [SMALL_STATE(1479)] = 51058, + [SMALL_STATE(1480)] = 51119, + [SMALL_STATE(1481)] = 51180, + [SMALL_STATE(1482)] = 51241, + [SMALL_STATE(1483)] = 51302, + [SMALL_STATE(1484)] = 51363, + [SMALL_STATE(1485)] = 51424, + [SMALL_STATE(1486)] = 51485, + [SMALL_STATE(1487)] = 51546, + [SMALL_STATE(1488)] = 51607, + [SMALL_STATE(1489)] = 51668, + [SMALL_STATE(1490)] = 51729, + [SMALL_STATE(1491)] = 51790, + [SMALL_STATE(1492)] = 51851, + [SMALL_STATE(1493)] = 51912, + [SMALL_STATE(1494)] = 51973, + [SMALL_STATE(1495)] = 52034, + [SMALL_STATE(1496)] = 52095, + [SMALL_STATE(1497)] = 52156, + [SMALL_STATE(1498)] = 52217, + [SMALL_STATE(1499)] = 52278, + [SMALL_STATE(1500)] = 52339, + [SMALL_STATE(1501)] = 52400, + [SMALL_STATE(1502)] = 52461, + [SMALL_STATE(1503)] = 52522, + [SMALL_STATE(1504)] = 52583, + [SMALL_STATE(1505)] = 52644, + [SMALL_STATE(1506)] = 52705, + [SMALL_STATE(1507)] = 52766, + [SMALL_STATE(1508)] = 52827, + [SMALL_STATE(1509)] = 52888, + [SMALL_STATE(1510)] = 52949, + [SMALL_STATE(1511)] = 53010, + [SMALL_STATE(1512)] = 53071, + [SMALL_STATE(1513)] = 53132, + [SMALL_STATE(1514)] = 53193, + [SMALL_STATE(1515)] = 53254, + [SMALL_STATE(1516)] = 53315, + [SMALL_STATE(1517)] = 53376, + [SMALL_STATE(1518)] = 53437, + [SMALL_STATE(1519)] = 53498, + [SMALL_STATE(1520)] = 53559, + [SMALL_STATE(1521)] = 53620, + [SMALL_STATE(1522)] = 53681, + [SMALL_STATE(1523)] = 53742, + [SMALL_STATE(1524)] = 53803, + [SMALL_STATE(1525)] = 53864, + [SMALL_STATE(1526)] = 53925, + [SMALL_STATE(1527)] = 53986, + [SMALL_STATE(1528)] = 54047, + [SMALL_STATE(1529)] = 54108, + [SMALL_STATE(1530)] = 54169, + [SMALL_STATE(1531)] = 54230, + [SMALL_STATE(1532)] = 54291, + [SMALL_STATE(1533)] = 54352, + [SMALL_STATE(1534)] = 54413, + [SMALL_STATE(1535)] = 54474, + [SMALL_STATE(1536)] = 54535, + [SMALL_STATE(1537)] = 54596, + [SMALL_STATE(1538)] = 54657, + [SMALL_STATE(1539)] = 54718, + [SMALL_STATE(1540)] = 54779, + [SMALL_STATE(1541)] = 54840, + [SMALL_STATE(1542)] = 54901, + [SMALL_STATE(1543)] = 54962, + [SMALL_STATE(1544)] = 55023, + [SMALL_STATE(1545)] = 55084, + [SMALL_STATE(1546)] = 55145, + [SMALL_STATE(1547)] = 55206, + [SMALL_STATE(1548)] = 55267, + [SMALL_STATE(1549)] = 55328, + [SMALL_STATE(1550)] = 55389, + [SMALL_STATE(1551)] = 55450, + [SMALL_STATE(1552)] = 55511, + [SMALL_STATE(1553)] = 55572, + [SMALL_STATE(1554)] = 55639, + [SMALL_STATE(1555)] = 55700, + [SMALL_STATE(1556)] = 55761, + [SMALL_STATE(1557)] = 55822, + [SMALL_STATE(1558)] = 55883, + [SMALL_STATE(1559)] = 55944, + [SMALL_STATE(1560)] = 56005, + [SMALL_STATE(1561)] = 56066, + [SMALL_STATE(1562)] = 56127, + [SMALL_STATE(1563)] = 56188, + [SMALL_STATE(1564)] = 56249, + [SMALL_STATE(1565)] = 56310, + [SMALL_STATE(1566)] = 56371, + [SMALL_STATE(1567)] = 56432, + [SMALL_STATE(1568)] = 56493, + [SMALL_STATE(1569)] = 56554, + [SMALL_STATE(1570)] = 56615, + [SMALL_STATE(1571)] = 56676, + [SMALL_STATE(1572)] = 56737, + [SMALL_STATE(1573)] = 56798, + [SMALL_STATE(1574)] = 56859, + [SMALL_STATE(1575)] = 56920, + [SMALL_STATE(1576)] = 56981, + [SMALL_STATE(1577)] = 57042, + [SMALL_STATE(1578)] = 57103, + [SMALL_STATE(1579)] = 57164, + [SMALL_STATE(1580)] = 57225, + [SMALL_STATE(1581)] = 57286, + [SMALL_STATE(1582)] = 57347, + [SMALL_STATE(1583)] = 57408, + [SMALL_STATE(1584)] = 57469, + [SMALL_STATE(1585)] = 57530, + [SMALL_STATE(1586)] = 57591, + [SMALL_STATE(1587)] = 57652, + [SMALL_STATE(1588)] = 57713, + [SMALL_STATE(1589)] = 57774, + [SMALL_STATE(1590)] = 57835, + [SMALL_STATE(1591)] = 57896, + [SMALL_STATE(1592)] = 57957, + [SMALL_STATE(1593)] = 58018, + [SMALL_STATE(1594)] = 58079, + [SMALL_STATE(1595)] = 58140, + [SMALL_STATE(1596)] = 58201, + [SMALL_STATE(1597)] = 58262, + [SMALL_STATE(1598)] = 58323, + [SMALL_STATE(1599)] = 58384, + [SMALL_STATE(1600)] = 58445, + [SMALL_STATE(1601)] = 58506, + [SMALL_STATE(1602)] = 58567, + [SMALL_STATE(1603)] = 58628, + [SMALL_STATE(1604)] = 58689, + [SMALL_STATE(1605)] = 58750, + [SMALL_STATE(1606)] = 58811, + [SMALL_STATE(1607)] = 58872, + [SMALL_STATE(1608)] = 58933, + [SMALL_STATE(1609)] = 58994, + [SMALL_STATE(1610)] = 59055, + [SMALL_STATE(1611)] = 59116, + [SMALL_STATE(1612)] = 59177, + [SMALL_STATE(1613)] = 59238, + [SMALL_STATE(1614)] = 59299, + [SMALL_STATE(1615)] = 59360, + [SMALL_STATE(1616)] = 59421, + [SMALL_STATE(1617)] = 59482, + [SMALL_STATE(1618)] = 59543, + [SMALL_STATE(1619)] = 59604, + [SMALL_STATE(1620)] = 59665, + [SMALL_STATE(1621)] = 59726, + [SMALL_STATE(1622)] = 59787, + [SMALL_STATE(1623)] = 59848, + [SMALL_STATE(1624)] = 59909, + [SMALL_STATE(1625)] = 59970, + [SMALL_STATE(1626)] = 60031, + [SMALL_STATE(1627)] = 60092, + [SMALL_STATE(1628)] = 60153, + [SMALL_STATE(1629)] = 60214, + [SMALL_STATE(1630)] = 60275, + [SMALL_STATE(1631)] = 60336, + [SMALL_STATE(1632)] = 60397, + [SMALL_STATE(1633)] = 60458, + [SMALL_STATE(1634)] = 60519, + [SMALL_STATE(1635)] = 60580, + [SMALL_STATE(1636)] = 60641, + [SMALL_STATE(1637)] = 60702, + [SMALL_STATE(1638)] = 60763, + [SMALL_STATE(1639)] = 60824, + [SMALL_STATE(1640)] = 60885, + [SMALL_STATE(1641)] = 60946, + [SMALL_STATE(1642)] = 61007, + [SMALL_STATE(1643)] = 61068, + [SMALL_STATE(1644)] = 61129, + [SMALL_STATE(1645)] = 61190, + [SMALL_STATE(1646)] = 61251, + [SMALL_STATE(1647)] = 61312, + [SMALL_STATE(1648)] = 61373, + [SMALL_STATE(1649)] = 61434, + [SMALL_STATE(1650)] = 61495, + [SMALL_STATE(1651)] = 61556, + [SMALL_STATE(1652)] = 61617, + [SMALL_STATE(1653)] = 61678, + [SMALL_STATE(1654)] = 61739, + [SMALL_STATE(1655)] = 61800, + [SMALL_STATE(1656)] = 61861, + [SMALL_STATE(1657)] = 61922, + [SMALL_STATE(1658)] = 61983, + [SMALL_STATE(1659)] = 62044, + [SMALL_STATE(1660)] = 62105, + [SMALL_STATE(1661)] = 62166, + [SMALL_STATE(1662)] = 62227, + [SMALL_STATE(1663)] = 62288, + [SMALL_STATE(1664)] = 62349, + [SMALL_STATE(1665)] = 62410, + [SMALL_STATE(1666)] = 62471, + [SMALL_STATE(1667)] = 62532, + [SMALL_STATE(1668)] = 62593, + [SMALL_STATE(1669)] = 62654, + [SMALL_STATE(1670)] = 62715, + [SMALL_STATE(1671)] = 62776, + [SMALL_STATE(1672)] = 62837, + [SMALL_STATE(1673)] = 62898, + [SMALL_STATE(1674)] = 62959, + [SMALL_STATE(1675)] = 63020, + [SMALL_STATE(1676)] = 63081, + [SMALL_STATE(1677)] = 63142, + [SMALL_STATE(1678)] = 63203, + [SMALL_STATE(1679)] = 63264, + [SMALL_STATE(1680)] = 63325, + [SMALL_STATE(1681)] = 63386, + [SMALL_STATE(1682)] = 63447, + [SMALL_STATE(1683)] = 63508, + [SMALL_STATE(1684)] = 63569, + [SMALL_STATE(1685)] = 63630, + [SMALL_STATE(1686)] = 63691, + [SMALL_STATE(1687)] = 63752, + [SMALL_STATE(1688)] = 63813, + [SMALL_STATE(1689)] = 63874, + [SMALL_STATE(1690)] = 63935, + [SMALL_STATE(1691)] = 63996, + [SMALL_STATE(1692)] = 64057, + [SMALL_STATE(1693)] = 64118, + [SMALL_STATE(1694)] = 64179, + [SMALL_STATE(1695)] = 64240, + [SMALL_STATE(1696)] = 64301, + [SMALL_STATE(1697)] = 64362, + [SMALL_STATE(1698)] = 64423, + [SMALL_STATE(1699)] = 64484, + [SMALL_STATE(1700)] = 64545, + [SMALL_STATE(1701)] = 64606, + [SMALL_STATE(1702)] = 64667, + [SMALL_STATE(1703)] = 64728, + [SMALL_STATE(1704)] = 64789, + [SMALL_STATE(1705)] = 64850, + [SMALL_STATE(1706)] = 64911, + [SMALL_STATE(1707)] = 64972, + [SMALL_STATE(1708)] = 65033, + [SMALL_STATE(1709)] = 65094, + [SMALL_STATE(1710)] = 65155, + [SMALL_STATE(1711)] = 65216, + [SMALL_STATE(1712)] = 65277, + [SMALL_STATE(1713)] = 65338, + [SMALL_STATE(1714)] = 65399, + [SMALL_STATE(1715)] = 65460, + [SMALL_STATE(1716)] = 65521, + [SMALL_STATE(1717)] = 65582, + [SMALL_STATE(1718)] = 65643, + [SMALL_STATE(1719)] = 65704, + [SMALL_STATE(1720)] = 65765, + [SMALL_STATE(1721)] = 65826, + [SMALL_STATE(1722)] = 65887, + [SMALL_STATE(1723)] = 65954, + [SMALL_STATE(1724)] = 66015, + [SMALL_STATE(1725)] = 66076, + [SMALL_STATE(1726)] = 66137, + [SMALL_STATE(1727)] = 66198, + [SMALL_STATE(1728)] = 66259, + [SMALL_STATE(1729)] = 66320, + [SMALL_STATE(1730)] = 66381, + [SMALL_STATE(1731)] = 66442, + [SMALL_STATE(1732)] = 66503, + [SMALL_STATE(1733)] = 66564, + [SMALL_STATE(1734)] = 66625, + [SMALL_STATE(1735)] = 66686, + [SMALL_STATE(1736)] = 66747, + [SMALL_STATE(1737)] = 66808, + [SMALL_STATE(1738)] = 66869, + [SMALL_STATE(1739)] = 66930, + [SMALL_STATE(1740)] = 66991, + [SMALL_STATE(1741)] = 67052, + [SMALL_STATE(1742)] = 67113, + [SMALL_STATE(1743)] = 67174, + [SMALL_STATE(1744)] = 67235, + [SMALL_STATE(1745)] = 67296, + [SMALL_STATE(1746)] = 67357, + [SMALL_STATE(1747)] = 67418, + [SMALL_STATE(1748)] = 67479, + [SMALL_STATE(1749)] = 67540, + [SMALL_STATE(1750)] = 67601, + [SMALL_STATE(1751)] = 67662, + [SMALL_STATE(1752)] = 67723, + [SMALL_STATE(1753)] = 67784, + [SMALL_STATE(1754)] = 67845, + [SMALL_STATE(1755)] = 67906, + [SMALL_STATE(1756)] = 67967, + [SMALL_STATE(1757)] = 68028, + [SMALL_STATE(1758)] = 68089, + [SMALL_STATE(1759)] = 68150, + [SMALL_STATE(1760)] = 68211, + [SMALL_STATE(1761)] = 68272, + [SMALL_STATE(1762)] = 68333, + [SMALL_STATE(1763)] = 68394, + [SMALL_STATE(1764)] = 68455, + [SMALL_STATE(1765)] = 68516, + [SMALL_STATE(1766)] = 68577, + [SMALL_STATE(1767)] = 68638, + [SMALL_STATE(1768)] = 68699, + [SMALL_STATE(1769)] = 68760, + [SMALL_STATE(1770)] = 68821, + [SMALL_STATE(1771)] = 68882, + [SMALL_STATE(1772)] = 68943, + [SMALL_STATE(1773)] = 69004, + [SMALL_STATE(1774)] = 69065, + [SMALL_STATE(1775)] = 69126, + [SMALL_STATE(1776)] = 69187, + [SMALL_STATE(1777)] = 69248, + [SMALL_STATE(1778)] = 69309, + [SMALL_STATE(1779)] = 69370, + [SMALL_STATE(1780)] = 69431, + [SMALL_STATE(1781)] = 69492, + [SMALL_STATE(1782)] = 69553, + [SMALL_STATE(1783)] = 69614, + [SMALL_STATE(1784)] = 69675, + [SMALL_STATE(1785)] = 69736, + [SMALL_STATE(1786)] = 69797, + [SMALL_STATE(1787)] = 69858, + [SMALL_STATE(1788)] = 69919, + [SMALL_STATE(1789)] = 69980, + [SMALL_STATE(1790)] = 70041, + [SMALL_STATE(1791)] = 70102, + [SMALL_STATE(1792)] = 70163, + [SMALL_STATE(1793)] = 70224, + [SMALL_STATE(1794)] = 70285, + [SMALL_STATE(1795)] = 70346, + [SMALL_STATE(1796)] = 70407, + [SMALL_STATE(1797)] = 70468, + [SMALL_STATE(1798)] = 70529, + [SMALL_STATE(1799)] = 70590, + [SMALL_STATE(1800)] = 70651, + [SMALL_STATE(1801)] = 70712, + [SMALL_STATE(1802)] = 70773, + [SMALL_STATE(1803)] = 70834, + [SMALL_STATE(1804)] = 70895, + [SMALL_STATE(1805)] = 70956, + [SMALL_STATE(1806)] = 71017, + [SMALL_STATE(1807)] = 71084, + [SMALL_STATE(1808)] = 71145, + [SMALL_STATE(1809)] = 71206, + [SMALL_STATE(1810)] = 71267, + [SMALL_STATE(1811)] = 71328, + [SMALL_STATE(1812)] = 71389, + [SMALL_STATE(1813)] = 71450, + [SMALL_STATE(1814)] = 71511, + [SMALL_STATE(1815)] = 71572, + [SMALL_STATE(1816)] = 71633, + [SMALL_STATE(1817)] = 71694, + [SMALL_STATE(1818)] = 71755, + [SMALL_STATE(1819)] = 71816, + [SMALL_STATE(1820)] = 71877, + [SMALL_STATE(1821)] = 71938, + [SMALL_STATE(1822)] = 71999, + [SMALL_STATE(1823)] = 72060, + [SMALL_STATE(1824)] = 72121, + [SMALL_STATE(1825)] = 72182, + [SMALL_STATE(1826)] = 72243, + [SMALL_STATE(1827)] = 72304, + [SMALL_STATE(1828)] = 72365, + [SMALL_STATE(1829)] = 72426, + [SMALL_STATE(1830)] = 72487, + [SMALL_STATE(1831)] = 72548, + [SMALL_STATE(1832)] = 72609, + [SMALL_STATE(1833)] = 72670, + [SMALL_STATE(1834)] = 72731, + [SMALL_STATE(1835)] = 72792, + [SMALL_STATE(1836)] = 72853, + [SMALL_STATE(1837)] = 72914, + [SMALL_STATE(1838)] = 72975, + [SMALL_STATE(1839)] = 73036, + [SMALL_STATE(1840)] = 73097, + [SMALL_STATE(1841)] = 73158, + [SMALL_STATE(1842)] = 73219, + [SMALL_STATE(1843)] = 73280, + [SMALL_STATE(1844)] = 73341, + [SMALL_STATE(1845)] = 73402, + [SMALL_STATE(1846)] = 73463, + [SMALL_STATE(1847)] = 73524, + [SMALL_STATE(1848)] = 73585, + [SMALL_STATE(1849)] = 73646, + [SMALL_STATE(1850)] = 73707, + [SMALL_STATE(1851)] = 73768, + [SMALL_STATE(1852)] = 73829, + [SMALL_STATE(1853)] = 73890, + [SMALL_STATE(1854)] = 73951, + [SMALL_STATE(1855)] = 74012, + [SMALL_STATE(1856)] = 74073, + [SMALL_STATE(1857)] = 74134, + [SMALL_STATE(1858)] = 74195, + [SMALL_STATE(1859)] = 74256, + [SMALL_STATE(1860)] = 74317, + [SMALL_STATE(1861)] = 74378, + [SMALL_STATE(1862)] = 74439, + [SMALL_STATE(1863)] = 74500, + [SMALL_STATE(1864)] = 74561, + [SMALL_STATE(1865)] = 74622, + [SMALL_STATE(1866)] = 74683, + [SMALL_STATE(1867)] = 74744, + [SMALL_STATE(1868)] = 74805, + [SMALL_STATE(1869)] = 74866, + [SMALL_STATE(1870)] = 74927, + [SMALL_STATE(1871)] = 74988, + [SMALL_STATE(1872)] = 75049, + [SMALL_STATE(1873)] = 75110, + [SMALL_STATE(1874)] = 75171, + [SMALL_STATE(1875)] = 75232, + [SMALL_STATE(1876)] = 75293, + [SMALL_STATE(1877)] = 75354, + [SMALL_STATE(1878)] = 75415, + [SMALL_STATE(1879)] = 75476, + [SMALL_STATE(1880)] = 75537, + [SMALL_STATE(1881)] = 75598, + [SMALL_STATE(1882)] = 75659, + [SMALL_STATE(1883)] = 75720, + [SMALL_STATE(1884)] = 75781, + [SMALL_STATE(1885)] = 75842, + [SMALL_STATE(1886)] = 75903, + [SMALL_STATE(1887)] = 75964, + [SMALL_STATE(1888)] = 76025, + [SMALL_STATE(1889)] = 76086, + [SMALL_STATE(1890)] = 76147, + [SMALL_STATE(1891)] = 76214, + [SMALL_STATE(1892)] = 76275, + [SMALL_STATE(1893)] = 76336, + [SMALL_STATE(1894)] = 76397, + [SMALL_STATE(1895)] = 76458, + [SMALL_STATE(1896)] = 76519, + [SMALL_STATE(1897)] = 76580, + [SMALL_STATE(1898)] = 76641, + [SMALL_STATE(1899)] = 76702, + [SMALL_STATE(1900)] = 76763, + [SMALL_STATE(1901)] = 76824, + [SMALL_STATE(1902)] = 76885, + [SMALL_STATE(1903)] = 76946, + [SMALL_STATE(1904)] = 77007, + [SMALL_STATE(1905)] = 77068, + [SMALL_STATE(1906)] = 77129, + [SMALL_STATE(1907)] = 77190, + [SMALL_STATE(1908)] = 77251, + [SMALL_STATE(1909)] = 77312, + [SMALL_STATE(1910)] = 77373, + [SMALL_STATE(1911)] = 77434, + [SMALL_STATE(1912)] = 77495, + [SMALL_STATE(1913)] = 77556, + [SMALL_STATE(1914)] = 77617, + [SMALL_STATE(1915)] = 77678, + [SMALL_STATE(1916)] = 77739, + [SMALL_STATE(1917)] = 77800, + [SMALL_STATE(1918)] = 77861, + [SMALL_STATE(1919)] = 77922, + [SMALL_STATE(1920)] = 77983, + [SMALL_STATE(1921)] = 78044, + [SMALL_STATE(1922)] = 78105, + [SMALL_STATE(1923)] = 78166, + [SMALL_STATE(1924)] = 78227, + [SMALL_STATE(1925)] = 78288, + [SMALL_STATE(1926)] = 78349, + [SMALL_STATE(1927)] = 78410, + [SMALL_STATE(1928)] = 78471, + [SMALL_STATE(1929)] = 78532, + [SMALL_STATE(1930)] = 78593, + [SMALL_STATE(1931)] = 78654, + [SMALL_STATE(1932)] = 78715, + [SMALL_STATE(1933)] = 78776, + [SMALL_STATE(1934)] = 78837, + [SMALL_STATE(1935)] = 78898, + [SMALL_STATE(1936)] = 78959, + [SMALL_STATE(1937)] = 79020, + [SMALL_STATE(1938)] = 79081, + [SMALL_STATE(1939)] = 79142, + [SMALL_STATE(1940)] = 79203, + [SMALL_STATE(1941)] = 79264, + [SMALL_STATE(1942)] = 79325, + [SMALL_STATE(1943)] = 79386, + [SMALL_STATE(1944)] = 79447, + [SMALL_STATE(1945)] = 79508, + [SMALL_STATE(1946)] = 79569, + [SMALL_STATE(1947)] = 79629, + [SMALL_STATE(1948)] = 79689, + [SMALL_STATE(1949)] = 79748, + [SMALL_STATE(1950)] = 79807, + [SMALL_STATE(1951)] = 79866, + [SMALL_STATE(1952)] = 79925, + [SMALL_STATE(1953)] = 79984, + [SMALL_STATE(1954)] = 80043, + [SMALL_STATE(1955)] = 80102, + [SMALL_STATE(1956)] = 80161, + [SMALL_STATE(1957)] = 80220, + [SMALL_STATE(1958)] = 80279, + [SMALL_STATE(1959)] = 80338, + [SMALL_STATE(1960)] = 80397, + [SMALL_STATE(1961)] = 80456, + [SMALL_STATE(1962)] = 80515, + [SMALL_STATE(1963)] = 80574, + [SMALL_STATE(1964)] = 80633, + [SMALL_STATE(1965)] = 80692, + [SMALL_STATE(1966)] = 80751, + [SMALL_STATE(1967)] = 80810, + [SMALL_STATE(1968)] = 80869, + [SMALL_STATE(1969)] = 80928, + [SMALL_STATE(1970)] = 80987, + [SMALL_STATE(1971)] = 81046, + [SMALL_STATE(1972)] = 81105, + [SMALL_STATE(1973)] = 81164, + [SMALL_STATE(1974)] = 81223, + [SMALL_STATE(1975)] = 81282, + [SMALL_STATE(1976)] = 81341, + [SMALL_STATE(1977)] = 81400, + [SMALL_STATE(1978)] = 81459, + [SMALL_STATE(1979)] = 81518, + [SMALL_STATE(1980)] = 81577, + [SMALL_STATE(1981)] = 81636, + [SMALL_STATE(1982)] = 81695, + [SMALL_STATE(1983)] = 81754, + [SMALL_STATE(1984)] = 81813, + [SMALL_STATE(1985)] = 81872, + [SMALL_STATE(1986)] = 81931, + [SMALL_STATE(1987)] = 81990, + [SMALL_STATE(1988)] = 82049, + [SMALL_STATE(1989)] = 82108, + [SMALL_STATE(1990)] = 82167, + [SMALL_STATE(1991)] = 82226, + [SMALL_STATE(1992)] = 82285, + [SMALL_STATE(1993)] = 82344, + [SMALL_STATE(1994)] = 82403, + [SMALL_STATE(1995)] = 82462, + [SMALL_STATE(1996)] = 82521, + [SMALL_STATE(1997)] = 82580, + [SMALL_STATE(1998)] = 82639, + [SMALL_STATE(1999)] = 82698, + [SMALL_STATE(2000)] = 82757, + [SMALL_STATE(2001)] = 82816, + [SMALL_STATE(2002)] = 82875, + [SMALL_STATE(2003)] = 82934, + [SMALL_STATE(2004)] = 82993, + [SMALL_STATE(2005)] = 83052, + [SMALL_STATE(2006)] = 83111, + [SMALL_STATE(2007)] = 83170, + [SMALL_STATE(2008)] = 83229, + [SMALL_STATE(2009)] = 83288, + [SMALL_STATE(2010)] = 83347, + [SMALL_STATE(2011)] = 83406, + [SMALL_STATE(2012)] = 83465, + [SMALL_STATE(2013)] = 83524, + [SMALL_STATE(2014)] = 83583, + [SMALL_STATE(2015)] = 83642, + [SMALL_STATE(2016)] = 83701, + [SMALL_STATE(2017)] = 83760, + [SMALL_STATE(2018)] = 83819, + [SMALL_STATE(2019)] = 83878, + [SMALL_STATE(2020)] = 83937, + [SMALL_STATE(2021)] = 83996, + [SMALL_STATE(2022)] = 84055, + [SMALL_STATE(2023)] = 84114, + [SMALL_STATE(2024)] = 84173, + [SMALL_STATE(2025)] = 84232, + [SMALL_STATE(2026)] = 84291, + [SMALL_STATE(2027)] = 84350, + [SMALL_STATE(2028)] = 84409, + [SMALL_STATE(2029)] = 84468, + [SMALL_STATE(2030)] = 84527, + [SMALL_STATE(2031)] = 84586, + [SMALL_STATE(2032)] = 84645, + [SMALL_STATE(2033)] = 84704, + [SMALL_STATE(2034)] = 84763, + [SMALL_STATE(2035)] = 84822, + [SMALL_STATE(2036)] = 84881, + [SMALL_STATE(2037)] = 84940, + [SMALL_STATE(2038)] = 84999, + [SMALL_STATE(2039)] = 85058, + [SMALL_STATE(2040)] = 85117, + [SMALL_STATE(2041)] = 85176, + [SMALL_STATE(2042)] = 85235, + [SMALL_STATE(2043)] = 85294, + [SMALL_STATE(2044)] = 85353, + [SMALL_STATE(2045)] = 85412, + [SMALL_STATE(2046)] = 85471, + [SMALL_STATE(2047)] = 85530, + [SMALL_STATE(2048)] = 85589, + [SMALL_STATE(2049)] = 85648, + [SMALL_STATE(2050)] = 85707, + [SMALL_STATE(2051)] = 85766, + [SMALL_STATE(2052)] = 85825, + [SMALL_STATE(2053)] = 85884, + [SMALL_STATE(2054)] = 85943, + [SMALL_STATE(2055)] = 86002, + [SMALL_STATE(2056)] = 86061, + [SMALL_STATE(2057)] = 86120, + [SMALL_STATE(2058)] = 86179, + [SMALL_STATE(2059)] = 86238, + [SMALL_STATE(2060)] = 86297, + [SMALL_STATE(2061)] = 86356, + [SMALL_STATE(2062)] = 86415, + [SMALL_STATE(2063)] = 86474, + [SMALL_STATE(2064)] = 86533, + [SMALL_STATE(2065)] = 86592, + [SMALL_STATE(2066)] = 86651, + [SMALL_STATE(2067)] = 86710, + [SMALL_STATE(2068)] = 86769, + [SMALL_STATE(2069)] = 86828, + [SMALL_STATE(2070)] = 86887, + [SMALL_STATE(2071)] = 86946, + [SMALL_STATE(2072)] = 87005, + [SMALL_STATE(2073)] = 87064, + [SMALL_STATE(2074)] = 87123, + [SMALL_STATE(2075)] = 87182, + [SMALL_STATE(2076)] = 87241, + [SMALL_STATE(2077)] = 87300, + [SMALL_STATE(2078)] = 87359, + [SMALL_STATE(2079)] = 87418, + [SMALL_STATE(2080)] = 87477, + [SMALL_STATE(2081)] = 87536, + [SMALL_STATE(2082)] = 87595, + [SMALL_STATE(2083)] = 87654, + [SMALL_STATE(2084)] = 87713, + [SMALL_STATE(2085)] = 87772, + [SMALL_STATE(2086)] = 87831, + [SMALL_STATE(2087)] = 87890, + [SMALL_STATE(2088)] = 87949, + [SMALL_STATE(2089)] = 88008, + [SMALL_STATE(2090)] = 88067, + [SMALL_STATE(2091)] = 88126, + [SMALL_STATE(2092)] = 88185, + [SMALL_STATE(2093)] = 88244, + [SMALL_STATE(2094)] = 88303, + [SMALL_STATE(2095)] = 88362, + [SMALL_STATE(2096)] = 88421, + [SMALL_STATE(2097)] = 88480, + [SMALL_STATE(2098)] = 88539, + [SMALL_STATE(2099)] = 88598, + [SMALL_STATE(2100)] = 88657, + [SMALL_STATE(2101)] = 88716, + [SMALL_STATE(2102)] = 88775, + [SMALL_STATE(2103)] = 88834, + [SMALL_STATE(2104)] = 88893, + [SMALL_STATE(2105)] = 88952, + [SMALL_STATE(2106)] = 89011, + [SMALL_STATE(2107)] = 89070, + [SMALL_STATE(2108)] = 89129, + [SMALL_STATE(2109)] = 89188, + [SMALL_STATE(2110)] = 89247, + [SMALL_STATE(2111)] = 89306, + [SMALL_STATE(2112)] = 89365, + [SMALL_STATE(2113)] = 89424, + [SMALL_STATE(2114)] = 89483, + [SMALL_STATE(2115)] = 89542, + [SMALL_STATE(2116)] = 89601, + [SMALL_STATE(2117)] = 89660, + [SMALL_STATE(2118)] = 89719, + [SMALL_STATE(2119)] = 89778, + [SMALL_STATE(2120)] = 89837, + [SMALL_STATE(2121)] = 89896, + [SMALL_STATE(2122)] = 89955, + [SMALL_STATE(2123)] = 90014, + [SMALL_STATE(2124)] = 90073, + [SMALL_STATE(2125)] = 90132, + [SMALL_STATE(2126)] = 90191, + [SMALL_STATE(2127)] = 90250, + [SMALL_STATE(2128)] = 90309, + [SMALL_STATE(2129)] = 90368, + [SMALL_STATE(2130)] = 90427, + [SMALL_STATE(2131)] = 90486, + [SMALL_STATE(2132)] = 90545, + [SMALL_STATE(2133)] = 90604, + [SMALL_STATE(2134)] = 90663, + [SMALL_STATE(2135)] = 90722, + [SMALL_STATE(2136)] = 90781, + [SMALL_STATE(2137)] = 90840, + [SMALL_STATE(2138)] = 90899, + [SMALL_STATE(2139)] = 90958, + [SMALL_STATE(2140)] = 91017, + [SMALL_STATE(2141)] = 91076, + [SMALL_STATE(2142)] = 91135, + [SMALL_STATE(2143)] = 91194, + [SMALL_STATE(2144)] = 91253, + [SMALL_STATE(2145)] = 91312, + [SMALL_STATE(2146)] = 91371, + [SMALL_STATE(2147)] = 91430, + [SMALL_STATE(2148)] = 91489, + [SMALL_STATE(2149)] = 91548, + [SMALL_STATE(2150)] = 91607, + [SMALL_STATE(2151)] = 91666, + [SMALL_STATE(2152)] = 91725, + [SMALL_STATE(2153)] = 91784, + [SMALL_STATE(2154)] = 91843, + [SMALL_STATE(2155)] = 91902, + [SMALL_STATE(2156)] = 91961, + [SMALL_STATE(2157)] = 92020, + [SMALL_STATE(2158)] = 92079, + [SMALL_STATE(2159)] = 92138, + [SMALL_STATE(2160)] = 92197, + [SMALL_STATE(2161)] = 92256, + [SMALL_STATE(2162)] = 92315, + [SMALL_STATE(2163)] = 92374, + [SMALL_STATE(2164)] = 92433, + [SMALL_STATE(2165)] = 92492, + [SMALL_STATE(2166)] = 92551, + [SMALL_STATE(2167)] = 92610, + [SMALL_STATE(2168)] = 92669, + [SMALL_STATE(2169)] = 92728, + [SMALL_STATE(2170)] = 92787, + [SMALL_STATE(2171)] = 92846, + [SMALL_STATE(2172)] = 92905, + [SMALL_STATE(2173)] = 92964, + [SMALL_STATE(2174)] = 93023, + [SMALL_STATE(2175)] = 93082, + [SMALL_STATE(2176)] = 93141, + [SMALL_STATE(2177)] = 93200, + [SMALL_STATE(2178)] = 93259, + [SMALL_STATE(2179)] = 93318, + [SMALL_STATE(2180)] = 93377, + [SMALL_STATE(2181)] = 93436, + [SMALL_STATE(2182)] = 93495, + [SMALL_STATE(2183)] = 93554, + [SMALL_STATE(2184)] = 93613, + [SMALL_STATE(2185)] = 93672, + [SMALL_STATE(2186)] = 93731, + [SMALL_STATE(2187)] = 93790, + [SMALL_STATE(2188)] = 93849, + [SMALL_STATE(2189)] = 93908, + [SMALL_STATE(2190)] = 93967, + [SMALL_STATE(2191)] = 94026, + [SMALL_STATE(2192)] = 94085, + [SMALL_STATE(2193)] = 94144, + [SMALL_STATE(2194)] = 94203, + [SMALL_STATE(2195)] = 94262, + [SMALL_STATE(2196)] = 94321, + [SMALL_STATE(2197)] = 94380, + [SMALL_STATE(2198)] = 94439, + [SMALL_STATE(2199)] = 94498, + [SMALL_STATE(2200)] = 94557, + [SMALL_STATE(2201)] = 94616, + [SMALL_STATE(2202)] = 94675, + [SMALL_STATE(2203)] = 94734, + [SMALL_STATE(2204)] = 94793, + [SMALL_STATE(2205)] = 94852, + [SMALL_STATE(2206)] = 94911, + [SMALL_STATE(2207)] = 94970, + [SMALL_STATE(2208)] = 95029, + [SMALL_STATE(2209)] = 95088, + [SMALL_STATE(2210)] = 95147, + [SMALL_STATE(2211)] = 95206, + [SMALL_STATE(2212)] = 95265, + [SMALL_STATE(2213)] = 95324, + [SMALL_STATE(2214)] = 95383, + [SMALL_STATE(2215)] = 95442, + [SMALL_STATE(2216)] = 95501, + [SMALL_STATE(2217)] = 95560, + [SMALL_STATE(2218)] = 95619, + [SMALL_STATE(2219)] = 95678, + [SMALL_STATE(2220)] = 95737, + [SMALL_STATE(2221)] = 95796, + [SMALL_STATE(2222)] = 95855, + [SMALL_STATE(2223)] = 95914, + [SMALL_STATE(2224)] = 95973, + [SMALL_STATE(2225)] = 96032, + [SMALL_STATE(2226)] = 96091, + [SMALL_STATE(2227)] = 96150, + [SMALL_STATE(2228)] = 96209, + [SMALL_STATE(2229)] = 96268, + [SMALL_STATE(2230)] = 96327, + [SMALL_STATE(2231)] = 96386, + [SMALL_STATE(2232)] = 96445, + [SMALL_STATE(2233)] = 96504, + [SMALL_STATE(2234)] = 96563, + [SMALL_STATE(2235)] = 96622, + [SMALL_STATE(2236)] = 96681, + [SMALL_STATE(2237)] = 96740, + [SMALL_STATE(2238)] = 96799, + [SMALL_STATE(2239)] = 96858, + [SMALL_STATE(2240)] = 96917, + [SMALL_STATE(2241)] = 96976, + [SMALL_STATE(2242)] = 97035, + [SMALL_STATE(2243)] = 97094, + [SMALL_STATE(2244)] = 97153, + [SMALL_STATE(2245)] = 97212, + [SMALL_STATE(2246)] = 97271, + [SMALL_STATE(2247)] = 97330, + [SMALL_STATE(2248)] = 97389, + [SMALL_STATE(2249)] = 97448, + [SMALL_STATE(2250)] = 97507, + [SMALL_STATE(2251)] = 97566, + [SMALL_STATE(2252)] = 97625, + [SMALL_STATE(2253)] = 97684, + [SMALL_STATE(2254)] = 97743, + [SMALL_STATE(2255)] = 97802, + [SMALL_STATE(2256)] = 97861, + [SMALL_STATE(2257)] = 97920, + [SMALL_STATE(2258)] = 97979, + [SMALL_STATE(2259)] = 98038, + [SMALL_STATE(2260)] = 98097, + [SMALL_STATE(2261)] = 98156, + [SMALL_STATE(2262)] = 98215, + [SMALL_STATE(2263)] = 98274, + [SMALL_STATE(2264)] = 98333, + [SMALL_STATE(2265)] = 98392, + [SMALL_STATE(2266)] = 98451, + [SMALL_STATE(2267)] = 98510, + [SMALL_STATE(2268)] = 98569, + [SMALL_STATE(2269)] = 98628, + [SMALL_STATE(2270)] = 98687, + [SMALL_STATE(2271)] = 98746, + [SMALL_STATE(2272)] = 98805, + [SMALL_STATE(2273)] = 98864, + [SMALL_STATE(2274)] = 98923, + [SMALL_STATE(2275)] = 98982, + [SMALL_STATE(2276)] = 99041, + [SMALL_STATE(2277)] = 99100, + [SMALL_STATE(2278)] = 99159, + [SMALL_STATE(2279)] = 99218, + [SMALL_STATE(2280)] = 99277, + [SMALL_STATE(2281)] = 99336, + [SMALL_STATE(2282)] = 99395, + [SMALL_STATE(2283)] = 99454, + [SMALL_STATE(2284)] = 99513, + [SMALL_STATE(2285)] = 99572, + [SMALL_STATE(2286)] = 99631, + [SMALL_STATE(2287)] = 99690, + [SMALL_STATE(2288)] = 99749, + [SMALL_STATE(2289)] = 99808, + [SMALL_STATE(2290)] = 99867, + [SMALL_STATE(2291)] = 99926, + [SMALL_STATE(2292)] = 99985, + [SMALL_STATE(2293)] = 100044, + [SMALL_STATE(2294)] = 100103, + [SMALL_STATE(2295)] = 100162, + [SMALL_STATE(2296)] = 100221, + [SMALL_STATE(2297)] = 100280, + [SMALL_STATE(2298)] = 100339, + [SMALL_STATE(2299)] = 100398, + [SMALL_STATE(2300)] = 100457, + [SMALL_STATE(2301)] = 100516, + [SMALL_STATE(2302)] = 100575, + [SMALL_STATE(2303)] = 100634, + [SMALL_STATE(2304)] = 100693, + [SMALL_STATE(2305)] = 100752, + [SMALL_STATE(2306)] = 100811, + [SMALL_STATE(2307)] = 100870, + [SMALL_STATE(2308)] = 100929, + [SMALL_STATE(2309)] = 100988, + [SMALL_STATE(2310)] = 101047, + [SMALL_STATE(2311)] = 101106, + [SMALL_STATE(2312)] = 101165, + [SMALL_STATE(2313)] = 101224, + [SMALL_STATE(2314)] = 101283, + [SMALL_STATE(2315)] = 101342, + [SMALL_STATE(2316)] = 101401, + [SMALL_STATE(2317)] = 101460, + [SMALL_STATE(2318)] = 101519, + [SMALL_STATE(2319)] = 101578, + [SMALL_STATE(2320)] = 101637, + [SMALL_STATE(2321)] = 101696, + [SMALL_STATE(2322)] = 101755, + [SMALL_STATE(2323)] = 101814, + [SMALL_STATE(2324)] = 101873, + [SMALL_STATE(2325)] = 101932, + [SMALL_STATE(2326)] = 101991, + [SMALL_STATE(2327)] = 102050, + [SMALL_STATE(2328)] = 102109, + [SMALL_STATE(2329)] = 102168, + [SMALL_STATE(2330)] = 102227, + [SMALL_STATE(2331)] = 102286, + [SMALL_STATE(2332)] = 102345, + [SMALL_STATE(2333)] = 102404, + [SMALL_STATE(2334)] = 102463, + [SMALL_STATE(2335)] = 102522, + [SMALL_STATE(2336)] = 102581, + [SMALL_STATE(2337)] = 102640, + [SMALL_STATE(2338)] = 102699, + [SMALL_STATE(2339)] = 102758, + [SMALL_STATE(2340)] = 102817, + [SMALL_STATE(2341)] = 102876, + [SMALL_STATE(2342)] = 102935, + [SMALL_STATE(2343)] = 102994, + [SMALL_STATE(2344)] = 103053, + [SMALL_STATE(2345)] = 103112, + [SMALL_STATE(2346)] = 103171, + [SMALL_STATE(2347)] = 103230, + [SMALL_STATE(2348)] = 103289, + [SMALL_STATE(2349)] = 103348, + [SMALL_STATE(2350)] = 103407, + [SMALL_STATE(2351)] = 103466, + [SMALL_STATE(2352)] = 103525, + [SMALL_STATE(2353)] = 103584, + [SMALL_STATE(2354)] = 103643, + [SMALL_STATE(2355)] = 103702, + [SMALL_STATE(2356)] = 103761, + [SMALL_STATE(2357)] = 103820, + [SMALL_STATE(2358)] = 103879, + [SMALL_STATE(2359)] = 103938, + [SMALL_STATE(2360)] = 103997, + [SMALL_STATE(2361)] = 104056, + [SMALL_STATE(2362)] = 104115, + [SMALL_STATE(2363)] = 104174, + [SMALL_STATE(2364)] = 104233, + [SMALL_STATE(2365)] = 104292, + [SMALL_STATE(2366)] = 104351, + [SMALL_STATE(2367)] = 104410, + [SMALL_STATE(2368)] = 104469, + [SMALL_STATE(2369)] = 104528, + [SMALL_STATE(2370)] = 104587, + [SMALL_STATE(2371)] = 104646, + [SMALL_STATE(2372)] = 104705, + [SMALL_STATE(2373)] = 104764, + [SMALL_STATE(2374)] = 104823, + [SMALL_STATE(2375)] = 104882, + [SMALL_STATE(2376)] = 104941, + [SMALL_STATE(2377)] = 105000, + [SMALL_STATE(2378)] = 105059, + [SMALL_STATE(2379)] = 105118, + [SMALL_STATE(2380)] = 105177, + [SMALL_STATE(2381)] = 105236, + [SMALL_STATE(2382)] = 105295, + [SMALL_STATE(2383)] = 105354, + [SMALL_STATE(2384)] = 105413, + [SMALL_STATE(2385)] = 105472, + [SMALL_STATE(2386)] = 105531, + [SMALL_STATE(2387)] = 105590, + [SMALL_STATE(2388)] = 105649, + [SMALL_STATE(2389)] = 105708, + [SMALL_STATE(2390)] = 105767, + [SMALL_STATE(2391)] = 105826, + [SMALL_STATE(2392)] = 105885, + [SMALL_STATE(2393)] = 105944, + [SMALL_STATE(2394)] = 106003, + [SMALL_STATE(2395)] = 106062, + [SMALL_STATE(2396)] = 106121, + [SMALL_STATE(2397)] = 106180, + [SMALL_STATE(2398)] = 106239, + [SMALL_STATE(2399)] = 106298, + [SMALL_STATE(2400)] = 106357, + [SMALL_STATE(2401)] = 106416, + [SMALL_STATE(2402)] = 106475, + [SMALL_STATE(2403)] = 106534, + [SMALL_STATE(2404)] = 106593, + [SMALL_STATE(2405)] = 106652, + [SMALL_STATE(2406)] = 106711, + [SMALL_STATE(2407)] = 106770, + [SMALL_STATE(2408)] = 106829, + [SMALL_STATE(2409)] = 106888, + [SMALL_STATE(2410)] = 106947, + [SMALL_STATE(2411)] = 107006, + [SMALL_STATE(2412)] = 107065, + [SMALL_STATE(2413)] = 107124, + [SMALL_STATE(2414)] = 107183, + [SMALL_STATE(2415)] = 107242, + [SMALL_STATE(2416)] = 107301, + [SMALL_STATE(2417)] = 107360, + [SMALL_STATE(2418)] = 107419, + [SMALL_STATE(2419)] = 107478, + [SMALL_STATE(2420)] = 107537, + [SMALL_STATE(2421)] = 107596, + [SMALL_STATE(2422)] = 107655, + [SMALL_STATE(2423)] = 107714, + [SMALL_STATE(2424)] = 107773, + [SMALL_STATE(2425)] = 107832, + [SMALL_STATE(2426)] = 107891, + [SMALL_STATE(2427)] = 107950, + [SMALL_STATE(2428)] = 108009, + [SMALL_STATE(2429)] = 108068, + [SMALL_STATE(2430)] = 108127, + [SMALL_STATE(2431)] = 108186, + [SMALL_STATE(2432)] = 108245, + [SMALL_STATE(2433)] = 108304, + [SMALL_STATE(2434)] = 108363, + [SMALL_STATE(2435)] = 108422, + [SMALL_STATE(2436)] = 108481, + [SMALL_STATE(2437)] = 108540, + [SMALL_STATE(2438)] = 108599, + [SMALL_STATE(2439)] = 108658, + [SMALL_STATE(2440)] = 108717, + [SMALL_STATE(2441)] = 108776, + [SMALL_STATE(2442)] = 108835, + [SMALL_STATE(2443)] = 108894, + [SMALL_STATE(2444)] = 108953, + [SMALL_STATE(2445)] = 109012, + [SMALL_STATE(2446)] = 109071, + [SMALL_STATE(2447)] = 109130, + [SMALL_STATE(2448)] = 109189, + [SMALL_STATE(2449)] = 109248, + [SMALL_STATE(2450)] = 109307, + [SMALL_STATE(2451)] = 109366, + [SMALL_STATE(2452)] = 109425, + [SMALL_STATE(2453)] = 109484, + [SMALL_STATE(2454)] = 109543, + [SMALL_STATE(2455)] = 109602, + [SMALL_STATE(2456)] = 109661, + [SMALL_STATE(2457)] = 109720, + [SMALL_STATE(2458)] = 109779, + [SMALL_STATE(2459)] = 109838, + [SMALL_STATE(2460)] = 109897, + [SMALL_STATE(2461)] = 109956, + [SMALL_STATE(2462)] = 110015, + [SMALL_STATE(2463)] = 110074, + [SMALL_STATE(2464)] = 110133, + [SMALL_STATE(2465)] = 110192, + [SMALL_STATE(2466)] = 110251, + [SMALL_STATE(2467)] = 110310, + [SMALL_STATE(2468)] = 110369, + [SMALL_STATE(2469)] = 110428, + [SMALL_STATE(2470)] = 110487, + [SMALL_STATE(2471)] = 110546, + [SMALL_STATE(2472)] = 110605, + [SMALL_STATE(2473)] = 110664, + [SMALL_STATE(2474)] = 110723, + [SMALL_STATE(2475)] = 110782, + [SMALL_STATE(2476)] = 110841, + [SMALL_STATE(2477)] = 110900, + [SMALL_STATE(2478)] = 110959, + [SMALL_STATE(2479)] = 111018, + [SMALL_STATE(2480)] = 111077, + [SMALL_STATE(2481)] = 111136, + [SMALL_STATE(2482)] = 111195, + [SMALL_STATE(2483)] = 111254, + [SMALL_STATE(2484)] = 111313, + [SMALL_STATE(2485)] = 111372, + [SMALL_STATE(2486)] = 111431, + [SMALL_STATE(2487)] = 111490, + [SMALL_STATE(2488)] = 111549, + [SMALL_STATE(2489)] = 111608, + [SMALL_STATE(2490)] = 111667, + [SMALL_STATE(2491)] = 111726, + [SMALL_STATE(2492)] = 111785, + [SMALL_STATE(2493)] = 111844, + [SMALL_STATE(2494)] = 111903, + [SMALL_STATE(2495)] = 111962, + [SMALL_STATE(2496)] = 112021, + [SMALL_STATE(2497)] = 112080, + [SMALL_STATE(2498)] = 112139, + [SMALL_STATE(2499)] = 112198, + [SMALL_STATE(2500)] = 112257, + [SMALL_STATE(2501)] = 112316, + [SMALL_STATE(2502)] = 112375, + [SMALL_STATE(2503)] = 112434, + [SMALL_STATE(2504)] = 112493, + [SMALL_STATE(2505)] = 112552, + [SMALL_STATE(2506)] = 112611, + [SMALL_STATE(2507)] = 112670, + [SMALL_STATE(2508)] = 112729, + [SMALL_STATE(2509)] = 112788, + [SMALL_STATE(2510)] = 112847, + [SMALL_STATE(2511)] = 112906, + [SMALL_STATE(2512)] = 112965, + [SMALL_STATE(2513)] = 113024, + [SMALL_STATE(2514)] = 113083, + [SMALL_STATE(2515)] = 113142, + [SMALL_STATE(2516)] = 113201, + [SMALL_STATE(2517)] = 113260, + [SMALL_STATE(2518)] = 113319, + [SMALL_STATE(2519)] = 113378, + [SMALL_STATE(2520)] = 113437, + [SMALL_STATE(2521)] = 113496, + [SMALL_STATE(2522)] = 113555, + [SMALL_STATE(2523)] = 113614, + [SMALL_STATE(2524)] = 113673, + [SMALL_STATE(2525)] = 113732, + [SMALL_STATE(2526)] = 113791, + [SMALL_STATE(2527)] = 113850, + [SMALL_STATE(2528)] = 113909, + [SMALL_STATE(2529)] = 113968, + [SMALL_STATE(2530)] = 114027, + [SMALL_STATE(2531)] = 114086, + [SMALL_STATE(2532)] = 114145, + [SMALL_STATE(2533)] = 114204, + [SMALL_STATE(2534)] = 114263, + [SMALL_STATE(2535)] = 114322, + [SMALL_STATE(2536)] = 114381, + [SMALL_STATE(2537)] = 114440, + [SMALL_STATE(2538)] = 114499, + [SMALL_STATE(2539)] = 114558, + [SMALL_STATE(2540)] = 114617, + [SMALL_STATE(2541)] = 114676, + [SMALL_STATE(2542)] = 114735, + [SMALL_STATE(2543)] = 114794, + [SMALL_STATE(2544)] = 114853, + [SMALL_STATE(2545)] = 114912, + [SMALL_STATE(2546)] = 114971, + [SMALL_STATE(2547)] = 115030, + [SMALL_STATE(2548)] = 115089, + [SMALL_STATE(2549)] = 115148, + [SMALL_STATE(2550)] = 115207, + [SMALL_STATE(2551)] = 115266, + [SMALL_STATE(2552)] = 115325, + [SMALL_STATE(2553)] = 115384, + [SMALL_STATE(2554)] = 115443, + [SMALL_STATE(2555)] = 115502, + [SMALL_STATE(2556)] = 115561, + [SMALL_STATE(2557)] = 115620, + [SMALL_STATE(2558)] = 115679, + [SMALL_STATE(2559)] = 115738, + [SMALL_STATE(2560)] = 115797, + [SMALL_STATE(2561)] = 115856, + [SMALL_STATE(2562)] = 115915, + [SMALL_STATE(2563)] = 115974, + [SMALL_STATE(2564)] = 116033, + [SMALL_STATE(2565)] = 116092, + [SMALL_STATE(2566)] = 116151, + [SMALL_STATE(2567)] = 116210, + [SMALL_STATE(2568)] = 116269, + [SMALL_STATE(2569)] = 116328, + [SMALL_STATE(2570)] = 116387, + [SMALL_STATE(2571)] = 116446, + [SMALL_STATE(2572)] = 116505, + [SMALL_STATE(2573)] = 116564, + [SMALL_STATE(2574)] = 116623, + [SMALL_STATE(2575)] = 116682, + [SMALL_STATE(2576)] = 116741, + [SMALL_STATE(2577)] = 116800, + [SMALL_STATE(2578)] = 116859, + [SMALL_STATE(2579)] = 116918, + [SMALL_STATE(2580)] = 116977, + [SMALL_STATE(2581)] = 117036, + [SMALL_STATE(2582)] = 117095, + [SMALL_STATE(2583)] = 117154, + [SMALL_STATE(2584)] = 117213, + [SMALL_STATE(2585)] = 117272, + [SMALL_STATE(2586)] = 117331, + [SMALL_STATE(2587)] = 117390, + [SMALL_STATE(2588)] = 117449, + [SMALL_STATE(2589)] = 117508, + [SMALL_STATE(2590)] = 117567, + [SMALL_STATE(2591)] = 117626, + [SMALL_STATE(2592)] = 117685, + [SMALL_STATE(2593)] = 117744, + [SMALL_STATE(2594)] = 117803, + [SMALL_STATE(2595)] = 117862, + [SMALL_STATE(2596)] = 117921, + [SMALL_STATE(2597)] = 117980, + [SMALL_STATE(2598)] = 118039, + [SMALL_STATE(2599)] = 118098, + [SMALL_STATE(2600)] = 118157, + [SMALL_STATE(2601)] = 118216, + [SMALL_STATE(2602)] = 118275, + [SMALL_STATE(2603)] = 118334, + [SMALL_STATE(2604)] = 118393, + [SMALL_STATE(2605)] = 118452, + [SMALL_STATE(2606)] = 118511, + [SMALL_STATE(2607)] = 118570, + [SMALL_STATE(2608)] = 118629, + [SMALL_STATE(2609)] = 118688, + [SMALL_STATE(2610)] = 118747, + [SMALL_STATE(2611)] = 118806, + [SMALL_STATE(2612)] = 118865, + [SMALL_STATE(2613)] = 118924, + [SMALL_STATE(2614)] = 118983, + [SMALL_STATE(2615)] = 119042, + [SMALL_STATE(2616)] = 119101, + [SMALL_STATE(2617)] = 119160, + [SMALL_STATE(2618)] = 119219, + [SMALL_STATE(2619)] = 119278, + [SMALL_STATE(2620)] = 119337, + [SMALL_STATE(2621)] = 119396, + [SMALL_STATE(2622)] = 119455, + [SMALL_STATE(2623)] = 119514, + [SMALL_STATE(2624)] = 119573, + [SMALL_STATE(2625)] = 119632, + [SMALL_STATE(2626)] = 119691, + [SMALL_STATE(2627)] = 119750, + [SMALL_STATE(2628)] = 119809, + [SMALL_STATE(2629)] = 119868, + [SMALL_STATE(2630)] = 119927, + [SMALL_STATE(2631)] = 119986, + [SMALL_STATE(2632)] = 120045, + [SMALL_STATE(2633)] = 120104, + [SMALL_STATE(2634)] = 120163, + [SMALL_STATE(2635)] = 120222, + [SMALL_STATE(2636)] = 120281, + [SMALL_STATE(2637)] = 120340, + [SMALL_STATE(2638)] = 120399, + [SMALL_STATE(2639)] = 120458, + [SMALL_STATE(2640)] = 120517, + [SMALL_STATE(2641)] = 120576, + [SMALL_STATE(2642)] = 120635, + [SMALL_STATE(2643)] = 120694, + [SMALL_STATE(2644)] = 120753, + [SMALL_STATE(2645)] = 120812, + [SMALL_STATE(2646)] = 120871, + [SMALL_STATE(2647)] = 120930, + [SMALL_STATE(2648)] = 120989, + [SMALL_STATE(2649)] = 121048, + [SMALL_STATE(2650)] = 121107, + [SMALL_STATE(2651)] = 121166, + [SMALL_STATE(2652)] = 121225, + [SMALL_STATE(2653)] = 121284, + [SMALL_STATE(2654)] = 121343, + [SMALL_STATE(2655)] = 121402, + [SMALL_STATE(2656)] = 121461, + [SMALL_STATE(2657)] = 121520, + [SMALL_STATE(2658)] = 121579, + [SMALL_STATE(2659)] = 121638, + [SMALL_STATE(2660)] = 121697, + [SMALL_STATE(2661)] = 121756, + [SMALL_STATE(2662)] = 121815, + [SMALL_STATE(2663)] = 121874, + [SMALL_STATE(2664)] = 121933, + [SMALL_STATE(2665)] = 121992, + [SMALL_STATE(2666)] = 122051, + [SMALL_STATE(2667)] = 122110, + [SMALL_STATE(2668)] = 122169, + [SMALL_STATE(2669)] = 122228, + [SMALL_STATE(2670)] = 122287, + [SMALL_STATE(2671)] = 122346, + [SMALL_STATE(2672)] = 122405, + [SMALL_STATE(2673)] = 122464, + [SMALL_STATE(2674)] = 122523, + [SMALL_STATE(2675)] = 122582, + [SMALL_STATE(2676)] = 122641, + [SMALL_STATE(2677)] = 122700, + [SMALL_STATE(2678)] = 122759, + [SMALL_STATE(2679)] = 122818, + [SMALL_STATE(2680)] = 122877, + [SMALL_STATE(2681)] = 122936, + [SMALL_STATE(2682)] = 122995, + [SMALL_STATE(2683)] = 123054, + [SMALL_STATE(2684)] = 123113, + [SMALL_STATE(2685)] = 123172, + [SMALL_STATE(2686)] = 123231, + [SMALL_STATE(2687)] = 123290, + [SMALL_STATE(2688)] = 123349, + [SMALL_STATE(2689)] = 123408, + [SMALL_STATE(2690)] = 123467, + [SMALL_STATE(2691)] = 123526, + [SMALL_STATE(2692)] = 123585, + [SMALL_STATE(2693)] = 123644, + [SMALL_STATE(2694)] = 123703, + [SMALL_STATE(2695)] = 123762, + [SMALL_STATE(2696)] = 123821, + [SMALL_STATE(2697)] = 123880, + [SMALL_STATE(2698)] = 123939, + [SMALL_STATE(2699)] = 123998, + [SMALL_STATE(2700)] = 124057, + [SMALL_STATE(2701)] = 124116, + [SMALL_STATE(2702)] = 124175, + [SMALL_STATE(2703)] = 124234, + [SMALL_STATE(2704)] = 124293, + [SMALL_STATE(2705)] = 124352, + [SMALL_STATE(2706)] = 124411, + [SMALL_STATE(2707)] = 124470, + [SMALL_STATE(2708)] = 124529, + [SMALL_STATE(2709)] = 124588, + [SMALL_STATE(2710)] = 124647, + [SMALL_STATE(2711)] = 124706, + [SMALL_STATE(2712)] = 124765, + [SMALL_STATE(2713)] = 124824, + [SMALL_STATE(2714)] = 124883, + [SMALL_STATE(2715)] = 124942, + [SMALL_STATE(2716)] = 125001, + [SMALL_STATE(2717)] = 125060, + [SMALL_STATE(2718)] = 125119, + [SMALL_STATE(2719)] = 125178, + [SMALL_STATE(2720)] = 125237, + [SMALL_STATE(2721)] = 125296, + [SMALL_STATE(2722)] = 125355, + [SMALL_STATE(2723)] = 125414, + [SMALL_STATE(2724)] = 125473, + [SMALL_STATE(2725)] = 125532, + [SMALL_STATE(2726)] = 125591, + [SMALL_STATE(2727)] = 125650, + [SMALL_STATE(2728)] = 125709, + [SMALL_STATE(2729)] = 125768, + [SMALL_STATE(2730)] = 125827, + [SMALL_STATE(2731)] = 125886, + [SMALL_STATE(2732)] = 125945, + [SMALL_STATE(2733)] = 126004, + [SMALL_STATE(2734)] = 126063, + [SMALL_STATE(2735)] = 126122, + [SMALL_STATE(2736)] = 126181, + [SMALL_STATE(2737)] = 126240, + [SMALL_STATE(2738)] = 126299, + [SMALL_STATE(2739)] = 126358, + [SMALL_STATE(2740)] = 126417, + [SMALL_STATE(2741)] = 126476, + [SMALL_STATE(2742)] = 126535, + [SMALL_STATE(2743)] = 126594, + [SMALL_STATE(2744)] = 126653, + [SMALL_STATE(2745)] = 126712, + [SMALL_STATE(2746)] = 126771, + [SMALL_STATE(2747)] = 126830, + [SMALL_STATE(2748)] = 126889, + [SMALL_STATE(2749)] = 126948, + [SMALL_STATE(2750)] = 127007, + [SMALL_STATE(2751)] = 127066, + [SMALL_STATE(2752)] = 127125, + [SMALL_STATE(2753)] = 127184, + [SMALL_STATE(2754)] = 127243, + [SMALL_STATE(2755)] = 127302, + [SMALL_STATE(2756)] = 127361, + [SMALL_STATE(2757)] = 127420, + [SMALL_STATE(2758)] = 127479, + [SMALL_STATE(2759)] = 127538, + [SMALL_STATE(2760)] = 127597, + [SMALL_STATE(2761)] = 127656, + [SMALL_STATE(2762)] = 127715, + [SMALL_STATE(2763)] = 127774, + [SMALL_STATE(2764)] = 127833, + [SMALL_STATE(2765)] = 127892, + [SMALL_STATE(2766)] = 127951, + [SMALL_STATE(2767)] = 128010, + [SMALL_STATE(2768)] = 128069, + [SMALL_STATE(2769)] = 128128, + [SMALL_STATE(2770)] = 128187, + [SMALL_STATE(2771)] = 128246, + [SMALL_STATE(2772)] = 128305, + [SMALL_STATE(2773)] = 128364, + [SMALL_STATE(2774)] = 128423, + [SMALL_STATE(2775)] = 128482, + [SMALL_STATE(2776)] = 128541, + [SMALL_STATE(2777)] = 128600, + [SMALL_STATE(2778)] = 128659, + [SMALL_STATE(2779)] = 128718, + [SMALL_STATE(2780)] = 128777, + [SMALL_STATE(2781)] = 128836, + [SMALL_STATE(2782)] = 128895, + [SMALL_STATE(2783)] = 128954, + [SMALL_STATE(2784)] = 129013, + [SMALL_STATE(2785)] = 129072, + [SMALL_STATE(2786)] = 129131, + [SMALL_STATE(2787)] = 129190, + [SMALL_STATE(2788)] = 129249, + [SMALL_STATE(2789)] = 129308, + [SMALL_STATE(2790)] = 129367, + [SMALL_STATE(2791)] = 129426, + [SMALL_STATE(2792)] = 129485, + [SMALL_STATE(2793)] = 129544, + [SMALL_STATE(2794)] = 129603, + [SMALL_STATE(2795)] = 129662, + [SMALL_STATE(2796)] = 129721, + [SMALL_STATE(2797)] = 129780, + [SMALL_STATE(2798)] = 129839, + [SMALL_STATE(2799)] = 129898, + [SMALL_STATE(2800)] = 129957, + [SMALL_STATE(2801)] = 130016, + [SMALL_STATE(2802)] = 130075, + [SMALL_STATE(2803)] = 130134, + [SMALL_STATE(2804)] = 130193, + [SMALL_STATE(2805)] = 130252, + [SMALL_STATE(2806)] = 130311, + [SMALL_STATE(2807)] = 130370, + [SMALL_STATE(2808)] = 130429, + [SMALL_STATE(2809)] = 130488, + [SMALL_STATE(2810)] = 130547, + [SMALL_STATE(2811)] = 130606, + [SMALL_STATE(2812)] = 130665, + [SMALL_STATE(2813)] = 130724, + [SMALL_STATE(2814)] = 130783, + [SMALL_STATE(2815)] = 130842, + [SMALL_STATE(2816)] = 130901, + [SMALL_STATE(2817)] = 130960, + [SMALL_STATE(2818)] = 131019, + [SMALL_STATE(2819)] = 131078, + [SMALL_STATE(2820)] = 131137, + [SMALL_STATE(2821)] = 131196, + [SMALL_STATE(2822)] = 131255, + [SMALL_STATE(2823)] = 131314, + [SMALL_STATE(2824)] = 131373, + [SMALL_STATE(2825)] = 131432, + [SMALL_STATE(2826)] = 131491, + [SMALL_STATE(2827)] = 131550, + [SMALL_STATE(2828)] = 131609, + [SMALL_STATE(2829)] = 131668, + [SMALL_STATE(2830)] = 131727, + [SMALL_STATE(2831)] = 131786, + [SMALL_STATE(2832)] = 131845, + [SMALL_STATE(2833)] = 131904, + [SMALL_STATE(2834)] = 131963, + [SMALL_STATE(2835)] = 132022, + [SMALL_STATE(2836)] = 132081, + [SMALL_STATE(2837)] = 132140, + [SMALL_STATE(2838)] = 132199, + [SMALL_STATE(2839)] = 132258, + [SMALL_STATE(2840)] = 132317, + [SMALL_STATE(2841)] = 132376, + [SMALL_STATE(2842)] = 132435, + [SMALL_STATE(2843)] = 132494, + [SMALL_STATE(2844)] = 132553, + [SMALL_STATE(2845)] = 132612, + [SMALL_STATE(2846)] = 132671, + [SMALL_STATE(2847)] = 132730, + [SMALL_STATE(2848)] = 132789, + [SMALL_STATE(2849)] = 132848, + [SMALL_STATE(2850)] = 132907, + [SMALL_STATE(2851)] = 132966, + [SMALL_STATE(2852)] = 133025, + [SMALL_STATE(2853)] = 133084, + [SMALL_STATE(2854)] = 133143, + [SMALL_STATE(2855)] = 133202, + [SMALL_STATE(2856)] = 133261, + [SMALL_STATE(2857)] = 133320, + [SMALL_STATE(2858)] = 133379, + [SMALL_STATE(2859)] = 133438, + [SMALL_STATE(2860)] = 133497, + [SMALL_STATE(2861)] = 133556, + [SMALL_STATE(2862)] = 133615, + [SMALL_STATE(2863)] = 133674, + [SMALL_STATE(2864)] = 133733, + [SMALL_STATE(2865)] = 133792, + [SMALL_STATE(2866)] = 133851, + [SMALL_STATE(2867)] = 133910, + [SMALL_STATE(2868)] = 133969, + [SMALL_STATE(2869)] = 134028, + [SMALL_STATE(2870)] = 134087, + [SMALL_STATE(2871)] = 134146, + [SMALL_STATE(2872)] = 134205, + [SMALL_STATE(2873)] = 134264, + [SMALL_STATE(2874)] = 134323, + [SMALL_STATE(2875)] = 134382, + [SMALL_STATE(2876)] = 134441, + [SMALL_STATE(2877)] = 134500, + [SMALL_STATE(2878)] = 134559, + [SMALL_STATE(2879)] = 134618, + [SMALL_STATE(2880)] = 134677, + [SMALL_STATE(2881)] = 134736, + [SMALL_STATE(2882)] = 134795, + [SMALL_STATE(2883)] = 134854, + [SMALL_STATE(2884)] = 134913, + [SMALL_STATE(2885)] = 134972, + [SMALL_STATE(2886)] = 135031, + [SMALL_STATE(2887)] = 135090, + [SMALL_STATE(2888)] = 135149, + [SMALL_STATE(2889)] = 135208, + [SMALL_STATE(2890)] = 135267, + [SMALL_STATE(2891)] = 135326, + [SMALL_STATE(2892)] = 135385, + [SMALL_STATE(2893)] = 135444, + [SMALL_STATE(2894)] = 135503, + [SMALL_STATE(2895)] = 135562, + [SMALL_STATE(2896)] = 135621, + [SMALL_STATE(2897)] = 135680, + [SMALL_STATE(2898)] = 135739, + [SMALL_STATE(2899)] = 135798, + [SMALL_STATE(2900)] = 135857, + [SMALL_STATE(2901)] = 135916, + [SMALL_STATE(2902)] = 135975, + [SMALL_STATE(2903)] = 136034, + [SMALL_STATE(2904)] = 136093, + [SMALL_STATE(2905)] = 136152, + [SMALL_STATE(2906)] = 136211, + [SMALL_STATE(2907)] = 136270, + [SMALL_STATE(2908)] = 136329, + [SMALL_STATE(2909)] = 136388, + [SMALL_STATE(2910)] = 136447, + [SMALL_STATE(2911)] = 136506, + [SMALL_STATE(2912)] = 136565, + [SMALL_STATE(2913)] = 136624, + [SMALL_STATE(2914)] = 136683, + [SMALL_STATE(2915)] = 136742, + [SMALL_STATE(2916)] = 136801, + [SMALL_STATE(2917)] = 136860, + [SMALL_STATE(2918)] = 136919, + [SMALL_STATE(2919)] = 136978, + [SMALL_STATE(2920)] = 137037, + [SMALL_STATE(2921)] = 137096, + [SMALL_STATE(2922)] = 137155, + [SMALL_STATE(2923)] = 137214, + [SMALL_STATE(2924)] = 137273, + [SMALL_STATE(2925)] = 137332, + [SMALL_STATE(2926)] = 137391, + [SMALL_STATE(2927)] = 137450, + [SMALL_STATE(2928)] = 137509, + [SMALL_STATE(2929)] = 137568, + [SMALL_STATE(2930)] = 137627, + [SMALL_STATE(2931)] = 137686, + [SMALL_STATE(2932)] = 137745, + [SMALL_STATE(2933)] = 137804, + [SMALL_STATE(2934)] = 137863, + [SMALL_STATE(2935)] = 137922, + [SMALL_STATE(2936)] = 137981, + [SMALL_STATE(2937)] = 138040, + [SMALL_STATE(2938)] = 138099, + [SMALL_STATE(2939)] = 138158, + [SMALL_STATE(2940)] = 138217, + [SMALL_STATE(2941)] = 138276, + [SMALL_STATE(2942)] = 138335, + [SMALL_STATE(2943)] = 138394, + [SMALL_STATE(2944)] = 138453, + [SMALL_STATE(2945)] = 138512, + [SMALL_STATE(2946)] = 138571, + [SMALL_STATE(2947)] = 138630, + [SMALL_STATE(2948)] = 138689, + [SMALL_STATE(2949)] = 138748, + [SMALL_STATE(2950)] = 138807, + [SMALL_STATE(2951)] = 138866, + [SMALL_STATE(2952)] = 138925, + [SMALL_STATE(2953)] = 138984, + [SMALL_STATE(2954)] = 139043, + [SMALL_STATE(2955)] = 139102, + [SMALL_STATE(2956)] = 139161, + [SMALL_STATE(2957)] = 139220, + [SMALL_STATE(2958)] = 139279, + [SMALL_STATE(2959)] = 139338, + [SMALL_STATE(2960)] = 139397, + [SMALL_STATE(2961)] = 139456, + [SMALL_STATE(2962)] = 139515, + [SMALL_STATE(2963)] = 139574, + [SMALL_STATE(2964)] = 139633, + [SMALL_STATE(2965)] = 139692, + [SMALL_STATE(2966)] = 139751, + [SMALL_STATE(2967)] = 139810, + [SMALL_STATE(2968)] = 139869, + [SMALL_STATE(2969)] = 139928, + [SMALL_STATE(2970)] = 139987, + [SMALL_STATE(2971)] = 140046, + [SMALL_STATE(2972)] = 140105, + [SMALL_STATE(2973)] = 140164, + [SMALL_STATE(2974)] = 140223, + [SMALL_STATE(2975)] = 140282, + [SMALL_STATE(2976)] = 140341, + [SMALL_STATE(2977)] = 140400, + [SMALL_STATE(2978)] = 140459, + [SMALL_STATE(2979)] = 140518, + [SMALL_STATE(2980)] = 140577, + [SMALL_STATE(2981)] = 140636, + [SMALL_STATE(2982)] = 140695, + [SMALL_STATE(2983)] = 140754, + [SMALL_STATE(2984)] = 140813, + [SMALL_STATE(2985)] = 140872, + [SMALL_STATE(2986)] = 140931, + [SMALL_STATE(2987)] = 140990, + [SMALL_STATE(2988)] = 141049, + [SMALL_STATE(2989)] = 141108, + [SMALL_STATE(2990)] = 141167, + [SMALL_STATE(2991)] = 141226, + [SMALL_STATE(2992)] = 141285, + [SMALL_STATE(2993)] = 141344, + [SMALL_STATE(2994)] = 141403, + [SMALL_STATE(2995)] = 141462, + [SMALL_STATE(2996)] = 141521, + [SMALL_STATE(2997)] = 141580, + [SMALL_STATE(2998)] = 141639, + [SMALL_STATE(2999)] = 141698, + [SMALL_STATE(3000)] = 141757, + [SMALL_STATE(3001)] = 141816, + [SMALL_STATE(3002)] = 141875, + [SMALL_STATE(3003)] = 141934, + [SMALL_STATE(3004)] = 141993, + [SMALL_STATE(3005)] = 142052, + [SMALL_STATE(3006)] = 142111, + [SMALL_STATE(3007)] = 142170, + [SMALL_STATE(3008)] = 142229, + [SMALL_STATE(3009)] = 142288, + [SMALL_STATE(3010)] = 142347, + [SMALL_STATE(3011)] = 142406, + [SMALL_STATE(3012)] = 142465, + [SMALL_STATE(3013)] = 142524, + [SMALL_STATE(3014)] = 142583, + [SMALL_STATE(3015)] = 142642, + [SMALL_STATE(3016)] = 142701, + [SMALL_STATE(3017)] = 142760, + [SMALL_STATE(3018)] = 142819, + [SMALL_STATE(3019)] = 142878, + [SMALL_STATE(3020)] = 142937, + [SMALL_STATE(3021)] = 142996, + [SMALL_STATE(3022)] = 143055, + [SMALL_STATE(3023)] = 143114, + [SMALL_STATE(3024)] = 143173, + [SMALL_STATE(3025)] = 143232, + [SMALL_STATE(3026)] = 143291, + [SMALL_STATE(3027)] = 143350, + [SMALL_STATE(3028)] = 143409, + [SMALL_STATE(3029)] = 143468, + [SMALL_STATE(3030)] = 143527, + [SMALL_STATE(3031)] = 143586, + [SMALL_STATE(3032)] = 143645, + [SMALL_STATE(3033)] = 143704, + [SMALL_STATE(3034)] = 143763, + [SMALL_STATE(3035)] = 143822, + [SMALL_STATE(3036)] = 143881, + [SMALL_STATE(3037)] = 143940, + [SMALL_STATE(3038)] = 143999, + [SMALL_STATE(3039)] = 144058, + [SMALL_STATE(3040)] = 144117, + [SMALL_STATE(3041)] = 144176, + [SMALL_STATE(3042)] = 144235, + [SMALL_STATE(3043)] = 144294, + [SMALL_STATE(3044)] = 144353, + [SMALL_STATE(3045)] = 144412, + [SMALL_STATE(3046)] = 144471, + [SMALL_STATE(3047)] = 144530, + [SMALL_STATE(3048)] = 144589, + [SMALL_STATE(3049)] = 144648, + [SMALL_STATE(3050)] = 144707, + [SMALL_STATE(3051)] = 144766, + [SMALL_STATE(3052)] = 144825, + [SMALL_STATE(3053)] = 144884, + [SMALL_STATE(3054)] = 144943, + [SMALL_STATE(3055)] = 145002, + [SMALL_STATE(3056)] = 145061, + [SMALL_STATE(3057)] = 145120, + [SMALL_STATE(3058)] = 145179, + [SMALL_STATE(3059)] = 145238, + [SMALL_STATE(3060)] = 145297, + [SMALL_STATE(3061)] = 145356, + [SMALL_STATE(3062)] = 145415, + [SMALL_STATE(3063)] = 145474, + [SMALL_STATE(3064)] = 145533, + [SMALL_STATE(3065)] = 145592, + [SMALL_STATE(3066)] = 145651, + [SMALL_STATE(3067)] = 145710, + [SMALL_STATE(3068)] = 145769, + [SMALL_STATE(3069)] = 145828, + [SMALL_STATE(3070)] = 145887, + [SMALL_STATE(3071)] = 145946, + [SMALL_STATE(3072)] = 146005, + [SMALL_STATE(3073)] = 146064, + [SMALL_STATE(3074)] = 146123, + [SMALL_STATE(3075)] = 146182, + [SMALL_STATE(3076)] = 146241, + [SMALL_STATE(3077)] = 146300, + [SMALL_STATE(3078)] = 146359, + [SMALL_STATE(3079)] = 146418, + [SMALL_STATE(3080)] = 146477, + [SMALL_STATE(3081)] = 146536, + [SMALL_STATE(3082)] = 146595, + [SMALL_STATE(3083)] = 146654, + [SMALL_STATE(3084)] = 146713, + [SMALL_STATE(3085)] = 146772, + [SMALL_STATE(3086)] = 146831, + [SMALL_STATE(3087)] = 146890, + [SMALL_STATE(3088)] = 146949, + [SMALL_STATE(3089)] = 147008, + [SMALL_STATE(3090)] = 147067, + [SMALL_STATE(3091)] = 147126, + [SMALL_STATE(3092)] = 147185, + [SMALL_STATE(3093)] = 147244, + [SMALL_STATE(3094)] = 147303, + [SMALL_STATE(3095)] = 147362, + [SMALL_STATE(3096)] = 147421, + [SMALL_STATE(3097)] = 147480, + [SMALL_STATE(3098)] = 147539, + [SMALL_STATE(3099)] = 147598, + [SMALL_STATE(3100)] = 147657, + [SMALL_STATE(3101)] = 147716, + [SMALL_STATE(3102)] = 147775, + [SMALL_STATE(3103)] = 147834, + [SMALL_STATE(3104)] = 147893, + [SMALL_STATE(3105)] = 147952, + [SMALL_STATE(3106)] = 148011, + [SMALL_STATE(3107)] = 148070, + [SMALL_STATE(3108)] = 148129, + [SMALL_STATE(3109)] = 148188, + [SMALL_STATE(3110)] = 148247, + [SMALL_STATE(3111)] = 148306, + [SMALL_STATE(3112)] = 148365, + [SMALL_STATE(3113)] = 148424, + [SMALL_STATE(3114)] = 148483, + [SMALL_STATE(3115)] = 148542, + [SMALL_STATE(3116)] = 148601, + [SMALL_STATE(3117)] = 148660, + [SMALL_STATE(3118)] = 148719, + [SMALL_STATE(3119)] = 148778, + [SMALL_STATE(3120)] = 148837, + [SMALL_STATE(3121)] = 148896, + [SMALL_STATE(3122)] = 148955, + [SMALL_STATE(3123)] = 149014, + [SMALL_STATE(3124)] = 149073, + [SMALL_STATE(3125)] = 149132, + [SMALL_STATE(3126)] = 149191, + [SMALL_STATE(3127)] = 149250, + [SMALL_STATE(3128)] = 149309, + [SMALL_STATE(3129)] = 149368, + [SMALL_STATE(3130)] = 149427, + [SMALL_STATE(3131)] = 149486, + [SMALL_STATE(3132)] = 149545, + [SMALL_STATE(3133)] = 149604, + [SMALL_STATE(3134)] = 149663, + [SMALL_STATE(3135)] = 149722, + [SMALL_STATE(3136)] = 149781, + [SMALL_STATE(3137)] = 149840, + [SMALL_STATE(3138)] = 149899, + [SMALL_STATE(3139)] = 149958, + [SMALL_STATE(3140)] = 150017, + [SMALL_STATE(3141)] = 150076, + [SMALL_STATE(3142)] = 150135, + [SMALL_STATE(3143)] = 150194, + [SMALL_STATE(3144)] = 150253, + [SMALL_STATE(3145)] = 150312, + [SMALL_STATE(3146)] = 150371, + [SMALL_STATE(3147)] = 150430, + [SMALL_STATE(3148)] = 150489, + [SMALL_STATE(3149)] = 150548, + [SMALL_STATE(3150)] = 150607, + [SMALL_STATE(3151)] = 150666, + [SMALL_STATE(3152)] = 150725, + [SMALL_STATE(3153)] = 150784, + [SMALL_STATE(3154)] = 150843, + [SMALL_STATE(3155)] = 150902, + [SMALL_STATE(3156)] = 150961, + [SMALL_STATE(3157)] = 151020, + [SMALL_STATE(3158)] = 151079, + [SMALL_STATE(3159)] = 151138, + [SMALL_STATE(3160)] = 151197, + [SMALL_STATE(3161)] = 151256, + [SMALL_STATE(3162)] = 151315, + [SMALL_STATE(3163)] = 151374, + [SMALL_STATE(3164)] = 151433, + [SMALL_STATE(3165)] = 151492, + [SMALL_STATE(3166)] = 151551, + [SMALL_STATE(3167)] = 151610, + [SMALL_STATE(3168)] = 151669, + [SMALL_STATE(3169)] = 151728, + [SMALL_STATE(3170)] = 151787, + [SMALL_STATE(3171)] = 151846, + [SMALL_STATE(3172)] = 151905, + [SMALL_STATE(3173)] = 151964, + [SMALL_STATE(3174)] = 152023, + [SMALL_STATE(3175)] = 152082, + [SMALL_STATE(3176)] = 152141, + [SMALL_STATE(3177)] = 152200, + [SMALL_STATE(3178)] = 152259, + [SMALL_STATE(3179)] = 152318, + [SMALL_STATE(3180)] = 152377, + [SMALL_STATE(3181)] = 152436, + [SMALL_STATE(3182)] = 152495, + [SMALL_STATE(3183)] = 152554, + [SMALL_STATE(3184)] = 152613, + [SMALL_STATE(3185)] = 152672, + [SMALL_STATE(3186)] = 152731, + [SMALL_STATE(3187)] = 152790, + [SMALL_STATE(3188)] = 152849, + [SMALL_STATE(3189)] = 152908, + [SMALL_STATE(3190)] = 152967, + [SMALL_STATE(3191)] = 153026, + [SMALL_STATE(3192)] = 153085, + [SMALL_STATE(3193)] = 153144, + [SMALL_STATE(3194)] = 153203, + [SMALL_STATE(3195)] = 153262, + [SMALL_STATE(3196)] = 153321, + [SMALL_STATE(3197)] = 153380, + [SMALL_STATE(3198)] = 153439, + [SMALL_STATE(3199)] = 153498, + [SMALL_STATE(3200)] = 153557, + [SMALL_STATE(3201)] = 153616, + [SMALL_STATE(3202)] = 153675, + [SMALL_STATE(3203)] = 153734, + [SMALL_STATE(3204)] = 153793, + [SMALL_STATE(3205)] = 153852, + [SMALL_STATE(3206)] = 153911, + [SMALL_STATE(3207)] = 153970, + [SMALL_STATE(3208)] = 154029, + [SMALL_STATE(3209)] = 154088, + [SMALL_STATE(3210)] = 154147, + [SMALL_STATE(3211)] = 154206, + [SMALL_STATE(3212)] = 154265, + [SMALL_STATE(3213)] = 154324, + [SMALL_STATE(3214)] = 154383, + [SMALL_STATE(3215)] = 154442, + [SMALL_STATE(3216)] = 154501, + [SMALL_STATE(3217)] = 154560, + [SMALL_STATE(3218)] = 154619, + [SMALL_STATE(3219)] = 154678, + [SMALL_STATE(3220)] = 154737, + [SMALL_STATE(3221)] = 154796, + [SMALL_STATE(3222)] = 154855, + [SMALL_STATE(3223)] = 154914, + [SMALL_STATE(3224)] = 154973, + [SMALL_STATE(3225)] = 155032, + [SMALL_STATE(3226)] = 155091, + [SMALL_STATE(3227)] = 155150, + [SMALL_STATE(3228)] = 155209, + [SMALL_STATE(3229)] = 155268, + [SMALL_STATE(3230)] = 155327, + [SMALL_STATE(3231)] = 155386, + [SMALL_STATE(3232)] = 155445, + [SMALL_STATE(3233)] = 155504, + [SMALL_STATE(3234)] = 155563, + [SMALL_STATE(3235)] = 155622, + [SMALL_STATE(3236)] = 155681, + [SMALL_STATE(3237)] = 155740, + [SMALL_STATE(3238)] = 155799, + [SMALL_STATE(3239)] = 155858, + [SMALL_STATE(3240)] = 155917, + [SMALL_STATE(3241)] = 155976, + [SMALL_STATE(3242)] = 156035, + [SMALL_STATE(3243)] = 156094, + [SMALL_STATE(3244)] = 156153, + [SMALL_STATE(3245)] = 156212, + [SMALL_STATE(3246)] = 156271, + [SMALL_STATE(3247)] = 156330, + [SMALL_STATE(3248)] = 156389, + [SMALL_STATE(3249)] = 156448, + [SMALL_STATE(3250)] = 156507, + [SMALL_STATE(3251)] = 156566, + [SMALL_STATE(3252)] = 156625, + [SMALL_STATE(3253)] = 156684, + [SMALL_STATE(3254)] = 156743, + [SMALL_STATE(3255)] = 156802, + [SMALL_STATE(3256)] = 156861, + [SMALL_STATE(3257)] = 156920, + [SMALL_STATE(3258)] = 156979, + [SMALL_STATE(3259)] = 157038, + [SMALL_STATE(3260)] = 157097, + [SMALL_STATE(3261)] = 157156, + [SMALL_STATE(3262)] = 157215, + [SMALL_STATE(3263)] = 157274, + [SMALL_STATE(3264)] = 157333, + [SMALL_STATE(3265)] = 157392, + [SMALL_STATE(3266)] = 157451, + [SMALL_STATE(3267)] = 157510, + [SMALL_STATE(3268)] = 157569, + [SMALL_STATE(3269)] = 157628, + [SMALL_STATE(3270)] = 157687, + [SMALL_STATE(3271)] = 157746, + [SMALL_STATE(3272)] = 157805, + [SMALL_STATE(3273)] = 157864, + [SMALL_STATE(3274)] = 157923, + [SMALL_STATE(3275)] = 157982, + [SMALL_STATE(3276)] = 158041, + [SMALL_STATE(3277)] = 158100, + [SMALL_STATE(3278)] = 158159, + [SMALL_STATE(3279)] = 158218, + [SMALL_STATE(3280)] = 158277, + [SMALL_STATE(3281)] = 158336, + [SMALL_STATE(3282)] = 158395, + [SMALL_STATE(3283)] = 158454, + [SMALL_STATE(3284)] = 158513, + [SMALL_STATE(3285)] = 158572, + [SMALL_STATE(3286)] = 158631, + [SMALL_STATE(3287)] = 158690, + [SMALL_STATE(3288)] = 158749, + [SMALL_STATE(3289)] = 158808, + [SMALL_STATE(3290)] = 158867, + [SMALL_STATE(3291)] = 158926, + [SMALL_STATE(3292)] = 158985, + [SMALL_STATE(3293)] = 159044, + [SMALL_STATE(3294)] = 159103, + [SMALL_STATE(3295)] = 159162, + [SMALL_STATE(3296)] = 159221, + [SMALL_STATE(3297)] = 159280, + [SMALL_STATE(3298)] = 159339, + [SMALL_STATE(3299)] = 159398, + [SMALL_STATE(3300)] = 159457, + [SMALL_STATE(3301)] = 159516, + [SMALL_STATE(3302)] = 159575, + [SMALL_STATE(3303)] = 159634, + [SMALL_STATE(3304)] = 159693, + [SMALL_STATE(3305)] = 159752, + [SMALL_STATE(3306)] = 159811, + [SMALL_STATE(3307)] = 159870, + [SMALL_STATE(3308)] = 159929, + [SMALL_STATE(3309)] = 159988, + [SMALL_STATE(3310)] = 160047, + [SMALL_STATE(3311)] = 160106, + [SMALL_STATE(3312)] = 160165, + [SMALL_STATE(3313)] = 160224, + [SMALL_STATE(3314)] = 160283, + [SMALL_STATE(3315)] = 160342, + [SMALL_STATE(3316)] = 160401, + [SMALL_STATE(3317)] = 160460, + [SMALL_STATE(3318)] = 160519, + [SMALL_STATE(3319)] = 160578, + [SMALL_STATE(3320)] = 160637, + [SMALL_STATE(3321)] = 160696, + [SMALL_STATE(3322)] = 160755, + [SMALL_STATE(3323)] = 160814, + [SMALL_STATE(3324)] = 160873, + [SMALL_STATE(3325)] = 160932, + [SMALL_STATE(3326)] = 160991, + [SMALL_STATE(3327)] = 161050, + [SMALL_STATE(3328)] = 161109, + [SMALL_STATE(3329)] = 161168, + [SMALL_STATE(3330)] = 161227, + [SMALL_STATE(3331)] = 161286, + [SMALL_STATE(3332)] = 161345, + [SMALL_STATE(3333)] = 161404, + [SMALL_STATE(3334)] = 161463, + [SMALL_STATE(3335)] = 161522, + [SMALL_STATE(3336)] = 161581, + [SMALL_STATE(3337)] = 161640, + [SMALL_STATE(3338)] = 161699, + [SMALL_STATE(3339)] = 161758, + [SMALL_STATE(3340)] = 161817, + [SMALL_STATE(3341)] = 161876, + [SMALL_STATE(3342)] = 161935, + [SMALL_STATE(3343)] = 161994, + [SMALL_STATE(3344)] = 162053, + [SMALL_STATE(3345)] = 162112, + [SMALL_STATE(3346)] = 162171, + [SMALL_STATE(3347)] = 162230, + [SMALL_STATE(3348)] = 162289, + [SMALL_STATE(3349)] = 162348, + [SMALL_STATE(3350)] = 162407, + [SMALL_STATE(3351)] = 162466, + [SMALL_STATE(3352)] = 162525, + [SMALL_STATE(3353)] = 162584, + [SMALL_STATE(3354)] = 162643, + [SMALL_STATE(3355)] = 162702, + [SMALL_STATE(3356)] = 162761, + [SMALL_STATE(3357)] = 162820, + [SMALL_STATE(3358)] = 162879, + [SMALL_STATE(3359)] = 162938, + [SMALL_STATE(3360)] = 162997, + [SMALL_STATE(3361)] = 163056, + [SMALL_STATE(3362)] = 163115, + [SMALL_STATE(3363)] = 163174, + [SMALL_STATE(3364)] = 163233, + [SMALL_STATE(3365)] = 163292, + [SMALL_STATE(3366)] = 163351, + [SMALL_STATE(3367)] = 163410, + [SMALL_STATE(3368)] = 163469, + [SMALL_STATE(3369)] = 163528, + [SMALL_STATE(3370)] = 163587, + [SMALL_STATE(3371)] = 163646, + [SMALL_STATE(3372)] = 163705, + [SMALL_STATE(3373)] = 163764, + [SMALL_STATE(3374)] = 163823, + [SMALL_STATE(3375)] = 163882, + [SMALL_STATE(3376)] = 163941, + [SMALL_STATE(3377)] = 164000, + [SMALL_STATE(3378)] = 164059, + [SMALL_STATE(3379)] = 164118, + [SMALL_STATE(3380)] = 164177, + [SMALL_STATE(3381)] = 164236, + [SMALL_STATE(3382)] = 164295, + [SMALL_STATE(3383)] = 164354, + [SMALL_STATE(3384)] = 164413, + [SMALL_STATE(3385)] = 164472, + [SMALL_STATE(3386)] = 164531, + [SMALL_STATE(3387)] = 164590, + [SMALL_STATE(3388)] = 164649, + [SMALL_STATE(3389)] = 164708, + [SMALL_STATE(3390)] = 164767, + [SMALL_STATE(3391)] = 164826, + [SMALL_STATE(3392)] = 164885, + [SMALL_STATE(3393)] = 164944, + [SMALL_STATE(3394)] = 165003, + [SMALL_STATE(3395)] = 165062, + [SMALL_STATE(3396)] = 165121, + [SMALL_STATE(3397)] = 165180, + [SMALL_STATE(3398)] = 165239, + [SMALL_STATE(3399)] = 165298, + [SMALL_STATE(3400)] = 165357, + [SMALL_STATE(3401)] = 165416, + [SMALL_STATE(3402)] = 165475, + [SMALL_STATE(3403)] = 165534, + [SMALL_STATE(3404)] = 165593, + [SMALL_STATE(3405)] = 165652, + [SMALL_STATE(3406)] = 165711, + [SMALL_STATE(3407)] = 165770, + [SMALL_STATE(3408)] = 165829, + [SMALL_STATE(3409)] = 165888, + [SMALL_STATE(3410)] = 165947, + [SMALL_STATE(3411)] = 166006, + [SMALL_STATE(3412)] = 166065, + [SMALL_STATE(3413)] = 166124, + [SMALL_STATE(3414)] = 166183, + [SMALL_STATE(3415)] = 166242, + [SMALL_STATE(3416)] = 166301, + [SMALL_STATE(3417)] = 166360, + [SMALL_STATE(3418)] = 166419, + [SMALL_STATE(3419)] = 166478, + [SMALL_STATE(3420)] = 166537, + [SMALL_STATE(3421)] = 166596, + [SMALL_STATE(3422)] = 166655, + [SMALL_STATE(3423)] = 166714, + [SMALL_STATE(3424)] = 166773, + [SMALL_STATE(3425)] = 166832, + [SMALL_STATE(3426)] = 166891, + [SMALL_STATE(3427)] = 166950, + [SMALL_STATE(3428)] = 167009, + [SMALL_STATE(3429)] = 167068, + [SMALL_STATE(3430)] = 167127, + [SMALL_STATE(3431)] = 167186, + [SMALL_STATE(3432)] = 167245, + [SMALL_STATE(3433)] = 167304, + [SMALL_STATE(3434)] = 167363, + [SMALL_STATE(3435)] = 167422, + [SMALL_STATE(3436)] = 167481, + [SMALL_STATE(3437)] = 167540, + [SMALL_STATE(3438)] = 167599, + [SMALL_STATE(3439)] = 167658, + [SMALL_STATE(3440)] = 167717, + [SMALL_STATE(3441)] = 167776, + [SMALL_STATE(3442)] = 167835, + [SMALL_STATE(3443)] = 167894, + [SMALL_STATE(3444)] = 167953, + [SMALL_STATE(3445)] = 168012, + [SMALL_STATE(3446)] = 168071, + [SMALL_STATE(3447)] = 168130, + [SMALL_STATE(3448)] = 168189, + [SMALL_STATE(3449)] = 168248, + [SMALL_STATE(3450)] = 168307, + [SMALL_STATE(3451)] = 168366, + [SMALL_STATE(3452)] = 168425, + [SMALL_STATE(3453)] = 168484, + [SMALL_STATE(3454)] = 168543, + [SMALL_STATE(3455)] = 168602, + [SMALL_STATE(3456)] = 168661, + [SMALL_STATE(3457)] = 168720, + [SMALL_STATE(3458)] = 168779, + [SMALL_STATE(3459)] = 168838, + [SMALL_STATE(3460)] = 168897, + [SMALL_STATE(3461)] = 168956, + [SMALL_STATE(3462)] = 169015, + [SMALL_STATE(3463)] = 169074, + [SMALL_STATE(3464)] = 169133, + [SMALL_STATE(3465)] = 169192, + [SMALL_STATE(3466)] = 169251, + [SMALL_STATE(3467)] = 169310, + [SMALL_STATE(3468)] = 169369, + [SMALL_STATE(3469)] = 169428, + [SMALL_STATE(3470)] = 169487, + [SMALL_STATE(3471)] = 169546, + [SMALL_STATE(3472)] = 169605, + [SMALL_STATE(3473)] = 169664, + [SMALL_STATE(3474)] = 169723, + [SMALL_STATE(3475)] = 169782, + [SMALL_STATE(3476)] = 169841, + [SMALL_STATE(3477)] = 169900, + [SMALL_STATE(3478)] = 169959, + [SMALL_STATE(3479)] = 170018, + [SMALL_STATE(3480)] = 170077, + [SMALL_STATE(3481)] = 170136, + [SMALL_STATE(3482)] = 170195, + [SMALL_STATE(3483)] = 170254, + [SMALL_STATE(3484)] = 170313, + [SMALL_STATE(3485)] = 170372, + [SMALL_STATE(3486)] = 170431, + [SMALL_STATE(3487)] = 170490, + [SMALL_STATE(3488)] = 170549, + [SMALL_STATE(3489)] = 170608, + [SMALL_STATE(3490)] = 170667, + [SMALL_STATE(3491)] = 170726, + [SMALL_STATE(3492)] = 170785, + [SMALL_STATE(3493)] = 170844, + [SMALL_STATE(3494)] = 170903, + [SMALL_STATE(3495)] = 170962, + [SMALL_STATE(3496)] = 171021, + [SMALL_STATE(3497)] = 171080, + [SMALL_STATE(3498)] = 171139, + [SMALL_STATE(3499)] = 171198, + [SMALL_STATE(3500)] = 171257, + [SMALL_STATE(3501)] = 171316, + [SMALL_STATE(3502)] = 171375, + [SMALL_STATE(3503)] = 171434, + [SMALL_STATE(3504)] = 171493, + [SMALL_STATE(3505)] = 171552, + [SMALL_STATE(3506)] = 171611, + [SMALL_STATE(3507)] = 171670, + [SMALL_STATE(3508)] = 171729, + [SMALL_STATE(3509)] = 171788, + [SMALL_STATE(3510)] = 171847, + [SMALL_STATE(3511)] = 171906, + [SMALL_STATE(3512)] = 171965, + [SMALL_STATE(3513)] = 172024, + [SMALL_STATE(3514)] = 172083, + [SMALL_STATE(3515)] = 172142, + [SMALL_STATE(3516)] = 172201, + [SMALL_STATE(3517)] = 172260, + [SMALL_STATE(3518)] = 172319, + [SMALL_STATE(3519)] = 172378, + [SMALL_STATE(3520)] = 172437, + [SMALL_STATE(3521)] = 172496, + [SMALL_STATE(3522)] = 172555, + [SMALL_STATE(3523)] = 172614, + [SMALL_STATE(3524)] = 172673, + [SMALL_STATE(3525)] = 172732, + [SMALL_STATE(3526)] = 172791, + [SMALL_STATE(3527)] = 172850, + [SMALL_STATE(3528)] = 172909, + [SMALL_STATE(3529)] = 172968, + [SMALL_STATE(3530)] = 173027, + [SMALL_STATE(3531)] = 173086, + [SMALL_STATE(3532)] = 173145, + [SMALL_STATE(3533)] = 173204, + [SMALL_STATE(3534)] = 173263, + [SMALL_STATE(3535)] = 173322, + [SMALL_STATE(3536)] = 173381, + [SMALL_STATE(3537)] = 173440, + [SMALL_STATE(3538)] = 173499, + [SMALL_STATE(3539)] = 173558, + [SMALL_STATE(3540)] = 173617, + [SMALL_STATE(3541)] = 173676, + [SMALL_STATE(3542)] = 173735, + [SMALL_STATE(3543)] = 173794, + [SMALL_STATE(3544)] = 173853, + [SMALL_STATE(3545)] = 173912, + [SMALL_STATE(3546)] = 173971, + [SMALL_STATE(3547)] = 174030, + [SMALL_STATE(3548)] = 174089, + [SMALL_STATE(3549)] = 174148, + [SMALL_STATE(3550)] = 174207, + [SMALL_STATE(3551)] = 174266, + [SMALL_STATE(3552)] = 174325, + [SMALL_STATE(3553)] = 174384, + [SMALL_STATE(3554)] = 174443, + [SMALL_STATE(3555)] = 174502, + [SMALL_STATE(3556)] = 174561, + [SMALL_STATE(3557)] = 174620, + [SMALL_STATE(3558)] = 174679, + [SMALL_STATE(3559)] = 174738, + [SMALL_STATE(3560)] = 174797, + [SMALL_STATE(3561)] = 174856, + [SMALL_STATE(3562)] = 174915, + [SMALL_STATE(3563)] = 174974, + [SMALL_STATE(3564)] = 175033, + [SMALL_STATE(3565)] = 175092, + [SMALL_STATE(3566)] = 175151, + [SMALL_STATE(3567)] = 175210, + [SMALL_STATE(3568)] = 175269, + [SMALL_STATE(3569)] = 175328, + [SMALL_STATE(3570)] = 175387, + [SMALL_STATE(3571)] = 175446, + [SMALL_STATE(3572)] = 175505, + [SMALL_STATE(3573)] = 175564, + [SMALL_STATE(3574)] = 175623, + [SMALL_STATE(3575)] = 175682, + [SMALL_STATE(3576)] = 175741, + [SMALL_STATE(3577)] = 175800, + [SMALL_STATE(3578)] = 175859, + [SMALL_STATE(3579)] = 175918, + [SMALL_STATE(3580)] = 175977, + [SMALL_STATE(3581)] = 176036, + [SMALL_STATE(3582)] = 176095, + [SMALL_STATE(3583)] = 176154, + [SMALL_STATE(3584)] = 176213, + [SMALL_STATE(3585)] = 176272, + [SMALL_STATE(3586)] = 176331, + [SMALL_STATE(3587)] = 176390, + [SMALL_STATE(3588)] = 176449, + [SMALL_STATE(3589)] = 176508, + [SMALL_STATE(3590)] = 176567, + [SMALL_STATE(3591)] = 176626, + [SMALL_STATE(3592)] = 176685, + [SMALL_STATE(3593)] = 176744, + [SMALL_STATE(3594)] = 176803, + [SMALL_STATE(3595)] = 176862, + [SMALL_STATE(3596)] = 176921, + [SMALL_STATE(3597)] = 176980, + [SMALL_STATE(3598)] = 177039, + [SMALL_STATE(3599)] = 177098, + [SMALL_STATE(3600)] = 177157, + [SMALL_STATE(3601)] = 177216, + [SMALL_STATE(3602)] = 177275, + [SMALL_STATE(3603)] = 177334, + [SMALL_STATE(3604)] = 177393, + [SMALL_STATE(3605)] = 177452, + [SMALL_STATE(3606)] = 177511, + [SMALL_STATE(3607)] = 177570, + [SMALL_STATE(3608)] = 177602, + [SMALL_STATE(3609)] = 177634, + [SMALL_STATE(3610)] = 177666, + [SMALL_STATE(3611)] = 177698, + [SMALL_STATE(3612)] = 177730, + [SMALL_STATE(3613)] = 177762, + [SMALL_STATE(3614)] = 177794, + [SMALL_STATE(3615)] = 177826, + [SMALL_STATE(3616)] = 177858, + [SMALL_STATE(3617)] = 177890, + [SMALL_STATE(3618)] = 177922, + [SMALL_STATE(3619)] = 177954, + [SMALL_STATE(3620)] = 177986, + [SMALL_STATE(3621)] = 178018, + [SMALL_STATE(3622)] = 178050, + [SMALL_STATE(3623)] = 178082, + [SMALL_STATE(3624)] = 178114, + [SMALL_STATE(3625)] = 178146, + [SMALL_STATE(3626)] = 178178, + [SMALL_STATE(3627)] = 178210, + [SMALL_STATE(3628)] = 178242, + [SMALL_STATE(3629)] = 178274, + [SMALL_STATE(3630)] = 178306, + [SMALL_STATE(3631)] = 178338, + [SMALL_STATE(3632)] = 178370, + [SMALL_STATE(3633)] = 178402, + [SMALL_STATE(3634)] = 178434, + [SMALL_STATE(3635)] = 178466, + [SMALL_STATE(3636)] = 178498, + [SMALL_STATE(3637)] = 178530, + [SMALL_STATE(3638)] = 178562, + [SMALL_STATE(3639)] = 178594, + [SMALL_STATE(3640)] = 178626, + [SMALL_STATE(3641)] = 178658, + [SMALL_STATE(3642)] = 178690, + [SMALL_STATE(3643)] = 178717, + [SMALL_STATE(3644)] = 178740, + [SMALL_STATE(3645)] = 178763, + [SMALL_STATE(3646)] = 178786, + [SMALL_STATE(3647)] = 178809, + [SMALL_STATE(3648)] = 178832, + [SMALL_STATE(3649)] = 178855, + [SMALL_STATE(3650)] = 178878, + [SMALL_STATE(3651)] = 178901, + [SMALL_STATE(3652)] = 178924, + [SMALL_STATE(3653)] = 178947, + [SMALL_STATE(3654)] = 178970, + [SMALL_STATE(3655)] = 178993, + [SMALL_STATE(3656)] = 179016, + [SMALL_STATE(3657)] = 179039, + [SMALL_STATE(3658)] = 179062, + [SMALL_STATE(3659)] = 179085, + [SMALL_STATE(3660)] = 179108, + [SMALL_STATE(3661)] = 179131, + [SMALL_STATE(3662)] = 179154, + [SMALL_STATE(3663)] = 179177, + [SMALL_STATE(3664)] = 179200, + [SMALL_STATE(3665)] = 179227, + [SMALL_STATE(3666)] = 179250, + [SMALL_STATE(3667)] = 179273, + [SMALL_STATE(3668)] = 179296, + [SMALL_STATE(3669)] = 179319, + [SMALL_STATE(3670)] = 179342, + [SMALL_STATE(3671)] = 179365, + [SMALL_STATE(3672)] = 179388, + [SMALL_STATE(3673)] = 179411, + [SMALL_STATE(3674)] = 179434, + [SMALL_STATE(3675)] = 179457, + [SMALL_STATE(3676)] = 179480, + [SMALL_STATE(3677)] = 179503, + [SMALL_STATE(3678)] = 179526, + [SMALL_STATE(3679)] = 179549, + [SMALL_STATE(3680)] = 179572, + [SMALL_STATE(3681)] = 179595, + [SMALL_STATE(3682)] = 179618, + [SMALL_STATE(3683)] = 179641, + [SMALL_STATE(3684)] = 179664, + [SMALL_STATE(3685)] = 179687, + [SMALL_STATE(3686)] = 179710, + [SMALL_STATE(3687)] = 179733, + [SMALL_STATE(3688)] = 179756, + [SMALL_STATE(3689)] = 179779, + [SMALL_STATE(3690)] = 179802, + [SMALL_STATE(3691)] = 179825, + [SMALL_STATE(3692)] = 179848, + [SMALL_STATE(3693)] = 179871, + [SMALL_STATE(3694)] = 179898, + [SMALL_STATE(3695)] = 179921, + [SMALL_STATE(3696)] = 179944, + [SMALL_STATE(3697)] = 179967, + [SMALL_STATE(3698)] = 179994, + [SMALL_STATE(3699)] = 180017, + [SMALL_STATE(3700)] = 180040, + [SMALL_STATE(3701)] = 180063, + [SMALL_STATE(3702)] = 180086, + [SMALL_STATE(3703)] = 180109, + [SMALL_STATE(3704)] = 180132, + [SMALL_STATE(3705)] = 180159, + [SMALL_STATE(3706)] = 180182, + [SMALL_STATE(3707)] = 180205, + [SMALL_STATE(3708)] = 180228, + [SMALL_STATE(3709)] = 180251, + [SMALL_STATE(3710)] = 180274, + [SMALL_STATE(3711)] = 180297, + [SMALL_STATE(3712)] = 180320, + [SMALL_STATE(3713)] = 180343, + [SMALL_STATE(3714)] = 180366, + [SMALL_STATE(3715)] = 180389, + [SMALL_STATE(3716)] = 180412, + [SMALL_STATE(3717)] = 180435, + [SMALL_STATE(3718)] = 180458, + [SMALL_STATE(3719)] = 180481, + [SMALL_STATE(3720)] = 180504, + [SMALL_STATE(3721)] = 180527, + [SMALL_STATE(3722)] = 180550, + [SMALL_STATE(3723)] = 180573, + [SMALL_STATE(3724)] = 180596, + [SMALL_STATE(3725)] = 180619, + [SMALL_STATE(3726)] = 180642, + [SMALL_STATE(3727)] = 180669, + [SMALL_STATE(3728)] = 180696, + [SMALL_STATE(3729)] = 180719, + [SMALL_STATE(3730)] = 180742, + [SMALL_STATE(3731)] = 180765, + [SMALL_STATE(3732)] = 180788, + [SMALL_STATE(3733)] = 180811, + [SMALL_STATE(3734)] = 180834, + [SMALL_STATE(3735)] = 180857, + [SMALL_STATE(3736)] = 180880, + [SMALL_STATE(3737)] = 180907, + [SMALL_STATE(3738)] = 180930, + [SMALL_STATE(3739)] = 180953, + [SMALL_STATE(3740)] = 180976, + [SMALL_STATE(3741)] = 180999, + [SMALL_STATE(3742)] = 181022, + [SMALL_STATE(3743)] = 181045, + [SMALL_STATE(3744)] = 181068, + [SMALL_STATE(3745)] = 181091, + [SMALL_STATE(3746)] = 181114, + [SMALL_STATE(3747)] = 181137, + [SMALL_STATE(3748)] = 181160, + [SMALL_STATE(3749)] = 181183, + [SMALL_STATE(3750)] = 181206, + [SMALL_STATE(3751)] = 181229, + [SMALL_STATE(3752)] = 181252, + [SMALL_STATE(3753)] = 181279, + [SMALL_STATE(3754)] = 181302, + [SMALL_STATE(3755)] = 181325, + [SMALL_STATE(3756)] = 181348, + [SMALL_STATE(3757)] = 181375, + [SMALL_STATE(3758)] = 181398, + [SMALL_STATE(3759)] = 181421, + [SMALL_STATE(3760)] = 181444, + [SMALL_STATE(3761)] = 181467, + [SMALL_STATE(3762)] = 181494, + [SMALL_STATE(3763)] = 181517, + [SMALL_STATE(3764)] = 181540, + [SMALL_STATE(3765)] = 181563, + [SMALL_STATE(3766)] = 181586, + [SMALL_STATE(3767)] = 181609, + [SMALL_STATE(3768)] = 181632, + [SMALL_STATE(3769)] = 181655, + [SMALL_STATE(3770)] = 181678, + [SMALL_STATE(3771)] = 181701, + [SMALL_STATE(3772)] = 181724, + [SMALL_STATE(3773)] = 181747, + [SMALL_STATE(3774)] = 181770, + [SMALL_STATE(3775)] = 181793, + [SMALL_STATE(3776)] = 181816, + [SMALL_STATE(3777)] = 181839, + [SMALL_STATE(3778)] = 181862, + [SMALL_STATE(3779)] = 181885, + [SMALL_STATE(3780)] = 181908, + [SMALL_STATE(3781)] = 181931, + [SMALL_STATE(3782)] = 181954, + [SMALL_STATE(3783)] = 181977, + [SMALL_STATE(3784)] = 182004, + [SMALL_STATE(3785)] = 182027, + [SMALL_STATE(3786)] = 182050, + [SMALL_STATE(3787)] = 182073, + [SMALL_STATE(3788)] = 182096, + [SMALL_STATE(3789)] = 182119, + [SMALL_STATE(3790)] = 182142, + [SMALL_STATE(3791)] = 182165, + [SMALL_STATE(3792)] = 182188, + [SMALL_STATE(3793)] = 182211, + [SMALL_STATE(3794)] = 182234, + [SMALL_STATE(3795)] = 182257, + [SMALL_STATE(3796)] = 182280, + [SMALL_STATE(3797)] = 182303, + [SMALL_STATE(3798)] = 182326, + [SMALL_STATE(3799)] = 182349, + [SMALL_STATE(3800)] = 182372, + [SMALL_STATE(3801)] = 182395, + [SMALL_STATE(3802)] = 182418, + [SMALL_STATE(3803)] = 182441, + [SMALL_STATE(3804)] = 182468, + [SMALL_STATE(3805)] = 182491, + [SMALL_STATE(3806)] = 182514, + [SMALL_STATE(3807)] = 182537, + [SMALL_STATE(3808)] = 182560, + [SMALL_STATE(3809)] = 182587, + [SMALL_STATE(3810)] = 182610, + [SMALL_STATE(3811)] = 182633, + [SMALL_STATE(3812)] = 182656, + [SMALL_STATE(3813)] = 182683, + [SMALL_STATE(3814)] = 182706, + [SMALL_STATE(3815)] = 182729, + [SMALL_STATE(3816)] = 182752, + [SMALL_STATE(3817)] = 182775, + [SMALL_STATE(3818)] = 182798, + [SMALL_STATE(3819)] = 182821, + [SMALL_STATE(3820)] = 182844, + [SMALL_STATE(3821)] = 182867, + [SMALL_STATE(3822)] = 182890, + [SMALL_STATE(3823)] = 182917, + [SMALL_STATE(3824)] = 182940, + [SMALL_STATE(3825)] = 182963, + [SMALL_STATE(3826)] = 182986, + [SMALL_STATE(3827)] = 183009, + [SMALL_STATE(3828)] = 183032, + [SMALL_STATE(3829)] = 183055, + [SMALL_STATE(3830)] = 183082, + [SMALL_STATE(3831)] = 183105, + [SMALL_STATE(3832)] = 183128, + [SMALL_STATE(3833)] = 183151, + [SMALL_STATE(3834)] = 183174, + [SMALL_STATE(3835)] = 183197, + [SMALL_STATE(3836)] = 183220, + [SMALL_STATE(3837)] = 183247, + [SMALL_STATE(3838)] = 183270, + [SMALL_STATE(3839)] = 183293, + [SMALL_STATE(3840)] = 183316, + [SMALL_STATE(3841)] = 183339, + [SMALL_STATE(3842)] = 183362, + [SMALL_STATE(3843)] = 183385, + [SMALL_STATE(3844)] = 183408, + [SMALL_STATE(3845)] = 183431, + [SMALL_STATE(3846)] = 183454, + [SMALL_STATE(3847)] = 183481, + [SMALL_STATE(3848)] = 183504, + [SMALL_STATE(3849)] = 183527, + [SMALL_STATE(3850)] = 183550, + [SMALL_STATE(3851)] = 183573, + [SMALL_STATE(3852)] = 183596, + [SMALL_STATE(3853)] = 183619, + [SMALL_STATE(3854)] = 183642, + [SMALL_STATE(3855)] = 183665, + [SMALL_STATE(3856)] = 183688, + [SMALL_STATE(3857)] = 183711, + [SMALL_STATE(3858)] = 183734, + [SMALL_STATE(3859)] = 183757, + [SMALL_STATE(3860)] = 183780, + [SMALL_STATE(3861)] = 183803, + [SMALL_STATE(3862)] = 183826, + [SMALL_STATE(3863)] = 183849, + [SMALL_STATE(3864)] = 183872, + [SMALL_STATE(3865)] = 183899, + [SMALL_STATE(3866)] = 183922, + [SMALL_STATE(3867)] = 183945, + [SMALL_STATE(3868)] = 183968, + [SMALL_STATE(3869)] = 183995, + [SMALL_STATE(3870)] = 184018, + [SMALL_STATE(3871)] = 184045, + [SMALL_STATE(3872)] = 184068, + [SMALL_STATE(3873)] = 184091, + [SMALL_STATE(3874)] = 184114, + [SMALL_STATE(3875)] = 184137, + [SMALL_STATE(3876)] = 184160, + [SMALL_STATE(3877)] = 184183, + [SMALL_STATE(3878)] = 184206, + [SMALL_STATE(3879)] = 184229, + [SMALL_STATE(3880)] = 184252, + [SMALL_STATE(3881)] = 184275, + [SMALL_STATE(3882)] = 184298, + [SMALL_STATE(3883)] = 184321, + [SMALL_STATE(3884)] = 184344, + [SMALL_STATE(3885)] = 184367, + [SMALL_STATE(3886)] = 184394, + [SMALL_STATE(3887)] = 184417, + [SMALL_STATE(3888)] = 184440, + [SMALL_STATE(3889)] = 184463, + [SMALL_STATE(3890)] = 184486, + [SMALL_STATE(3891)] = 184509, + [SMALL_STATE(3892)] = 184532, + [SMALL_STATE(3893)] = 184555, + [SMALL_STATE(3894)] = 184582, + [SMALL_STATE(3895)] = 184605, + [SMALL_STATE(3896)] = 184628, + [SMALL_STATE(3897)] = 184651, + [SMALL_STATE(3898)] = 184674, + [SMALL_STATE(3899)] = 184697, + [SMALL_STATE(3900)] = 184720, + [SMALL_STATE(3901)] = 184747, + [SMALL_STATE(3902)] = 184770, + [SMALL_STATE(3903)] = 184797, + [SMALL_STATE(3904)] = 184820, + [SMALL_STATE(3905)] = 184843, + [SMALL_STATE(3906)] = 184870, + [SMALL_STATE(3907)] = 184893, + [SMALL_STATE(3908)] = 184916, + [SMALL_STATE(3909)] = 184939, + [SMALL_STATE(3910)] = 184962, + [SMALL_STATE(3911)] = 184985, + [SMALL_STATE(3912)] = 185012, + [SMALL_STATE(3913)] = 185035, + [SMALL_STATE(3914)] = 185058, + [SMALL_STATE(3915)] = 185081, + [SMALL_STATE(3916)] = 185104, + [SMALL_STATE(3917)] = 185127, + [SMALL_STATE(3918)] = 185150, + [SMALL_STATE(3919)] = 185173, + [SMALL_STATE(3920)] = 185196, + [SMALL_STATE(3921)] = 185223, + [SMALL_STATE(3922)] = 185246, + [SMALL_STATE(3923)] = 185269, + [SMALL_STATE(3924)] = 185292, + [SMALL_STATE(3925)] = 185315, + [SMALL_STATE(3926)] = 185338, + [SMALL_STATE(3927)] = 185361, + [SMALL_STATE(3928)] = 185384, + [SMALL_STATE(3929)] = 185407, + [SMALL_STATE(3930)] = 185430, + [SMALL_STATE(3931)] = 185453, + [SMALL_STATE(3932)] = 185476, + [SMALL_STATE(3933)] = 185503, + [SMALL_STATE(3934)] = 185526, + [SMALL_STATE(3935)] = 185549, + [SMALL_STATE(3936)] = 185572, + [SMALL_STATE(3937)] = 185595, + [SMALL_STATE(3938)] = 185618, + [SMALL_STATE(3939)] = 185641, + [SMALL_STATE(3940)] = 185664, + [SMALL_STATE(3941)] = 185687, + [SMALL_STATE(3942)] = 185710, + [SMALL_STATE(3943)] = 185733, + [SMALL_STATE(3944)] = 185756, + [SMALL_STATE(3945)] = 185779, + [SMALL_STATE(3946)] = 185802, + [SMALL_STATE(3947)] = 185825, + [SMALL_STATE(3948)] = 185848, + [SMALL_STATE(3949)] = 185871, + [SMALL_STATE(3950)] = 185894, + [SMALL_STATE(3951)] = 185917, + [SMALL_STATE(3952)] = 185940, + [SMALL_STATE(3953)] = 185963, + [SMALL_STATE(3954)] = 185986, + [SMALL_STATE(3955)] = 186013, + [SMALL_STATE(3956)] = 186040, + [SMALL_STATE(3957)] = 186063, + [SMALL_STATE(3958)] = 186086, + [SMALL_STATE(3959)] = 186109, + [SMALL_STATE(3960)] = 186132, + [SMALL_STATE(3961)] = 186155, + [SMALL_STATE(3962)] = 186178, + [SMALL_STATE(3963)] = 186201, + [SMALL_STATE(3964)] = 186224, + [SMALL_STATE(3965)] = 186247, + [SMALL_STATE(3966)] = 186270, + [SMALL_STATE(3967)] = 186293, + [SMALL_STATE(3968)] = 186316, + [SMALL_STATE(3969)] = 186339, + [SMALL_STATE(3970)] = 186362, + [SMALL_STATE(3971)] = 186385, + [SMALL_STATE(3972)] = 186408, + [SMALL_STATE(3973)] = 186431, + [SMALL_STATE(3974)] = 186454, + [SMALL_STATE(3975)] = 186477, + [SMALL_STATE(3976)] = 186500, + [SMALL_STATE(3977)] = 186523, + [SMALL_STATE(3978)] = 186546, + [SMALL_STATE(3979)] = 186569, + [SMALL_STATE(3980)] = 186592, + [SMALL_STATE(3981)] = 186615, + [SMALL_STATE(3982)] = 186638, + [SMALL_STATE(3983)] = 186665, + [SMALL_STATE(3984)] = 186688, + [SMALL_STATE(3985)] = 186711, + [SMALL_STATE(3986)] = 186734, + [SMALL_STATE(3987)] = 186757, + [SMALL_STATE(3988)] = 186780, + [SMALL_STATE(3989)] = 186803, + [SMALL_STATE(3990)] = 186826, + [SMALL_STATE(3991)] = 186849, + [SMALL_STATE(3992)] = 186872, + [SMALL_STATE(3993)] = 186895, + [SMALL_STATE(3994)] = 186918, + [SMALL_STATE(3995)] = 186941, + [SMALL_STATE(3996)] = 186968, + [SMALL_STATE(3997)] = 186995, + [SMALL_STATE(3998)] = 187019, + [SMALL_STATE(3999)] = 187043, + [SMALL_STATE(4000)] = 187067, + [SMALL_STATE(4001)] = 187091, + [SMALL_STATE(4002)] = 187115, + [SMALL_STATE(4003)] = 187139, + [SMALL_STATE(4004)] = 187163, + [SMALL_STATE(4005)] = 187187, + [SMALL_STATE(4006)] = 187211, + [SMALL_STATE(4007)] = 187235, + [SMALL_STATE(4008)] = 187259, + [SMALL_STATE(4009)] = 187283, + [SMALL_STATE(4010)] = 187307, + [SMALL_STATE(4011)] = 187331, + [SMALL_STATE(4012)] = 187355, + [SMALL_STATE(4013)] = 187379, + [SMALL_STATE(4014)] = 187403, + [SMALL_STATE(4015)] = 187427, + [SMALL_STATE(4016)] = 187451, + [SMALL_STATE(4017)] = 187475, + [SMALL_STATE(4018)] = 187499, + [SMALL_STATE(4019)] = 187523, + [SMALL_STATE(4020)] = 187547, + [SMALL_STATE(4021)] = 187571, + [SMALL_STATE(4022)] = 187595, + [SMALL_STATE(4023)] = 187619, + [SMALL_STATE(4024)] = 187643, + [SMALL_STATE(4025)] = 187667, + [SMALL_STATE(4026)] = 187691, + [SMALL_STATE(4027)] = 187715, + [SMALL_STATE(4028)] = 187739, + [SMALL_STATE(4029)] = 187763, + [SMALL_STATE(4030)] = 187787, + [SMALL_STATE(4031)] = 187811, + [SMALL_STATE(4032)] = 187835, + [SMALL_STATE(4033)] = 187859, + [SMALL_STATE(4034)] = 187883, + [SMALL_STATE(4035)] = 187907, + [SMALL_STATE(4036)] = 187931, + [SMALL_STATE(4037)] = 187955, + [SMALL_STATE(4038)] = 187979, + [SMALL_STATE(4039)] = 188003, + [SMALL_STATE(4040)] = 188027, + [SMALL_STATE(4041)] = 188051, + [SMALL_STATE(4042)] = 188075, + [SMALL_STATE(4043)] = 188099, + [SMALL_STATE(4044)] = 188123, + [SMALL_STATE(4045)] = 188147, + [SMALL_STATE(4046)] = 188171, + [SMALL_STATE(4047)] = 188195, + [SMALL_STATE(4048)] = 188219, + [SMALL_STATE(4049)] = 188243, + [SMALL_STATE(4050)] = 188267, + [SMALL_STATE(4051)] = 188291, + [SMALL_STATE(4052)] = 188315, + [SMALL_STATE(4053)] = 188339, + [SMALL_STATE(4054)] = 188363, + [SMALL_STATE(4055)] = 188387, + [SMALL_STATE(4056)] = 188411, + [SMALL_STATE(4057)] = 188435, + [SMALL_STATE(4058)] = 188459, + [SMALL_STATE(4059)] = 188483, + [SMALL_STATE(4060)] = 188507, + [SMALL_STATE(4061)] = 188531, + [SMALL_STATE(4062)] = 188555, + [SMALL_STATE(4063)] = 188579, + [SMALL_STATE(4064)] = 188603, + [SMALL_STATE(4065)] = 188627, + [SMALL_STATE(4066)] = 188651, + [SMALL_STATE(4067)] = 188675, + [SMALL_STATE(4068)] = 188699, + [SMALL_STATE(4069)] = 188723, + [SMALL_STATE(4070)] = 188747, + [SMALL_STATE(4071)] = 188771, + [SMALL_STATE(4072)] = 188795, + [SMALL_STATE(4073)] = 188819, + [SMALL_STATE(4074)] = 188843, + [SMALL_STATE(4075)] = 188867, + [SMALL_STATE(4076)] = 188891, + [SMALL_STATE(4077)] = 188915, + [SMALL_STATE(4078)] = 188939, + [SMALL_STATE(4079)] = 188963, + [SMALL_STATE(4080)] = 188987, + [SMALL_STATE(4081)] = 189011, + [SMALL_STATE(4082)] = 189035, + [SMALL_STATE(4083)] = 189059, + [SMALL_STATE(4084)] = 189083, + [SMALL_STATE(4085)] = 189107, + [SMALL_STATE(4086)] = 189131, + [SMALL_STATE(4087)] = 189155, + [SMALL_STATE(4088)] = 189179, + [SMALL_STATE(4089)] = 189203, + [SMALL_STATE(4090)] = 189227, + [SMALL_STATE(4091)] = 189251, + [SMALL_STATE(4092)] = 189275, + [SMALL_STATE(4093)] = 189299, + [SMALL_STATE(4094)] = 189323, + [SMALL_STATE(4095)] = 189347, + [SMALL_STATE(4096)] = 189371, + [SMALL_STATE(4097)] = 189395, + [SMALL_STATE(4098)] = 189419, + [SMALL_STATE(4099)] = 189443, + [SMALL_STATE(4100)] = 189467, + [SMALL_STATE(4101)] = 189491, + [SMALL_STATE(4102)] = 189515, + [SMALL_STATE(4103)] = 189532, + [SMALL_STATE(4104)] = 189549, + [SMALL_STATE(4105)] = 189567, + [SMALL_STATE(4106)] = 189585, + [SMALL_STATE(4107)] = 189603, + [SMALL_STATE(4108)] = 189621, + [SMALL_STATE(4109)] = 189639, + [SMALL_STATE(4110)] = 189657, + [SMALL_STATE(4111)] = 189675, + [SMALL_STATE(4112)] = 189693, + [SMALL_STATE(4113)] = 189711, + [SMALL_STATE(4114)] = 189727, + [SMALL_STATE(4115)] = 189745, + [SMALL_STATE(4116)] = 189763, + [SMALL_STATE(4117)] = 189781, + [SMALL_STATE(4118)] = 189799, + [SMALL_STATE(4119)] = 189817, + [SMALL_STATE(4120)] = 189835, + [SMALL_STATE(4121)] = 189853, + [SMALL_STATE(4122)] = 189871, + [SMALL_STATE(4123)] = 189889, + [SMALL_STATE(4124)] = 189905, + [SMALL_STATE(4125)] = 189921, + [SMALL_STATE(4126)] = 189937, + [SMALL_STATE(4127)] = 189955, + [SMALL_STATE(4128)] = 189971, + [SMALL_STATE(4129)] = 189989, + [SMALL_STATE(4130)] = 190007, + [SMALL_STATE(4131)] = 190025, + [SMALL_STATE(4132)] = 190043, + [SMALL_STATE(4133)] = 190061, + [SMALL_STATE(4134)] = 190079, + [SMALL_STATE(4135)] = 190097, + [SMALL_STATE(4136)] = 190115, + [SMALL_STATE(4137)] = 190133, + [SMALL_STATE(4138)] = 190149, + [SMALL_STATE(4139)] = 190167, + [SMALL_STATE(4140)] = 190185, + [SMALL_STATE(4141)] = 190203, + [SMALL_STATE(4142)] = 190221, + [SMALL_STATE(4143)] = 190239, + [SMALL_STATE(4144)] = 190257, + [SMALL_STATE(4145)] = 190273, + [SMALL_STATE(4146)] = 190291, + [SMALL_STATE(4147)] = 190309, + [SMALL_STATE(4148)] = 190327, + [SMALL_STATE(4149)] = 190345, + [SMALL_STATE(4150)] = 190363, + [SMALL_STATE(4151)] = 190379, + [SMALL_STATE(4152)] = 190397, + [SMALL_STATE(4153)] = 190415, + [SMALL_STATE(4154)] = 190431, + [SMALL_STATE(4155)] = 190449, + [SMALL_STATE(4156)] = 190467, + [SMALL_STATE(4157)] = 190485, + [SMALL_STATE(4158)] = 190503, + [SMALL_STATE(4159)] = 190519, + [SMALL_STATE(4160)] = 190537, + [SMALL_STATE(4161)] = 190555, + [SMALL_STATE(4162)] = 190573, + [SMALL_STATE(4163)] = 190591, + [SMALL_STATE(4164)] = 190609, + [SMALL_STATE(4165)] = 190627, + [SMALL_STATE(4166)] = 190645, + [SMALL_STATE(4167)] = 190663, + [SMALL_STATE(4168)] = 190681, + [SMALL_STATE(4169)] = 190699, + [SMALL_STATE(4170)] = 190717, + [SMALL_STATE(4171)] = 190735, + [SMALL_STATE(4172)] = 190753, + [SMALL_STATE(4173)] = 190771, + [SMALL_STATE(4174)] = 190789, + [SMALL_STATE(4175)] = 190807, + [SMALL_STATE(4176)] = 190825, + [SMALL_STATE(4177)] = 190843, + [SMALL_STATE(4178)] = 190861, + [SMALL_STATE(4179)] = 190879, + [SMALL_STATE(4180)] = 190897, + [SMALL_STATE(4181)] = 190915, + [SMALL_STATE(4182)] = 190933, + [SMALL_STATE(4183)] = 190951, + [SMALL_STATE(4184)] = 190969, + [SMALL_STATE(4185)] = 190987, + [SMALL_STATE(4186)] = 191005, + [SMALL_STATE(4187)] = 191023, + [SMALL_STATE(4188)] = 191041, + [SMALL_STATE(4189)] = 191059, + [SMALL_STATE(4190)] = 191077, + [SMALL_STATE(4191)] = 191093, + [SMALL_STATE(4192)] = 191111, + [SMALL_STATE(4193)] = 191129, + [SMALL_STATE(4194)] = 191147, + [SMALL_STATE(4195)] = 191165, + [SMALL_STATE(4196)] = 191183, + [SMALL_STATE(4197)] = 191201, + [SMALL_STATE(4198)] = 191219, + [SMALL_STATE(4199)] = 191237, + [SMALL_STATE(4200)] = 191255, + [SMALL_STATE(4201)] = 191273, + [SMALL_STATE(4202)] = 191289, + [SMALL_STATE(4203)] = 191307, + [SMALL_STATE(4204)] = 191325, + [SMALL_STATE(4205)] = 191343, + [SMALL_STATE(4206)] = 191361, + [SMALL_STATE(4207)] = 191379, + [SMALL_STATE(4208)] = 191397, + [SMALL_STATE(4209)] = 191415, + [SMALL_STATE(4210)] = 191433, + [SMALL_STATE(4211)] = 191451, + [SMALL_STATE(4212)] = 191469, + [SMALL_STATE(4213)] = 191487, + [SMALL_STATE(4214)] = 191505, + [SMALL_STATE(4215)] = 191523, + [SMALL_STATE(4216)] = 191541, + [SMALL_STATE(4217)] = 191559, + [SMALL_STATE(4218)] = 191577, + [SMALL_STATE(4219)] = 191595, + [SMALL_STATE(4220)] = 191613, + [SMALL_STATE(4221)] = 191631, + [SMALL_STATE(4222)] = 191646, + [SMALL_STATE(4223)] = 191661, + [SMALL_STATE(4224)] = 191676, + [SMALL_STATE(4225)] = 191691, + [SMALL_STATE(4226)] = 191706, + [SMALL_STATE(4227)] = 191721, + [SMALL_STATE(4228)] = 191736, + [SMALL_STATE(4229)] = 191751, + [SMALL_STATE(4230)] = 191766, + [SMALL_STATE(4231)] = 191781, + [SMALL_STATE(4232)] = 191796, + [SMALL_STATE(4233)] = 191811, + [SMALL_STATE(4234)] = 191826, + [SMALL_STATE(4235)] = 191841, + [SMALL_STATE(4236)] = 191856, + [SMALL_STATE(4237)] = 191871, + [SMALL_STATE(4238)] = 191886, + [SMALL_STATE(4239)] = 191901, + [SMALL_STATE(4240)] = 191916, + [SMALL_STATE(4241)] = 191931, + [SMALL_STATE(4242)] = 191946, + [SMALL_STATE(4243)] = 191961, + [SMALL_STATE(4244)] = 191976, + [SMALL_STATE(4245)] = 191991, + [SMALL_STATE(4246)] = 192006, + [SMALL_STATE(4247)] = 192021, + [SMALL_STATE(4248)] = 192036, + [SMALL_STATE(4249)] = 192051, + [SMALL_STATE(4250)] = 192066, + [SMALL_STATE(4251)] = 192081, + [SMALL_STATE(4252)] = 192096, + [SMALL_STATE(4253)] = 192111, + [SMALL_STATE(4254)] = 192126, + [SMALL_STATE(4255)] = 192141, + [SMALL_STATE(4256)] = 192156, + [SMALL_STATE(4257)] = 192171, + [SMALL_STATE(4258)] = 192186, + [SMALL_STATE(4259)] = 192201, + [SMALL_STATE(4260)] = 192216, + [SMALL_STATE(4261)] = 192231, + [SMALL_STATE(4262)] = 192246, + [SMALL_STATE(4263)] = 192261, + [SMALL_STATE(4264)] = 192276, + [SMALL_STATE(4265)] = 192291, + [SMALL_STATE(4266)] = 192306, + [SMALL_STATE(4267)] = 192321, + [SMALL_STATE(4268)] = 192336, + [SMALL_STATE(4269)] = 192350, + [SMALL_STATE(4270)] = 192364, + [SMALL_STATE(4271)] = 192378, + [SMALL_STATE(4272)] = 192392, + [SMALL_STATE(4273)] = 192406, + [SMALL_STATE(4274)] = 192420, + [SMALL_STATE(4275)] = 192434, + [SMALL_STATE(4276)] = 192448, + [SMALL_STATE(4277)] = 192462, + [SMALL_STATE(4278)] = 192472, + [SMALL_STATE(4279)] = 192482, + [SMALL_STATE(4280)] = 192496, + [SMALL_STATE(4281)] = 192510, + [SMALL_STATE(4282)] = 192524, + [SMALL_STATE(4283)] = 192538, + [SMALL_STATE(4284)] = 192552, + [SMALL_STATE(4285)] = 192562, + [SMALL_STATE(4286)] = 192572, + [SMALL_STATE(4287)] = 192582, + [SMALL_STATE(4288)] = 192592, + [SMALL_STATE(4289)] = 192602, + [SMALL_STATE(4290)] = 192612, + [SMALL_STATE(4291)] = 192626, + [SMALL_STATE(4292)] = 192640, + [SMALL_STATE(4293)] = 192650, + [SMALL_STATE(4294)] = 192660, + [SMALL_STATE(4295)] = 192674, + [SMALL_STATE(4296)] = 192688, + [SMALL_STATE(4297)] = 192702, + [SMALL_STATE(4298)] = 192716, + [SMALL_STATE(4299)] = 192726, + [SMALL_STATE(4300)] = 192740, + [SMALL_STATE(4301)] = 192754, + [SMALL_STATE(4302)] = 192768, + [SMALL_STATE(4303)] = 192782, + [SMALL_STATE(4304)] = 192796, + [SMALL_STATE(4305)] = 192810, + [SMALL_STATE(4306)] = 192824, + [SMALL_STATE(4307)] = 192838, + [SMALL_STATE(4308)] = 192852, + [SMALL_STATE(4309)] = 192866, + [SMALL_STATE(4310)] = 192880, + [SMALL_STATE(4311)] = 192894, + [SMALL_STATE(4312)] = 192908, + [SMALL_STATE(4313)] = 192922, + [SMALL_STATE(4314)] = 192936, + [SMALL_STATE(4315)] = 192950, + [SMALL_STATE(4316)] = 192964, + [SMALL_STATE(4317)] = 192978, + [SMALL_STATE(4318)] = 192992, + [SMALL_STATE(4319)] = 193006, + [SMALL_STATE(4320)] = 193020, + [SMALL_STATE(4321)] = 193034, + [SMALL_STATE(4322)] = 193048, + [SMALL_STATE(4323)] = 193062, + [SMALL_STATE(4324)] = 193076, + [SMALL_STATE(4325)] = 193090, + [SMALL_STATE(4326)] = 193104, + [SMALL_STATE(4327)] = 193118, + [SMALL_STATE(4328)] = 193132, + [SMALL_STATE(4329)] = 193146, + [SMALL_STATE(4330)] = 193156, + [SMALL_STATE(4331)] = 193170, + [SMALL_STATE(4332)] = 193184, + [SMALL_STATE(4333)] = 193198, + [SMALL_STATE(4334)] = 193212, + [SMALL_STATE(4335)] = 193226, + [SMALL_STATE(4336)] = 193240, + [SMALL_STATE(4337)] = 193254, + [SMALL_STATE(4338)] = 193268, + [SMALL_STATE(4339)] = 193282, + [SMALL_STATE(4340)] = 193296, + [SMALL_STATE(4341)] = 193310, + [SMALL_STATE(4342)] = 193324, + [SMALL_STATE(4343)] = 193338, + [SMALL_STATE(4344)] = 193350, + [SMALL_STATE(4345)] = 193364, + [SMALL_STATE(4346)] = 193378, + [SMALL_STATE(4347)] = 193392, + [SMALL_STATE(4348)] = 193406, + [SMALL_STATE(4349)] = 193420, + [SMALL_STATE(4350)] = 193434, + [SMALL_STATE(4351)] = 193448, + [SMALL_STATE(4352)] = 193462, + [SMALL_STATE(4353)] = 193476, + [SMALL_STATE(4354)] = 193490, + [SMALL_STATE(4355)] = 193504, + [SMALL_STATE(4356)] = 193518, + [SMALL_STATE(4357)] = 193532, + [SMALL_STATE(4358)] = 193546, + [SMALL_STATE(4359)] = 193560, + [SMALL_STATE(4360)] = 193574, + [SMALL_STATE(4361)] = 193588, + [SMALL_STATE(4362)] = 193602, + [SMALL_STATE(4363)] = 193616, + [SMALL_STATE(4364)] = 193630, + [SMALL_STATE(4365)] = 193644, + [SMALL_STATE(4366)] = 193658, + [SMALL_STATE(4367)] = 193672, + [SMALL_STATE(4368)] = 193686, + [SMALL_STATE(4369)] = 193700, + [SMALL_STATE(4370)] = 193714, + [SMALL_STATE(4371)] = 193728, + [SMALL_STATE(4372)] = 193742, + [SMALL_STATE(4373)] = 193756, + [SMALL_STATE(4374)] = 193770, + [SMALL_STATE(4375)] = 193780, + [SMALL_STATE(4376)] = 193794, + [SMALL_STATE(4377)] = 193808, + [SMALL_STATE(4378)] = 193822, + [SMALL_STATE(4379)] = 193832, + [SMALL_STATE(4380)] = 193846, + [SMALL_STATE(4381)] = 193860, + [SMALL_STATE(4382)] = 193874, + [SMALL_STATE(4383)] = 193888, + [SMALL_STATE(4384)] = 193902, + [SMALL_STATE(4385)] = 193916, + [SMALL_STATE(4386)] = 193930, + [SMALL_STATE(4387)] = 193944, + [SMALL_STATE(4388)] = 193958, + [SMALL_STATE(4389)] = 193972, + [SMALL_STATE(4390)] = 193986, + [SMALL_STATE(4391)] = 194000, + [SMALL_STATE(4392)] = 194014, + [SMALL_STATE(4393)] = 194028, + [SMALL_STATE(4394)] = 194042, + [SMALL_STATE(4395)] = 194056, + [SMALL_STATE(4396)] = 194066, + [SMALL_STATE(4397)] = 194080, + [SMALL_STATE(4398)] = 194094, + [SMALL_STATE(4399)] = 194108, + [SMALL_STATE(4400)] = 194122, + [SMALL_STATE(4401)] = 194136, + [SMALL_STATE(4402)] = 194150, + [SMALL_STATE(4403)] = 194164, + [SMALL_STATE(4404)] = 194178, + [SMALL_STATE(4405)] = 194192, + [SMALL_STATE(4406)] = 194206, + [SMALL_STATE(4407)] = 194220, + [SMALL_STATE(4408)] = 194234, + [SMALL_STATE(4409)] = 194248, + [SMALL_STATE(4410)] = 194262, + [SMALL_STATE(4411)] = 194276, + [SMALL_STATE(4412)] = 194290, + [SMALL_STATE(4413)] = 194304, + [SMALL_STATE(4414)] = 194318, + [SMALL_STATE(4415)] = 194332, + [SMALL_STATE(4416)] = 194346, + [SMALL_STATE(4417)] = 194360, + [SMALL_STATE(4418)] = 194374, + [SMALL_STATE(4419)] = 194388, + [SMALL_STATE(4420)] = 194402, + [SMALL_STATE(4421)] = 194416, + [SMALL_STATE(4422)] = 194430, + [SMALL_STATE(4423)] = 194444, + [SMALL_STATE(4424)] = 194458, + [SMALL_STATE(4425)] = 194472, + [SMALL_STATE(4426)] = 194486, + [SMALL_STATE(4427)] = 194500, + [SMALL_STATE(4428)] = 194514, + [SMALL_STATE(4429)] = 194528, + [SMALL_STATE(4430)] = 194542, + [SMALL_STATE(4431)] = 194556, + [SMALL_STATE(4432)] = 194570, + [SMALL_STATE(4433)] = 194584, + [SMALL_STATE(4434)] = 194598, + [SMALL_STATE(4435)] = 194612, + [SMALL_STATE(4436)] = 194626, + [SMALL_STATE(4437)] = 194640, + [SMALL_STATE(4438)] = 194654, + [SMALL_STATE(4439)] = 194668, + [SMALL_STATE(4440)] = 194682, + [SMALL_STATE(4441)] = 194696, + [SMALL_STATE(4442)] = 194710, + [SMALL_STATE(4443)] = 194724, + [SMALL_STATE(4444)] = 194738, + [SMALL_STATE(4445)] = 194748, + [SMALL_STATE(4446)] = 194758, + [SMALL_STATE(4447)] = 194768, + [SMALL_STATE(4448)] = 194778, + [SMALL_STATE(4449)] = 194788, + [SMALL_STATE(4450)] = 194798, + [SMALL_STATE(4451)] = 194808, + [SMALL_STATE(4452)] = 194818, + [SMALL_STATE(4453)] = 194828, + [SMALL_STATE(4454)] = 194838, + [SMALL_STATE(4455)] = 194848, + [SMALL_STATE(4456)] = 194858, + [SMALL_STATE(4457)] = 194868, + [SMALL_STATE(4458)] = 194878, + [SMALL_STATE(4459)] = 194888, + [SMALL_STATE(4460)] = 194898, + [SMALL_STATE(4461)] = 194908, + [SMALL_STATE(4462)] = 194918, + [SMALL_STATE(4463)] = 194928, + [SMALL_STATE(4464)] = 194938, + [SMALL_STATE(4465)] = 194944, + [SMALL_STATE(4466)] = 194954, + [SMALL_STATE(4467)] = 194964, + [SMALL_STATE(4468)] = 194974, + [SMALL_STATE(4469)] = 194984, + [SMALL_STATE(4470)] = 194994, + [SMALL_STATE(4471)] = 195004, + [SMALL_STATE(4472)] = 195014, + [SMALL_STATE(4473)] = 195024, + [SMALL_STATE(4474)] = 195034, + [SMALL_STATE(4475)] = 195044, + [SMALL_STATE(4476)] = 195054, + [SMALL_STATE(4477)] = 195064, + [SMALL_STATE(4478)] = 195074, + [SMALL_STATE(4479)] = 195084, + [SMALL_STATE(4480)] = 195094, + [SMALL_STATE(4481)] = 195104, + [SMALL_STATE(4482)] = 195114, + [SMALL_STATE(4483)] = 195124, + [SMALL_STATE(4484)] = 195134, + [SMALL_STATE(4485)] = 195144, + [SMALL_STATE(4486)] = 195154, + [SMALL_STATE(4487)] = 195164, + [SMALL_STATE(4488)] = 195174, + [SMALL_STATE(4489)] = 195184, + [SMALL_STATE(4490)] = 195194, + [SMALL_STATE(4491)] = 195204, + [SMALL_STATE(4492)] = 195214, + [SMALL_STATE(4493)] = 195224, + [SMALL_STATE(4494)] = 195234, + [SMALL_STATE(4495)] = 195244, + [SMALL_STATE(4496)] = 195254, + [SMALL_STATE(4497)] = 195264, + [SMALL_STATE(4498)] = 195274, + [SMALL_STATE(4499)] = 195284, + [SMALL_STATE(4500)] = 195294, + [SMALL_STATE(4501)] = 195304, + [SMALL_STATE(4502)] = 195314, + [SMALL_STATE(4503)] = 195324, + [SMALL_STATE(4504)] = 195334, + [SMALL_STATE(4505)] = 195344, + [SMALL_STATE(4506)] = 195354, + [SMALL_STATE(4507)] = 195364, + [SMALL_STATE(4508)] = 195374, + [SMALL_STATE(4509)] = 195384, + [SMALL_STATE(4510)] = 195394, + [SMALL_STATE(4511)] = 195404, + [SMALL_STATE(4512)] = 195414, + [SMALL_STATE(4513)] = 195424, + [SMALL_STATE(4514)] = 195434, + [SMALL_STATE(4515)] = 195444, + [SMALL_STATE(4516)] = 195454, + [SMALL_STATE(4517)] = 195464, + [SMALL_STATE(4518)] = 195474, + [SMALL_STATE(4519)] = 195484, + [SMALL_STATE(4520)] = 195494, + [SMALL_STATE(4521)] = 195504, + [SMALL_STATE(4522)] = 195514, + [SMALL_STATE(4523)] = 195524, + [SMALL_STATE(4524)] = 195534, + [SMALL_STATE(4525)] = 195544, + [SMALL_STATE(4526)] = 195554, + [SMALL_STATE(4527)] = 195564, + [SMALL_STATE(4528)] = 195574, + [SMALL_STATE(4529)] = 195584, + [SMALL_STATE(4530)] = 195594, + [SMALL_STATE(4531)] = 195604, + [SMALL_STATE(4532)] = 195614, + [SMALL_STATE(4533)] = 195624, + [SMALL_STATE(4534)] = 195634, + [SMALL_STATE(4535)] = 195644, + [SMALL_STATE(4536)] = 195654, + [SMALL_STATE(4537)] = 195664, + [SMALL_STATE(4538)] = 195674, + [SMALL_STATE(4539)] = 195684, + [SMALL_STATE(4540)] = 195694, + [SMALL_STATE(4541)] = 195704, + [SMALL_STATE(4542)] = 195714, + [SMALL_STATE(4543)] = 195724, + [SMALL_STATE(4544)] = 195734, + [SMALL_STATE(4545)] = 195744, + [SMALL_STATE(4546)] = 195754, + [SMALL_STATE(4547)] = 195764, + [SMALL_STATE(4548)] = 195774, + [SMALL_STATE(4549)] = 195784, + [SMALL_STATE(4550)] = 195794, + [SMALL_STATE(4551)] = 195804, + [SMALL_STATE(4552)] = 195814, + [SMALL_STATE(4553)] = 195824, + [SMALL_STATE(4554)] = 195834, + [SMALL_STATE(4555)] = 195844, + [SMALL_STATE(4556)] = 195854, + [SMALL_STATE(4557)] = 195864, + [SMALL_STATE(4558)] = 195874, + [SMALL_STATE(4559)] = 195884, + [SMALL_STATE(4560)] = 195894, + [SMALL_STATE(4561)] = 195904, + [SMALL_STATE(4562)] = 195914, + [SMALL_STATE(4563)] = 195924, + [SMALL_STATE(4564)] = 195934, + [SMALL_STATE(4565)] = 195944, + [SMALL_STATE(4566)] = 195954, + [SMALL_STATE(4567)] = 195964, + [SMALL_STATE(4568)] = 195974, + [SMALL_STATE(4569)] = 195984, + [SMALL_STATE(4570)] = 195994, + [SMALL_STATE(4571)] = 196004, + [SMALL_STATE(4572)] = 196014, + [SMALL_STATE(4573)] = 196024, + [SMALL_STATE(4574)] = 196034, + [SMALL_STATE(4575)] = 196044, + [SMALL_STATE(4576)] = 196054, + [SMALL_STATE(4577)] = 196064, + [SMALL_STATE(4578)] = 196074, + [SMALL_STATE(4579)] = 196084, + [SMALL_STATE(4580)] = 196094, + [SMALL_STATE(4581)] = 196104, + [SMALL_STATE(4582)] = 196114, + [SMALL_STATE(4583)] = 196124, + [SMALL_STATE(4584)] = 196134, + [SMALL_STATE(4585)] = 196144, + [SMALL_STATE(4586)] = 196154, + [SMALL_STATE(4587)] = 196164, + [SMALL_STATE(4588)] = 196174, + [SMALL_STATE(4589)] = 196184, + [SMALL_STATE(4590)] = 196194, + [SMALL_STATE(4591)] = 196204, + [SMALL_STATE(4592)] = 196214, + [SMALL_STATE(4593)] = 196224, + [SMALL_STATE(4594)] = 196234, + [SMALL_STATE(4595)] = 196244, + [SMALL_STATE(4596)] = 196254, + [SMALL_STATE(4597)] = 196264, + [SMALL_STATE(4598)] = 196274, + [SMALL_STATE(4599)] = 196284, + [SMALL_STATE(4600)] = 196294, + [SMALL_STATE(4601)] = 196304, + [SMALL_STATE(4602)] = 196314, + [SMALL_STATE(4603)] = 196324, + [SMALL_STATE(4604)] = 196334, + [SMALL_STATE(4605)] = 196344, + [SMALL_STATE(4606)] = 196354, + [SMALL_STATE(4607)] = 196364, + [SMALL_STATE(4608)] = 196374, + [SMALL_STATE(4609)] = 196384, + [SMALL_STATE(4610)] = 196394, + [SMALL_STATE(4611)] = 196404, + [SMALL_STATE(4612)] = 196414, + [SMALL_STATE(4613)] = 196424, + [SMALL_STATE(4614)] = 196434, + [SMALL_STATE(4615)] = 196444, + [SMALL_STATE(4616)] = 196454, + [SMALL_STATE(4617)] = 196464, + [SMALL_STATE(4618)] = 196474, + [SMALL_STATE(4619)] = 196484, + [SMALL_STATE(4620)] = 196494, + [SMALL_STATE(4621)] = 196504, + [SMALL_STATE(4622)] = 196514, + [SMALL_STATE(4623)] = 196524, + [SMALL_STATE(4624)] = 196534, + [SMALL_STATE(4625)] = 196544, + [SMALL_STATE(4626)] = 196554, + [SMALL_STATE(4627)] = 196564, + [SMALL_STATE(4628)] = 196574, + [SMALL_STATE(4629)] = 196584, + [SMALL_STATE(4630)] = 196594, + [SMALL_STATE(4631)] = 196604, + [SMALL_STATE(4632)] = 196614, + [SMALL_STATE(4633)] = 196624, + [SMALL_STATE(4634)] = 196634, + [SMALL_STATE(4635)] = 196644, + [SMALL_STATE(4636)] = 196654, + [SMALL_STATE(4637)] = 196664, + [SMALL_STATE(4638)] = 196674, + [SMALL_STATE(4639)] = 196684, + [SMALL_STATE(4640)] = 196694, + [SMALL_STATE(4641)] = 196704, + [SMALL_STATE(4642)] = 196714, + [SMALL_STATE(4643)] = 196724, + [SMALL_STATE(4644)] = 196734, + [SMALL_STATE(4645)] = 196744, + [SMALL_STATE(4646)] = 196754, + [SMALL_STATE(4647)] = 196764, + [SMALL_STATE(4648)] = 196774, + [SMALL_STATE(4649)] = 196784, + [SMALL_STATE(4650)] = 196794, + [SMALL_STATE(4651)] = 196804, + [SMALL_STATE(4652)] = 196814, + [SMALL_STATE(4653)] = 196824, + [SMALL_STATE(4654)] = 196834, + [SMALL_STATE(4655)] = 196844, + [SMALL_STATE(4656)] = 196854, + [SMALL_STATE(4657)] = 196864, + [SMALL_STATE(4658)] = 196874, + [SMALL_STATE(4659)] = 196884, + [SMALL_STATE(4660)] = 196894, + [SMALL_STATE(4661)] = 196904, + [SMALL_STATE(4662)] = 196914, + [SMALL_STATE(4663)] = 196924, + [SMALL_STATE(4664)] = 196934, + [SMALL_STATE(4665)] = 196944, + [SMALL_STATE(4666)] = 196954, + [SMALL_STATE(4667)] = 196964, + [SMALL_STATE(4668)] = 196974, + [SMALL_STATE(4669)] = 196984, + [SMALL_STATE(4670)] = 196994, + [SMALL_STATE(4671)] = 197004, + [SMALL_STATE(4672)] = 197014, + [SMALL_STATE(4673)] = 197024, + [SMALL_STATE(4674)] = 197034, + [SMALL_STATE(4675)] = 197042, + [SMALL_STATE(4676)] = 197052, + [SMALL_STATE(4677)] = 197062, + [SMALL_STATE(4678)] = 197072, + [SMALL_STATE(4679)] = 197082, + [SMALL_STATE(4680)] = 197092, + [SMALL_STATE(4681)] = 197102, + [SMALL_STATE(4682)] = 197112, + [SMALL_STATE(4683)] = 197122, + [SMALL_STATE(4684)] = 197132, + [SMALL_STATE(4685)] = 197142, + [SMALL_STATE(4686)] = 197152, + [SMALL_STATE(4687)] = 197162, + [SMALL_STATE(4688)] = 197172, + [SMALL_STATE(4689)] = 197182, + [SMALL_STATE(4690)] = 197192, + [SMALL_STATE(4691)] = 197202, + [SMALL_STATE(4692)] = 197212, + [SMALL_STATE(4693)] = 197222, + [SMALL_STATE(4694)] = 197232, + [SMALL_STATE(4695)] = 197242, + [SMALL_STATE(4696)] = 197252, + [SMALL_STATE(4697)] = 197262, + [SMALL_STATE(4698)] = 197272, + [SMALL_STATE(4699)] = 197282, + [SMALL_STATE(4700)] = 197292, + [SMALL_STATE(4701)] = 197302, + [SMALL_STATE(4702)] = 197308, + [SMALL_STATE(4703)] = 197318, + [SMALL_STATE(4704)] = 197328, + [SMALL_STATE(4705)] = 197338, + [SMALL_STATE(4706)] = 197348, + [SMALL_STATE(4707)] = 197358, + [SMALL_STATE(4708)] = 197368, + [SMALL_STATE(4709)] = 197378, + [SMALL_STATE(4710)] = 197388, + [SMALL_STATE(4711)] = 197398, + [SMALL_STATE(4712)] = 197408, + [SMALL_STATE(4713)] = 197418, + [SMALL_STATE(4714)] = 197428, + [SMALL_STATE(4715)] = 197438, + [SMALL_STATE(4716)] = 197448, + [SMALL_STATE(4717)] = 197458, + [SMALL_STATE(4718)] = 197468, + [SMALL_STATE(4719)] = 197478, + [SMALL_STATE(4720)] = 197488, + [SMALL_STATE(4721)] = 197498, + [SMALL_STATE(4722)] = 197508, + [SMALL_STATE(4723)] = 197518, + [SMALL_STATE(4724)] = 197528, + [SMALL_STATE(4725)] = 197538, + [SMALL_STATE(4726)] = 197548, + [SMALL_STATE(4727)] = 197558, + [SMALL_STATE(4728)] = 197568, + [SMALL_STATE(4729)] = 197578, + [SMALL_STATE(4730)] = 197588, + [SMALL_STATE(4731)] = 197598, + [SMALL_STATE(4732)] = 197608, + [SMALL_STATE(4733)] = 197618, + [SMALL_STATE(4734)] = 197628, + [SMALL_STATE(4735)] = 197638, + [SMALL_STATE(4736)] = 197648, + [SMALL_STATE(4737)] = 197658, + [SMALL_STATE(4738)] = 197668, + [SMALL_STATE(4739)] = 197678, + [SMALL_STATE(4740)] = 197688, + [SMALL_STATE(4741)] = 197698, + [SMALL_STATE(4742)] = 197708, + [SMALL_STATE(4743)] = 197718, + [SMALL_STATE(4744)] = 197728, + [SMALL_STATE(4745)] = 197738, + [SMALL_STATE(4746)] = 197748, + [SMALL_STATE(4747)] = 197758, + [SMALL_STATE(4748)] = 197768, + [SMALL_STATE(4749)] = 197778, + [SMALL_STATE(4750)] = 197788, + [SMALL_STATE(4751)] = 197798, + [SMALL_STATE(4752)] = 197808, + [SMALL_STATE(4753)] = 197818, + [SMALL_STATE(4754)] = 197828, + [SMALL_STATE(4755)] = 197838, + [SMALL_STATE(4756)] = 197848, + [SMALL_STATE(4757)] = 197858, + [SMALL_STATE(4758)] = 197868, + [SMALL_STATE(4759)] = 197878, + [SMALL_STATE(4760)] = 197888, + [SMALL_STATE(4761)] = 197898, + [SMALL_STATE(4762)] = 197908, + [SMALL_STATE(4763)] = 197918, + [SMALL_STATE(4764)] = 197928, + [SMALL_STATE(4765)] = 197938, + [SMALL_STATE(4766)] = 197948, + [SMALL_STATE(4767)] = 197958, + [SMALL_STATE(4768)] = 197968, + [SMALL_STATE(4769)] = 197978, + [SMALL_STATE(4770)] = 197988, + [SMALL_STATE(4771)] = 197998, + [SMALL_STATE(4772)] = 198008, + [SMALL_STATE(4773)] = 198018, + [SMALL_STATE(4774)] = 198028, + [SMALL_STATE(4775)] = 198038, + [SMALL_STATE(4776)] = 198048, + [SMALL_STATE(4777)] = 198058, + [SMALL_STATE(4778)] = 198068, + [SMALL_STATE(4779)] = 198078, + [SMALL_STATE(4780)] = 198088, + [SMALL_STATE(4781)] = 198098, + [SMALL_STATE(4782)] = 198108, + [SMALL_STATE(4783)] = 198118, + [SMALL_STATE(4784)] = 198128, + [SMALL_STATE(4785)] = 198138, + [SMALL_STATE(4786)] = 198148, + [SMALL_STATE(4787)] = 198158, + [SMALL_STATE(4788)] = 198168, + [SMALL_STATE(4789)] = 198178, + [SMALL_STATE(4790)] = 198188, + [SMALL_STATE(4791)] = 198198, + [SMALL_STATE(4792)] = 198208, + [SMALL_STATE(4793)] = 198218, + [SMALL_STATE(4794)] = 198228, + [SMALL_STATE(4795)] = 198238, + [SMALL_STATE(4796)] = 198248, + [SMALL_STATE(4797)] = 198258, + [SMALL_STATE(4798)] = 198268, + [SMALL_STATE(4799)] = 198278, + [SMALL_STATE(4800)] = 198288, + [SMALL_STATE(4801)] = 198298, + [SMALL_STATE(4802)] = 198308, + [SMALL_STATE(4803)] = 198318, + [SMALL_STATE(4804)] = 198328, + [SMALL_STATE(4805)] = 198338, + [SMALL_STATE(4806)] = 198348, + [SMALL_STATE(4807)] = 198358, + [SMALL_STATE(4808)] = 198368, + [SMALL_STATE(4809)] = 198378, + [SMALL_STATE(4810)] = 198388, + [SMALL_STATE(4811)] = 198398, + [SMALL_STATE(4812)] = 198408, + [SMALL_STATE(4813)] = 198418, + [SMALL_STATE(4814)] = 198428, + [SMALL_STATE(4815)] = 198438, + [SMALL_STATE(4816)] = 198448, + [SMALL_STATE(4817)] = 198458, + [SMALL_STATE(4818)] = 198468, + [SMALL_STATE(4819)] = 198478, + [SMALL_STATE(4820)] = 198488, + [SMALL_STATE(4821)] = 198498, + [SMALL_STATE(4822)] = 198508, + [SMALL_STATE(4823)] = 198518, + [SMALL_STATE(4824)] = 198528, + [SMALL_STATE(4825)] = 198538, + [SMALL_STATE(4826)] = 198548, + [SMALL_STATE(4827)] = 198558, + [SMALL_STATE(4828)] = 198568, + [SMALL_STATE(4829)] = 198578, + [SMALL_STATE(4830)] = 198588, + [SMALL_STATE(4831)] = 198598, + [SMALL_STATE(4832)] = 198608, + [SMALL_STATE(4833)] = 198618, + [SMALL_STATE(4834)] = 198628, + [SMALL_STATE(4835)] = 198638, + [SMALL_STATE(4836)] = 198648, + [SMALL_STATE(4837)] = 198658, + [SMALL_STATE(4838)] = 198668, + [SMALL_STATE(4839)] = 198678, + [SMALL_STATE(4840)] = 198688, + [SMALL_STATE(4841)] = 198698, + [SMALL_STATE(4842)] = 198708, + [SMALL_STATE(4843)] = 198718, + [SMALL_STATE(4844)] = 198728, + [SMALL_STATE(4845)] = 198738, + [SMALL_STATE(4846)] = 198748, + [SMALL_STATE(4847)] = 198758, + [SMALL_STATE(4848)] = 198768, + [SMALL_STATE(4849)] = 198778, + [SMALL_STATE(4850)] = 198788, + [SMALL_STATE(4851)] = 198798, + [SMALL_STATE(4852)] = 198808, + [SMALL_STATE(4853)] = 198818, + [SMALL_STATE(4854)] = 198828, + [SMALL_STATE(4855)] = 198838, + [SMALL_STATE(4856)] = 198848, + [SMALL_STATE(4857)] = 198858, + [SMALL_STATE(4858)] = 198868, + [SMALL_STATE(4859)] = 198878, + [SMALL_STATE(4860)] = 198888, + [SMALL_STATE(4861)] = 198898, + [SMALL_STATE(4862)] = 198908, + [SMALL_STATE(4863)] = 198918, + [SMALL_STATE(4864)] = 198928, + [SMALL_STATE(4865)] = 198938, + [SMALL_STATE(4866)] = 198948, + [SMALL_STATE(4867)] = 198958, + [SMALL_STATE(4868)] = 198968, + [SMALL_STATE(4869)] = 198978, + [SMALL_STATE(4870)] = 198988, + [SMALL_STATE(4871)] = 198998, + [SMALL_STATE(4872)] = 199008, + [SMALL_STATE(4873)] = 199018, + [SMALL_STATE(4874)] = 199028, + [SMALL_STATE(4875)] = 199038, + [SMALL_STATE(4876)] = 199048, + [SMALL_STATE(4877)] = 199058, + [SMALL_STATE(4878)] = 199068, + [SMALL_STATE(4879)] = 199078, + [SMALL_STATE(4880)] = 199088, + [SMALL_STATE(4881)] = 199098, + [SMALL_STATE(4882)] = 199108, + [SMALL_STATE(4883)] = 199118, + [SMALL_STATE(4884)] = 199128, + [SMALL_STATE(4885)] = 199138, + [SMALL_STATE(4886)] = 199148, + [SMALL_STATE(4887)] = 199158, + [SMALL_STATE(4888)] = 199168, + [SMALL_STATE(4889)] = 199178, + [SMALL_STATE(4890)] = 199188, + [SMALL_STATE(4891)] = 199198, + [SMALL_STATE(4892)] = 199208, + [SMALL_STATE(4893)] = 199218, + [SMALL_STATE(4894)] = 199228, + [SMALL_STATE(4895)] = 199238, + [SMALL_STATE(4896)] = 199248, + [SMALL_STATE(4897)] = 199258, + [SMALL_STATE(4898)] = 199268, + [SMALL_STATE(4899)] = 199278, + [SMALL_STATE(4900)] = 199288, + [SMALL_STATE(4901)] = 199298, + [SMALL_STATE(4902)] = 199308, + [SMALL_STATE(4903)] = 199318, + [SMALL_STATE(4904)] = 199328, + [SMALL_STATE(4905)] = 199338, + [SMALL_STATE(4906)] = 199348, + [SMALL_STATE(4907)] = 199358, + [SMALL_STATE(4908)] = 199368, + [SMALL_STATE(4909)] = 199378, + [SMALL_STATE(4910)] = 199388, + [SMALL_STATE(4911)] = 199398, + [SMALL_STATE(4912)] = 199408, + [SMALL_STATE(4913)] = 199418, + [SMALL_STATE(4914)] = 199428, + [SMALL_STATE(4915)] = 199438, + [SMALL_STATE(4916)] = 199448, + [SMALL_STATE(4917)] = 199458, + [SMALL_STATE(4918)] = 199468, + [SMALL_STATE(4919)] = 199478, + [SMALL_STATE(4920)] = 199488, + [SMALL_STATE(4921)] = 199498, + [SMALL_STATE(4922)] = 199508, + [SMALL_STATE(4923)] = 199518, + [SMALL_STATE(4924)] = 199528, + [SMALL_STATE(4925)] = 199538, + [SMALL_STATE(4926)] = 199548, + [SMALL_STATE(4927)] = 199558, + [SMALL_STATE(4928)] = 199568, + [SMALL_STATE(4929)] = 199578, + [SMALL_STATE(4930)] = 199588, + [SMALL_STATE(4931)] = 199598, + [SMALL_STATE(4932)] = 199608, + [SMALL_STATE(4933)] = 199618, + [SMALL_STATE(4934)] = 199628, + [SMALL_STATE(4935)] = 199638, + [SMALL_STATE(4936)] = 199648, + [SMALL_STATE(4937)] = 199658, + [SMALL_STATE(4938)] = 199668, + [SMALL_STATE(4939)] = 199678, + [SMALL_STATE(4940)] = 199688, + [SMALL_STATE(4941)] = 199698, + [SMALL_STATE(4942)] = 199708, + [SMALL_STATE(4943)] = 199718, + [SMALL_STATE(4944)] = 199728, + [SMALL_STATE(4945)] = 199738, + [SMALL_STATE(4946)] = 199748, + [SMALL_STATE(4947)] = 199758, + [SMALL_STATE(4948)] = 199768, + [SMALL_STATE(4949)] = 199778, + [SMALL_STATE(4950)] = 199788, + [SMALL_STATE(4951)] = 199798, + [SMALL_STATE(4952)] = 199808, + [SMALL_STATE(4953)] = 199818, + [SMALL_STATE(4954)] = 199828, + [SMALL_STATE(4955)] = 199838, + [SMALL_STATE(4956)] = 199848, + [SMALL_STATE(4957)] = 199858, + [SMALL_STATE(4958)] = 199868, + [SMALL_STATE(4959)] = 199878, + [SMALL_STATE(4960)] = 199888, + [SMALL_STATE(4961)] = 199898, + [SMALL_STATE(4962)] = 199908, + [SMALL_STATE(4963)] = 199918, + [SMALL_STATE(4964)] = 199928, + [SMALL_STATE(4965)] = 199938, + [SMALL_STATE(4966)] = 199948, + [SMALL_STATE(4967)] = 199958, + [SMALL_STATE(4968)] = 199968, + [SMALL_STATE(4969)] = 199978, + [SMALL_STATE(4970)] = 199988, + [SMALL_STATE(4971)] = 199998, + [SMALL_STATE(4972)] = 200008, + [SMALL_STATE(4973)] = 200018, + [SMALL_STATE(4974)] = 200028, + [SMALL_STATE(4975)] = 200038, + [SMALL_STATE(4976)] = 200048, + [SMALL_STATE(4977)] = 200058, + [SMALL_STATE(4978)] = 200068, + [SMALL_STATE(4979)] = 200078, + [SMALL_STATE(4980)] = 200088, + [SMALL_STATE(4981)] = 200098, + [SMALL_STATE(4982)] = 200108, + [SMALL_STATE(4983)] = 200118, + [SMALL_STATE(4984)] = 200128, + [SMALL_STATE(4985)] = 200138, + [SMALL_STATE(4986)] = 200148, + [SMALL_STATE(4987)] = 200158, + [SMALL_STATE(4988)] = 200168, + [SMALL_STATE(4989)] = 200178, + [SMALL_STATE(4990)] = 200186, + [SMALL_STATE(4991)] = 200196, + [SMALL_STATE(4992)] = 200206, + [SMALL_STATE(4993)] = 200216, + [SMALL_STATE(4994)] = 200226, + [SMALL_STATE(4995)] = 200236, + [SMALL_STATE(4996)] = 200246, + [SMALL_STATE(4997)] = 200256, + [SMALL_STATE(4998)] = 200266, + [SMALL_STATE(4999)] = 200276, + [SMALL_STATE(5000)] = 200286, + [SMALL_STATE(5001)] = 200296, + [SMALL_STATE(5002)] = 200306, + [SMALL_STATE(5003)] = 200316, + [SMALL_STATE(5004)] = 200326, + [SMALL_STATE(5005)] = 200336, + [SMALL_STATE(5006)] = 200346, + [SMALL_STATE(5007)] = 200356, + [SMALL_STATE(5008)] = 200366, + [SMALL_STATE(5009)] = 200376, + [SMALL_STATE(5010)] = 200386, + [SMALL_STATE(5011)] = 200396, + [SMALL_STATE(5012)] = 200406, + [SMALL_STATE(5013)] = 200416, + [SMALL_STATE(5014)] = 200426, + [SMALL_STATE(5015)] = 200436, + [SMALL_STATE(5016)] = 200446, + [SMALL_STATE(5017)] = 200456, + [SMALL_STATE(5018)] = 200466, + [SMALL_STATE(5019)] = 200476, + [SMALL_STATE(5020)] = 200486, + [SMALL_STATE(5021)] = 200496, + [SMALL_STATE(5022)] = 200506, + [SMALL_STATE(5023)] = 200516, + [SMALL_STATE(5024)] = 200526, + [SMALL_STATE(5025)] = 200536, + [SMALL_STATE(5026)] = 200546, + [SMALL_STATE(5027)] = 200556, + [SMALL_STATE(5028)] = 200566, + [SMALL_STATE(5029)] = 200576, + [SMALL_STATE(5030)] = 200586, + [SMALL_STATE(5031)] = 200596, + [SMALL_STATE(5032)] = 200606, + [SMALL_STATE(5033)] = 200616, + [SMALL_STATE(5034)] = 200626, + [SMALL_STATE(5035)] = 200636, + [SMALL_STATE(5036)] = 200646, + [SMALL_STATE(5037)] = 200656, + [SMALL_STATE(5038)] = 200666, + [SMALL_STATE(5039)] = 200676, + [SMALL_STATE(5040)] = 200686, + [SMALL_STATE(5041)] = 200696, + [SMALL_STATE(5042)] = 200706, + [SMALL_STATE(5043)] = 200716, + [SMALL_STATE(5044)] = 200726, + [SMALL_STATE(5045)] = 200736, + [SMALL_STATE(5046)] = 200746, + [SMALL_STATE(5047)] = 200756, + [SMALL_STATE(5048)] = 200766, + [SMALL_STATE(5049)] = 200776, + [SMALL_STATE(5050)] = 200786, + [SMALL_STATE(5051)] = 200796, + [SMALL_STATE(5052)] = 200806, + [SMALL_STATE(5053)] = 200816, + [SMALL_STATE(5054)] = 200826, + [SMALL_STATE(5055)] = 200836, + [SMALL_STATE(5056)] = 200846, + [SMALL_STATE(5057)] = 200856, + [SMALL_STATE(5058)] = 200866, + [SMALL_STATE(5059)] = 200876, + [SMALL_STATE(5060)] = 200886, + [SMALL_STATE(5061)] = 200896, + [SMALL_STATE(5062)] = 200906, + [SMALL_STATE(5063)] = 200916, + [SMALL_STATE(5064)] = 200926, + [SMALL_STATE(5065)] = 200936, + [SMALL_STATE(5066)] = 200946, + [SMALL_STATE(5067)] = 200956, + [SMALL_STATE(5068)] = 200966, + [SMALL_STATE(5069)] = 200976, + [SMALL_STATE(5070)] = 200986, + [SMALL_STATE(5071)] = 200996, + [SMALL_STATE(5072)] = 201006, + [SMALL_STATE(5073)] = 201016, + [SMALL_STATE(5074)] = 201026, + [SMALL_STATE(5075)] = 201036, + [SMALL_STATE(5076)] = 201046, + [SMALL_STATE(5077)] = 201056, + [SMALL_STATE(5078)] = 201066, + [SMALL_STATE(5079)] = 201076, + [SMALL_STATE(5080)] = 201086, + [SMALL_STATE(5081)] = 201096, + [SMALL_STATE(5082)] = 201106, + [SMALL_STATE(5083)] = 201116, + [SMALL_STATE(5084)] = 201126, + [SMALL_STATE(5085)] = 201136, + [SMALL_STATE(5086)] = 201146, + [SMALL_STATE(5087)] = 201156, + [SMALL_STATE(5088)] = 201166, + [SMALL_STATE(5089)] = 201176, + [SMALL_STATE(5090)] = 201186, + [SMALL_STATE(5091)] = 201196, + [SMALL_STATE(5092)] = 201206, + [SMALL_STATE(5093)] = 201216, + [SMALL_STATE(5094)] = 201226, + [SMALL_STATE(5095)] = 201236, + [SMALL_STATE(5096)] = 201246, + [SMALL_STATE(5097)] = 201256, + [SMALL_STATE(5098)] = 201266, + [SMALL_STATE(5099)] = 201276, + [SMALL_STATE(5100)] = 201286, + [SMALL_STATE(5101)] = 201296, + [SMALL_STATE(5102)] = 201306, + [SMALL_STATE(5103)] = 201316, + [SMALL_STATE(5104)] = 201326, + [SMALL_STATE(5105)] = 201336, + [SMALL_STATE(5106)] = 201346, + [SMALL_STATE(5107)] = 201356, + [SMALL_STATE(5108)] = 201366, + [SMALL_STATE(5109)] = 201376, + [SMALL_STATE(5110)] = 201386, + [SMALL_STATE(5111)] = 201396, + [SMALL_STATE(5112)] = 201406, + [SMALL_STATE(5113)] = 201416, + [SMALL_STATE(5114)] = 201426, + [SMALL_STATE(5115)] = 201436, + [SMALL_STATE(5116)] = 201446, + [SMALL_STATE(5117)] = 201456, + [SMALL_STATE(5118)] = 201466, + [SMALL_STATE(5119)] = 201476, + [SMALL_STATE(5120)] = 201486, + [SMALL_STATE(5121)] = 201496, + [SMALL_STATE(5122)] = 201506, + [SMALL_STATE(5123)] = 201516, + [SMALL_STATE(5124)] = 201526, + [SMALL_STATE(5125)] = 201536, + [SMALL_STATE(5126)] = 201546, + [SMALL_STATE(5127)] = 201556, + [SMALL_STATE(5128)] = 201566, + [SMALL_STATE(5129)] = 201576, + [SMALL_STATE(5130)] = 201586, + [SMALL_STATE(5131)] = 201596, + [SMALL_STATE(5132)] = 201606, + [SMALL_STATE(5133)] = 201616, + [SMALL_STATE(5134)] = 201626, + [SMALL_STATE(5135)] = 201636, + [SMALL_STATE(5136)] = 201646, + [SMALL_STATE(5137)] = 201656, + [SMALL_STATE(5138)] = 201666, + [SMALL_STATE(5139)] = 201676, + [SMALL_STATE(5140)] = 201686, + [SMALL_STATE(5141)] = 201696, + [SMALL_STATE(5142)] = 201706, + [SMALL_STATE(5143)] = 201716, + [SMALL_STATE(5144)] = 201726, + [SMALL_STATE(5145)] = 201736, + [SMALL_STATE(5146)] = 201746, + [SMALL_STATE(5147)] = 201756, + [SMALL_STATE(5148)] = 201766, + [SMALL_STATE(5149)] = 201776, + [SMALL_STATE(5150)] = 201786, + [SMALL_STATE(5151)] = 201796, + [SMALL_STATE(5152)] = 201806, + [SMALL_STATE(5153)] = 201816, + [SMALL_STATE(5154)] = 201826, + [SMALL_STATE(5155)] = 201836, + [SMALL_STATE(5156)] = 201846, + [SMALL_STATE(5157)] = 201856, + [SMALL_STATE(5158)] = 201866, + [SMALL_STATE(5159)] = 201876, + [SMALL_STATE(5160)] = 201886, + [SMALL_STATE(5161)] = 201896, + [SMALL_STATE(5162)] = 201906, + [SMALL_STATE(5163)] = 201916, + [SMALL_STATE(5164)] = 201926, + [SMALL_STATE(5165)] = 201936, + [SMALL_STATE(5166)] = 201946, + [SMALL_STATE(5167)] = 201956, + [SMALL_STATE(5168)] = 201966, + [SMALL_STATE(5169)] = 201976, + [SMALL_STATE(5170)] = 201986, + [SMALL_STATE(5171)] = 201996, + [SMALL_STATE(5172)] = 202006, + [SMALL_STATE(5173)] = 202016, + [SMALL_STATE(5174)] = 202026, + [SMALL_STATE(5175)] = 202036, + [SMALL_STATE(5176)] = 202046, + [SMALL_STATE(5177)] = 202056, + [SMALL_STATE(5178)] = 202066, + [SMALL_STATE(5179)] = 202076, + [SMALL_STATE(5180)] = 202086, + [SMALL_STATE(5181)] = 202096, + [SMALL_STATE(5182)] = 202106, + [SMALL_STATE(5183)] = 202116, + [SMALL_STATE(5184)] = 202126, + [SMALL_STATE(5185)] = 202136, + [SMALL_STATE(5186)] = 202146, + [SMALL_STATE(5187)] = 202156, + [SMALL_STATE(5188)] = 202166, + [SMALL_STATE(5189)] = 202176, + [SMALL_STATE(5190)] = 202186, + [SMALL_STATE(5191)] = 202196, + [SMALL_STATE(5192)] = 202206, + [SMALL_STATE(5193)] = 202212, + [SMALL_STATE(5194)] = 202222, + [SMALL_STATE(5195)] = 202232, + [SMALL_STATE(5196)] = 202242, + [SMALL_STATE(5197)] = 202252, + [SMALL_STATE(5198)] = 202262, + [SMALL_STATE(5199)] = 202272, + [SMALL_STATE(5200)] = 202282, + [SMALL_STATE(5201)] = 202292, + [SMALL_STATE(5202)] = 202302, + [SMALL_STATE(5203)] = 202312, + [SMALL_STATE(5204)] = 202322, + [SMALL_STATE(5205)] = 202332, + [SMALL_STATE(5206)] = 202342, + [SMALL_STATE(5207)] = 202352, + [SMALL_STATE(5208)] = 202362, + [SMALL_STATE(5209)] = 202372, + [SMALL_STATE(5210)] = 202382, + [SMALL_STATE(5211)] = 202392, + [SMALL_STATE(5212)] = 202402, + [SMALL_STATE(5213)] = 202412, + [SMALL_STATE(5214)] = 202422, + [SMALL_STATE(5215)] = 202432, + [SMALL_STATE(5216)] = 202442, + [SMALL_STATE(5217)] = 202452, + [SMALL_STATE(5218)] = 202462, + [SMALL_STATE(5219)] = 202472, + [SMALL_STATE(5220)] = 202482, + [SMALL_STATE(5221)] = 202492, + [SMALL_STATE(5222)] = 202502, + [SMALL_STATE(5223)] = 202512, + [SMALL_STATE(5224)] = 202522, + [SMALL_STATE(5225)] = 202532, + [SMALL_STATE(5226)] = 202542, + [SMALL_STATE(5227)] = 202552, + [SMALL_STATE(5228)] = 202562, + [SMALL_STATE(5229)] = 202572, + [SMALL_STATE(5230)] = 202582, + [SMALL_STATE(5231)] = 202592, + [SMALL_STATE(5232)] = 202602, + [SMALL_STATE(5233)] = 202612, + [SMALL_STATE(5234)] = 202622, + [SMALL_STATE(5235)] = 202632, + [SMALL_STATE(5236)] = 202642, + [SMALL_STATE(5237)] = 202652, + [SMALL_STATE(5238)] = 202662, + [SMALL_STATE(5239)] = 202672, + [SMALL_STATE(5240)] = 202682, + [SMALL_STATE(5241)] = 202692, + [SMALL_STATE(5242)] = 202702, + [SMALL_STATE(5243)] = 202712, + [SMALL_STATE(5244)] = 202722, + [SMALL_STATE(5245)] = 202732, + [SMALL_STATE(5246)] = 202742, + [SMALL_STATE(5247)] = 202752, + [SMALL_STATE(5248)] = 202762, + [SMALL_STATE(5249)] = 202772, + [SMALL_STATE(5250)] = 202782, + [SMALL_STATE(5251)] = 202792, + [SMALL_STATE(5252)] = 202802, + [SMALL_STATE(5253)] = 202812, + [SMALL_STATE(5254)] = 202822, + [SMALL_STATE(5255)] = 202832, + [SMALL_STATE(5256)] = 202842, + [SMALL_STATE(5257)] = 202852, + [SMALL_STATE(5258)] = 202862, + [SMALL_STATE(5259)] = 202872, + [SMALL_STATE(5260)] = 202882, + [SMALL_STATE(5261)] = 202892, + [SMALL_STATE(5262)] = 202902, + [SMALL_STATE(5263)] = 202912, + [SMALL_STATE(5264)] = 202922, + [SMALL_STATE(5265)] = 202932, + [SMALL_STATE(5266)] = 202942, + [SMALL_STATE(5267)] = 202952, + [SMALL_STATE(5268)] = 202962, + [SMALL_STATE(5269)] = 202972, + [SMALL_STATE(5270)] = 202982, + [SMALL_STATE(5271)] = 202992, + [SMALL_STATE(5272)] = 203002, + [SMALL_STATE(5273)] = 203012, + [SMALL_STATE(5274)] = 203022, + [SMALL_STATE(5275)] = 203032, + [SMALL_STATE(5276)] = 203042, + [SMALL_STATE(5277)] = 203052, + [SMALL_STATE(5278)] = 203060, + [SMALL_STATE(5279)] = 203070, + [SMALL_STATE(5280)] = 203080, + [SMALL_STATE(5281)] = 203090, + [SMALL_STATE(5282)] = 203100, + [SMALL_STATE(5283)] = 203110, + [SMALL_STATE(5284)] = 203120, + [SMALL_STATE(5285)] = 203130, + [SMALL_STATE(5286)] = 203140, + [SMALL_STATE(5287)] = 203150, + [SMALL_STATE(5288)] = 203160, + [SMALL_STATE(5289)] = 203170, + [SMALL_STATE(5290)] = 203180, + [SMALL_STATE(5291)] = 203190, + [SMALL_STATE(5292)] = 203200, + [SMALL_STATE(5293)] = 203210, + [SMALL_STATE(5294)] = 203220, + [SMALL_STATE(5295)] = 203230, + [SMALL_STATE(5296)] = 203240, + [SMALL_STATE(5297)] = 203250, + [SMALL_STATE(5298)] = 203260, + [SMALL_STATE(5299)] = 203270, + [SMALL_STATE(5300)] = 203280, + [SMALL_STATE(5301)] = 203290, + [SMALL_STATE(5302)] = 203300, + [SMALL_STATE(5303)] = 203310, + [SMALL_STATE(5304)] = 203320, + [SMALL_STATE(5305)] = 203330, + [SMALL_STATE(5306)] = 203340, + [SMALL_STATE(5307)] = 203350, + [SMALL_STATE(5308)] = 203360, + [SMALL_STATE(5309)] = 203370, + [SMALL_STATE(5310)] = 203380, + [SMALL_STATE(5311)] = 203390, + [SMALL_STATE(5312)] = 203400, + [SMALL_STATE(5313)] = 203410, + [SMALL_STATE(5314)] = 203420, + [SMALL_STATE(5315)] = 203430, + [SMALL_STATE(5316)] = 203440, + [SMALL_STATE(5317)] = 203450, + [SMALL_STATE(5318)] = 203460, + [SMALL_STATE(5319)] = 203470, + [SMALL_STATE(5320)] = 203480, + [SMALL_STATE(5321)] = 203490, + [SMALL_STATE(5322)] = 203500, + [SMALL_STATE(5323)] = 203510, + [SMALL_STATE(5324)] = 203520, + [SMALL_STATE(5325)] = 203530, + [SMALL_STATE(5326)] = 203540, + [SMALL_STATE(5327)] = 203550, + [SMALL_STATE(5328)] = 203560, + [SMALL_STATE(5329)] = 203570, + [SMALL_STATE(5330)] = 203580, + [SMALL_STATE(5331)] = 203590, + [SMALL_STATE(5332)] = 203600, + [SMALL_STATE(5333)] = 203610, + [SMALL_STATE(5334)] = 203620, + [SMALL_STATE(5335)] = 203630, + [SMALL_STATE(5336)] = 203640, + [SMALL_STATE(5337)] = 203650, + [SMALL_STATE(5338)] = 203660, + [SMALL_STATE(5339)] = 203670, + [SMALL_STATE(5340)] = 203680, + [SMALL_STATE(5341)] = 203690, + [SMALL_STATE(5342)] = 203700, + [SMALL_STATE(5343)] = 203710, + [SMALL_STATE(5344)] = 203720, + [SMALL_STATE(5345)] = 203730, + [SMALL_STATE(5346)] = 203740, + [SMALL_STATE(5347)] = 203750, + [SMALL_STATE(5348)] = 203760, + [SMALL_STATE(5349)] = 203770, + [SMALL_STATE(5350)] = 203780, + [SMALL_STATE(5351)] = 203790, + [SMALL_STATE(5352)] = 203800, + [SMALL_STATE(5353)] = 203810, + [SMALL_STATE(5354)] = 203820, + [SMALL_STATE(5355)] = 203830, + [SMALL_STATE(5356)] = 203840, + [SMALL_STATE(5357)] = 203850, + [SMALL_STATE(5358)] = 203860, + [SMALL_STATE(5359)] = 203870, + [SMALL_STATE(5360)] = 203880, + [SMALL_STATE(5361)] = 203890, + [SMALL_STATE(5362)] = 203900, + [SMALL_STATE(5363)] = 203907, + [SMALL_STATE(5364)] = 203914, + [SMALL_STATE(5365)] = 203921, + [SMALL_STATE(5366)] = 203928, + [SMALL_STATE(5367)] = 203935, + [SMALL_STATE(5368)] = 203942, + [SMALL_STATE(5369)] = 203949, + [SMALL_STATE(5370)] = 203956, + [SMALL_STATE(5371)] = 203963, + [SMALL_STATE(5372)] = 203970, + [SMALL_STATE(5373)] = 203977, + [SMALL_STATE(5374)] = 203984, + [SMALL_STATE(5375)] = 203991, + [SMALL_STATE(5376)] = 203998, + [SMALL_STATE(5377)] = 204005, + [SMALL_STATE(5378)] = 204012, + [SMALL_STATE(5379)] = 204019, + [SMALL_STATE(5380)] = 204026, + [SMALL_STATE(5381)] = 204033, + [SMALL_STATE(5382)] = 204040, + [SMALL_STATE(5383)] = 204045, + [SMALL_STATE(5384)] = 204052, + [SMALL_STATE(5385)] = 204057, + [SMALL_STATE(5386)] = 204064, + [SMALL_STATE(5387)] = 204071, + [SMALL_STATE(5388)] = 204078, + [SMALL_STATE(5389)] = 204085, + [SMALL_STATE(5390)] = 204092, + [SMALL_STATE(5391)] = 204099, + [SMALL_STATE(5392)] = 204104, + [SMALL_STATE(5393)] = 204111, + [SMALL_STATE(5394)] = 204118, + [SMALL_STATE(5395)] = 204125, + [SMALL_STATE(5396)] = 204132, + [SMALL_STATE(5397)] = 204139, + [SMALL_STATE(5398)] = 204146, + [SMALL_STATE(5399)] = 204153, + [SMALL_STATE(5400)] = 204158, + [SMALL_STATE(5401)] = 204165, + [SMALL_STATE(5402)] = 204172, + [SMALL_STATE(5403)] = 204179, + [SMALL_STATE(5404)] = 204186, + [SMALL_STATE(5405)] = 204193, + [SMALL_STATE(5406)] = 204200, + [SMALL_STATE(5407)] = 204207, + [SMALL_STATE(5408)] = 204214, + [SMALL_STATE(5409)] = 204221, + [SMALL_STATE(5410)] = 204228, + [SMALL_STATE(5411)] = 204235, + [SMALL_STATE(5412)] = 204242, + [SMALL_STATE(5413)] = 204249, + [SMALL_STATE(5414)] = 204256, + [SMALL_STATE(5415)] = 204263, + [SMALL_STATE(5416)] = 204270, + [SMALL_STATE(5417)] = 204277, + [SMALL_STATE(5418)] = 204284, + [SMALL_STATE(5419)] = 204291, + [SMALL_STATE(5420)] = 204298, + [SMALL_STATE(5421)] = 204305, + [SMALL_STATE(5422)] = 204312, + [SMALL_STATE(5423)] = 204319, + [SMALL_STATE(5424)] = 204326, + [SMALL_STATE(5425)] = 204333, + [SMALL_STATE(5426)] = 204340, + [SMALL_STATE(5427)] = 204347, + [SMALL_STATE(5428)] = 204354, + [SMALL_STATE(5429)] = 204361, + [SMALL_STATE(5430)] = 204368, + [SMALL_STATE(5431)] = 204373, + [SMALL_STATE(5432)] = 204380, + [SMALL_STATE(5433)] = 204387, + [SMALL_STATE(5434)] = 204394, + [SMALL_STATE(5435)] = 204401, + [SMALL_STATE(5436)] = 204408, + [SMALL_STATE(5437)] = 204415, + [SMALL_STATE(5438)] = 204422, + [SMALL_STATE(5439)] = 204429, + [SMALL_STATE(5440)] = 204436, + [SMALL_STATE(5441)] = 204443, + [SMALL_STATE(5442)] = 204450, + [SMALL_STATE(5443)] = 204457, + [SMALL_STATE(5444)] = 204464, + [SMALL_STATE(5445)] = 204471, + [SMALL_STATE(5446)] = 204478, + [SMALL_STATE(5447)] = 204485, + [SMALL_STATE(5448)] = 204492, + [SMALL_STATE(5449)] = 204499, + [SMALL_STATE(5450)] = 204506, + [SMALL_STATE(5451)] = 204513, + [SMALL_STATE(5452)] = 204520, + [SMALL_STATE(5453)] = 204527, + [SMALL_STATE(5454)] = 204534, + [SMALL_STATE(5455)] = 204541, + [SMALL_STATE(5456)] = 204548, + [SMALL_STATE(5457)] = 204555, + [SMALL_STATE(5458)] = 204562, + [SMALL_STATE(5459)] = 204569, + [SMALL_STATE(5460)] = 204576, + [SMALL_STATE(5461)] = 204583, + [SMALL_STATE(5462)] = 204590, + [SMALL_STATE(5463)] = 204597, + [SMALL_STATE(5464)] = 204604, + [SMALL_STATE(5465)] = 204611, + [SMALL_STATE(5466)] = 204618, + [SMALL_STATE(5467)] = 204625, + [SMALL_STATE(5468)] = 204632, + [SMALL_STATE(5469)] = 204639, + [SMALL_STATE(5470)] = 204646, + [SMALL_STATE(5471)] = 204653, + [SMALL_STATE(5472)] = 204660, + [SMALL_STATE(5473)] = 204667, + [SMALL_STATE(5474)] = 204674, + [SMALL_STATE(5475)] = 204681, + [SMALL_STATE(5476)] = 204688, + [SMALL_STATE(5477)] = 204695, + [SMALL_STATE(5478)] = 204702, + [SMALL_STATE(5479)] = 204709, + [SMALL_STATE(5480)] = 204716, + [SMALL_STATE(5481)] = 204723, + [SMALL_STATE(5482)] = 204730, + [SMALL_STATE(5483)] = 204737, + [SMALL_STATE(5484)] = 204744, + [SMALL_STATE(5485)] = 204751, + [SMALL_STATE(5486)] = 204758, + [SMALL_STATE(5487)] = 204765, + [SMALL_STATE(5488)] = 204772, + [SMALL_STATE(5489)] = 204779, + [SMALL_STATE(5490)] = 204786, + [SMALL_STATE(5491)] = 204793, + [SMALL_STATE(5492)] = 204800, + [SMALL_STATE(5493)] = 204807, + [SMALL_STATE(5494)] = 204814, + [SMALL_STATE(5495)] = 204821, + [SMALL_STATE(5496)] = 204828, + [SMALL_STATE(5497)] = 204835, + [SMALL_STATE(5498)] = 204842, + [SMALL_STATE(5499)] = 204849, + [SMALL_STATE(5500)] = 204856, + [SMALL_STATE(5501)] = 204863, + [SMALL_STATE(5502)] = 204870, + [SMALL_STATE(5503)] = 204877, + [SMALL_STATE(5504)] = 204884, + [SMALL_STATE(5505)] = 204891, + [SMALL_STATE(5506)] = 204898, + [SMALL_STATE(5507)] = 204905, + [SMALL_STATE(5508)] = 204912, + [SMALL_STATE(5509)] = 204919, + [SMALL_STATE(5510)] = 204926, + [SMALL_STATE(5511)] = 204933, + [SMALL_STATE(5512)] = 204940, + [SMALL_STATE(5513)] = 204947, + [SMALL_STATE(5514)] = 204954, + [SMALL_STATE(5515)] = 204961, + [SMALL_STATE(5516)] = 204965, + [SMALL_STATE(5517)] = 204969, + [SMALL_STATE(5518)] = 204973, + [SMALL_STATE(5519)] = 204977, + [SMALL_STATE(5520)] = 204981, + [SMALL_STATE(5521)] = 204985, + [SMALL_STATE(5522)] = 204989, + [SMALL_STATE(5523)] = 204993, + [SMALL_STATE(5524)] = 204997, + [SMALL_STATE(5525)] = 205001, + [SMALL_STATE(5526)] = 205005, + [SMALL_STATE(5527)] = 205009, + [SMALL_STATE(5528)] = 205013, + [SMALL_STATE(5529)] = 205017, + [SMALL_STATE(5530)] = 205021, + [SMALL_STATE(5531)] = 205025, + [SMALL_STATE(5532)] = 205029, + [SMALL_STATE(5533)] = 205033, + [SMALL_STATE(5534)] = 205037, + [SMALL_STATE(5535)] = 205041, + [SMALL_STATE(5536)] = 205045, + [SMALL_STATE(5537)] = 205049, + [SMALL_STATE(5538)] = 205053, + [SMALL_STATE(5539)] = 205057, + [SMALL_STATE(5540)] = 205061, + [SMALL_STATE(5541)] = 205065, + [SMALL_STATE(5542)] = 205069, + [SMALL_STATE(5543)] = 205073, + [SMALL_STATE(5544)] = 205077, + [SMALL_STATE(5545)] = 205081, + [SMALL_STATE(5546)] = 205085, + [SMALL_STATE(5547)] = 205089, + [SMALL_STATE(5548)] = 205093, + [SMALL_STATE(5549)] = 205097, + [SMALL_STATE(5550)] = 205101, + [SMALL_STATE(5551)] = 205105, + [SMALL_STATE(5552)] = 205109, + [SMALL_STATE(5553)] = 205113, + [SMALL_STATE(5554)] = 205117, + [SMALL_STATE(5555)] = 205121, + [SMALL_STATE(5556)] = 205125, + [SMALL_STATE(5557)] = 205129, + [SMALL_STATE(5558)] = 205133, + [SMALL_STATE(5559)] = 205137, + [SMALL_STATE(5560)] = 205141, + [SMALL_STATE(5561)] = 205145, + [SMALL_STATE(5562)] = 205149, + [SMALL_STATE(5563)] = 205153, + [SMALL_STATE(5564)] = 205157, + [SMALL_STATE(5565)] = 205161, + [SMALL_STATE(5566)] = 205165, + [SMALL_STATE(5567)] = 205169, + [SMALL_STATE(5568)] = 205173, + [SMALL_STATE(5569)] = 205177, + [SMALL_STATE(5570)] = 205181, + [SMALL_STATE(5571)] = 205185, + [SMALL_STATE(5572)] = 205189, + [SMALL_STATE(5573)] = 205193, + [SMALL_STATE(5574)] = 205197, + [SMALL_STATE(5575)] = 205201, + [SMALL_STATE(5576)] = 205205, + [SMALL_STATE(5577)] = 205209, + [SMALL_STATE(5578)] = 205213, + [SMALL_STATE(5579)] = 205217, + [SMALL_STATE(5580)] = 205221, + [SMALL_STATE(5581)] = 205225, + [SMALL_STATE(5582)] = 205229, + [SMALL_STATE(5583)] = 205233, + [SMALL_STATE(5584)] = 205237, + [SMALL_STATE(5585)] = 205241, + [SMALL_STATE(5586)] = 205245, + [SMALL_STATE(5587)] = 205249, + [SMALL_STATE(5588)] = 205253, + [SMALL_STATE(5589)] = 205257, + [SMALL_STATE(5590)] = 205261, + [SMALL_STATE(5591)] = 205265, + [SMALL_STATE(5592)] = 205269, + [SMALL_STATE(5593)] = 205273, + [SMALL_STATE(5594)] = 205277, + [SMALL_STATE(5595)] = 205281, + [SMALL_STATE(5596)] = 205285, + [SMALL_STATE(5597)] = 205289, + [SMALL_STATE(5598)] = 205293, + [SMALL_STATE(5599)] = 205297, + [SMALL_STATE(5600)] = 205301, + [SMALL_STATE(5601)] = 205305, + [SMALL_STATE(5602)] = 205309, + [SMALL_STATE(5603)] = 205313, + [SMALL_STATE(5604)] = 205317, + [SMALL_STATE(5605)] = 205321, + [SMALL_STATE(5606)] = 205325, + [SMALL_STATE(5607)] = 205329, + [SMALL_STATE(5608)] = 205333, + [SMALL_STATE(5609)] = 205337, + [SMALL_STATE(5610)] = 205341, + [SMALL_STATE(5611)] = 205345, + [SMALL_STATE(5612)] = 205349, + [SMALL_STATE(5613)] = 205353, + [SMALL_STATE(5614)] = 205357, + [SMALL_STATE(5615)] = 205361, + [SMALL_STATE(5616)] = 205365, + [SMALL_STATE(5617)] = 205369, + [SMALL_STATE(5618)] = 205373, + [SMALL_STATE(5619)] = 205377, + [SMALL_STATE(5620)] = 205381, + [SMALL_STATE(5621)] = 205385, + [SMALL_STATE(5622)] = 205389, + [SMALL_STATE(5623)] = 205393, + [SMALL_STATE(5624)] = 205397, + [SMALL_STATE(5625)] = 205401, + [SMALL_STATE(5626)] = 205405, + [SMALL_STATE(5627)] = 205409, + [SMALL_STATE(5628)] = 205413, + [SMALL_STATE(5629)] = 205417, + [SMALL_STATE(5630)] = 205421, + [SMALL_STATE(5631)] = 205425, + [SMALL_STATE(5632)] = 205429, + [SMALL_STATE(5633)] = 205433, + [SMALL_STATE(5634)] = 205437, + [SMALL_STATE(5635)] = 205441, + [SMALL_STATE(5636)] = 205445, + [SMALL_STATE(5637)] = 205449, + [SMALL_STATE(5638)] = 205453, + [SMALL_STATE(5639)] = 205457, + [SMALL_STATE(5640)] = 205461, + [SMALL_STATE(5641)] = 205465, + [SMALL_STATE(5642)] = 205469, + [SMALL_STATE(5643)] = 205473, + [SMALL_STATE(5644)] = 205477, + [SMALL_STATE(5645)] = 205481, + [SMALL_STATE(5646)] = 205485, + [SMALL_STATE(5647)] = 205489, + [SMALL_STATE(5648)] = 205493, + [SMALL_STATE(5649)] = 205497, + [SMALL_STATE(5650)] = 205501, + [SMALL_STATE(5651)] = 205505, + [SMALL_STATE(5652)] = 205509, + [SMALL_STATE(5653)] = 205513, + [SMALL_STATE(5654)] = 205517, + [SMALL_STATE(5655)] = 205521, + [SMALL_STATE(5656)] = 205525, + [SMALL_STATE(5657)] = 205529, + [SMALL_STATE(5658)] = 205533, + [SMALL_STATE(5659)] = 205537, + [SMALL_STATE(5660)] = 205541, + [SMALL_STATE(5661)] = 205545, + [SMALL_STATE(5662)] = 205549, + [SMALL_STATE(5663)] = 205553, + [SMALL_STATE(5664)] = 205557, + [SMALL_STATE(5665)] = 205561, + [SMALL_STATE(5666)] = 205565, + [SMALL_STATE(5667)] = 205569, + [SMALL_STATE(5668)] = 205573, + [SMALL_STATE(5669)] = 205577, + [SMALL_STATE(5670)] = 205581, + [SMALL_STATE(5671)] = 205585, + [SMALL_STATE(5672)] = 205589, + [SMALL_STATE(5673)] = 205593, + [SMALL_STATE(5674)] = 205597, + [SMALL_STATE(5675)] = 205601, + [SMALL_STATE(5676)] = 205605, + [SMALL_STATE(5677)] = 205609, + [SMALL_STATE(5678)] = 205613, + [SMALL_STATE(5679)] = 205617, + [SMALL_STATE(5680)] = 205621, + [SMALL_STATE(5681)] = 205625, + [SMALL_STATE(5682)] = 205629, + [SMALL_STATE(5683)] = 205633, + [SMALL_STATE(5684)] = 205637, + [SMALL_STATE(5685)] = 205641, + [SMALL_STATE(5686)] = 205645, + [SMALL_STATE(5687)] = 205649, + [SMALL_STATE(5688)] = 205653, + [SMALL_STATE(5689)] = 205657, + [SMALL_STATE(5690)] = 205661, + [SMALL_STATE(5691)] = 205665, + [SMALL_STATE(5692)] = 205669, + [SMALL_STATE(5693)] = 205673, + [SMALL_STATE(5694)] = 205677, + [SMALL_STATE(5695)] = 205681, + [SMALL_STATE(5696)] = 205685, + [SMALL_STATE(5697)] = 205689, + [SMALL_STATE(5698)] = 205693, + [SMALL_STATE(5699)] = 205697, + [SMALL_STATE(5700)] = 205701, + [SMALL_STATE(5701)] = 205705, + [SMALL_STATE(5702)] = 205709, + [SMALL_STATE(5703)] = 205713, + [SMALL_STATE(5704)] = 205717, + [SMALL_STATE(5705)] = 205721, + [SMALL_STATE(5706)] = 205725, + [SMALL_STATE(5707)] = 205729, + [SMALL_STATE(5708)] = 205733, + [SMALL_STATE(5709)] = 205737, + [SMALL_STATE(5710)] = 205741, + [SMALL_STATE(5711)] = 205745, + [SMALL_STATE(5712)] = 205749, + [SMALL_STATE(5713)] = 205753, + [SMALL_STATE(5714)] = 205757, + [SMALL_STATE(5715)] = 205761, + [SMALL_STATE(5716)] = 205765, + [SMALL_STATE(5717)] = 205769, + [SMALL_STATE(5718)] = 205773, + [SMALL_STATE(5719)] = 205777, + [SMALL_STATE(5720)] = 205781, + [SMALL_STATE(5721)] = 205785, + [SMALL_STATE(5722)] = 205789, + [SMALL_STATE(5723)] = 205793, + [SMALL_STATE(5724)] = 205797, + [SMALL_STATE(5725)] = 205801, + [SMALL_STATE(5726)] = 205805, + [SMALL_STATE(5727)] = 205809, + [SMALL_STATE(5728)] = 205813, + [SMALL_STATE(5729)] = 205817, + [SMALL_STATE(5730)] = 205821, + [SMALL_STATE(5731)] = 205825, + [SMALL_STATE(5732)] = 205829, + [SMALL_STATE(5733)] = 205833, + [SMALL_STATE(5734)] = 205837, + [SMALL_STATE(5735)] = 205841, + [SMALL_STATE(5736)] = 205845, + [SMALL_STATE(5737)] = 205849, + [SMALL_STATE(5738)] = 205853, + [SMALL_STATE(5739)] = 205857, + [SMALL_STATE(5740)] = 205861, + [SMALL_STATE(5741)] = 205865, + [SMALL_STATE(5742)] = 205869, + [SMALL_STATE(5743)] = 205873, + [SMALL_STATE(5744)] = 205877, + [SMALL_STATE(5745)] = 205881, + [SMALL_STATE(5746)] = 205885, + [SMALL_STATE(5747)] = 205889, + [SMALL_STATE(5748)] = 205893, + [SMALL_STATE(5749)] = 205897, + [SMALL_STATE(5750)] = 205901, + [SMALL_STATE(5751)] = 205905, + [SMALL_STATE(5752)] = 205909, + [SMALL_STATE(5753)] = 205913, + [SMALL_STATE(5754)] = 205917, + [SMALL_STATE(5755)] = 205921, + [SMALL_STATE(5756)] = 205925, + [SMALL_STATE(5757)] = 205929, + [SMALL_STATE(5758)] = 205933, + [SMALL_STATE(5759)] = 205937, + [SMALL_STATE(5760)] = 205941, + [SMALL_STATE(5761)] = 205945, + [SMALL_STATE(5762)] = 205949, + [SMALL_STATE(5763)] = 205953, + [SMALL_STATE(5764)] = 205957, + [SMALL_STATE(5765)] = 205961, + [SMALL_STATE(5766)] = 205965, + [SMALL_STATE(5767)] = 205969, + [SMALL_STATE(5768)] = 205973, + [SMALL_STATE(5769)] = 205977, + [SMALL_STATE(5770)] = 205981, + [SMALL_STATE(5771)] = 205985, + [SMALL_STATE(5772)] = 205989, + [SMALL_STATE(5773)] = 205993, + [SMALL_STATE(5774)] = 205997, + [SMALL_STATE(5775)] = 206001, + [SMALL_STATE(5776)] = 206005, + [SMALL_STATE(5777)] = 206009, + [SMALL_STATE(5778)] = 206013, + [SMALL_STATE(5779)] = 206017, + [SMALL_STATE(5780)] = 206021, + [SMALL_STATE(5781)] = 206025, + [SMALL_STATE(5782)] = 206029, + [SMALL_STATE(5783)] = 206033, + [SMALL_STATE(5784)] = 206037, + [SMALL_STATE(5785)] = 206041, + [SMALL_STATE(5786)] = 206045, + [SMALL_STATE(5787)] = 206049, + [SMALL_STATE(5788)] = 206053, + [SMALL_STATE(5789)] = 206057, + [SMALL_STATE(5790)] = 206061, + [SMALL_STATE(5791)] = 206065, + [SMALL_STATE(5792)] = 206069, + [SMALL_STATE(5793)] = 206073, + [SMALL_STATE(5794)] = 206077, + [SMALL_STATE(5795)] = 206081, + [SMALL_STATE(5796)] = 206085, + [SMALL_STATE(5797)] = 206089, + [SMALL_STATE(5798)] = 206093, + [SMALL_STATE(5799)] = 206097, + [SMALL_STATE(5800)] = 206101, + [SMALL_STATE(5801)] = 206105, + [SMALL_STATE(5802)] = 206109, + [SMALL_STATE(5803)] = 206113, + [SMALL_STATE(5804)] = 206117, + [SMALL_STATE(5805)] = 206121, + [SMALL_STATE(5806)] = 206125, + [SMALL_STATE(5807)] = 206129, + [SMALL_STATE(5808)] = 206133, + [SMALL_STATE(5809)] = 206137, + [SMALL_STATE(5810)] = 206141, + [SMALL_STATE(5811)] = 206145, + [SMALL_STATE(5812)] = 206149, + [SMALL_STATE(5813)] = 206153, + [SMALL_STATE(5814)] = 206157, + [SMALL_STATE(5815)] = 206161, + [SMALL_STATE(5816)] = 206165, + [SMALL_STATE(5817)] = 206169, + [SMALL_STATE(5818)] = 206173, + [SMALL_STATE(5819)] = 206177, + [SMALL_STATE(5820)] = 206181, + [SMALL_STATE(5821)] = 206185, + [SMALL_STATE(5822)] = 206189, + [SMALL_STATE(5823)] = 206193, + [SMALL_STATE(5824)] = 206197, + [SMALL_STATE(5825)] = 206201, + [SMALL_STATE(5826)] = 206205, + [SMALL_STATE(5827)] = 206209, + [SMALL_STATE(5828)] = 206213, + [SMALL_STATE(5829)] = 206217, + [SMALL_STATE(5830)] = 206221, + [SMALL_STATE(5831)] = 206225, + [SMALL_STATE(5832)] = 206229, + [SMALL_STATE(5833)] = 206233, + [SMALL_STATE(5834)] = 206237, + [SMALL_STATE(5835)] = 206241, + [SMALL_STATE(5836)] = 206245, + [SMALL_STATE(5837)] = 206249, + [SMALL_STATE(5838)] = 206253, + [SMALL_STATE(5839)] = 206257, + [SMALL_STATE(5840)] = 206261, + [SMALL_STATE(5841)] = 206265, + [SMALL_STATE(5842)] = 206269, + [SMALL_STATE(5843)] = 206273, + [SMALL_STATE(5844)] = 206277, + [SMALL_STATE(5845)] = 206281, + [SMALL_STATE(5846)] = 206285, + [SMALL_STATE(5847)] = 206289, + [SMALL_STATE(5848)] = 206293, + [SMALL_STATE(5849)] = 206297, + [SMALL_STATE(5850)] = 206301, + [SMALL_STATE(5851)] = 206305, + [SMALL_STATE(5852)] = 206309, + [SMALL_STATE(5853)] = 206313, + [SMALL_STATE(5854)] = 206317, + [SMALL_STATE(5855)] = 206321, + [SMALL_STATE(5856)] = 206325, + [SMALL_STATE(5857)] = 206329, + [SMALL_STATE(5858)] = 206333, + [SMALL_STATE(5859)] = 206337, + [SMALL_STATE(5860)] = 206341, + [SMALL_STATE(5861)] = 206345, + [SMALL_STATE(5862)] = 206349, + [SMALL_STATE(5863)] = 206353, + [SMALL_STATE(5864)] = 206357, + [SMALL_STATE(5865)] = 206361, + [SMALL_STATE(5866)] = 206365, + [SMALL_STATE(5867)] = 206369, + [SMALL_STATE(5868)] = 206373, + [SMALL_STATE(5869)] = 206377, + [SMALL_STATE(5870)] = 206381, + [SMALL_STATE(5871)] = 206385, + [SMALL_STATE(5872)] = 206389, + [SMALL_STATE(5873)] = 206393, + [SMALL_STATE(5874)] = 206397, + [SMALL_STATE(5875)] = 206401, + [SMALL_STATE(5876)] = 206405, + [SMALL_STATE(5877)] = 206409, + [SMALL_STATE(5878)] = 206413, + [SMALL_STATE(5879)] = 206417, + [SMALL_STATE(5880)] = 206421, + [SMALL_STATE(5881)] = 206425, + [SMALL_STATE(5882)] = 206429, + [SMALL_STATE(5883)] = 206433, + [SMALL_STATE(5884)] = 206437, + [SMALL_STATE(5885)] = 206441, + [SMALL_STATE(5886)] = 206445, + [SMALL_STATE(5887)] = 206449, + [SMALL_STATE(5888)] = 206453, + [SMALL_STATE(5889)] = 206457, + [SMALL_STATE(5890)] = 206461, + [SMALL_STATE(5891)] = 206465, + [SMALL_STATE(5892)] = 206469, + [SMALL_STATE(5893)] = 206473, + [SMALL_STATE(5894)] = 206477, + [SMALL_STATE(5895)] = 206481, + [SMALL_STATE(5896)] = 206485, + [SMALL_STATE(5897)] = 206489, + [SMALL_STATE(5898)] = 206493, + [SMALL_STATE(5899)] = 206497, + [SMALL_STATE(5900)] = 206501, + [SMALL_STATE(5901)] = 206505, + [SMALL_STATE(5902)] = 206509, + [SMALL_STATE(5903)] = 206513, + [SMALL_STATE(5904)] = 206517, + [SMALL_STATE(5905)] = 206521, + [SMALL_STATE(5906)] = 206525, + [SMALL_STATE(5907)] = 206529, + [SMALL_STATE(5908)] = 206533, + [SMALL_STATE(5909)] = 206537, + [SMALL_STATE(5910)] = 206541, + [SMALL_STATE(5911)] = 206545, + [SMALL_STATE(5912)] = 206549, + [SMALL_STATE(5913)] = 206553, + [SMALL_STATE(5914)] = 206557, + [SMALL_STATE(5915)] = 206561, + [SMALL_STATE(5916)] = 206565, + [SMALL_STATE(5917)] = 206569, + [SMALL_STATE(5918)] = 206573, + [SMALL_STATE(5919)] = 206577, + [SMALL_STATE(5920)] = 206581, + [SMALL_STATE(5921)] = 206585, + [SMALL_STATE(5922)] = 206589, + [SMALL_STATE(5923)] = 206593, + [SMALL_STATE(5924)] = 206597, + [SMALL_STATE(5925)] = 206601, + [SMALL_STATE(5926)] = 206605, + [SMALL_STATE(5927)] = 206609, + [SMALL_STATE(5928)] = 206613, + [SMALL_STATE(5929)] = 206617, + [SMALL_STATE(5930)] = 206621, + [SMALL_STATE(5931)] = 206625, + [SMALL_STATE(5932)] = 206629, + [SMALL_STATE(5933)] = 206633, + [SMALL_STATE(5934)] = 206637, + [SMALL_STATE(5935)] = 206641, + [SMALL_STATE(5936)] = 206645, + [SMALL_STATE(5937)] = 206649, + [SMALL_STATE(5938)] = 206653, + [SMALL_STATE(5939)] = 206657, + [SMALL_STATE(5940)] = 206661, + [SMALL_STATE(5941)] = 206665, + [SMALL_STATE(5942)] = 206669, + [SMALL_STATE(5943)] = 206673, + [SMALL_STATE(5944)] = 206677, + [SMALL_STATE(5945)] = 206681, + [SMALL_STATE(5946)] = 206685, + [SMALL_STATE(5947)] = 206689, + [SMALL_STATE(5948)] = 206693, + [SMALL_STATE(5949)] = 206697, + [SMALL_STATE(5950)] = 206701, + [SMALL_STATE(5951)] = 206705, + [SMALL_STATE(5952)] = 206709, + [SMALL_STATE(5953)] = 206713, + [SMALL_STATE(5954)] = 206717, + [SMALL_STATE(5955)] = 206721, + [SMALL_STATE(5956)] = 206725, + [SMALL_STATE(5957)] = 206729, + [SMALL_STATE(5958)] = 206733, + [SMALL_STATE(5959)] = 206737, + [SMALL_STATE(5960)] = 206741, + [SMALL_STATE(5961)] = 206745, + [SMALL_STATE(5962)] = 206749, + [SMALL_STATE(5963)] = 206753, + [SMALL_STATE(5964)] = 206757, + [SMALL_STATE(5965)] = 206761, + [SMALL_STATE(5966)] = 206765, + [SMALL_STATE(5967)] = 206769, + [SMALL_STATE(5968)] = 206773, + [SMALL_STATE(5969)] = 206777, + [SMALL_STATE(5970)] = 206781, + [SMALL_STATE(5971)] = 206785, + [SMALL_STATE(5972)] = 206789, + [SMALL_STATE(5973)] = 206793, + [SMALL_STATE(5974)] = 206797, + [SMALL_STATE(5975)] = 206801, + [SMALL_STATE(5976)] = 206805, + [SMALL_STATE(5977)] = 206809, + [SMALL_STATE(5978)] = 206813, + [SMALL_STATE(5979)] = 206817, + [SMALL_STATE(5980)] = 206821, + [SMALL_STATE(5981)] = 206825, + [SMALL_STATE(5982)] = 206829, + [SMALL_STATE(5983)] = 206833, + [SMALL_STATE(5984)] = 206837, + [SMALL_STATE(5985)] = 206841, + [SMALL_STATE(5986)] = 206845, + [SMALL_STATE(5987)] = 206849, + [SMALL_STATE(5988)] = 206853, + [SMALL_STATE(5989)] = 206857, + [SMALL_STATE(5990)] = 206861, + [SMALL_STATE(5991)] = 206865, + [SMALL_STATE(5992)] = 206869, + [SMALL_STATE(5993)] = 206873, + [SMALL_STATE(5994)] = 206877, + [SMALL_STATE(5995)] = 206881, + [SMALL_STATE(5996)] = 206885, + [SMALL_STATE(5997)] = 206889, + [SMALL_STATE(5998)] = 206893, + [SMALL_STATE(5999)] = 206897, + [SMALL_STATE(6000)] = 206901, + [SMALL_STATE(6001)] = 206905, + [SMALL_STATE(6002)] = 206909, + [SMALL_STATE(6003)] = 206913, + [SMALL_STATE(6004)] = 206917, + [SMALL_STATE(6005)] = 206921, + [SMALL_STATE(6006)] = 206925, + [SMALL_STATE(6007)] = 206929, + [SMALL_STATE(6008)] = 206933, + [SMALL_STATE(6009)] = 206937, + [SMALL_STATE(6010)] = 206941, + [SMALL_STATE(6011)] = 206945, + [SMALL_STATE(6012)] = 206949, + [SMALL_STATE(6013)] = 206953, + [SMALL_STATE(6014)] = 206957, + [SMALL_STATE(6015)] = 206961, + [SMALL_STATE(6016)] = 206965, + [SMALL_STATE(6017)] = 206969, + [SMALL_STATE(6018)] = 206973, + [SMALL_STATE(6019)] = 206977, + [SMALL_STATE(6020)] = 206981, + [SMALL_STATE(6021)] = 206985, + [SMALL_STATE(6022)] = 206989, + [SMALL_STATE(6023)] = 206993, + [SMALL_STATE(6024)] = 206997, + [SMALL_STATE(6025)] = 207001, + [SMALL_STATE(6026)] = 207005, + [SMALL_STATE(6027)] = 207009, + [SMALL_STATE(6028)] = 207013, + [SMALL_STATE(6029)] = 207017, + [SMALL_STATE(6030)] = 207021, + [SMALL_STATE(6031)] = 207025, + [SMALL_STATE(6032)] = 207029, + [SMALL_STATE(6033)] = 207033, + [SMALL_STATE(6034)] = 207037, + [SMALL_STATE(6035)] = 207041, + [SMALL_STATE(6036)] = 207045, + [SMALL_STATE(6037)] = 207049, + [SMALL_STATE(6038)] = 207053, + [SMALL_STATE(6039)] = 207057, + [SMALL_STATE(6040)] = 207061, + [SMALL_STATE(6041)] = 207065, + [SMALL_STATE(6042)] = 207069, + [SMALL_STATE(6043)] = 207073, + [SMALL_STATE(6044)] = 207077, + [SMALL_STATE(6045)] = 207081, + [SMALL_STATE(6046)] = 207085, + [SMALL_STATE(6047)] = 207089, + [SMALL_STATE(6048)] = 207093, + [SMALL_STATE(6049)] = 207097, + [SMALL_STATE(6050)] = 207101, + [SMALL_STATE(6051)] = 207105, + [SMALL_STATE(6052)] = 207109, + [SMALL_STATE(6053)] = 207113, + [SMALL_STATE(6054)] = 207117, + [SMALL_STATE(6055)] = 207121, + [SMALL_STATE(6056)] = 207125, + [SMALL_STATE(6057)] = 207129, + [SMALL_STATE(6058)] = 207133, + [SMALL_STATE(6059)] = 207137, + [SMALL_STATE(6060)] = 207141, + [SMALL_STATE(6061)] = 207145, + [SMALL_STATE(6062)] = 207149, + [SMALL_STATE(6063)] = 207153, + [SMALL_STATE(6064)] = 207157, + [SMALL_STATE(6065)] = 207161, + [SMALL_STATE(6066)] = 207165, + [SMALL_STATE(6067)] = 207169, + [SMALL_STATE(6068)] = 207173, + [SMALL_STATE(6069)] = 207177, + [SMALL_STATE(6070)] = 207181, + [SMALL_STATE(6071)] = 207185, + [SMALL_STATE(6072)] = 207189, + [SMALL_STATE(6073)] = 207193, + [SMALL_STATE(6074)] = 207197, + [SMALL_STATE(6075)] = 207201, + [SMALL_STATE(6076)] = 207205, + [SMALL_STATE(6077)] = 207209, + [SMALL_STATE(6078)] = 207213, + [SMALL_STATE(6079)] = 207217, + [SMALL_STATE(6080)] = 207221, + [SMALL_STATE(6081)] = 207225, + [SMALL_STATE(6082)] = 207229, + [SMALL_STATE(6083)] = 207233, + [SMALL_STATE(6084)] = 207237, + [SMALL_STATE(6085)] = 207241, + [SMALL_STATE(6086)] = 207245, + [SMALL_STATE(6087)] = 207249, + [SMALL_STATE(6088)] = 207253, + [SMALL_STATE(6089)] = 207257, + [SMALL_STATE(6090)] = 207261, + [SMALL_STATE(6091)] = 207265, + [SMALL_STATE(6092)] = 207269, + [SMALL_STATE(6093)] = 207273, + [SMALL_STATE(6094)] = 207277, + [SMALL_STATE(6095)] = 207281, + [SMALL_STATE(6096)] = 207285, + [SMALL_STATE(6097)] = 207289, + [SMALL_STATE(6098)] = 207293, + [SMALL_STATE(6099)] = 207297, + [SMALL_STATE(6100)] = 207301, + [SMALL_STATE(6101)] = 207305, + [SMALL_STATE(6102)] = 207309, + [SMALL_STATE(6103)] = 207313, + [SMALL_STATE(6104)] = 207317, + [SMALL_STATE(6105)] = 207321, + [SMALL_STATE(6106)] = 207325, + [SMALL_STATE(6107)] = 207329, + [SMALL_STATE(6108)] = 207333, + [SMALL_STATE(6109)] = 207337, + [SMALL_STATE(6110)] = 207341, + [SMALL_STATE(6111)] = 207345, + [SMALL_STATE(6112)] = 207349, + [SMALL_STATE(6113)] = 207353, + [SMALL_STATE(6114)] = 207357, + [SMALL_STATE(6115)] = 207361, + [SMALL_STATE(6116)] = 207365, + [SMALL_STATE(6117)] = 207369, + [SMALL_STATE(6118)] = 207373, + [SMALL_STATE(6119)] = 207377, + [SMALL_STATE(6120)] = 207381, + [SMALL_STATE(6121)] = 207385, + [SMALL_STATE(6122)] = 207389, + [SMALL_STATE(6123)] = 207393, + [SMALL_STATE(6124)] = 207397, + [SMALL_STATE(6125)] = 207401, + [SMALL_STATE(6126)] = 207405, + [SMALL_STATE(6127)] = 207409, + [SMALL_STATE(6128)] = 207413, + [SMALL_STATE(6129)] = 207417, + [SMALL_STATE(6130)] = 207421, + [SMALL_STATE(6131)] = 207425, + [SMALL_STATE(6132)] = 207429, + [SMALL_STATE(6133)] = 207433, + [SMALL_STATE(6134)] = 207437, + [SMALL_STATE(6135)] = 207441, + [SMALL_STATE(6136)] = 207445, + [SMALL_STATE(6137)] = 207449, + [SMALL_STATE(6138)] = 207453, + [SMALL_STATE(6139)] = 207457, + [SMALL_STATE(6140)] = 207461, + [SMALL_STATE(6141)] = 207465, + [SMALL_STATE(6142)] = 207469, + [SMALL_STATE(6143)] = 207473, + [SMALL_STATE(6144)] = 207477, + [SMALL_STATE(6145)] = 207481, + [SMALL_STATE(6146)] = 207485, + [SMALL_STATE(6147)] = 207489, + [SMALL_STATE(6148)] = 207493, + [SMALL_STATE(6149)] = 207497, + [SMALL_STATE(6150)] = 207501, + [SMALL_STATE(6151)] = 207505, + [SMALL_STATE(6152)] = 207509, + [SMALL_STATE(6153)] = 207513, + [SMALL_STATE(6154)] = 207517, + [SMALL_STATE(6155)] = 207521, + [SMALL_STATE(6156)] = 207525, + [SMALL_STATE(6157)] = 207529, + [SMALL_STATE(6158)] = 207533, + [SMALL_STATE(6159)] = 207537, + [SMALL_STATE(6160)] = 207541, + [SMALL_STATE(6161)] = 207545, + [SMALL_STATE(6162)] = 207549, + [SMALL_STATE(6163)] = 207553, + [SMALL_STATE(6164)] = 207557, + [SMALL_STATE(6165)] = 207561, + [SMALL_STATE(6166)] = 207565, + [SMALL_STATE(6167)] = 207569, + [SMALL_STATE(6168)] = 207573, + [SMALL_STATE(6169)] = 207577, + [SMALL_STATE(6170)] = 207581, + [SMALL_STATE(6171)] = 207585, + [SMALL_STATE(6172)] = 207589, + [SMALL_STATE(6173)] = 207593, + [SMALL_STATE(6174)] = 207597, + [SMALL_STATE(6175)] = 207601, + [SMALL_STATE(6176)] = 207605, + [SMALL_STATE(6177)] = 207609, + [SMALL_STATE(6178)] = 207613, + [SMALL_STATE(6179)] = 207617, + [SMALL_STATE(6180)] = 207621, + [SMALL_STATE(6181)] = 207625, + [SMALL_STATE(6182)] = 207629, + [SMALL_STATE(6183)] = 207633, + [SMALL_STATE(6184)] = 207637, + [SMALL_STATE(6185)] = 207641, + [SMALL_STATE(6186)] = 207645, + [SMALL_STATE(6187)] = 207649, + [SMALL_STATE(6188)] = 207653, + [SMALL_STATE(6189)] = 207657, + [SMALL_STATE(6190)] = 207661, + [SMALL_STATE(6191)] = 207665, + [SMALL_STATE(6192)] = 207669, + [SMALL_STATE(6193)] = 207673, + [SMALL_STATE(6194)] = 207677, + [SMALL_STATE(6195)] = 207681, + [SMALL_STATE(6196)] = 207685, + [SMALL_STATE(6197)] = 207689, + [SMALL_STATE(6198)] = 207693, + [SMALL_STATE(6199)] = 207697, + [SMALL_STATE(6200)] = 207701, + [SMALL_STATE(6201)] = 207705, + [SMALL_STATE(6202)] = 207709, + [SMALL_STATE(6203)] = 207713, + [SMALL_STATE(6204)] = 207717, + [SMALL_STATE(6205)] = 207721, + [SMALL_STATE(6206)] = 207725, + [SMALL_STATE(6207)] = 207729, + [SMALL_STATE(6208)] = 207733, + [SMALL_STATE(6209)] = 207737, + [SMALL_STATE(6210)] = 207741, + [SMALL_STATE(6211)] = 207745, + [SMALL_STATE(6212)] = 207749, + [SMALL_STATE(6213)] = 207753, + [SMALL_STATE(6214)] = 207757, + [SMALL_STATE(6215)] = 207761, + [SMALL_STATE(6216)] = 207765, + [SMALL_STATE(6217)] = 207769, + [SMALL_STATE(6218)] = 207773, + [SMALL_STATE(6219)] = 207777, + [SMALL_STATE(6220)] = 207781, + [SMALL_STATE(6221)] = 207785, + [SMALL_STATE(6222)] = 207789, + [SMALL_STATE(6223)] = 207793, + [SMALL_STATE(6224)] = 207797, + [SMALL_STATE(6225)] = 207801, + [SMALL_STATE(6226)] = 207805, + [SMALL_STATE(6227)] = 207809, + [SMALL_STATE(6228)] = 207813, + [SMALL_STATE(6229)] = 207817, + [SMALL_STATE(6230)] = 207821, + [SMALL_STATE(6231)] = 207825, + [SMALL_STATE(6232)] = 207829, + [SMALL_STATE(6233)] = 207833, + [SMALL_STATE(6234)] = 207837, + [SMALL_STATE(6235)] = 207841, + [SMALL_STATE(6236)] = 207845, + [SMALL_STATE(6237)] = 207849, + [SMALL_STATE(6238)] = 207853, + [SMALL_STATE(6239)] = 207857, + [SMALL_STATE(6240)] = 207861, + [SMALL_STATE(6241)] = 207865, + [SMALL_STATE(6242)] = 207869, + [SMALL_STATE(6243)] = 207873, + [SMALL_STATE(6244)] = 207877, + [SMALL_STATE(6245)] = 207881, + [SMALL_STATE(6246)] = 207885, + [SMALL_STATE(6247)] = 207889, + [SMALL_STATE(6248)] = 207893, + [SMALL_STATE(6249)] = 207897, + [SMALL_STATE(6250)] = 207901, + [SMALL_STATE(6251)] = 207905, + [SMALL_STATE(6252)] = 207909, + [SMALL_STATE(6253)] = 207913, + [SMALL_STATE(6254)] = 207917, + [SMALL_STATE(6255)] = 207921, + [SMALL_STATE(6256)] = 207925, + [SMALL_STATE(6257)] = 207929, + [SMALL_STATE(6258)] = 207933, + [SMALL_STATE(6259)] = 207937, + [SMALL_STATE(6260)] = 207941, + [SMALL_STATE(6261)] = 207945, + [SMALL_STATE(6262)] = 207949, + [SMALL_STATE(6263)] = 207953, + [SMALL_STATE(6264)] = 207957, + [SMALL_STATE(6265)] = 207961, + [SMALL_STATE(6266)] = 207965, + [SMALL_STATE(6267)] = 207969, + [SMALL_STATE(6268)] = 207973, + [SMALL_STATE(6269)] = 207977, + [SMALL_STATE(6270)] = 207981, + [SMALL_STATE(6271)] = 207985, + [SMALL_STATE(6272)] = 207989, + [SMALL_STATE(6273)] = 207993, + [SMALL_STATE(6274)] = 207997, + [SMALL_STATE(6275)] = 208001, + [SMALL_STATE(6276)] = 208005, + [SMALL_STATE(6277)] = 208009, + [SMALL_STATE(6278)] = 208013, + [SMALL_STATE(6279)] = 208017, + [SMALL_STATE(6280)] = 208021, + [SMALL_STATE(6281)] = 208025, + [SMALL_STATE(6282)] = 208029, + [SMALL_STATE(6283)] = 208033, + [SMALL_STATE(6284)] = 208037, + [SMALL_STATE(6285)] = 208041, + [SMALL_STATE(6286)] = 208045, + [SMALL_STATE(6287)] = 208049, + [SMALL_STATE(6288)] = 208053, + [SMALL_STATE(6289)] = 208057, + [SMALL_STATE(6290)] = 208061, + [SMALL_STATE(6291)] = 208065, + [SMALL_STATE(6292)] = 208069, + [SMALL_STATE(6293)] = 208073, + [SMALL_STATE(6294)] = 208077, + [SMALL_STATE(6295)] = 208081, + [SMALL_STATE(6296)] = 208085, + [SMALL_STATE(6297)] = 208089, + [SMALL_STATE(6298)] = 208093, + [SMALL_STATE(6299)] = 208097, + [SMALL_STATE(6300)] = 208101, + [SMALL_STATE(6301)] = 208105, + [SMALL_STATE(6302)] = 208109, + [SMALL_STATE(6303)] = 208113, + [SMALL_STATE(6304)] = 208117, + [SMALL_STATE(6305)] = 208121, + [SMALL_STATE(6306)] = 208125, + [SMALL_STATE(6307)] = 208129, + [SMALL_STATE(6308)] = 208133, + [SMALL_STATE(6309)] = 208137, + [SMALL_STATE(6310)] = 208141, + [SMALL_STATE(6311)] = 208145, + [SMALL_STATE(6312)] = 208149, + [SMALL_STATE(6313)] = 208153, + [SMALL_STATE(6314)] = 208157, + [SMALL_STATE(6315)] = 208161, + [SMALL_STATE(6316)] = 208165, + [SMALL_STATE(6317)] = 208169, + [SMALL_STATE(6318)] = 208173, + [SMALL_STATE(6319)] = 208177, + [SMALL_STATE(6320)] = 208181, + [SMALL_STATE(6321)] = 208185, + [SMALL_STATE(6322)] = 208189, + [SMALL_STATE(6323)] = 208193, + [SMALL_STATE(6324)] = 208197, + [SMALL_STATE(6325)] = 208201, + [SMALL_STATE(6326)] = 208205, + [SMALL_STATE(6327)] = 208209, + [SMALL_STATE(6328)] = 208213, + [SMALL_STATE(6329)] = 208217, + [SMALL_STATE(6330)] = 208221, + [SMALL_STATE(6331)] = 208225, + [SMALL_STATE(6332)] = 208229, + [SMALL_STATE(6333)] = 208233, + [SMALL_STATE(6334)] = 208237, + [SMALL_STATE(6335)] = 208241, + [SMALL_STATE(6336)] = 208245, + [SMALL_STATE(6337)] = 208249, + [SMALL_STATE(6338)] = 208253, + [SMALL_STATE(6339)] = 208257, + [SMALL_STATE(6340)] = 208261, + [SMALL_STATE(6341)] = 208265, + [SMALL_STATE(6342)] = 208269, + [SMALL_STATE(6343)] = 208273, + [SMALL_STATE(6344)] = 208277, + [SMALL_STATE(6345)] = 208281, + [SMALL_STATE(6346)] = 208285, + [SMALL_STATE(6347)] = 208289, + [SMALL_STATE(6348)] = 208293, + [SMALL_STATE(6349)] = 208297, + [SMALL_STATE(6350)] = 208301, + [SMALL_STATE(6351)] = 208305, + [SMALL_STATE(6352)] = 208309, + [SMALL_STATE(6353)] = 208313, + [SMALL_STATE(6354)] = 208317, + [SMALL_STATE(6355)] = 208321, + [SMALL_STATE(6356)] = 208325, + [SMALL_STATE(6357)] = 208329, + [SMALL_STATE(6358)] = 208333, + [SMALL_STATE(6359)] = 208337, + [SMALL_STATE(6360)] = 208341, + [SMALL_STATE(6361)] = 208345, + [SMALL_STATE(6362)] = 208349, + [SMALL_STATE(6363)] = 208353, + [SMALL_STATE(6364)] = 208357, + [SMALL_STATE(6365)] = 208361, + [SMALL_STATE(6366)] = 208365, + [SMALL_STATE(6367)] = 208369, + [SMALL_STATE(6368)] = 208373, + [SMALL_STATE(6369)] = 208377, + [SMALL_STATE(6370)] = 208381, + [SMALL_STATE(6371)] = 208385, + [SMALL_STATE(6372)] = 208389, + [SMALL_STATE(6373)] = 208393, + [SMALL_STATE(6374)] = 208397, + [SMALL_STATE(6375)] = 208401, + [SMALL_STATE(6376)] = 208405, + [SMALL_STATE(6377)] = 208409, + [SMALL_STATE(6378)] = 208413, + [SMALL_STATE(6379)] = 208417, + [SMALL_STATE(6380)] = 208421, + [SMALL_STATE(6381)] = 208425, + [SMALL_STATE(6382)] = 208429, + [SMALL_STATE(6383)] = 208433, + [SMALL_STATE(6384)] = 208437, + [SMALL_STATE(6385)] = 208441, + [SMALL_STATE(6386)] = 208445, + [SMALL_STATE(6387)] = 208449, + [SMALL_STATE(6388)] = 208453, + [SMALL_STATE(6389)] = 208457, + [SMALL_STATE(6390)] = 208461, + [SMALL_STATE(6391)] = 208465, + [SMALL_STATE(6392)] = 208469, + [SMALL_STATE(6393)] = 208473, + [SMALL_STATE(6394)] = 208477, + [SMALL_STATE(6395)] = 208481, + [SMALL_STATE(6396)] = 208485, + [SMALL_STATE(6397)] = 208489, + [SMALL_STATE(6398)] = 208493, + [SMALL_STATE(6399)] = 208497, + [SMALL_STATE(6400)] = 208501, + [SMALL_STATE(6401)] = 208505, + [SMALL_STATE(6402)] = 208509, + [SMALL_STATE(6403)] = 208513, + [SMALL_STATE(6404)] = 208517, + [SMALL_STATE(6405)] = 208521, + [SMALL_STATE(6406)] = 208525, + [SMALL_STATE(6407)] = 208529, + [SMALL_STATE(6408)] = 208533, + [SMALL_STATE(6409)] = 208537, + [SMALL_STATE(6410)] = 208541, + [SMALL_STATE(6411)] = 208545, + [SMALL_STATE(6412)] = 208549, + [SMALL_STATE(6413)] = 208553, + [SMALL_STATE(6414)] = 208557, + [SMALL_STATE(6415)] = 208561, + [SMALL_STATE(6416)] = 208565, + [SMALL_STATE(6417)] = 208569, + [SMALL_STATE(6418)] = 208573, + [SMALL_STATE(6419)] = 208577, + [SMALL_STATE(6420)] = 208581, + [SMALL_STATE(6421)] = 208585, + [SMALL_STATE(6422)] = 208589, + [SMALL_STATE(6423)] = 208593, + [SMALL_STATE(6424)] = 208597, + [SMALL_STATE(6425)] = 208601, + [SMALL_STATE(6426)] = 208605, + [SMALL_STATE(6427)] = 208609, + [SMALL_STATE(6428)] = 208613, + [SMALL_STATE(6429)] = 208617, + [SMALL_STATE(6430)] = 208621, + [SMALL_STATE(6431)] = 208625, + [SMALL_STATE(6432)] = 208629, + [SMALL_STATE(6433)] = 208633, + [SMALL_STATE(6434)] = 208637, + [SMALL_STATE(6435)] = 208641, + [SMALL_STATE(6436)] = 208645, + [SMALL_STATE(6437)] = 208649, + [SMALL_STATE(6438)] = 208653, + [SMALL_STATE(6439)] = 208657, + [SMALL_STATE(6440)] = 208661, + [SMALL_STATE(6441)] = 208665, + [SMALL_STATE(6442)] = 208669, + [SMALL_STATE(6443)] = 208673, + [SMALL_STATE(6444)] = 208677, + [SMALL_STATE(6445)] = 208681, + [SMALL_STATE(6446)] = 208685, + [SMALL_STATE(6447)] = 208689, + [SMALL_STATE(6448)] = 208693, + [SMALL_STATE(6449)] = 208697, + [SMALL_STATE(6450)] = 208701, + [SMALL_STATE(6451)] = 208705, + [SMALL_STATE(6452)] = 208709, + [SMALL_STATE(6453)] = 208713, + [SMALL_STATE(6454)] = 208717, + [SMALL_STATE(6455)] = 208721, + [SMALL_STATE(6456)] = 208725, + [SMALL_STATE(6457)] = 208729, + [SMALL_STATE(6458)] = 208733, + [SMALL_STATE(6459)] = 208737, + [SMALL_STATE(6460)] = 208741, + [SMALL_STATE(6461)] = 208745, + [SMALL_STATE(6462)] = 208749, + [SMALL_STATE(6463)] = 208753, + [SMALL_STATE(6464)] = 208757, + [SMALL_STATE(6465)] = 208761, + [SMALL_STATE(6466)] = 208765, + [SMALL_STATE(6467)] = 208769, + [SMALL_STATE(6468)] = 208773, + [SMALL_STATE(6469)] = 208777, + [SMALL_STATE(6470)] = 208781, + [SMALL_STATE(6471)] = 208785, + [SMALL_STATE(6472)] = 208789, + [SMALL_STATE(6473)] = 208793, + [SMALL_STATE(6474)] = 208797, + [SMALL_STATE(6475)] = 208801, + [SMALL_STATE(6476)] = 208805, + [SMALL_STATE(6477)] = 208809, + [SMALL_STATE(6478)] = 208813, + [SMALL_STATE(6479)] = 208817, + [SMALL_STATE(6480)] = 208821, + [SMALL_STATE(6481)] = 208825, + [SMALL_STATE(6482)] = 208829, + [SMALL_STATE(6483)] = 208833, + [SMALL_STATE(6484)] = 208837, + [SMALL_STATE(6485)] = 208841, + [SMALL_STATE(6486)] = 208845, + [SMALL_STATE(6487)] = 208849, + [SMALL_STATE(6488)] = 208853, + [SMALL_STATE(6489)] = 208857, + [SMALL_STATE(6490)] = 208861, + [SMALL_STATE(6491)] = 208865, + [SMALL_STATE(6492)] = 208869, + [SMALL_STATE(6493)] = 208873, + [SMALL_STATE(6494)] = 208877, + [SMALL_STATE(6495)] = 208881, + [SMALL_STATE(6496)] = 208885, + [SMALL_STATE(6497)] = 208889, + [SMALL_STATE(6498)] = 208893, + [SMALL_STATE(6499)] = 208897, + [SMALL_STATE(6500)] = 208901, + [SMALL_STATE(6501)] = 208905, + [SMALL_STATE(6502)] = 208909, + [SMALL_STATE(6503)] = 208913, + [SMALL_STATE(6504)] = 208917, + [SMALL_STATE(6505)] = 208921, + [SMALL_STATE(6506)] = 208925, + [SMALL_STATE(6507)] = 208929, + [SMALL_STATE(6508)] = 208933, + [SMALL_STATE(6509)] = 208937, + [SMALL_STATE(6510)] = 208941, + [SMALL_STATE(6511)] = 208945, + [SMALL_STATE(6512)] = 208949, + [SMALL_STATE(6513)] = 208953, + [SMALL_STATE(6514)] = 208957, + [SMALL_STATE(6515)] = 208961, + [SMALL_STATE(6516)] = 208965, + [SMALL_STATE(6517)] = 208969, + [SMALL_STATE(6518)] = 208973, + [SMALL_STATE(6519)] = 208977, + [SMALL_STATE(6520)] = 208981, + [SMALL_STATE(6521)] = 208985, + [SMALL_STATE(6522)] = 208989, + [SMALL_STATE(6523)] = 208993, + [SMALL_STATE(6524)] = 208997, + [SMALL_STATE(6525)] = 209001, + [SMALL_STATE(6526)] = 209005, + [SMALL_STATE(6527)] = 209009, + [SMALL_STATE(6528)] = 209013, + [SMALL_STATE(6529)] = 209017, + [SMALL_STATE(6530)] = 209021, + [SMALL_STATE(6531)] = 209025, + [SMALL_STATE(6532)] = 209029, + [SMALL_STATE(6533)] = 209033, + [SMALL_STATE(6534)] = 209037, + [SMALL_STATE(6535)] = 209041, + [SMALL_STATE(6536)] = 209045, + [SMALL_STATE(6537)] = 209049, + [SMALL_STATE(6538)] = 209053, + [SMALL_STATE(6539)] = 209057, + [SMALL_STATE(6540)] = 209061, + [SMALL_STATE(6541)] = 209065, + [SMALL_STATE(6542)] = 209069, + [SMALL_STATE(6543)] = 209073, + [SMALL_STATE(6544)] = 209077, + [SMALL_STATE(6545)] = 209081, + [SMALL_STATE(6546)] = 209085, + [SMALL_STATE(6547)] = 209089, + [SMALL_STATE(6548)] = 209093, + [SMALL_STATE(6549)] = 209097, + [SMALL_STATE(6550)] = 209101, + [SMALL_STATE(6551)] = 209105, + [SMALL_STATE(6552)] = 209109, + [SMALL_STATE(6553)] = 209113, + [SMALL_STATE(6554)] = 209117, + [SMALL_STATE(6555)] = 209121, + [SMALL_STATE(6556)] = 209125, + [SMALL_STATE(6557)] = 209129, + [SMALL_STATE(6558)] = 209133, + [SMALL_STATE(6559)] = 209137, + [SMALL_STATE(6560)] = 209141, + [SMALL_STATE(6561)] = 209145, + [SMALL_STATE(6562)] = 209149, + [SMALL_STATE(6563)] = 209153, + [SMALL_STATE(6564)] = 209157, + [SMALL_STATE(6565)] = 209161, + [SMALL_STATE(6566)] = 209165, + [SMALL_STATE(6567)] = 209169, + [SMALL_STATE(6568)] = 209173, + [SMALL_STATE(6569)] = 209177, + [SMALL_STATE(6570)] = 209181, + [SMALL_STATE(6571)] = 209185, + [SMALL_STATE(6572)] = 209189, + [SMALL_STATE(6573)] = 209193, + [SMALL_STATE(6574)] = 209197, + [SMALL_STATE(6575)] = 209201, + [SMALL_STATE(6576)] = 209205, + [SMALL_STATE(6577)] = 209209, + [SMALL_STATE(6578)] = 209213, + [SMALL_STATE(6579)] = 209217, + [SMALL_STATE(6580)] = 209221, + [SMALL_STATE(6581)] = 209225, + [SMALL_STATE(6582)] = 209229, + [SMALL_STATE(6583)] = 209233, + [SMALL_STATE(6584)] = 209237, + [SMALL_STATE(6585)] = 209241, + [SMALL_STATE(6586)] = 209245, + [SMALL_STATE(6587)] = 209249, + [SMALL_STATE(6588)] = 209253, + [SMALL_STATE(6589)] = 209257, + [SMALL_STATE(6590)] = 209261, + [SMALL_STATE(6591)] = 209265, + [SMALL_STATE(6592)] = 209269, + [SMALL_STATE(6593)] = 209273, + [SMALL_STATE(6594)] = 209277, + [SMALL_STATE(6595)] = 209281, + [SMALL_STATE(6596)] = 209285, + [SMALL_STATE(6597)] = 209289, + [SMALL_STATE(6598)] = 209293, + [SMALL_STATE(6599)] = 209297, + [SMALL_STATE(6600)] = 209301, + [SMALL_STATE(6601)] = 209305, + [SMALL_STATE(6602)] = 209309, + [SMALL_STATE(6603)] = 209313, + [SMALL_STATE(6604)] = 209317, + [SMALL_STATE(6605)] = 209321, + [SMALL_STATE(6606)] = 209325, + [SMALL_STATE(6607)] = 209329, + [SMALL_STATE(6608)] = 209333, + [SMALL_STATE(6609)] = 209337, + [SMALL_STATE(6610)] = 209341, + [SMALL_STATE(6611)] = 209345, + [SMALL_STATE(6612)] = 209349, + [SMALL_STATE(6613)] = 209353, + [SMALL_STATE(6614)] = 209357, + [SMALL_STATE(6615)] = 209361, + [SMALL_STATE(6616)] = 209365, + [SMALL_STATE(6617)] = 209369, + [SMALL_STATE(6618)] = 209373, + [SMALL_STATE(6619)] = 209377, + [SMALL_STATE(6620)] = 209381, + [SMALL_STATE(6621)] = 209385, + [SMALL_STATE(6622)] = 209389, + [SMALL_STATE(6623)] = 209393, + [SMALL_STATE(6624)] = 209397, + [SMALL_STATE(6625)] = 209401, + [SMALL_STATE(6626)] = 209405, + [SMALL_STATE(6627)] = 209409, + [SMALL_STATE(6628)] = 209413, + [SMALL_STATE(6629)] = 209417, + [SMALL_STATE(6630)] = 209421, + [SMALL_STATE(6631)] = 209425, + [SMALL_STATE(6632)] = 209429, + [SMALL_STATE(6633)] = 209433, + [SMALL_STATE(6634)] = 209437, + [SMALL_STATE(6635)] = 209441, + [SMALL_STATE(6636)] = 209445, + [SMALL_STATE(6637)] = 209449, + [SMALL_STATE(6638)] = 209453, + [SMALL_STATE(6639)] = 209457, + [SMALL_STATE(6640)] = 209461, + [SMALL_STATE(6641)] = 209465, + [SMALL_STATE(6642)] = 209469, + [SMALL_STATE(6643)] = 209473, + [SMALL_STATE(6644)] = 209477, + [SMALL_STATE(6645)] = 209481, + [SMALL_STATE(6646)] = 209485, + [SMALL_STATE(6647)] = 209489, + [SMALL_STATE(6648)] = 209493, + [SMALL_STATE(6649)] = 209497, + [SMALL_STATE(6650)] = 209501, + [SMALL_STATE(6651)] = 209505, + [SMALL_STATE(6652)] = 209509, + [SMALL_STATE(6653)] = 209513, + [SMALL_STATE(6654)] = 209517, + [SMALL_STATE(6655)] = 209521, + [SMALL_STATE(6656)] = 209525, + [SMALL_STATE(6657)] = 209529, + [SMALL_STATE(6658)] = 209533, + [SMALL_STATE(6659)] = 209537, + [SMALL_STATE(6660)] = 209541, + [SMALL_STATE(6661)] = 209545, + [SMALL_STATE(6662)] = 209549, + [SMALL_STATE(6663)] = 209553, + [SMALL_STATE(6664)] = 209557, + [SMALL_STATE(6665)] = 209561, + [SMALL_STATE(6666)] = 209565, + [SMALL_STATE(6667)] = 209569, + [SMALL_STATE(6668)] = 209573, + [SMALL_STATE(6669)] = 209577, + [SMALL_STATE(6670)] = 209581, + [SMALL_STATE(6671)] = 209585, + [SMALL_STATE(6672)] = 209589, + [SMALL_STATE(6673)] = 209593, + [SMALL_STATE(6674)] = 209597, + [SMALL_STATE(6675)] = 209601, + [SMALL_STATE(6676)] = 209605, + [SMALL_STATE(6677)] = 209609, + [SMALL_STATE(6678)] = 209613, + [SMALL_STATE(6679)] = 209617, + [SMALL_STATE(6680)] = 209621, + [SMALL_STATE(6681)] = 209625, + [SMALL_STATE(6682)] = 209629, + [SMALL_STATE(6683)] = 209633, + [SMALL_STATE(6684)] = 209637, + [SMALL_STATE(6685)] = 209641, + [SMALL_STATE(6686)] = 209645, + [SMALL_STATE(6687)] = 209649, + [SMALL_STATE(6688)] = 209653, + [SMALL_STATE(6689)] = 209657, + [SMALL_STATE(6690)] = 209661, + [SMALL_STATE(6691)] = 209665, + [SMALL_STATE(6692)] = 209669, + [SMALL_STATE(6693)] = 209673, + [SMALL_STATE(6694)] = 209677, + [SMALL_STATE(6695)] = 209681, + [SMALL_STATE(6696)] = 209685, + [SMALL_STATE(6697)] = 209689, + [SMALL_STATE(6698)] = 209693, + [SMALL_STATE(6699)] = 209697, + [SMALL_STATE(6700)] = 209701, + [SMALL_STATE(6701)] = 209705, + [SMALL_STATE(6702)] = 209709, + [SMALL_STATE(6703)] = 209713, + [SMALL_STATE(6704)] = 209717, + [SMALL_STATE(6705)] = 209721, + [SMALL_STATE(6706)] = 209725, + [SMALL_STATE(6707)] = 209729, + [SMALL_STATE(6708)] = 209733, + [SMALL_STATE(6709)] = 209737, + [SMALL_STATE(6710)] = 209741, + [SMALL_STATE(6711)] = 209745, + [SMALL_STATE(6712)] = 209749, + [SMALL_STATE(6713)] = 209753, + [SMALL_STATE(6714)] = 209757, + [SMALL_STATE(6715)] = 209761, + [SMALL_STATE(6716)] = 209765, + [SMALL_STATE(6717)] = 209769, + [SMALL_STATE(6718)] = 209773, + [SMALL_STATE(6719)] = 209777, + [SMALL_STATE(6720)] = 209781, + [SMALL_STATE(6721)] = 209785, + [SMALL_STATE(6722)] = 209789, + [SMALL_STATE(6723)] = 209793, + [SMALL_STATE(6724)] = 209797, + [SMALL_STATE(6725)] = 209801, + [SMALL_STATE(6726)] = 209805, + [SMALL_STATE(6727)] = 209809, + [SMALL_STATE(6728)] = 209813, + [SMALL_STATE(6729)] = 209817, + [SMALL_STATE(6730)] = 209821, + [SMALL_STATE(6731)] = 209825, + [SMALL_STATE(6732)] = 209829, + [SMALL_STATE(6733)] = 209833, + [SMALL_STATE(6734)] = 209837, + [SMALL_STATE(6735)] = 209841, + [SMALL_STATE(6736)] = 209845, + [SMALL_STATE(6737)] = 209849, + [SMALL_STATE(6738)] = 209853, + [SMALL_STATE(6739)] = 209857, + [SMALL_STATE(6740)] = 209861, + [SMALL_STATE(6741)] = 209865, + [SMALL_STATE(6742)] = 209869, + [SMALL_STATE(6743)] = 209873, + [SMALL_STATE(6744)] = 209877, + [SMALL_STATE(6745)] = 209881, + [SMALL_STATE(6746)] = 209885, + [SMALL_STATE(6747)] = 209889, + [SMALL_STATE(6748)] = 209893, + [SMALL_STATE(6749)] = 209897, + [SMALL_STATE(6750)] = 209901, + [SMALL_STATE(6751)] = 209905, + [SMALL_STATE(6752)] = 209909, + [SMALL_STATE(6753)] = 209913, + [SMALL_STATE(6754)] = 209917, + [SMALL_STATE(6755)] = 209921, + [SMALL_STATE(6756)] = 209925, + [SMALL_STATE(6757)] = 209929, + [SMALL_STATE(6758)] = 209933, + [SMALL_STATE(6759)] = 209937, + [SMALL_STATE(6760)] = 209941, + [SMALL_STATE(6761)] = 209945, + [SMALL_STATE(6762)] = 209949, + [SMALL_STATE(6763)] = 209953, + [SMALL_STATE(6764)] = 209957, + [SMALL_STATE(6765)] = 209961, + [SMALL_STATE(6766)] = 209965, + [SMALL_STATE(6767)] = 209969, + [SMALL_STATE(6768)] = 209973, + [SMALL_STATE(6769)] = 209977, + [SMALL_STATE(6770)] = 209981, + [SMALL_STATE(6771)] = 209985, + [SMALL_STATE(6772)] = 209989, + [SMALL_STATE(6773)] = 209993, + [SMALL_STATE(6774)] = 209997, + [SMALL_STATE(6775)] = 210001, + [SMALL_STATE(6776)] = 210005, + [SMALL_STATE(6777)] = 210009, + [SMALL_STATE(6778)] = 210013, + [SMALL_STATE(6779)] = 210017, + [SMALL_STATE(6780)] = 210021, + [SMALL_STATE(6781)] = 210025, + [SMALL_STATE(6782)] = 210029, + [SMALL_STATE(6783)] = 210033, + [SMALL_STATE(6784)] = 210037, + [SMALL_STATE(6785)] = 210041, + [SMALL_STATE(6786)] = 210045, + [SMALL_STATE(6787)] = 210049, + [SMALL_STATE(6788)] = 210053, + [SMALL_STATE(6789)] = 210057, + [SMALL_STATE(6790)] = 210061, + [SMALL_STATE(6791)] = 210065, + [SMALL_STATE(6792)] = 210069, + [SMALL_STATE(6793)] = 210073, + [SMALL_STATE(6794)] = 210077, + [SMALL_STATE(6795)] = 210081, + [SMALL_STATE(6796)] = 210085, + [SMALL_STATE(6797)] = 210089, + [SMALL_STATE(6798)] = 210093, + [SMALL_STATE(6799)] = 210097, + [SMALL_STATE(6800)] = 210101, + [SMALL_STATE(6801)] = 210105, + [SMALL_STATE(6802)] = 210109, + [SMALL_STATE(6803)] = 210113, + [SMALL_STATE(6804)] = 210117, + [SMALL_STATE(6805)] = 210121, + [SMALL_STATE(6806)] = 210125, + [SMALL_STATE(6807)] = 210129, + [SMALL_STATE(6808)] = 210133, + [SMALL_STATE(6809)] = 210137, + [SMALL_STATE(6810)] = 210141, + [SMALL_STATE(6811)] = 210145, + [SMALL_STATE(6812)] = 210149, + [SMALL_STATE(6813)] = 210153, + [SMALL_STATE(6814)] = 210157, + [SMALL_STATE(6815)] = 210161, + [SMALL_STATE(6816)] = 210165, + [SMALL_STATE(6817)] = 210169, + [SMALL_STATE(6818)] = 210173, + [SMALL_STATE(6819)] = 210177, + [SMALL_STATE(6820)] = 210181, + [SMALL_STATE(6821)] = 210185, + [SMALL_STATE(6822)] = 210189, + [SMALL_STATE(6823)] = 210193, + [SMALL_STATE(6824)] = 210197, + [SMALL_STATE(6825)] = 210201, + [SMALL_STATE(6826)] = 210205, + [SMALL_STATE(6827)] = 210209, + [SMALL_STATE(6828)] = 210213, + [SMALL_STATE(6829)] = 210217, + [SMALL_STATE(6830)] = 210221, + [SMALL_STATE(6831)] = 210225, + [SMALL_STATE(6832)] = 210229, + [SMALL_STATE(6833)] = 210233, + [SMALL_STATE(6834)] = 210237, + [SMALL_STATE(6835)] = 210241, + [SMALL_STATE(6836)] = 210245, + [SMALL_STATE(6837)] = 210249, + [SMALL_STATE(6838)] = 210253, + [SMALL_STATE(6839)] = 210257, + [SMALL_STATE(6840)] = 210261, + [SMALL_STATE(6841)] = 210265, + [SMALL_STATE(6842)] = 210269, + [SMALL_STATE(6843)] = 210273, + [SMALL_STATE(6844)] = 210277, + [SMALL_STATE(6845)] = 210281, + [SMALL_STATE(6846)] = 210285, + [SMALL_STATE(6847)] = 210289, + [SMALL_STATE(6848)] = 210293, + [SMALL_STATE(6849)] = 210297, + [SMALL_STATE(6850)] = 210301, + [SMALL_STATE(6851)] = 210305, + [SMALL_STATE(6852)] = 210309, + [SMALL_STATE(6853)] = 210313, + [SMALL_STATE(6854)] = 210317, + [SMALL_STATE(6855)] = 210321, + [SMALL_STATE(6856)] = 210325, + [SMALL_STATE(6857)] = 210329, + [SMALL_STATE(6858)] = 210333, + [SMALL_STATE(6859)] = 210337, + [SMALL_STATE(6860)] = 210341, + [SMALL_STATE(6861)] = 210345, + [SMALL_STATE(6862)] = 210349, + [SMALL_STATE(6863)] = 210353, + [SMALL_STATE(6864)] = 210357, + [SMALL_STATE(6865)] = 210361, + [SMALL_STATE(6866)] = 210365, + [SMALL_STATE(6867)] = 210369, + [SMALL_STATE(6868)] = 210373, + [SMALL_STATE(6869)] = 210377, + [SMALL_STATE(6870)] = 210381, + [SMALL_STATE(6871)] = 210385, + [SMALL_STATE(6872)] = 210389, + [SMALL_STATE(6873)] = 210393, + [SMALL_STATE(6874)] = 210397, + [SMALL_STATE(6875)] = 210401, + [SMALL_STATE(6876)] = 210405, + [SMALL_STATE(6877)] = 210409, + [SMALL_STATE(6878)] = 210413, + [SMALL_STATE(6879)] = 210417, + [SMALL_STATE(6880)] = 210421, + [SMALL_STATE(6881)] = 210425, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_blade, 0), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6621), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4975), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6726), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4953), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6709), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6708), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement_directive_body_with_optional_parameter, 1), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5430), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6710), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5389), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6725), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement_directive_body, 2), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(76), - [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1759), - [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4076), - [552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4078), - [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3968), - [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5404), - [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5403), - [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4457), - [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6723), - [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(372), - [573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(371), - [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4455), - [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4453), - [582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4452), - [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4451), - [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4446), - [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(998), - [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(721), - [597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4445), - [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4444), - [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4443), - [606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(665), - [609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(59), - [612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(58), - [615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(167), - [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4441), - [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4440), - [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4438), - [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3582), - [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4437), - [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), - [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4436), - [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4435), - [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4434), - [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4432), - [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4432), - [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5400), - [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(726), - [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4430), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4429), - [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4427), - [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4426), - [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4079), - [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4425), - [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4424), - [677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3947), - [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3946), - [683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3945), - [686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3944), - [689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4423), - [692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4422), - [695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4421), - [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(725), - [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(725), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement_directive_body, 1), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6718), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4666), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6717), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4729), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(86), - [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1676), - [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4108), - [941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4107), - [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3986), - [947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5414), - [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5413), - [953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4508), - [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6722), - [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(387), - [962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(386), - [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4507), - [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4506), - [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4505), - [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4503), - [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4502), - [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(907), - [983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(715), - [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4501), - [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4500), - [992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4499), - [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(670), - [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(62), - [1001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(61), - [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(176), - [1007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4496), - [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4495), - [1013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4494), - [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3579), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4493), - [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4492), - [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4491), - [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4490), - [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4489), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4489), - [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5381), - [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(675), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4487), - [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4486), - [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4485), - [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4484), - [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4101), - [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4482), - [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4481), - [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3914), - [1067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3927), - [1070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3931), - [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3935), - [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4474), - [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4467), - [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4466), - [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(710), - [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(710), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6726), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement_directive_body_with_optional_parameter, 2), - [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(90), - [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(845), - [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4075), - [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4073), - [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3967), - [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5406), - [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5407), - [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5152), - [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6709), - [1228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(576), - [1231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(575), - [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5151), - [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5150), - [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5148), - [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5147), - [1246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5146), - [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(759), - [1252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(685), - [1255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5145), - [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5144), - [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5142), - [1264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(662), - [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(19), - [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(20), - [1273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(157), - [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5141), - [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5140), - [1282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5139), - [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3581), - [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5137), - [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5136), - [1294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5135), - [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5134), - [1300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5133), - [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5133), - [1306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5303), - [1309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(713), - [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5131), - [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5130), - [1318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5129), - [1321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5128), - [1324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4087), - [1327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5127), - [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5125), - [1333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3943), - [1336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3869), - [1339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3868), - [1342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3849), - [1345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5124), - [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5123), - [1351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5121), - [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(720), - [1357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(720), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6719), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4635), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [1484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(101), - [1487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1593), - [1490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4153), - [1493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4152), - [1496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4005), - [1499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5421), - [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5420), - [1505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4565), - [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6721), - [1511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(400), - [1514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(399), - [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4564), - [1520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4563), - [1523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4562), - [1526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4561), - [1529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4560), - [1532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(815), - [1535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(691), - [1538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4559), - [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4556), - [1544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4555), - [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(667), - [1550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(65), - [1553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(64), - [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(177), - [1559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4538), - [1562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4537), - [1565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4536), - [1568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3578), - [1571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4535), - [1574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4534), - [1577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4532), - [1580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4531), - [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4528), - [1586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4528), - [1589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5391), - [1592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(678), - [1595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4524), - [1598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4523), - [1601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4522), - [1604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4517), - [1607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4146), - [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4516), - [1613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4515), - [1616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3798), - [1619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3814), - [1622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3817), - [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3819), - [1628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4514), - [1631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4513), - [1634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4512), - [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(674), - [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(674), - [1643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(102), - [1646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(929), - [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(4069), - [1652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(4166), - [1655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(4037), - [1658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5431), - [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5430), - [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5105), - [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(6710), - [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(561), - [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(560), - [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5099), - [1679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5092), - [1682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5091), - [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5090), - [1688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5085), - [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(763), - [1694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(698), - [1697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5084), - [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5083), - [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5082), - [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(663), - [1709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(23), - [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(26), - [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(148), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), - [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5079), - [1723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5077), - [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5076), - [1729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3576), - [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5075), - [1735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5074), - [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5073), - [1741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5071), - [1744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5070), - [1747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5070), - [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5317), - [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(672), - [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5068), - [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5066), - [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5065), - [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5064), - [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(4144), - [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5063), - [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5062), - [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3847), - [1780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3848), - [1783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3908), - [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3913), - [1789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5061), - [1792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5060), - [1795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5059), - [1798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(722), - [1801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(722), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(105), - [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(765), - [1814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4162), - [1817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4160), - [1820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3989), - [1823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5361), - [1826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5347), - [1829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5210), - [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6708), - [1835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(589), - [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(588), - [1841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5209), - [1844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5208), - [1847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5207), - [1850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5206), - [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5205), - [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(754), - [1859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(727), - [1862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5204), - [1865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5203), - [1868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5202), - [1871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(659), - [1874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(13), - [1877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(16), - [1880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(155), - [1883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5200), - [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5199), - [1889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5198), - [1892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3589), - [1895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5197), - [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5195), - [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5194), - [1904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5192), - [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5191), - [1910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5191), - [1913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5307), - [1916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(703), - [1919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5176), - [1922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5175), - [1925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5171), - [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5170), - [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4155), - [1934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5163), - [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5162), - [1940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3857), - [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3858), - [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3864), - [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3867), - [1952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5161), - [1955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5156), - [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5155), - [1961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(706), - [1964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(706), - [1967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(107), - [1970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1246), - [1973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4089), - [1976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4097), - [1979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3973), - [1982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5411), - [1985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5412), - [1988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4769), - [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6717), - [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(459), - [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(457), - [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4768), - [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4766), - [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4765), - [2009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4757), - [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4750), - [2015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(780), - [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(707), - [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4749), - [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4744), - [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4737), - [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(664), - [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(63), - [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2), - [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(165), - [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4736), - [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4735), - [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4730), - [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3580), - [2054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4729), - [2057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4728), - [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4727), - [2063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4726), - [2066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4725), - [2069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4725), - [2072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5364), - [2075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(699), - [2078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4722), - [2081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4721), - [2084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4720), - [2087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4719), - [2090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4099), - [2093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4718), - [2096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4716), - [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3892), - [2102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3891), - [2105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3888), - [2108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3887), - [2111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4715), - [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4714), - [2117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4713), - [2120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(692), - [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(692), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6724), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6720), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), - [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), - [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6723), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4432), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(121), - [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1842), - [2470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4103), - [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4105), - [2476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3974), - [2479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5397), - [2482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5396), - [2485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4418), - [2488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6724), - [2491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(357), - [2494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(356), - [2497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4417), - [2500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4414), - [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4413), - [2506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4411), - [2509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4410), - [2512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1089), - [2515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(673), - [2518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4403), - [2521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4396), - [2524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4395), - [2527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(660), - [2530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(55), - [2533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(54), - [2536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(171), - [2539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4390), - [2542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4386), - [2545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4385), - [2548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3583), - [2551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4384), - [2554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4383), - [2557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4382), - [2560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4381), - [2563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4380), - [2566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4380), - [2569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5408), - [2572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(700), - [2575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4379), - [2578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4378), - [2581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4377), - [2584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4376), - [2587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4110), - [2590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4374), - [2593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4831), - [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3925), - [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3924), - [2602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3923), - [2605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3922), - [2608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4397), - [2611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4398), - [2614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4409), - [2617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(712), - [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(712), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), - [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), - [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6727), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), - [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), - [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), - [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), - [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(124), - [2734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1922), - [2737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4116), - [2740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4118), - [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3977), - [2746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5390), - [2749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5389), - [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4428), - [2755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6725), - [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(341), - [2761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(340), - [2764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4431), - [2767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4433), - [2770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4439), - [2773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4442), - [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4454), - [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1179), - [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(705), - [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4458), - [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4463), - [2791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4468), - [2794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(661), - [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(52), - [2800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(51), - [2803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(170), - [2806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4483), - [2809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4497), - [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4498), - [2815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3586), - [2818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4510), - [2821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4473), - [2824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4527), - [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4530), - [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4539), - [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4539), - [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5416), - [2839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(702), - [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4550), - [2845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4551), - [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4552), - [2851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4553), - [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4126), - [2857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4554), - [2860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4557), - [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3904), - [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3903), - [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3901), - [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3900), - [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4558), - [2878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4566), - [2881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4567), - [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(679), - [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(679), - [2890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(125), - [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1178), - [2896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4138), - [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4140), - [2902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3983), - [2905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5379), - [2908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5377), - [2911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4588), - [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6726), - [2917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(327), - [2920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(326), - [2923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4589), - [2926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4592), - [2929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4593), - [2932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4596), - [2935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4600), - [2938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1266), - [2941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(697), - [2944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4607), - [2947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4610), - [2950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4611), - [2953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(668), - [2956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(49), - [2959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(48), - [2962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(168), - [2965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4613), - [2968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4618), - [2971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4619), - [2974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3587), - [2977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4625), - [2980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4630), - [2983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4639), - [2986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4640), - [2989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4681), - [2992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4681), - [2995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5418), - [2998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(676), - [3001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4525), - [3004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4663), - [3007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4667), - [3010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4677), - [3013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4141), - [3016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4682), - [3019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4698), - [3022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3885), - [3025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3884), - [3028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3883), - [3031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3877), - [3034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4712), - [3037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4723), - [3040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4724), - [3043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(683), - [3046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(683), - [3049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(126), - [3052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1092), - [3055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4143), - [3058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4148), - [3061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3987), - [3064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5367), - [3067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5366), - [3070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4742), - [3073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6727), - [3076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(314), - [3079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(313), - [3082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4747), - [3085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4752), - [3088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4753), - [3091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4756), - [3094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4758), - [3097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1355), - [3100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(690), - [3103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4767), - [3106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4771), - [3109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4652), - [3112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(671), - [3115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(46), - [3118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(45), - [3121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(174), - [3124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4809), - [3127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4813), - [3130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4814), - [3133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3588), - [3136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4818), - [3139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4823), - [3142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4824), - [3145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4827), - [3148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4828), - [3151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4828), - [3154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5424), - [3157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(680), - [3160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4373), - [3163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4838), - [3166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4850), - [3169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4865), - [3172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4150), - [3175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4876), - [3178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4880), - [3181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3862), - [3184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3861), - [3187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3860), - [3190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3859), - [3193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4882), - [3196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4884), - [3199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4885), - [3202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(688), - [3205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(688), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [3212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(129), - [3215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1508), - [3218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4184), - [3221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4185), - [3224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4028), - [3227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5429), - [3230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5428), - [3233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4606), - [3236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6720), - [3239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(413), - [3242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(412), - [3245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4605), - [3248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4603), - [3251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4602), - [3254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4601), - [3257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4599), - [3260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(999), - [3263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(724), - [3266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4597), - [3269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4595), - [3272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4594), - [3275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(658), - [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(67), - [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(66), - [3284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(183), - [3287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4587), - [3290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4586), - [3293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4585), - [3296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3577), - [3299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4584), - [3302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4583), - [3305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4582), - [3308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4580), - [3311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4579), - [3314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4579), - [3317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5383), - [3320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(682), - [3323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4577), - [3326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4576), - [3329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4574), - [3332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4573), - [3335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4181), - [3338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4572), - [3341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4571), - [3344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3710), - [3347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3730), - [3350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3745), - [3353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3746), - [3356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4570), - [3359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4569), - [3362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4568), - [3365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(677), - [3368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(677), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), - [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [3487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(136), - [3490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1423), - [3493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4113), - [3496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4114), - [3499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4056), - [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5441), - [3505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5438), - [3508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4650), - [3511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6719), - [3514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(428), - [3517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(427), - [3520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4649), - [3523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4648), - [3526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4647), - [3529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4645), - [3532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4644), - [3535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(980), - [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(708), - [3541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4643), - [3544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4642), - [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4641), - [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(669), - [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(69), - [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(68), - [3559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(181), - [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4638), - [3565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4637), - [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4636), - [3571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3574), - [3574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4635), - [3577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4634), - [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4633), - [3583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4632), - [3586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4631), - [3589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4631), - [3592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5374), - [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(687), - [3598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4629), - [3601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4628), - [3604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4627), - [3607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4626), - [3610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4121), - [3613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4624), - [3616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4623), - [3619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3657), - [3622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3658), - [3625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3677), - [3628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3681), - [3631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4616), - [3634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4615), - [3637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4609), - [3640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(681), - [3643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(681), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6721), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [3768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(146), - [3771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1335), - [3774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4151), - [3777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4149), - [3780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4044), - [3783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5435), - [3786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5436), - [3789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4709), - [3792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6718), - [3795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(445), - [3798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(443), - [3801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4708), - [3804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4707), - [3807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4706), - [3810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4705), - [3813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4704), - [3816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(861), - [3819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(723), - [3822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4703), - [3825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4702), - [3828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4701), - [3831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(666), - [3834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(71), - [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(70), - [3840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(154), - [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4697), - [3846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4695), - [3849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4694), - [3852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3575), - [3855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4790), - [3858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4678), - [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4676), - [3864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4673), - [3867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4672), - [3870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4672), - [3873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5369), - [3876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(693), - [3879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4666), - [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4665), - [3885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4664), - [3888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4659), - [3891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4122), - [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4658), - [3897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4657), - [3900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3656), - [3903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3649), - [3906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3647), - [3909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3646), - [3912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4656), - [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4655), - [3918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4654), - [3921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(686), - [3924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(686), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5440), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), - [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6738), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), - [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5100), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4861), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4773), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), - [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6707), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), - [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), - [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), - [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), - [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6706), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), - [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), - [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), - [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), - [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6737), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5120), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), - [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6712), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), - [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive_body_with_parameter, 1), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), - [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), - [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4992), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4982), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), - [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), - [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), - [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6729), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), - [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), - [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), - [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5108), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [4817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(257), - [4820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2992), - [4823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4123), - [4826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4117), - [4829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4050), - [4832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5439), - [4835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5440), - [4838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5273), - [4841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(6738), - [4844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(470), - [4847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(474), - [4850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5282), - [4853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5284), - [4856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5287), - [4859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5288), - [4862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4680), - [4865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5153), - [4868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5100), - [4871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5211), - [4874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(730), - [4877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(7), - [4880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(6), - [4883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(182), - [4886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5000), - [4889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4981), - [4892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4877), - [4895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3573), - [4898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4861), - [4901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4841), - [4904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4826), - [4907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4808), - [4910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4773), - [4913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4773), - [4916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5354), - [4919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), - [4921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(957), - [4924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4772), - [4927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4770), - [4930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4762), - [4933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4743), - [4936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4165), - [4939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4710), - [4942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4685), - [4945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3813), - [4948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3919), - [4951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3907), - [4954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3905), - [4957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4684), - [4960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4668), - [4963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4651), - [4966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(949), - [4969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(949), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive_body_with_parameter, 2), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [5002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(268), - [5005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3353), - [5008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4130), - [5011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4131), - [5014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4022), - [5017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5310), - [5020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5316), - [5023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5262), - [5026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6707), - [5029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(602), - [5032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(601), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), - [5037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5261), - [5040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5260), - [5043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5259), - [5046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5258), - [5049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5257), - [5052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5256), - [5055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5254), - [5058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5253), - [5061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(742), - [5064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(10), - [5067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(11), - [5070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(151), - [5073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5237), - [5076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5236), - [5079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5231), - [5082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3597), - [5085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5230), - [5088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5229), - [5091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5225), - [5094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5224), - [5097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5223), - [5100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5223), - [5103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5291), - [5106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(761), - [5109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5222), - [5112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5221), - [5115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5220), - [5118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5218), - [5121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4136), - [5124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5217), - [5127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5216), - [5130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3736), - [5133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3742), - [5136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3750), - [5139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3751), - [5142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5215), - [5145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5214), - [5148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5212), - [5151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(762), - [5154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(762), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), - [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6713), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4940), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [5427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4932), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), - [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4927), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), - [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [5483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(350), - [5486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2026), - [5489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4133), - [5492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4128), - [5495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3978), - [5498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5387), - [5501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5388), - [5504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4807), - [5507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6716), - [5510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(475), - [5513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(473), - [5516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4806), - [5519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4801), - [5522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4800), - [5525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4799), - [5528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4798), - [5531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4797), - [5534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4796), - [5537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4795), - [5540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(737), - [5543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(57), - [5546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(60), - [5549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(178), - [5552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4792), - [5555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4791), - [5558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4679), - [5561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3585), - [5564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4789), - [5567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4787), - [5570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4786), - [5573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4785), - [5576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4784), - [5579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4784), - [5582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5353), - [5585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1161), - [5588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4782), - [5591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4781), - [5594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4780), - [5597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4779), - [5600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4124), - [5603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4778), - [5606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4777), - [5609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3909), - [5612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3910), - [5615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3911), - [5618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3912), - [5621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4776), - [5624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4775), - [5627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4774), - [5630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1256), - [5633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1256), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [5678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(366), - [5681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1943), - [5684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4091), - [5687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4090), - [5690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4040), - [5693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5298), - [5696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5301), - [5699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5056), - [5702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6711), - [5705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(546), - [5708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(545), - [5711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5053), - [5714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5052), - [5717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5050), - [5720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5049), - [5723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5035), - [5726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5034), - [5729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5033), - [5732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5031), - [5735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(740), - [5738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(29), - [5741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(32), - [5744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(163), - [5747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5029), - [5750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5028), - [5753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5027), - [5756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3600), - [5759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5025), - [5762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5021), - [5765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5020), - [5768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5019), - [5771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5014), - [5774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5014), - [5777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5331), - [5780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1208), - [5783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5012), - [5786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5011), - [5789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5010), - [5792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5009), - [5795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4080), - [5798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5008), - [5801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5006), - [5804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3680), - [5807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3678), - [5810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3676), - [5813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3639), - [5816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5005), - [5819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5004), - [5822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5003), - [5825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1106), - [5828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1106), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [5989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(422), - [5992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2112), - [5995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4147), - [5998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4172), - [6001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3997), - [6004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5355), - [6007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5357), - [6010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4860), - [6013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6715), - [6016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(488), - [6019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(487), - [6022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4858), - [6025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4857), - [6028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4856), - [6031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4855), - [6034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4854), - [6037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4853), - [6040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4852), - [6043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4851), - [6046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(733), - [6049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(53), - [6052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(56), - [6055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(175), - [6058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4849), - [6061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4848), - [6064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4847), - [6067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3591), - [6070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4846), - [6073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4845), - [6076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4844), - [6079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4843), - [6082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4842), - [6085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4842), - [6088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5348), - [6091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1070), - [6094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4840), - [6097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4839), - [6100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4837), - [6103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4836), - [6106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4170), - [6109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4829), - [6112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4822), - [6115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3833), - [6118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3955), - [6121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3840), - [6124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3841), - [6127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4821), - [6130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4815), - [6133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4812), - [6136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1169), - [6139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1169), - [6142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_blade, 1), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5359), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), - [6182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6728), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4909), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4955), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5023), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), - [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), - [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6714), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4912), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), - [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4908), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), - [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4892), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), - [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), - [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), - [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6711), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5053), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), - [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), - [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5025), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), - [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5014), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [6544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(460), - [6547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3484), - [6550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4134), - [6553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4135), - [6556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4055), - [6559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5375), - [6562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5373), - [6565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4999), - [6568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6712), - [6571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(530), - [6574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(529), - [6577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4998), - [6580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4997), - [6583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4996), - [6586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4995), - [6589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4994), - [6592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4993), - [6595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4992), - [6598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4991), - [6601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(747), - [6604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(35), - [6607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(38), - [6610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(160), - [6613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4989), - [6616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4988), - [6619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4987), - [6622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3601), - [6625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4986), - [6628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4985), - [6631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4984), - [6634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4983), - [6637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4982), - [6640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4982), - [6643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5333), - [6646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(795), - [6649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4979), - [6652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4978), - [6655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4971), - [6658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4970), - [6661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4142), - [6664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4964), - [6667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4963), - [6670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3630), - [6673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3631), - [6676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3632), - [6679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3633), - [6682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4962), - [6685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4960), - [6688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4957), - [6691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(895), - [6694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(895), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [6835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(510), - [6838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3251), - [6841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4072), - [6844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4179), - [6847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4052), - [6850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5350), - [6853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5360), - [6856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5106), - [6859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6706), - [6862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(617), - [6865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(616), - [6868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5110), - [6871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5132), - [6874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5174), - [6877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5181), - [6880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5182), - [6883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5184), - [6886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5286), - [6889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5285), - [6892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(748), - [6895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5), - [6898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(8), - [6901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(149), - [6904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5281), - [6907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5280), - [6910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5278), - [6913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3602), - [6916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5277), - [6919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5276), - [6922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5275), - [6925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5274), - [6928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5272), - [6931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5272), - [6934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5295), - [6937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(757), - [6940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5271), - [6943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5270), - [6946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5269), - [6949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5268), - [6952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4119), - [6955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5267), - [6958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5266), - [6961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3619), - [6964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3722), - [6967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3863), - [6970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3886), - [6973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5265), - [6976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5264), - [6979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5263), - [6982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(758), - [6985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(758), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), - [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), - [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6730), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), - [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5279), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), - [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), - [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), - [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6715), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4858), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [7176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), - [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [7262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(538), - [7265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2172), - [7268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4164), - [7271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4167), - [7274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3994), - [7277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5290), - [7280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5359), - [7283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4897), - [7286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6728), - [7289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(301), - [7292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(300), - [7295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4898), - [7298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4899), - [7301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4783), - [7304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4909), - [7307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4915), - [7310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4930), - [7313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4955), - [7316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4966), - [7319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(746), - [7322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(43), - [7325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(42), - [7328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(147), - [7331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4969), - [7334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4980), - [7337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4990), - [7340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3590), - [7343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5007), - [7346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5015), - [7349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5018), - [7352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5022), - [7355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5023), - [7358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5023), - [7361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5432), - [7364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1005), - [7367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5032), - [7370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4913), - [7373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5037), - [7376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5039), - [7379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4168), - [7382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5040), - [7385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5044), - [7388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3842), - [7391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3808), - [7394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3834), - [7397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3608), - [7400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5045), - [7403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5046), - [7406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5047), - [7409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1001), - [7412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1001), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [7455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(554), - [7458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3473), - [7461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4086), - [7464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4088), - [7467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4035), - [7470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5302), - [7473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5292), - [7476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4952), - [7479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6713), - [7482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(514), - [7485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(513), - [7488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4950), - [7491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4949), - [7494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4948), - [7497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4943), - [7500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4942), - [7503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4941), - [7506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4940), - [7509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4939), - [7512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(736), - [7515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(41), - [7518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(44), - [7521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(169), - [7524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4935), - [7527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4934), - [7530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4933), - [7533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3604), - [7536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4932), - [7539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4931), - [7542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4929), - [7545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4928), - [7548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4927), - [7551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4927), - [7554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5340), - [7557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(887), - [7560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4925), - [7563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4924), - [7566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4923), - [7569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4922), - [7572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4092), - [7575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4921), - [7578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4920), - [7581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3696), - [7584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3697), - [7587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3698), - [7590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3699), - [7593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4919), - [7596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4918), - [7599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4917), - [7602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(987), - [7605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(987), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [7770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), - [7778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), - [7782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6731), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [7788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5024), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [7794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4951), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), - [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4936), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), - [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [7820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [7830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [7836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [7864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [7894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(622), - [7897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2254), - [7900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4173), - [7903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4174), - [7906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4002), - [7909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5351), - [7912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5349), - [7915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5051), - [7918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6729), - [7921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(288), - [7924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(287), - [7927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5054), - [7930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5055), - [7933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5057), - [7936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5067), - [7939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5069), - [7942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5078), - [7945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5080), - [7948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5081), - [7951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(744), - [7954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(40), - [7957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(39), - [7960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(164), - [7963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5097), - [7966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5098), - [7969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5101), - [7972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3592), - [7975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5102), - [7978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5103), - [7981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5104), - [7984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5107), - [7987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5108), - [7990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5108), - [7993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5434), - [7996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1002), - [7999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5112), - [8002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5126), - [8005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5138), - [8008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5165), - [8011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4175), - [8014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5178), - [8017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5179), - [8020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3812), - [8023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3807), - [8026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3806), - [8029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3805), - [8032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5183), - [8035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5190), - [8038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5193), - [8041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(995), - [8044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(995), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [8055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), - [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), - [8063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6732), - [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4469), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [8085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), - [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [8105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), - [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), - [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [8121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), - [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [8149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [8161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [8169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), - [8173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6716), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [8179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), - [8185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4799), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [8191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4796), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), - [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [8211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), - [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), - [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), - [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [8221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), - [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), - [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [8227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), - [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), - [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), - [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), - [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), - [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), - [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [8255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [8261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(629), - [8264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2336), - [8267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4176), - [8270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4178), - [8273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4007), - [8276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5344), - [8279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5343), - [8282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5228), - [8285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6730), - [8288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(272), - [8291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(271), - [8294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5232), - [8297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5233), - [8300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5234), - [8303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5238), - [8306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5240), - [8309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5241), - [8312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5242), - [8315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5243), - [8318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(743), - [8321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(37), - [8324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(36), - [8327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(162), - [8330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5248), - [8333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5249), - [8336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5255), - [8339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3593), - [8342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5279), - [8345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5283), - [8348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5289), - [8351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5164), - [8354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4755), - [8357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4755), - [8360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5423), - [8363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(996), - [8366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5219), - [8369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5201), - [8372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5196), - [8375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5186), - [8378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4180), - [8381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5177), - [8384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5173), - [8387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3792), - [8390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3791), - [8393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3790), - [8396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3789), - [8399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5168), - [8402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5036), - [8405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5122), - [8408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(991), - [8411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(991), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [8428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [8436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [8440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6733), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [8446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4477), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [8478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [8494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [8522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [8528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(635), - [8531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2418), - [8534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4183), - [8537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4182), - [8540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4011), - [8543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5335), - [8546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5334), - [8549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5227), - [8552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6731), - [8555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(256), - [8558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(255), - [8561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5024), - [8564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4973), - [8567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4954), - [8570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4951), - [8573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4938), - [8576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4937), - [8579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4936), - [8582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4894), - [8585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(741), - [8588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(34), - [8591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(33), - [8594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(161), - [8597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4763), - [8600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4761), - [8603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4760), - [8606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3594), - [8609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4748), - [8612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4738), - [8615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4732), - [8618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4696), - [8621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4675), - [8624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4675), - [8627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5419), - [8630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(992), - [8633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4671), - [8636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4670), - [8639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5026), - [8642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4578), - [8645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4177), - [8648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4547), - [8651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4545), - [8654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3776), - [8657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3775), - [8660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3774), - [8663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3773), - [8666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4544), - [8669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4543), - [8672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4529), - [8675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(986), - [8678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(986), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [8689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), - [8697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5305), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [8701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6734), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [8707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), - [8713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), - [8719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [8739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [8749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [8755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), - [8783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [8789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(639), - [8792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2500), - [8795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4159), - [8798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4158), - [8801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3996), - [8804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5325), - [8807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5321), - [8810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4488), - [8813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6732), - [8816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(242), - [8819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(241), - [8822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4476), - [8825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4394), - [8828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4471), - [8831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4469), - [8834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4412), - [8837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4405), - [8840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4375), - [8843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4387), - [8846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(739), - [8849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(31), - [8852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(30), - [8855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(159), - [8858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5048), - [8861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4393), - [8864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4399), - [8867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3596), - [8870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4402), - [8873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4404), - [8876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4406), - [8879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4407), - [8882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4408), - [8885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4408), - [8888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5402), - [8891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(988), - [8894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4416), - [8897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4392), - [8900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4447), - [8903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4448), - [8906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4154), - [8909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4449), - [8912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4450), - [8915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3748), - [8918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3747), - [8921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3744), - [8924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3743), - [8927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4456), - [8930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4460), - [8933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4461), - [8936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(982), - [8939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(982), - [8942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(640), - [8945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(1936), - [8948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4106), - [8951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4098), - [8954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3971), - [8957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5330), - [8960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5329), - [8963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5017), - [8966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(6621), - [8969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(630), - [8972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(230), - [8975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5157), - [8978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5154), - [8981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4976), - [8984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4975), - [8987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4388), - [8990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4832), - [8993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4830), - [8996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4820), - [8999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(745), - [9002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(21), - [9005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(22), - [9008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(156), - [9011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4690), - [9014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4688), - [9017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4686), - [9020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3584), - [9023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4518), - [9026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4511), - [9029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4391), - [9032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4389), - [9035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4968), - [9038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4968), - [9041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5410), - [9044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(751), - [9047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4825), - [9050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5247), - [9053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5245), - [9056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5244), - [9059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4137), - [9062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5094), - [9065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5093), - [9068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3706), - [9071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3707), - [9074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3957), - [9077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3756), - [9080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4793), - [9083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4788), - [9086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4612), - [9089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(752), - [9092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(752), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [9099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), - [9107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [9111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6735), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [9117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), - [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [9123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [9129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), - [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), - [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [9149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), - [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), - [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [9165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), - [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), - [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), - [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), - [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), - [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [9193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [9199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(643), - [9202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2582), - [9205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4129), - [9208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4127), - [9211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4023), - [9214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5312), - [9217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5311), - [9220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4464), - [9223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6733), - [9226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(229), - [9229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(228), - [9232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4465), - [9235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4470), - [9238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4475), - [9241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4477), - [9244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4478), - [9247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4479), - [9250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4480), - [9253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4504), - [9256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(728), - [9259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(28), - [9262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(27), - [9265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(158), - [9268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4519), - [9271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4520), - [9274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4521), - [9277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3598), - [9280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4533), - [9283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4541), - [9286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4546), - [9289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4420), - [9292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4575), - [9295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4575), - [9298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5382), - [9301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(983), - [9304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4590), - [9307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4591), - [9310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4598), - [9313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4604), - [9316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4120), - [9319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4608), - [9322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4617), - [9325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3721), - [9328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3720), - [9331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3719), - [9334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3718), - [9337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4620), - [9340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4621), - [9343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4622), - [9346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(977), - [9349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(977), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [9356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [9364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), - [9368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6736), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [9374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4945), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), - [9380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4953), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), - [9386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4967), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [9406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5016), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), - [9416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), - [9450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [9458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(647), - [9461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2664), - [9464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4104), - [9467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4102), - [9470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4031), - [9473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5306), - [9476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5305), - [9479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4646), - [9482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6734), - [9485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(215), - [9488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(214), - [9491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4653), - [9494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4660), - [9497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4661), - [9500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4662), - [9503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4669), - [9506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4548), - [9509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4740), - [9512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4683), - [9515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(735), - [9518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(25), - [9521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(24), - [9524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(153), - [9527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4691), - [9530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4692), - [9533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4693), - [9536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3599), - [9539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4699), - [9542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4700), - [9545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4711), - [9548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4717), - [9551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4731), - [9554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4731), - [9557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5363), - [9560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(978), - [9563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4733), - [9566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4734), - [9569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4739), - [9572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4372), - [9575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4100), - [9578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4745), - [9581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4746), - [9584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3704), - [9587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3703), - [9590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3702), - [9593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3701), - [9596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4751), - [9599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4754), - [9602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4759), - [9605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(972), - [9608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(972), - [9611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(648), - [9614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2690), - [9617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4161), - [9620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4163), - [9623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4012), - [9626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5327), - [9629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5328), - [9632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4914), - [9635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6714), - [9638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(501), - [9641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(500), - [9644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4912), - [9647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4911), - [9650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4910), - [9653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4908), - [9656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4907), - [9659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4893), - [9662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4892), - [9665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4891), - [9668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(738), - [9671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(47), - [9674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(50), - [9677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(173), - [9680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4890), - [9683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4889), - [9686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4887), - [9689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3595), - [9692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4886), - [9695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4883), - [9698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4881), - [9701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4879), - [9704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4878), - [9707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4878), - [9710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5346), - [9713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(979), - [9716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4872), - [9719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4871), - [9722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4870), - [9725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4869), - [9728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4169), - [9731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4868), - [9734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4867), - [9737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3767), - [9740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3768), - [9743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3769), - [9746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3770), - [9749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4866), - [9752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4864), - [9755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4863), - [9758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1078), - [9761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1078), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [9768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), - [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), - [9776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), - [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [9780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6739), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [9786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), - [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [9792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), - [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [9798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), - [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), - [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [9818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), - [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), - [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), - [9828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), - [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), - [9832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [9834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), - [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), - [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), - [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), - [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), - [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), - [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), - [9862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [9868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(651), - [9871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2746), - [9874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4082), - [9877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4081), - [9880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4043), - [9883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5293), - [9886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5294), - [9889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4764), - [9892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6735), - [9895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(199), - [9898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(198), - [9901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4802), - [9904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4804), - [9907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4805), - [9910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4810), - [9913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4811), - [9916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4816), - [9919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4817), - [9922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4819), - [9925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(734), - [9928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(18), - [9931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(17), - [9934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(152), - [9937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4833), - [9940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4834), - [9943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4835), - [9946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3606), - [9949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4859), - [9952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4862), - [9955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4873), - [9958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4874), - [9961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4875), - [9964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4875), - [9967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5345), - [9970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(973), - [9973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4888), - [9976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4896), - [9979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4900), - [9982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4901), - [9985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4077), - [9988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4903), - [9991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4904), - [9994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3675), - [9997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3674), - [10000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3673), - [10003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3667), - [10006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4905), - [10009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4906), - [10012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4916), - [10015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(968), - [10018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(968), - [10021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(652), - [10024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2828), - [10027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4156), - [10030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4157), - [10033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4051), - [10036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5323), - [10039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5324), - [10042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4803), - [10045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6736), - [10048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(187), - [10051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(186), - [10054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4945), - [10057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4946), - [10060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4947), - [10063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4953), - [10066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4956), - [10069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4959), - [10072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4967), - [10075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4972), - [10078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(732), - [10081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(15), - [10084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(14), - [10087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(150), - [10090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4977), - [10093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5001), - [10096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5002), - [10099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3605), - [10102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5016), - [10105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5038), - [10108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5041), - [10111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5042), - [10114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5043), - [10117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5043), - [10120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5320), - [10123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(969), - [10126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5058), - [10129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4944), - [10132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5072), - [10135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5086), - [10138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4171), - [10141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5087), - [10144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5088), - [10147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3654), - [10150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3653), - [10153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3652), - [10156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3651), - [10159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5089), - [10162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5095), - [10165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5096), - [10168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(962), - [10171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(962), - [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [10176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(654), - [10179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2910), - [10182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4115), - [10185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4111), - [10188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4065), - [10191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5394), - [10194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5395), - [10197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5109), - [10200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6737), - [10203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(267), - [10206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(373), - [10209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5113), - [10212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5114), - [10215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5116), - [10218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5117), - [10221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5118), - [10224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5119), - [10227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5120), - [10230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5143), - [10233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(731), - [10236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(12), - [10239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(9), - [10242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(166), - [10245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5158), - [10248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5159), - [10251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5160), - [10254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3572), - [10257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5166), - [10260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5169), - [10263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5172), - [10266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5180), - [10269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5185), - [10272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5185), - [10275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5318), - [10278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(963), - [10281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5188), - [10284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5189), - [10287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5187), - [10290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5213), - [10293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4084), - [10296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5239), - [10299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5246), - [10302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3614), - [10305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3613), - [10308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3611), - [10311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3610), - [10314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5250), - [10317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5251), - [10320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5252), - [10323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(956), - [10326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(956), - [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [10335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(657), - [10338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3074), - [10341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4132), - [10344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4070), - [10347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4058), - [10350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5378), - [10353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5376), - [10356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4549), - [10359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6739), - [10362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(562), - [10365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(656), - [10368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4542), - [10371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4526), - [10374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4472), - [10377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4462), - [10380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4459), - [10383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4419), - [10386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4401), - [10389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4400), - [10392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(729), - [10395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4), - [10398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3), - [10401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(180), - [10404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4509), - [10407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4540), - [10410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4581), - [10413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3603), - [10416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4674), - [10419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4687), - [10422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4689), - [10425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4794), - [10428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4895), - [10431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4895), - [10434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5425), - [10437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(951), - [10440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4902), - [10443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4958), - [10446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4965), - [10449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5013), - [10452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4145), - [10455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5030), - [10458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5111), - [10461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3634), - [10464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3635), - [10467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3636), - [10470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3637), - [10473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5115), - [10476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5149), - [10479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5226), - [10482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(947), - [10485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(947), - [10488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_operator, 1, .production_id = 1), - [10490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_operator, 1, .production_id = 1), - [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [10496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_keyword, 1), - [10498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_keyword, 1), - [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [10502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1), - [10504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1), - [10506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), - [10514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [10520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [10526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [10530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [10534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), - [10536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), - [10538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(684), - [10541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(684), - [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [10546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [10552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [10556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(689), - [10559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(689), - [10562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), - [10568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(694), - [10571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(694), - [10574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(695), - [10577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(695), - [10580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(696), - [10583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(696), - [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [10588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(701), - [10591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(701), - [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [10598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(704), - [10601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(704), - [10604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [10608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(709), - [10611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(709), - [10614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [10618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(711), - [10621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(711), - [10624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [10628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(714), - [10631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(714), - [10634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(716), - [10637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(716), - [10640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(717), - [10643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(717), - [10646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(718), - [10649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(718), - [10652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(719), - [10655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(719), - [10658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [10664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [10668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [10672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop, 1), - [10674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop, 1), - [10676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if, 3), - [10678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if, 3), - [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [10682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [10686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_keyword, 2), - [10688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_keyword, 2), - [10690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(755), - [10693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(755), - [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [10698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [10704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [10708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword, 1), - [10710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword, 1), - [10712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_php_statement, 1), - [10714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_php_statement, 1), - [10716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stack, 1), - [10718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stack, 1), - [10720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional, 1), - [10722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional, 1), - [10724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_envoy, 1), - [10726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_envoy, 1), - [10728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_livewire, 1), - [10730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_livewire, 1), - [10732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__escaped, 2), - [10734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__escaped, 2), - [10736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unescaped, 2), - [10738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unescaped, 2), - [10740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_line_raw, 2), - [10742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_line_raw, 2), - [10744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_raw, 2, .production_id = 1), - [10746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_raw, 2, .production_id = 1), - [10748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2), - [10750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2), - [10752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_directive, 2), - [10754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_directive, 2), - [10756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_once, 2), - [10758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_once, 2), - [10760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 2), - [10762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 2), - [10764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__envoy_error, 2), - [10766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__envoy_error, 2), - [10768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_operator, 2, .production_id = 1), - [10770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_operator, 2, .production_id = 1), - [10772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__setup, 2), - [10774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__setup, 2), - [10776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__before, 2), - [10778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__before, 2), - [10780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__after, 2), - [10782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__after, 2), - [10784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__success, 2), - [10786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__success, 2), - [10788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__finished, 2), - [10790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__finished, 2), - [10792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__escaped, 3), - [10794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__escaped, 3), - [10796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unescaped, 3), - [10798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unescaped, 3), - [10800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_authorization, 1), - [10802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_authorization, 1), - [10804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_line_raw, 3), - [10806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_line_raw, 3), - [10808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment, 3), - [10810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment, 3), - [10812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_once, 3), - [10814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_once, 3), - [10816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3), - [10818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3), - [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [10822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__push, 3), - [10824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__push, 3), - [10826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pushOnce, 3), - [10828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pushOnce, 3), - [10830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pushIf, 3), - [10832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pushIf, 3), - [10834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__prepend, 3), - [10836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__prepend, 3), - [10838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__prependOnce, 3), - [10840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__prependOnce, 3), - [10842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unless, 3), - [10844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unless, 3), - [10846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__isset, 3), - [10848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__isset, 3), - [10850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty, 3), - [10852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty, 3), - [10854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__auth, 3), - [10856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__auth, 3), - [10858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__guest, 3), - [10860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__guest, 3), - [10862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__production, 3), - [10864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__production, 3), - [10866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__env, 3), - [10868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__env, 3), - [10870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hasSection, 3), - [10872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hasSection, 3), - [10874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sectionMissing, 3), - [10876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sectionMissing, 3), - [10878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__error, 3), - [10880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__error, 3), - [10882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__envoy_error, 3), - [10884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__envoy_error, 3), - [10886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cannot, 3), - [10888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cannot, 3), - [10890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__canany, 3), - [10892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__canany, 3), - [10894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__feature, 3), - [10896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__feature, 3), - [10898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__custom, 3), - [10900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__custom, 3), - [10902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch, 3), - [10904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch, 3), - [10906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for, 3), - [10908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for, 3), - [10910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach, 3), - [10912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach, 3), - [10914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__forelse, 3), - [10916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__forelse, 3), - [10918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__while, 3), - [10920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__while, 3), - [10922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__setup, 3), - [10924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__setup, 3), - [10926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__task, 3), - [10928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__task, 3), - [10930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__story, 3), - [10932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__story, 3), - [10934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive_parameter, 2), - [10936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__directive_parameter, 2), - [10938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__before, 3), - [10940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__before, 3), - [10942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__after, 3), - [10944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__after, 3), - [10946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__success, 3), - [10948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__success, 3), - [10950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__finished, 3), - [10952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__finished, 3), - [10954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__persist, 3), - [10956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__persist, 3), - [10958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__teleport, 3), - [10960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__teleport, 3), - [10962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__volt, 3), - [10964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__volt, 3), - [10966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 4, .production_id = 2), - [10968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 4, .production_id = 2), - [10970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inlineSection, 4, .production_id = 3), - [10972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inlineSection, 4, .production_id = 3), - [10974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch, 4), - [10976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch, 4), - [10978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 5, .production_id = 2), - [10980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 5, .production_id = 2), - [10982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inlineSection, 5, .production_id = 4), - [10984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inlineSection, 5, .production_id = 4), - [10986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch, 5), - [10988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch, 5), - [10990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 6, .production_id = 5), - [10992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 6, .production_id = 5), - [10994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inlineSection, 6, .production_id = 6), - [10996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inlineSection, 6, .production_id = 6), - [10998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 5, .production_id = 5), - [11000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 5, .production_id = 5), - [11002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch, 6), - [11004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch, 6), - [11006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(869), - [11009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(869), - [11012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive_parameter, 3), - [11014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__directive_parameter, 3), - [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [11018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [11022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__can, 3), - [11024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__can, 3), - [11026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(938), - [11029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(938), - [11032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(939), - [11035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(939), - [11038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(940), - [11041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(940), - [11044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(941), - [11047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(941), - [11050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(942), - [11053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(942), - [11056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(943), - [11059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(943), - [11062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(944), - [11065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(944), - [11068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(945), - [11071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(945), - [11074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(946), - [11077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(946), - [11080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [11084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(948), - [11087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(948), - [11090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [11094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(950), - [11097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(950), - [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [11102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(955), - [11105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(955), - [11108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [11114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [11120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [11132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [11140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [11146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [11150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [11156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [11162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [11168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [11174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1003), - [11177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1003), - [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [11184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [11188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [11192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1150), - [11195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1150), - [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [11200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [11206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1236), - [11209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1236), - [11212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [11216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1535), - [11219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1535), - [11222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1702), - [11225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1702), - [11228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1785), - [11231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1785), - [11234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1868), - [11237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1868), - [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), - [11244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), - [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [11320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), - [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [11330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), - [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), - [11340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [11348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), - [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [11368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), - [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [11374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), - [11376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(5338), - [11379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4109), - [11382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4109), - [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [11655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [11663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [11803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [11809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(5380), - [11812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4112), - [11815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4112), - [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [11928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(5342), - [11931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4085), - [11934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4085), - [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [11953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [11967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [11973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [11987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(5386), - [11990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4093), - [11993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4093), - [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [12148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(5427), - [12151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4074), - [12154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4074), - [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [12161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [12163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [12169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), - [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [12181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), - [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [12187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [12205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [12207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [12211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [12213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [12215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [12219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [12313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [12343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [12347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [12349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [12351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [12353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [12355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [12357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [12367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [12369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [12371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [12375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [12379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [12381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [12383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [12385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), - [12387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4068), - [12390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4068), - [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [12397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), - [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [12403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), - [12405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4071), - [12408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4071), - [12411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [12413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [12415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_php_only, 1), - [12417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), - [12419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [12421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [12423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [12425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [12427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), - [12429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [12431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [12433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [12437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [12439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [12441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4083), - [12444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4083), - [12447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [12449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), - [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [12467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), - [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [12471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4094), - [12474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4094), - [12477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4095), - [12480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4095), - [12483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4096), - [12486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4096), - [12489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [12491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [12493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [12495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [12497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [12499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [12513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), - [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [12521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), - [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [12525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [12527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [12529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [12531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [12551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), - [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [12563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [12573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [12575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [12577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [12579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4139), - [12582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4139), - [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [12591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [12593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [12597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [12599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [12603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [12605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [12607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [12619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [12623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [12627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [12629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [12633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [12635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [12637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [12639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [12641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [12643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [12647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [12653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [12655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [12657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [12659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [12661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [12665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [12667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [12669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [12671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [12673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [12675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [12677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [12679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), - [12681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4187), - [12684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4187), - [12687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4189), - [12690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4189), - [12693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [12695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), - [12697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), - [12699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [12701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4193), - [12704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4193), - [12707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4194), - [12710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4194), - [12713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), - [12715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [12717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), - [12719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [12721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [12723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [12725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), - [12727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [12729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), - [12731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), - [12733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [12735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [12737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), - [12739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), - [12741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), - [12743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [12745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [12751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [12753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [12755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [12757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [12759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [12761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [12763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [12765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [12767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [12769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__notification, 2), - [12771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__notification, 2), - [12773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [12775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [12777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [12779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [12781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [12783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [12785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [12787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [12789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [12791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [12793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [12795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [12797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [12799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [12801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [12803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [12805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [12807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), - [12809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [12811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [12813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [12815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [12817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [12819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [12821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), - [12823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [12825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [12827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [12829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [12831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [12833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [12835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [12837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [12839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [12841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [12843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [12845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [12847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [12849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), - [12851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [12855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [12857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [12859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [12861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [12863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [12865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [12867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__text_with_parenthesis_repeat1, 2), - [12869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__text_with_parenthesis_repeat1, 2), SHIFT_REPEAT(4961), - [12872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [12874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [12876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [12878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [12884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [12886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [12896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [12902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [12904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [12906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [12908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [12910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [12916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [12926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), - [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [12932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [12936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [12950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [12958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [12960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [12962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [12964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [12966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [12970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [12972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), - [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), - [12976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [12978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), - [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [12982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [12984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [12986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [12988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [12990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [12992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), - [12994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [12996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [13000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [13002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [13008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [13010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [13012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), - [13014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [13016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), - [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [13022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [13024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [13026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [13028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [13032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), - [13034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [13036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [13038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [13040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [13042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [13044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_repeat1, 2), - [13046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_repeat1, 2), SHIFT_REPEAT(4926), - [13049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [13051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [13053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [13055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [13057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [13059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [13061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [13063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text_with_parenthesis_repeat1, 2), SHIFT_REPEAT(4741), - [13066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [13068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [13072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [13074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [13078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [13082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [13084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [13086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), - [13088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [13090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [13092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [13094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [13098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [13100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [13102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [13106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [13108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [13110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [13116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [13118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [13120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [13122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [13124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [13126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section_parameter, 1), - [13128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), - [13130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), - [13132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1), - [13134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), - [13136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), - [13138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case, 3), - [13140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section_parameter, 2), - [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), - [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [13152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [13158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_with_parenthesis, 3), - [13160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section_parameter, 3), - [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [13186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_with_parenthesis, 4), - [13188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [13192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [13194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [13196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [13200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [13202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [13204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [13206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [13208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [13210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [13212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [13214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [13216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [13218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [13220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [13222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [13224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [13226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [13228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_with_parenthesis, 3), - [13230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_with_parenthesis, 4), - [13232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [13234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [13236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [13238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [13240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [13242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [13244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [13246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [13248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [13250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [13252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [13254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [13256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [13258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [13260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [13262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [13264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [13266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [13268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [13270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [13272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [13274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [13276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [13278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [13280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [13282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [13284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [13286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [13288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [13290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [13292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [13294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [13296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [13298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [13300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [13302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [13304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [13306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [13308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [13310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [13312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [13314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [13316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [13318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [13320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [13322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [13324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [13326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [13328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [13330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [13332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [13334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [13336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [13338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [13340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [13342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [13344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [13346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [13348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [13350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [13352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [13354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [13356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [13358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [13360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [13362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [13364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [13366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [13368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [13370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [13372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [13374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [13376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [13378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [13380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [13382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [13384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [13386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [13388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [13390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [13392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [13394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [13396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [13398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [13400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [13402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [13404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [13406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [13408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [13410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [13412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [13414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [13416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [13418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [13420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [13422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [13424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [13426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [13428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [13430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [13432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [13434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [13436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [13438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [13440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [13442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [13444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [13446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [13448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [13450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [13452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [13454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [13456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [13458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [13460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [13462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [13464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [13466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [13468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [13470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [13472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [13474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [13476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [13478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [13480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [13482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [13484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [13486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [13488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [13490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [13492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [13494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [13496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [13498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [13500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [13502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [13504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [13506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [13508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [13510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [13512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [13514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [13516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [13518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [13520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [13522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [13524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [13526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [13528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [13530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [13532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [13534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [13536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [13538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [13540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [13542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [13544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [13546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [13548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [13550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [13552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [13554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [13556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [13558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [13560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [13562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [13564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [13566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [13568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [13570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [13572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [13574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [13576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [13578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [13580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [13582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [13584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [13586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [13588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [13590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [13592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [13594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [13596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [13598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [13600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [13602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [13604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [13606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [13608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [13610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [13612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [13614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [13616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [13618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [13620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [13622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [13624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [13626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [13628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [13630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [13632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [13634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [13636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [13638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [13640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [13642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [13644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [13646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [13648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [13650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [13652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [13654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [13656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [13658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [13660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [13662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [13664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [13666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [13668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [13670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [13672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [13674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [13676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [13678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [13680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [13682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [13684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [13686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [13688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [13690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [13692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [13694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [13696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [13698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [13700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [13702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [13704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [13706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [13708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [13710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [13712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [13714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [13716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [13718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [13720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [13722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [13724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [13726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [13728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [13730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [13732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [13734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [13736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [13738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [13740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [13742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [13744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [13746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [13748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [13750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [13752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [13754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [13756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [13758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [13760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [13762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [13764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [13766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [13768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [13770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [13772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [13774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [13776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [13778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [13780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [13782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [13784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [13786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [13788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [13790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [13792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [13794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [13796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [13798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [13800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [13802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), - [13804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [13806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [13808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [13810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [13812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [13814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [13816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [13818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [13820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [13822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [13824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [13826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [13828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [13830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [13832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [13834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [13836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [13838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [13840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [13842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [13844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [13846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [13848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [13850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [13852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [13854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [13856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [13858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [13860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [13862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [13864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [13866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [13868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [13870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [13872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [13874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [13876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [13878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [13880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [13882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [13884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [13886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [13888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [13890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [13892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [13894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [13896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [13898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [13900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [13902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [13904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [13906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [13908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [13910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [13912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [13914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [13916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [13918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [13920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [13922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [13924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [13926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [13928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [13930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [13932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [13934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [13936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [13938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [13940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [13942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [13944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [13946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [13948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [13950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [13952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [13954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [13956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [13958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [13960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [13962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [13964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [13966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [13968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [13970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [13972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [13974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [13976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [13978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [13980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [13982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [13984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [13986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [13988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [13990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [13992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [13994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [13996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [13998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [14000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [14002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [14004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [14006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [14008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [14010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [14012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [14014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [14016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [14018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [14020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [14022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [14024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [14026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [14028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [14030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [14032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [14034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [14036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [14038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [14040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [14042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [14044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [14046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [14048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [14050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [14052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [14054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [14056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [14058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [14060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [14062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [14064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [14066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [14068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [14070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [14072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [14074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [14076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [14078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [14080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [14082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [14084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [14086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [14088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [14090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [14092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [14094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [14096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [14098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [14100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [14102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [14104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [14106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [14108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [14110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [14112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [14114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [14116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [14118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [14120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [14122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [14124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [14126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [14128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [14130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [14132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [14134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [14136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [14138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [14140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [14142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [14144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [14146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [14148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [14150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [14152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [14154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [14156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [14158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [14160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [14162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [14164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [14166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [14168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [14170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [14172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [14174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [14176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [14178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [14180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [14182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [14184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [14186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [14188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [14190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [14192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [14194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [14196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [14198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [14200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [14202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [14204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [14206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [14208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [14210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [14212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [14214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [14216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [14218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [14220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [14222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [14224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [14226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [14228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [14230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [14232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [14234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [14236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [14238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [14240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [14242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [14244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [14246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [14248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [14250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [14252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [14254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [14256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [14258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [14260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [14262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [14264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [14266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [14268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [14270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [14272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [14274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [14276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [14278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [14280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [14282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [14284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [14286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [14288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [14290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [14292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [14294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [14296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [14298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [14300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [14302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [14304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [14306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [14308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [14310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [14312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [14314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [14316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [14318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [14320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [14322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [14324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [14326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [14328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [14330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [14332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [14334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [14336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [14338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [14340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [14342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [14344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [14346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [14348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [14350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [14352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [14354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [14356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [14358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [14360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [14362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [14364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [14366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [14368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [14370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [14372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [14374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [14376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [14378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [14380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [14382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [14384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [14386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [14388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [14390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [14392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [14394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [14396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [14398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [14400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [14402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [14404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [14406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [14408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [14410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [14412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [14414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [14416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [14418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [14420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [14422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [14424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [14426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [14428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [14430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [14432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [14434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [14436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [14438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [14440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [14442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [14444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [14446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [14448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [14450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [14452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [14454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [14456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [14458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [14460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [14462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [14464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [14466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [14468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [14470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [14472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [14474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [14476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [14478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [14480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [14482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [14484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [14486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [14488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [14490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [14492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [14494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [14496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [14498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [14500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [14502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [14504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [14506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [14508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [14510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [14512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [14514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [14516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [14518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [14520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [14522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [14524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [14526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [14528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [14530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [14532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [14534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [14536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [14538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [14540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [14542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [14544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [14546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [14548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [14550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [14552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [14554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [14556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [14558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [14560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [14562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [14564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [14566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [14568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [14570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [14572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [14574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [14576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [14578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [14580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [14582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [14584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [14586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [14588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [14590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [14592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [14594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [14596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [14598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [14600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [14602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [14604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [14606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [14608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [14610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [14612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [14614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [14616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [14618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [14620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [14622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [14624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [14626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [14628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [14630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [14632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [14634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [14636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [14638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [14640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [14642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [14644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [14646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [14648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [14650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [14652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [14654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [14656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [14658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [14660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [14662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [14664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [14666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [14668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [14670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [14672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [14674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [14676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [14678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [14680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [14682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [14684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [14686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [14688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [14690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [14692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [14694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [14696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [14698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [14700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [14702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [14704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [14706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [14708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [14710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [14712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [14714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [14716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [14718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [14720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [14722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [14724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [14726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [14728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [14730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [14732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [14734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [14736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [14738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [14740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [14742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [14744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [14746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [14748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [14750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [14752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [14754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [14756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [14758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [14760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [14762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [14764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [14766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [14768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [14770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [14772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [14774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [14776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [14778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [14780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [14782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [14784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [14786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [14788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [14790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [14792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [14794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [14796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [14798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [14800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [14802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [14804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [14806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [14808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [14810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [14812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [14814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [14816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [14818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [14820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [14822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [14824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [14826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [14828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [14830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [14832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [14834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [14836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [14838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [14840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [14842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [14844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [14846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [14848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [14850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [14852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [14854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [14856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [14858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [14860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [14862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [14864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [14866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [14868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [14870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [14872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [14874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [14876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [14878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [14880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [14882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [14884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [14886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [14888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [14890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [14892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [14894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [14896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [14898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [14900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [14902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [14904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [14906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [14908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [14910] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [14912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [14914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [14916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [14918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [14920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [14922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [14924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [14926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [14928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [14930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [14932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [14934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [14936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [14938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [14940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [14942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [14944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [14946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [14948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [14950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [14952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [14954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [14956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [14958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [14960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [14962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [14964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [14966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [14968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [14970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [14972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [14974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [14976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [14978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [14980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [14982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [14984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [14986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [14988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [14990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [14992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [14994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [14996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [14998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [15000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [15002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [15004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [15006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [15008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [15010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [15012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [15014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [15016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [15018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [15020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [15022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [15024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [15026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [15028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [15030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [15032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [15034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [15036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [15038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [15040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [15042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [15044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [15046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [15048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [15050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [15052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [15054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [15056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [15058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [15060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [15062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [15064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [15066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [15068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [15070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [15072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [15074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [15076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [15078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [15080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [15082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [15084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [15086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [15088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [15090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [15092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [15094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [15096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [15098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [15100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [15102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [15104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [15106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [15108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [15110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [15112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [15114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [15116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [15118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [15120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [15122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [15124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [15126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [15128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [15130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [15132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [15134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [15136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [15138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [15140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [15142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [15144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [15146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [15148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [15150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [15152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [15154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [15156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [15158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [15160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [15162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [15164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [15166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [15168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [15170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [15172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [15174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [15176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [15178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [15180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [15182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [15184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [15186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [15188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [15190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [15192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [15194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [15196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [15198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [15200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [15202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [15204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [15206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [15208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [15210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [15212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [15214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [15216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [15218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [15220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [15222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [15224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [15226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [15228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [15230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [15232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [15234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [15236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [15238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [15240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [15242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [15244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [15246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [15248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [15250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [15252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [15254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [15256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [15258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [15260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [15262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [15264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [15266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [15268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [15270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [15272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [15274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [15276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [15278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [15280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [15282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [15284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [15286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [15288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [15290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [15292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [15294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [15296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [15298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [15300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [15302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [15304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [15306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [15308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [15310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [15312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [15314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [15316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [15318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [15320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [15322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [15324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [15326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [15328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [15330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [15332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [15334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [15336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [15338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [15340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [15342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [15344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [15346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [15348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [15350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [15352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [15354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [15356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [15358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [15360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [15362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [15364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [15366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [15368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [15370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [15372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [15374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [15376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [15378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [15380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [15382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [15384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [15386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [15388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [15390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [15392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [15394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [15396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [15398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [15400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [15402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [15404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [15406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [15408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [15410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [15412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [15414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [15416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [15418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [15420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [15422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [15424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [15426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [15428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [15430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [15432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [15434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [15436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [15438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [15440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [15442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [15444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [15446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [15448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [15450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [15452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [15454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [15456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [15458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [15460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [15462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [15464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [15466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [15468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [15470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [15472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [15474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [15476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [15478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [15480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [15482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [15484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [15486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [15488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [15490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [15492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [15494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [15496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [15498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [15500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [15502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [15504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [15506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [15508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [15510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [15512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [15514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [15516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [15518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [15520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [15522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [15524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [15526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [15528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [15530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [15532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [15534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [15536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [15538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [15540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [15542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [15544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [15546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [15548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [15550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [15552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [15554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [15556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [15558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [15560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [15562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [15564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [15566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [15568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [15570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [15572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [15574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [15576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [15578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [15580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [15582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [15584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [15586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [15588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [15590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [15592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [15594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [15596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [15598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [15600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [15602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [15604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [15606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [15608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [15610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [15612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [15614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [15616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [15618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [15620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [15622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [15624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [15626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [15628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [15630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [15632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [15634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [15636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [15638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [15640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [15642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [15644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [15646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [15648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [15650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [15652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [15654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [15656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [15658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [15660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [15662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [15664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [15666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [15668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [15670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [15672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [15674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [15676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [15678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [15680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [15682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [15684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [15686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [15688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [15690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [15692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [15694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [15696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [15698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [15700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [15702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [15704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [15706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [15708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [15710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [15712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [15714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [15716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [15718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [15720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [15722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [15724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [15726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [15728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [15730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [15732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [15734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [15736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [15738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [15740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [15742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [15744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [15746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [15748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [15750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [15752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [15754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [15756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [15758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [15760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [15762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [15764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [15766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [15768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [15770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [15772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [15774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [15776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [15778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [15780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [15782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [15784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [15786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [15788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [15790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [15792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [15794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [15796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [15798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [15800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [15802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [15804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [15806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [15808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [15810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [15812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [15814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [15816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [15818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [15820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [15822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [15824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [15826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [15828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5405), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6820), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6821), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6818), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6819), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement_directive_body_with_optional_parameter, 1), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5469), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6836), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement_directive_body, 2), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6838), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), + [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement_directive_body, 1), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6839), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6852), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5457), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6822), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5092), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5510), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6848), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(79), + [882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1696), + [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4210), + [888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4209), + [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4035), + [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5428), + [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5431), + [900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5061), + [903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6846), + [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(387), + [909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(386), + [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5087), + [915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5090), + [918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5091), + [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5008), + [924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5144), + [927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(918), + [930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(724), + [933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5159), + [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5163), + [939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5169), + [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(669), + [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(62), + [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(61), + [951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(176), + [954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5202), + [957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5208), + [960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5216), + [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3639), + [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), + [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5225), + [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5231), + [974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5241), + [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5245), + [980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5257), + [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5257), + [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5398), + [989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(674), + [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5303), + [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5307), + [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5311), + [1001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5314), + [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4206), + [1007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5318), + [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5333), + [1013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3691), + [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3692), + [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3694), + [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3696), + [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5347), + [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5348), + [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5350), + [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6847), + [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(720), + [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(720), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6850), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement_directive_body_with_optional_parameter, 2), + [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(91), + [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(865), + [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4165), + [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4162), + [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4000), + [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5401), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5405), + [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5157), + [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6820), + [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(576), + [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(574), + [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5156), + [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5151), + [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5150), + [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5149), + [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5148), + [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(758), + [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(684), + [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5147), + [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5146), + [1231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5145), + [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(666), + [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(19), + [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(20), + [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(157), + [1246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5142), + [1249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5141), + [1252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5140), + [1255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3611), + [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5139), + [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5137), + [1264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5136), + [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5135), + [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5134), + [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5134), + [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5400), + [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(726), + [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5131), + [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5130), + [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5129), + [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5128), + [1294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4114), + [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5127), + [1300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5126), + [1303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3958), + [1306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3957), + [1309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3946), + [1312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3741), + [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5125), + [1318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5124), + [1321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5123), + [1324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6821), + [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(722), + [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(722), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5508), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6840), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(100), + [1458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(957), + [1461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(4219), + [1464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(4194), + [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(4019), + [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5459), + [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5457), + [1476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5116), + [1479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(6822), + [1482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(560), + [1485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(558), + [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5115), + [1491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5100), + [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5094), + [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5092), + [1500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5086), + [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(763), + [1506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(690), + [1509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5085), + [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5084), + [1515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5079), + [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(660), + [1521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(23), + [1524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(26), + [1527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(148), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), + [1532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5077), + [1535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5076), + [1538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5075), + [1541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3610), + [1544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5074), + [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5073), + [1550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5071), + [1553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5070), + [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5069), + [1559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5069), + [1562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5363), + [1565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(719), + [1568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5067), + [1571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5065), + [1574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5064), + [1577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5063), + [1580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(4171), + [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5062), + [1586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5060), + [1589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3972), + [1592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3973), + [1595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3981), + [1598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3969), + [1601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5059), + [1604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5058), + [1607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5057), + [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(6823), + [1613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(710), + [1616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(710), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(103), + [1626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(765), + [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4142), + [1632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4129), + [1635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4080), + [1638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5481), + [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5486), + [1644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5219), + [1647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6818), + [1650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(589), + [1653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(588), + [1656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5218), + [1659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5217), + [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5215), + [1665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5214), + [1668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5213), + [1671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(753), + [1674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(725), + [1677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5212), + [1680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5211), + [1683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5209), + [1686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(661), + [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(13), + [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(16), + [1695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(155), + [1698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5206), + [1701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5205), + [1704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5204), + [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3620), + [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5203), + [1713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4444), + [1716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5201), + [1719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5200), + [1722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5199), + [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5199), + [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5390), + [1731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(709), + [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5197), + [1737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5196), + [1740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5195), + [1743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5194), + [1746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4107), + [1749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5191), + [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5190), + [1755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3838), + [1758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3835), + [1761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3827), + [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3744), + [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5188), + [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5187), + [1773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5172), + [1776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6819), + [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(711), + [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(711), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [1789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(107), + [1792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1261), + [1795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4204), + [1798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4211), + [1801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4024), + [1804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5468), + [1807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5469), + [1810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4694), + [1813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6836), + [1816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(458), + [1819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(457), + [1822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4693), + [1825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4692), + [1828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4691), + [1831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4690), + [1834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4687), + [1837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(780), + [1840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(714), + [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4686), + [1846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4684), + [1849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4683), + [1852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(662), + [1855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(63), + [1858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2), + [1861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(180), + [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4668), + [1867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4662), + [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4660), + [1873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3613), + [1876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4654), + [1879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4653), + [1882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4652), + [1885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4647), + [1888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4646), + [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4646), + [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5483), + [1897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(673), + [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4644), + [1903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4643), + [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4642), + [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4641), + [1912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4214), + [1915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4639), + [1918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4638), + [1921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3945), + [1924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3944), + [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3939), + [1930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3938), + [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4637), + [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4636), + [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4635), + [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6837), + [1945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(672), + [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(672), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6842), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4498), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [2071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(115), + [2074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1612), + [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4106), + [2080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4155), + [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4011), + [2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5440), + [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5379), + [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4583), + [2095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6844), + [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(400), + [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(399), + [2104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4587), + [2107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4593), + [2110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4613), + [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4616), + [2116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4541), + [2119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(825), + [2122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(696), + [2125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4650), + [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4655), + [2131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4659), + [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(668), + [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(65), + [2140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(64), + [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(177), + [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4664), + [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4685), + [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4688), + [2155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3637), + [2158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4712), + [2161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4731), + [2164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4738), + [2167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4640), + [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4750), + [2173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4750), + [2176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5467), + [2179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(677), + [2182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4784), + [2185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4794), + [2188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4795), + [2191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4799), + [2194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4186), + [2197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4803), + [2200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4805), + [2203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3657), + [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3658), + [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3660), + [2212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3662), + [2215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4871), + [2218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4747), + [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4881), + [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6845), + [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(699), + [2230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(699), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(119), + [2242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1780), + [2245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4182), + [2248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4181), + [2251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4053), + [2254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5511), + [2257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5510), + [2260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5356), + [2263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6848), + [2266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(372), + [2269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(370), + [2272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5357), + [2275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5358), + [2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5133), + [2281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4964), + [2284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4942), + [2287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1010), + [2290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(717), + [2293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4839), + [2296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4832), + [2299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4820), + [2302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(663), + [2305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(59), + [2308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(57), + [2311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(167), + [2314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4752), + [2317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4745), + [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4695), + [2323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3633), + [2326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4675), + [2329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4673), + [2332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4666), + [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4645), + [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4620), + [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4620), + [2344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5502), + [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(707), + [2350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4514), + [2353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4471), + [2356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4447), + [2359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5220), + [2362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4170), + [2365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5261), + [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5198), + [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3735), + [2374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3739), + [2377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3742), + [2380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3748), + [2383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5177), + [2386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5099), + [2389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5068), + [2392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6849), + [2395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(691), + [2398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(691), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5478), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6854), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(122), + [2514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1864), + [2517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4148), + [2520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4143), + [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4075), + [2526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5503), + [2529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5500), + [2532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4890), + [2535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6850), + [2538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(357), + [2541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(356), + [2544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4860), + [2547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4818), + [2550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4774), + [2553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4763), + [2556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5034), + [2559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1102), + [2562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(712), + [2565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4962), + [2568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5361), + [2571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5288), + [2574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(659), + [2577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(55), + [2580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(54), + [2583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(172), + [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5049), + [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5042), + [2592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5036), + [2595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3627), + [2598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5027), + [2601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5019), + [2604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4875), + [2607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5000), + [2610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4994), + [2613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4994), + [2616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5434), + [2619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(701), + [2622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4943), + [2625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4928), + [2628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4927), + [2631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4901), + [2634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4140), + [2637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4897), + [2640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4856), + [2643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3793), + [2646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3797), + [2649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3799), + [2652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3800), + [2655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4829), + [2658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4727), + [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4661), + [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6851), + [2667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(693), + [2670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(693), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5471), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6856), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(125), + [2786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(750), + [2789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4122), + [2792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4121), + [2795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4098), + [2798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5490), + [2801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5489), + [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4553), + [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6852), + [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(341), + [2813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(340), + [2816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4980), + [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4446), + [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4448), + [2825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4449), + [2828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4451), + [2831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1193), + [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(704), + [2837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4457), + [2840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4462), + [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4463), + [2846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(664), + [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(52), + [2852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(51), + [2855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(170), + [2858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4505), + [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4509), + [2864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4520), + [2867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3623), + [2870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4526), + [2873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4527), + [2876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4528), + [2879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4533), + [2882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4534), + [2885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4534), + [2888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5499), + [2891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(700), + [2894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4536), + [2897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4537), + [2900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4538), + [2903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4562), + [2906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4118), + [2909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4566), + [2912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4567), + [2915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3830), + [2918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3832), + [2921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3833), + [2924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3834), + [2927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4576), + [2930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4577), + [2933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4578), + [2936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6853), + [2939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(678), + [2942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(678), + [2945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(126), + [2948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1178), + [2951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4149), + [2954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4151), + [2957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4068), + [2960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5479), + [2963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5478), + [2966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4585), + [2969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6854), + [2972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(327), + [2975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(326), + [2978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4592), + [2981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4595), + [2984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4598), + [2987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4504), + [2990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4600), + [2993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1281), + [2996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(697), + [2999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4603), + [3002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4604), + [3005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4605), + [3008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(670), + [3011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(49), + [3014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(48), + [3017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(168), + [3020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4607), + [3023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4609), + [3026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4610), + [3029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3618), + [3032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4617), + [3035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4599), + [3038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4633), + [3041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4651), + [3044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4657), + [3047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4657), + [3050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5480), + [3053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(675), + [3056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4667), + [3059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4670), + [3062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4671), + [3065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4672), + [3068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4159), + [3071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4677), + [3074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4678), + [3077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3818), + [3080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3894), + [3083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3895), + [3086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3903), + [3089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4679), + [3092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4680), + [3095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4681), + [3098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6855), + [3101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(682), + [3104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(682), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [3109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(128), + [3112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1088), + [3115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4197), + [3118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4203), + [3121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4040), + [3124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5472), + [3127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5471), + [3130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4696), + [3133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6856), + [3136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(314), + [3139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(313), + [3142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4697), + [3145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4706), + [3148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4720), + [3151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4721), + [3154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4722), + [3157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1371), + [3160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(689), + [3163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4729), + [3166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4733), + [3169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4735), + [3172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(658), + [3175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(46), + [3178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(45), + [3181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(174), + [3184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4739), + [3187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4741), + [3190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4742), + [3193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3614), + [3196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4743), + [3199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4744), + [3202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4748), + [3205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4749), + [3208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4751), + [3211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4751), + [3214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5470), + [3217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(679), + [3220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4762), + [3223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4792), + [3226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4793), + [3229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4801), + [3232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4208), + [3235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4806), + [3238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4808), + [3241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3937), + [3244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3950), + [3247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3951), + [3250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3952), + [3253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4812), + [3256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4814), + [3259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4815), + [3262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6857), + [3265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(687), + [3268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(687), + [3271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(129), + [3274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1526), + [3277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4183), + [3280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4177), + [3283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4012), + [3286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5439), + [3289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5367), + [3292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4502), + [3295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6842), + [3298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(413), + [3301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(412), + [3304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4501), + [3307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4500), + [3310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4499), + [3313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4498), + [3316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4497), + [3319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(919), + [3322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(727), + [3325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4496), + [3328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4494), + [3331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4493), + [3334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(671), + [3337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(67), + [3340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(66), + [3343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(165), + [3346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4489), + [3349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4488), + [3352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4487), + [3355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3636), + [3358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4486), + [3361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4485), + [3364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4484), + [3367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4483), + [3370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4482), + [3373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4482), + [3376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5506), + [3379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(681), + [3382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4480), + [3385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4479), + [3388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4476), + [3391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4475), + [3394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4160), + [3397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4474), + [3400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4473), + [3403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3819), + [3406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3790), + [3409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3798), + [3412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3828), + [3415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4461), + [3418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4455), + [3421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4453), + [3424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6843), + [3427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(676), + [3430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(676), + [3433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(130), + [3436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1351), + [3439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4132), + [3442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4185), + [3445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4094), + [3448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5484), + [3451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5488), + [3454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4630), + [3457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6838), + [3460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(442), + [3463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(441), + [3466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4628), + [3469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4627), + [3472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4626), + [3475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4625), + [3478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4624), + [3481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(863), + [3484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(721), + [3487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4623), + [3490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4622), + [3493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4621), + [3496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(665), + [3499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(71), + [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(70), + [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(154), + [3508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4618), + [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4615), + [3514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4614), + [3517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3621), + [3520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4612), + [3523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4611), + [3526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4596), + [3529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4590), + [3532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4588), + [3535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4588), + [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5493), + [3541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(692), + [3544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4581), + [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4580), + [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4575), + [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4574), + [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4110), + [3559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4573), + [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4572), + [3565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3860), + [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3852), + [3571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3847), + [3574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3839), + [3577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4571), + [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4570), + [3583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4569), + [3586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6839), + [3589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(685), + [3592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(685), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), + [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6846), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), + [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [3711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(136), + [3714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1440), + [3717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4166), + [3720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4167), + [3723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4059), + [3726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5507), + [3729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5508), + [3732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4564), + [3735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6840), + [3738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(426), + [3741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(425), + [3744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4563), + [3747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4561), + [3750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4560), + [3753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4559), + [3756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4558), + [3759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(995), + [3762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(694), + [3765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4556), + [3768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4555), + [3771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4554), + [3774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(667), + [3777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(69), + [3780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(68), + [3783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(181), + [3786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4551), + [3789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4550), + [3792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4549), + [3795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3638), + [3798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4548), + [3801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4547), + [3804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4546), + [3807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4543), + [3810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4542), + [3813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4542), + [3816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5498), + [3819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(686), + [3822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4539), + [3825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4524), + [3828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4519), + [3831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4517), + [3834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4174), + [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4513), + [3840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4512), + [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3732), + [3846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3731), + [3849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3815), + [3852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3729), + [3855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4511), + [3858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4507), + [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4506), + [3864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6841), + [3867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(680), + [3870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(680), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6844), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6845), + [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5466), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6876), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), + [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6878), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4773), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), + [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4885), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4892), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), + [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6816), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5262), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5259), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6817), + [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6814), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5345), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5339), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), + [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), + [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6826), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4987), + [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive_body_with_parameter, 1), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4972), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4941), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), + [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5452), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6858), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4861), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4873), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), + [4859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive_body_with_parameter, 2), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), + [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [4911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(261), + [4914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3028), + [4917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4133), + [4920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4134), + [4923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4010), + [4926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5494), + [4929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5492), + [4932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4761), + [4935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(6878), + [4938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(480), + [4941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(484), + [4944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4773), + [4947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4785), + [4950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4800), + [4953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4802), + [4956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4807), + [4959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4809), + [4962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4810), + [4965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4811), + [4968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(731), + [4971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(7), + [4974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(6), + [4977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(182), + [4980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4845), + [4983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4872), + [4986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4874), + [4989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3630), + [4992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4877), + [4995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4879), + [4998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4882), + [5001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4883), + [5004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4885), + [5007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4885), + [5010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5443), + [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), + [5015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(953), + [5018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4892), + [5021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4904), + [5024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4905), + [5027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4913), + [5030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4157), + [5033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4917), + [5036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4944), + [5039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3644), + [5042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3645), + [5045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3646), + [5048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3647), + [5051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4949), + [5054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4951), + [5057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5026), + [5060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(6879), + [5063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(943), + [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(943), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [5101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(272), + [5104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3370), + [5107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4179), + [5110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4184), + [5113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4049), + [5116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5426), + [5119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5427), + [5122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5281), + [5125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6816), + [5128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(602), + [5131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(601), + [5134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), + [5136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5280), + [5139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5279), + [5142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5278), + [5145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5276), + [5148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5275), + [5151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5274), + [5154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5273), + [5157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5272), + [5160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(744), + [5163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(10), + [5166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(11), + [5169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(151), + [5172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5271), + [5175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5270), + [5178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5269), + [5181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3615), + [5184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5268), + [5187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5267), + [5190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5266), + [5193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5263), + [5196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5262), + [5199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5262), + [5202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5375), + [5205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(760), + [5208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5259), + [5211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5251), + [5214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5244), + [5217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5238), + [5220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4192), + [5223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5236), + [5226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5230), + [5229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3940), + [5232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3941), + [5235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3942), + [5238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3943), + [5241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5229), + [5244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5228), + [5247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5223), + [5250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6817), + [5253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(761), + [5256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(761), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [5439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6860), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4992), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), + [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5010), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5029), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5038), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6861), + [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [5581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [5593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6828), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4923), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [5605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), + [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4915), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4909), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4903), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), + [5677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [5689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_blade, 1), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [5723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(366), + [5726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3265), + [5729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4196), + [5732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4195), + [5735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4043), + [5738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5409), + [5741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5408), + [5744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5346), + [5747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6814), + [5750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(615), + [5753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(614), + [5756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5345), + [5759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5344), + [5762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5343), + [5765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5342), + [5768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5341), + [5771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5340), + [5774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5339), + [5777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5338), + [5780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(748), + [5783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5), + [5786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(8), + [5789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(149), + [5792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5331), + [5795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5316), + [5798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5315), + [5801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3607), + [5804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5310), + [5807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5308), + [5810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5304), + [5813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5302), + [5816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5301), + [5819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5301), + [5822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5371), + [5825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(756), + [5828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5295), + [5831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5294), + [5834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5293), + [5837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5292), + [5840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4175), + [5843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5291), + [5846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5290), + [5849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3737), + [5852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3738), + [5855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3740), + [5858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3747), + [5861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5289), + [5864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5287), + [5867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5286), + [5870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6815), + [5873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(757), + [5876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(757), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [5889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(371), + [5892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2088), + [5895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4200), + [5898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4215), + [5901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4028), + [5904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5456), + [5907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5460), + [5910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5053), + [5913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6824), + [5916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(546), + [5919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(544), + [5922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5052), + [5925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5051), + [5928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5050), + [5931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5047), + [5934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5046), + [5937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5044), + [5940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5043), + [5943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5028), + [5946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(738), + [5949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(29), + [5952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(32), + [5955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(163), + [5958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5022), + [5961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5020), + [5964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5014), + [5967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3631), + [5970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5013), + [5973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5012), + [5976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5007), + [5979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5006), + [5982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5005), + [5985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5005), + [5988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5419), + [5991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1117), + [5994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5003), + [5997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5002), + [6000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5001), + [6003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4999), + [6006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4199), + [6009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4998), + [6012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4997), + [6015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3665), + [6018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3663), + [6021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3661), + [6024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3659), + [6027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4996), + [6030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4995), + [6033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4993), + [6036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6825), + [6039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1025), + [6042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1025), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [6051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(374), + [6054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2122), + [6057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4138), + [6060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4146), + [6063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4072), + [6066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5411), + [6069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5412), + [6072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4798), + [6075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6832), + [6078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(488), + [6081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(487), + [6084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4797), + [6087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4796), + [6090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4791), + [6093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4790), + [6096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4789), + [6099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4788), + [6102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4787), + [6105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4786), + [6108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(733), + [6111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(53), + [6114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(56), + [6117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(175), + [6120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4783), + [6123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4782), + [6126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4781), + [6129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3619), + [6132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4780), + [6135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4779), + [6138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4777), + [6141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4776), + [6144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4775), + [6147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4775), + [6150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5458), + [6153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1083), + [6156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4772), + [6159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4771), + [6162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4770), + [6165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4769), + [6168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4147), + [6171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4768), + [6174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4767), + [6177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3887), + [6180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3888), + [6183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3889), + [6186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3890), + [6189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4766), + [6192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4765), + [6195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4764), + [6198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6833), + [6201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1183), + [6204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1183), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [6361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(429), + [6364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2037), + [6367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4216), + [6370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4220), + [6373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4025), + [6376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5436), + [6379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5362), + [6382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4758), + [6385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6834), + [6388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(473), + [6391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(472), + [6394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4756), + [6397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4755), + [6400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4740), + [6403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4734), + [6406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4732), + [6409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4726), + [6412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4725), + [6415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4724), + [6418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(741), + [6421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(58), + [6424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(60), + [6427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(178), + [6430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4718), + [6433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4717), + [6436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4716), + [6439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3612), + [6442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4715), + [6445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4714), + [6448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4713), + [6451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4711), + [6454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4710), + [6457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4710), + [6460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5474), + [6463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1175), + [6466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4708), + [6469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4707), + [6472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4705), + [6475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4704), + [6478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4191), + [6481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4703), + [6484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4702), + [6487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3959), + [6490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3960), + [6493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3961), + [6496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3962), + [6499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4700), + [6502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4699), + [6505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4698), + [6508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6835), + [6511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1271), + [6514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1271), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6824), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5047), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), + [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5013), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), + [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5003), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), + [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), + [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6830), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4858), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4854), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), + [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), + [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), + [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [6817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(466), + [6820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3535), + [6823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4205), + [6826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4207), + [6829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4022), + [6832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5463), + [6835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5462), + [6838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4988), + [6841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6826), + [6844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(529), + [6847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(528), + [6850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4987), + [6853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4986), + [6856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4985), + [6859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4984), + [6862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4983), + [6865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4982), + [6868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4981), + [6871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4445), + [6874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(745), + [6877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(35), + [6880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(38), + [6883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(160), + [6886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4978), + [6889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4975), + [6892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4974), + [6895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3632), + [6898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4972), + [6901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4971), + [6904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4956), + [6907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4950), + [6910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4948), + [6913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4948), + [6916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5435), + [6919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(805), + [6922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4941), + [6925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4940), + [6928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4935), + [6931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4934), + [6934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4218), + [6937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4933), + [6940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4932), + [6943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3677), + [6946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3678), + [6949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3679), + [6952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3680), + [6955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4931), + [6958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4930), + [6961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4929), + [6964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6827), + [6967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(906), + [6970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(906), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6862), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), + [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), + [7233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), + [7297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6832), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4797), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), + [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), + [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [7351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6833), + [7381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [7443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(561), + [7446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3438), + [7449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4173), + [7452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4172), + [7455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4058), + [7458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5374), + [7461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5386), + [7464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4924), + [7467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6828), + [7470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(514), + [7473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(513), + [7476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4923), + [7479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4921), + [7482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4920), + [7485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4919), + [7488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4918), + [7491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4916), + [7494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4915), + [7497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4914), + [7500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(735), + [7503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(41), + [7506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(44), + [7509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(169), + [7512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4912), + [7515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4911), + [7518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4910), + [7521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3629), + [7524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4909), + [7527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4908), + [7530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4907), + [7533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4906), + [7536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4903), + [7539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4903), + [7542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5441), + [7545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(898), + [7548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4900), + [7551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4899), + [7554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4884), + [7557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4878), + [7560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4164), + [7563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4876), + [7566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4870), + [7569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3743), + [7572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3820), + [7575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3745), + [7578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3746), + [7581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4869), + [7584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4868), + [7587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4863), + [7590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6829), + [7593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(999), + [7596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(999), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [7749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(616), + [7752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2198), + [7755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4141), + [7758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4108), + [7761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4003), + [7764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5453), + [7767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5452), + [7770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4819), + [7773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6858), + [7776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(301), + [7779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(300), + [7782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4822), + [7785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4823), + [7788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4824), + [7791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4825), + [7794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4826), + [7797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4850), + [7800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4861), + [7803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4862), + [7806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(736), + [7809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(43), + [7812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(42), + [7815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(147), + [7818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4865), + [7821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4866), + [7824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4867), + [7827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3608), + [7830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4873), + [7833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4821), + [7836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4886), + [7839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4887), + [7842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4888), + [7845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4888), + [7848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5442), + [7851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(998), + [7854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4895), + [7857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4896), + [7860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4898), + [7863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4922), + [7866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4126), + [7869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4939), + [7872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4955), + [7875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3989), + [7878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3988), + [7881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3987), + [7884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3985), + [7887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4958), + [7890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4965), + [7893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4966), + [7896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6859), + [7899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(993), + [7902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(993), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [7913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [7921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [7925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6864), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [7931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), + [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), + [7937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [7943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), + [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), + [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [7963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [7973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [7979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6865), + [8009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [8019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(622), + [8022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2281), + [8025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4145), + [8028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4161), + [8031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4014), + [8034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5446), + [8037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5445), + [8040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4968), + [8043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6860), + [8046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(288), + [8049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(285), + [8052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4969), + [8055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4970), + [8058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4991), + [8061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4992), + [8064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4880), + [8067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5009), + [8070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5010), + [8073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5011), + [8076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(747), + [8079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(40), + [8082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(39), + [8085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(164), + [8088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5021), + [8091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5023), + [8094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5025), + [8097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3609), + [8100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5029), + [8103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5030), + [8106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5031), + [8109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5032), + [8112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5035), + [8115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5035), + [8118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5416), + [8121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(994), + [8124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5038), + [8127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5039), + [8130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5040), + [8133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5041), + [8136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4188), + [8139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5055), + [8142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5056), + [8145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3966), + [8148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3965), + [8151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3964), + [8154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3963), + [8157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5066), + [8160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5080), + [8163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5088), + [8166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6861), + [8169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(988), + [8172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(988), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [8183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [8191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [8195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6866), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [8201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [8207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [8213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5118), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [8233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), + [8243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4990), + [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), + [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [8249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), + [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), + [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6867), + [8279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [8287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(628), + [8290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2364), + [8293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4213), + [8296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4212), + [8299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4039), + [8302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5433), + [8305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5432), + [8308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5104), + [8311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6862), + [8314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(271), + [8317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(269), + [8320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5107), + [8323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5108), + [8326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5109), + [8329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5110), + [8332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5111), + [8335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5112), + [8338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5113), + [8341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5114), + [8344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(743), + [8347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(37), + [8350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(36), + [8353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(162), + [8356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5153), + [8359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5154), + [8362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5155), + [8365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3616), + [8368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5161), + [8371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5164), + [8374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5166), + [8377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5168), + [8380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5170), + [8383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5170), + [8386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5396), + [8389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(989), + [8392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5173), + [8395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5174), + [8398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5175), + [8401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5176), + [8404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4189), + [8407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5181), + [8410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5182), + [8413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3925), + [8416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3924), + [8419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3923), + [8422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3922), + [8425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5183), + [8428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5184), + [8431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5207), + [8434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6863), + [8437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(984), + [8440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(984), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [8455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [8463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), + [8467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6868), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [8473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [8479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4889), + [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [8485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [8505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [8515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [8521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), + [8551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [8557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(633), + [8560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2447), + [8563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4176), + [8566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4168), + [8569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4062), + [8572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5418), + [8575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5417), + [8578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5240), + [8581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6864), + [8584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(256), + [8587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(255), + [8590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5254), + [8593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5256), + [8596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5282), + [8599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5284), + [8602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5285), + [8605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5296), + [8608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5297), + [8611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5298), + [8614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(728), + [8617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(34), + [8620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(33), + [8623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(161), + [8626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5312), + [8629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5319), + [8632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5320), + [8635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3617), + [8638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5325), + [8641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5326), + [8644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5327), + [8647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5328), + [8650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5329), + [8653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5329), + [8656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5365), + [8659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(985), + [8662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5334), + [8665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5354), + [8668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5353), + [8671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5330), + [8674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4163), + [8677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5322), + [8680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5321), + [8683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3899), + [8686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3898), + [8689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3897), + [8692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3896), + [8695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5309), + [8698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5305), + [8701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5300), + [8704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6865), + [8707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(980), + [8710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(980), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [8719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), + [8727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5362), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [8731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6834), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [8737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [8743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [8749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [8769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), + [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [8779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), + [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [8785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), + [8815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [8823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [8835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6870), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [8841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [8847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4469), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [8853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4458), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [8873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [8883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [8889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), + [8919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [8929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(639), + [8932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2530), + [8935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4109), + [8938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4111), + [8941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3998), + [8944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5404), + [8947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5403), + [8950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5253), + [8953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6866), + [8956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(242), + [8959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(241), + [8962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5250), + [8965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5249), + [8968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5237), + [8971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5210), + [8974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5178), + [8977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5138), + [8980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5118), + [8983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5106), + [8986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(742), + [8989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(31), + [8992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(30), + [8995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(159), + [8998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5082), + [9001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5081), + [9004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5054), + [9007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3622), + [9010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5045), + [9013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5037), + [9016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5033), + [9019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5004), + [9022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4990), + [9025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4990), + [9028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5421), + [9031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(981), + [9034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4979), + [9037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4977), + [9040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4976), + [9043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4973), + [9046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4112), + [9049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4967), + [9052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4961), + [9055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3851), + [9058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3850), + [9061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3849), + [9064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3848), + [9067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4946), + [9070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4937), + [9073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4936), + [9076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6867), + [9079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(976), + [9082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(976), + [9085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(640), + [9088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3471), + [9091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4116), + [9094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4115), + [9097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4100), + [9100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5449), + [9103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5451), + [9106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4813), + [9109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(6726), + [9112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(638), + [9115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(234), + [9118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4523), + [9121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4522), + [9124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5359), + [9127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5352), + [9130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5105), + [9133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4952), + [9136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4953), + [9139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4954), + [9142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(746), + [9145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(21), + [9148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(22), + [9151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(156), + [9154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4746), + [9157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4530), + [9160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5226), + [9163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3634), + [9166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4753), + [9169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4754), + [9172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5093), + [9175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5103), + [9178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4864), + [9181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4864), + [9184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5370), + [9187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(751), + [9190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5299), + [9193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5152), + [9196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5101), + [9199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5122), + [9202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4105), + [9205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5017), + [9208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5016), + [9211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3979), + [9214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3980), + [9217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3666), + [9220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3913), + [9223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4737), + [9226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4736), + [9229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4606), + [9232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(6362), + [9235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(752), + [9238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(752), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [9245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [9253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), + [9257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6872), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [9263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5096), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [9269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [9275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4960), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [9295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4894), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [9305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [9311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6873), + [9341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [9347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(643), + [9350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2613), + [9353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4117), + [9356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4119), + [9359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4093), + [9362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5395), + [9365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5392), + [9368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4925), + [9371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6868), + [9374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(229), + [9377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(227), + [9380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4902), + [9383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4893), + [9386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4891), + [9389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4889), + [9392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4833), + [9395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4816), + [9398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4804), + [9401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4759), + [9404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(740), + [9407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(28), + [9410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(27), + [9413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(158), + [9416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4728), + [9419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4709), + [9422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4689), + [9425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3624), + [9428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4656), + [9431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4648), + [9434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4632), + [9437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4631), + [9440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4629), + [9443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4629), + [9446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5487), + [9449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(978), + [9452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4602), + [9455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4601), + [9458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4586), + [9461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4582), + [9464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4120), + [9467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4579), + [9470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4568), + [9473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3826), + [9476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3825), + [9479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3824), + [9482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3823), + [9485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4565), + [9488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4540), + [9491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4535), + [9494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6869), + [9497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(972), + [9500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(972), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [9507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [9515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), + [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [9519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6874), + [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [9525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), + [9531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [9537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [9557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), + [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [9567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [9573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), + [9603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [9609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(646), + [9612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2696), + [9615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4135), + [9618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4136), + [9621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4091), + [9624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5381), + [9627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5377), + [9630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4529), + [9633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6870), + [9636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(213), + [9639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(212), + [9642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4503), + [9645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4481), + [9648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4470), + [9651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4469), + [9654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4465), + [9657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4460), + [9660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4458), + [9663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4658), + [9666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(739), + [9669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(25), + [9672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(24), + [9675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(153), + [9678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5132), + [9681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5158), + [9684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5180), + [9687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3626), + [9690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5227), + [9693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5234), + [9696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5283), + [9699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5258), + [9702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5255), + [9705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5255), + [9708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5376), + [9711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(973), + [9714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5248), + [9717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5247), + [9720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5246), + [9723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5233), + [9726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4139), + [9729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5224), + [9732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5222), + [9735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3796), + [9738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3795), + [9741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3794), + [9744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3791), + [9747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5221), + [9750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5186), + [9753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5185), + [9756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6871), + [9759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(968), + [9762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(968), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [9769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [9777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5423), + [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), + [9781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6880), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [9787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [9793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [9799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), + [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), + [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [9829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), + [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [9833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [9835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), + [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), + [9865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [9871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(649), + [9874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2779), + [9877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4152), + [9880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4154), + [9883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3997), + [9886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5368), + [9889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5366), + [9892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5098), + [9895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6872), + [9898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(199), + [9901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(198), + [9904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5096), + [9907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5089), + [9910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5083), + [9913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5048), + [9916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5024), + [9919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4963), + [9922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4960), + [9925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4957), + [9928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(737), + [9931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(18), + [9934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(17), + [9937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(152), + [9940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4945), + [9943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4938), + [9946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4926), + [9949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3628), + [9952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4894), + [9955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4619), + [9958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4723), + [9961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4663), + [9964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4649), + [9967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4649), + [9970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5482), + [9973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(969), + [9976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4634), + [9979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4608), + [9982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4515), + [9985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4510), + [9988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4156), + [9991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4508), + [9994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5102), + [9997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3769), + [10000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3768), + [10003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3767), + [10006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3766), + [10009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4495), + [10012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4491), + [10015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4472), + [10018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6873), + [10021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(964), + [10024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(964), + [10027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(650), + [10030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2862), + [10033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4178), + [10036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4180), + [10039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4050), + [10042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5393), + [10045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5394), + [10048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4468), + [10051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6874), + [10054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(187), + [10057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(186), + [10060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4459), + [10063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4682), + [10066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5072), + [10069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5242), + [10072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5117), + [10075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5119), + [10078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5235), + [10081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5351), + [10084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(730), + [10087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(15), + [10090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(14), + [10093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(150), + [10096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5360), + [10099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5355), + [10102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5265), + [10105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3635), + [10108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5260), + [10111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4778), + [10114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4817), + [10117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4757), + [10120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4760), + [10123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4760), + [10126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5364), + [10129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(965), + [10132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5189), + [10135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5078), + [10138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5015), + [10141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4959), + [10144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4187), + [10147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4947), + [10150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4450), + [10153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3724), + [10156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3723), + [10159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3722), + [10162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3721), + [10165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4452), + [10168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4454), + [10171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4456), + [10174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6875), + [10177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(958), + [10180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(958), + [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [10189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(653), + [10192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2945), + [10195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4217), + [10198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4202), + [10201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4015), + [10204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5465), + [10207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5466), + [10210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4466), + [10213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6876), + [10216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(266), + [10219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(379), + [10222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4467), + [10225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4477), + [10228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4478), + [10231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4490), + [10234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4492), + [10237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4516), + [10240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4518), + [10243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4521), + [10246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(734), + [10249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(12), + [10252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(9), + [10255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(166), + [10258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4525), + [10261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4531), + [10264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4532), + [10267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3641), + [10270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4544), + [10273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4545), + [10276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4552), + [10279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4557), + [10282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4584), + [10285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4584), + [10288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5491), + [10291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(959), + [10294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4589), + [10297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4591), + [10300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4594), + [10303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4597), + [10306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4169), + [10309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4665), + [10312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4669), + [10315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3656), + [10318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3655), + [10321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3654), + [10324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3649), + [10327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4676), + [10330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4719), + [10333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4730), + [10336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6877), + [10339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(946), + [10342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(946), + [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [10351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(656), + [10354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2374), + [10357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4131), + [10360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4130), + [10363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4092), + [10366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5385), + [10369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5387), + [10372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4859), + [10375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6830), + [10378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(501), + [10381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(500), + [10384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4858), + [10387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4857), + [10390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4855), + [10393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4854), + [10396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4853), + [10399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4852), + [10402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4851), + [10405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4849), + [10408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(729), + [10411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(47), + [10414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(50), + [10417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(173), + [10420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4848), + [10423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4847), + [10426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4846), + [10429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3625), + [10432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4844), + [10435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4843), + [10438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4842), + [10441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4841), + [10444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4840), + [10447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4840), + [10450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5448), + [10453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(991), + [10456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4838), + [10459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4837), + [10462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4836), + [10465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4835), + [10468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4128), + [10471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4834), + [10474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4831), + [10477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3730), + [10480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3901), + [10483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3772), + [10486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3892), + [10489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4830), + [10492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4828), + [10495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4827), + [10498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6831), + [10501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1091), + [10504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1091), + [10507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(657), + [10510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3111), + [10513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4104), + [10516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4198), + [10519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4042), + [10522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5424), + [10525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5423), + [10528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5095), + [10531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6880), + [10534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(655), + [10537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(652), + [10540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5097), + [10543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5120), + [10546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5121), + [10549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5143), + [10552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5160), + [10555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5162), + [10558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5165), + [10561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5167), + [10564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(732), + [10567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4), + [10570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3), + [10573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(179), + [10576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5179), + [10579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5193), + [10582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5232), + [10585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3640), + [10588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5239), + [10591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5243), + [10594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5252), + [10597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5264), + [10600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5306), + [10603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5306), + [10606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5369), + [10609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(948), + [10612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5313), + [10615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5317), + [10618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5323), + [10621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5324), + [10624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4193), + [10627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5332), + [10630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5335), + [10633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3707), + [10636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3708), + [10639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3709), + [10642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3710), + [10645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5336), + [10648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5337), + [10651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5349), + [10654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6881), + [10657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(941), + [10660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(941), + [10663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_operator, 1, .production_id = 1), + [10665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_operator, 1, .production_id = 1), + [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [10669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1), + [10671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1), + [10673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [10683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [10689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [10695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [10699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [10703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), + [10705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), + [10707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(683), + [10710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(683), + [10713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_keyword, 1), + [10715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_keyword, 1), + [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [10719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [10725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [10729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(688), + [10732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(688), + [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [10737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [10743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [10747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(695), + [10750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(695), + [10753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(698), + [10756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(698), + [10759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [10767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(702), + [10770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(702), + [10773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(703), + [10776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(703), + [10779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(705), + [10782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(705), + [10785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(706), + [10788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(706), + [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [10793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(708), + [10796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(708), + [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [10801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [10805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [10809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(713), + [10812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(713), + [10815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(715), + [10818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(715), + [10821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(716), + [10824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(716), + [10827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(718), + [10830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(718), + [10833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [10837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [10841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(723), + [10844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(723), + [10847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__before, 2), + [10849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__before, 2), + [10851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword, 1), + [10853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword, 1), + [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [10857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [10861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(754), + [10864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(754), + [10867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_keyword, 2), + [10869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_keyword, 2), + [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [10873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [10879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [10883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_php_statement, 1), + [10885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_php_statement, 1), + [10887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stack, 1), + [10889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stack, 1), + [10891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional, 1), + [10893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional, 1), + [10895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_authorization, 1), + [10897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_authorization, 1), + [10899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop, 1), + [10901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop, 1), + [10903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_envoy, 1), + [10905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_envoy, 1), + [10907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_livewire, 1), + [10909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_livewire, 1), + [10911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__escaped, 2), + [10913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__escaped, 2), + [10915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unescaped, 2), + [10917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unescaped, 2), + [10919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_raw, 2, .production_id = 1), + [10921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_raw, 2, .production_id = 1), + [10923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2), + [10925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2), + [10927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_directive, 2), + [10929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_directive, 2), + [10931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_once, 2), + [10933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_once, 2), + [10935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 2), + [10937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 2), + [10939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__envoy_error, 2), + [10941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__envoy_error, 2), + [10943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_operator, 2, .production_id = 1), + [10945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_operator, 2, .production_id = 1), + [10947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__setup, 2), + [10949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__setup, 2), + [10951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__after, 2), + [10953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__after, 2), + [10955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__success, 2), + [10957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__success, 2), + [10959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__finished, 2), + [10961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__finished, 2), + [10963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__escaped, 3), + [10965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__escaped, 3), + [10967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unescaped, 3), + [10969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unescaped, 3), + [10971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_line_raw, 3), + [10973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_line_raw, 3), + [10975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment, 3), + [10977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment, 3), + [10979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_once, 3), + [10981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_once, 3), + [10983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3), + [10985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3), + [10987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__push, 3), + [10989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__push, 3), + [10991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pushOnce, 3), + [10993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pushOnce, 3), + [10995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_line_raw, 2), + [10997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_line_raw, 2), + [10999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__prepend, 3), + [11001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__prepend, 3), + [11003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__prependOnce, 3), + [11005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__prependOnce, 3), + [11007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if, 3), + [11009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if, 3), + [11011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unless, 3), + [11013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unless, 3), + [11015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__isset, 3), + [11017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__isset, 3), + [11019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty, 3), + [11021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty, 3), + [11023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__auth, 3), + [11025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__auth, 3), + [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [11029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__guest, 3), + [11031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__guest, 3), + [11033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__production, 3), + [11035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__production, 3), + [11037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__env, 3), + [11039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__env, 3), + [11041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hasSection, 3), + [11043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hasSection, 3), + [11045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sectionMissing, 3), + [11047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sectionMissing, 3), + [11049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__error, 3), + [11051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__error, 3), + [11053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__envoy_error, 3), + [11055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__envoy_error, 3), + [11057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__can, 3), + [11059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__can, 3), + [11061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cannot, 3), + [11063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cannot, 3), + [11065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__canany, 3), + [11067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__canany, 3), + [11069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__feature, 3), + [11071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__feature, 3), + [11073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__custom, 3), + [11075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__custom, 3), + [11077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch, 3), + [11079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch, 3), + [11081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for, 3), + [11083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for, 3), + [11085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pushIf, 3), + [11087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pushIf, 3), + [11089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__forelse, 3), + [11091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__forelse, 3), + [11093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__while, 3), + [11095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__while, 3), + [11097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__setup, 3), + [11099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__setup, 3), + [11101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__task, 3), + [11103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__task, 3), + [11105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__story, 3), + [11107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__story, 3), + [11109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__before, 3), + [11111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__before, 3), + [11113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__after, 3), + [11115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__after, 3), + [11117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__success, 3), + [11119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__success, 3), + [11121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__finished, 3), + [11123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__finished, 3), + [11125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__persist, 3), + [11127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__persist, 3), + [11129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__teleport, 3), + [11131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__teleport, 3), + [11133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__volt, 3), + [11135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__volt, 3), + [11137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 4, .production_id = 2), + [11139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 4, .production_id = 2), + [11141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inlineSection, 4, .production_id = 3), + [11143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inlineSection, 4, .production_id = 3), + [11145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch, 4), + [11147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch, 4), + [11149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive_parameter, 2), + [11151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__directive_parameter, 2), + [11153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach, 3), + [11155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach, 3), + [11157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 5, .production_id = 2), + [11159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 5, .production_id = 2), + [11161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inlineSection, 5, .production_id = 4), + [11163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inlineSection, 5, .production_id = 4), + [11165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 5, .production_id = 5), + [11167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 5, .production_id = 5), + [11169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch, 5), + [11171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch, 5), + [11173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 6, .production_id = 5), + [11175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 6, .production_id = 5), + [11177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inlineSection, 6, .production_id = 6), + [11179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inlineSection, 6, .production_id = 6), + [11181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch, 6), + [11183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch, 6), + [11185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alpine_js, 4), + [11187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alpine_js, 4), + [11189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(871), + [11192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(871), + [11195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive_parameter, 3), + [11197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__directive_parameter, 3), + [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [11201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [11205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(933), + [11208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(933), + [11211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(934), + [11214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(934), + [11217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(935), + [11220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(935), + [11223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(936), + [11226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(936), + [11229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(937), + [11232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(937), + [11235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(938), + [11238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(938), + [11241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(939), + [11244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(939), + [11247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(940), + [11250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(940), + [11253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [11257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(942), + [11260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(942), + [11263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [11267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(944), + [11270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(944), + [11273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(945), + [11276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(945), + [11279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [11285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(952), + [11288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(952), + [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [11293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [11299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [11305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [11311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [11317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [11323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [11329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [11335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [11343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [11351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [11355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [11361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1086), + [11364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1086), + [11367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [11373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1150), + [11376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1150), + [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [11381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [11385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1241), + [11388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1241), + [11391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [11395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1553), + [11398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1553), + [11401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1722), + [11404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1722), + [11407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1806), + [11410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1806), + [11413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1890), + [11416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1890), + [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [11423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), + [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [11503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [11509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [11517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [11527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [11535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [11595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), + [11597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(5425), + [11600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4125), + [11603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4125), + [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [11626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(5450), + [11629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4153), + [11632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4153), + [11635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(5513), + [11638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4144), + [11641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4144), + [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [12074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(5504), + [12077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4137), + [12080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4137), + [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [12085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [12111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [12153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [12155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [12161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [12163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [12187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [12201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(5383), + [12204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4158), + [12207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4158), + [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [12344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), + [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [12356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), + [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [12478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [12530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [12532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [12538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [12540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [12542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [12544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [12548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [12550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [12552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [12554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [12556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [12558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [12560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [12562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4102), + [12565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4102), + [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [12570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [12576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), + [12578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [12580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), + [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [12592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), + [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [12602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4113), + [12605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4113), + [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [12624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [12626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4123), + [12629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4123), + [12632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4124), + [12635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4124), + [12638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_php_only, 1), + [12640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [12646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4127), + [12649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4127), + [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [12670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [12686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), + [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [12700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4150), + [12703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4150), + [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [12710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [12714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [12716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [12722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [12744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [12746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [12748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [12750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [12752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [12770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [12786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [12790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), + [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [12796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [12798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [12800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [12802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [12804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [12812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4201), + [12815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4201), + [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [12846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [12858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), + [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [12862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4245), + [12864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4227), + [12867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4227), + [12870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), + [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [12876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), + [12878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [12882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4245), + [12885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4245), + [12888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4250), + [12891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4250), + [12894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4257), + [12897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4257), + [12900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4262), + [12903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4262), + [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [12908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), + [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [12918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4989), + [12920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [12928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [12930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [12936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [12938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [12948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [12952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__notification, 2), + [12954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__notification, 2), + [12956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [12960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [12962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [12964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [12970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [12974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [12976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [12978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [12980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [12982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [12984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [12986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [12988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [12990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [12992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [12994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [12996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [12998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), + [13000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [13004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [13008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [13010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), + [13012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [13014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [13020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), + [13022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), + [13024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), + [13026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), + [13028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [13030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), + [13032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [13034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [13036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [13038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [13040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [13042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [13044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [13050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), + [13052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), + [13054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text_with_parenthesis_repeat1, 2), SHIFT_REPEAT(4989), + [13057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__text_with_parenthesis_repeat1, 2), + [13059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [13061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [13063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [13065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [13067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [13069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [13071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_repeat1, 2), + [13073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_repeat1, 2), SHIFT_REPEAT(5171), + [13076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), + [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [13080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [13082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [13084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [13088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [13090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [13092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [13094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [13098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [13100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [13102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [13108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [13110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [13114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [13118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [13120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [13122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [13124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [13126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [13128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [13130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [13132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [13134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [13136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [13138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [13140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [13142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [13150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [13152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), + [13154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), + [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [13158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [13160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [13172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [13174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [13180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [13186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [13188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [13192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [13194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [13196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [13200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [13202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [13204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [13206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [13208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [13210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [13212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [13214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [13216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [13218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [13220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [13222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [13224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [13226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [13228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [13230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [13232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [13234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__text_with_parenthesis_repeat1, 2), SHIFT_REPEAT(5018), + [13237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [13239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [13241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [13243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [13245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [13247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [13249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [13251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [13253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [13255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [13257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [13259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [13261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [13263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [13265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), + [13267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [13269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [13271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [13273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [13275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [13277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [13279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [13281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [13283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), + [13285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [13287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [13289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [13291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [13293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), + [13295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [13297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [13299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [13301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [13303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [13305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [13307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [13309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [13311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [13313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [13315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [13317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [13319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section_parameter, 1), + [13321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), + [13323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), + [13325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1), + [13327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), + [13329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), + [13331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case, 3), + [13333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section_parameter, 2), + [13335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [13337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [13339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [13341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [13343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [13345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [13347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [13349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [13351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [13353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [13355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_with_parenthesis, 3), + [13357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [13359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section_parameter, 3), + [13361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [13363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [13365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [13367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [13369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_with_parenthesis, 4), + [13371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [13373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [13375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [13377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [13379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [13381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [13383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [13385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [13387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [13389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [13391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [13393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [13395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [13397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [13399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [13401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [13403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [13405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [13407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [13409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [13411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [13413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [13415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [13417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [13419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [13421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [13423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [13425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [13427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [13429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [13431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [13433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [13435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [13437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [13439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [13441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [13443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [13445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [13447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_with_parenthesis, 3), + [13449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [13451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [13453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [13455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [13457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_with_parenthesis, 4), + [13459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [13461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [13463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [13465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [13467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [13469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [13471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [13473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [13475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [13477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [13479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [13481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [13483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [13485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [13487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [13489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [13491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [13493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [13495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [13497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [13499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [13501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [13503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [13505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [13507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [13509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [13511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [13513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [13515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [13517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [13519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [13521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [13523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [13525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [13527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [13529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [13531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [13533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [13535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [13537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [13539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [13541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [13543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [13545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [13547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [13549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [13551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [13553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [13555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [13557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [13559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [13561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [13563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [13565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [13567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [13569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [13571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [13573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [13575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [13577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [13579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [13581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [13583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [13585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [13587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [13589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [13591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [13593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [13595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [13597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [13599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [13601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [13603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [13605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [13607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [13609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [13611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [13613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [13615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [13617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [13619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [13621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [13623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [13625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [13627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [13629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [13631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [13633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [13635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [13637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [13639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [13641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [13643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [13645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [13647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [13649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [13651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [13653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [13655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [13657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [13659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [13661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [13663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [13665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [13667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [13669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [13671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [13673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [13675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [13677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [13679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [13681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [13683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [13685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [13687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [13689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [13691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [13693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [13695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [13697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [13699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [13701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [13703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [13705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [13707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [13709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [13711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [13713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [13715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [13717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [13719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [13721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [13723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [13725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [13727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [13729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [13731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [13733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [13735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [13737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [13739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [13741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [13743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [13745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [13747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [13749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [13751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [13753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [13755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [13757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [13759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [13761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [13763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [13765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [13767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [13769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [13771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [13773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [13775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [13777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [13779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [13781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [13783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [13785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [13787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [13789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [13791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [13793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [13795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [13797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [13799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [13801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [13803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [13805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [13807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [13809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [13811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [13813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [13815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [13817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [13819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [13821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [13823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [13825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [13827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [13829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [13831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [13833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [13835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [13837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [13839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [13841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [13843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [13845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [13847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [13849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [13851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [13853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [13855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [13857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [13859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [13861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [13863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [13865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [13867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [13869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [13871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [13873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [13875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [13877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [13879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [13881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [13883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [13885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [13887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [13889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [13891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [13893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [13895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [13897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [13899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [13901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [13903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [13905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [13907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [13909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [13911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [13913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [13915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [13917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [13919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [13921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [13923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [13925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [13927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [13929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [13931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [13933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [13935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [13937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [13939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [13941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [13943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [13945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [13947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [13949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [13951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [13953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [13955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [13957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [13959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [13961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [13963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [13965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [13967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [13969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [13971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [13973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [13975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [13977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [13979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [13981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [13983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [13985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [13987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [13989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [13991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [13993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [13995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [13997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [13999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [14001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [14003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [14005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [14007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [14009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [14011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [14013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [14015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [14017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [14019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [14021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [14023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [14025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [14027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [14029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [14031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [14033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [14035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [14037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [14039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [14041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [14043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [14045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [14047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [14049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [14051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [14053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [14055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [14057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [14059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [14061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [14063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [14065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [14067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [14069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [14071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [14073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [14075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [14077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [14079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [14081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [14083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [14085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [14087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [14089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [14091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [14093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [14095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [14097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [14099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [14101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [14103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [14105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [14107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [14109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [14111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [14113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [14115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [14117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [14119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [14121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [14123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [14125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [14127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [14129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [14131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [14133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [14135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [14137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [14139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [14141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [14143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [14145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [14147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [14149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [14151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [14153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [14155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [14157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [14159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [14161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [14163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [14165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [14167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [14169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [14171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [14173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [14175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [14177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [14179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [14181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [14183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [14185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [14187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [14189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [14191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [14193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [14195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [14197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [14199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [14201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [14203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [14205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [14207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [14209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [14211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [14213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [14215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [14217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [14219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [14221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [14223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [14225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [14227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [14229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [14231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [14233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [14235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [14237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [14239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [14241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [14243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [14245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [14247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [14249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [14251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [14253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [14255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [14257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [14259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [14261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [14263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [14265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [14267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [14269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [14271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [14273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [14275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [14277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [14279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [14281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [14283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [14285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [14287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [14289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [14291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [14293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [14295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [14297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [14299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [14301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [14303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [14305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [14307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [14309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [14311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [14313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [14315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [14317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [14319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [14321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [14323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [14325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [14327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [14329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [14331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [14333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [14335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [14337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [14339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [14341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [14343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [14345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [14347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [14349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [14351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [14353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [14355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [14357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [14359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [14361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [14363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [14365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [14367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [14369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [14371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [14373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [14375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [14377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [14379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [14381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [14383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [14385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [14387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [14389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [14391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [14393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [14395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [14397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [14399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [14401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [14403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [14405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [14407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [14409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [14411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [14413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [14415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [14417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [14419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [14421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [14423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [14425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [14427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [14429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [14431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [14433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [14435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [14437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [14439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [14441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [14443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [14445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [14447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [14449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [14451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [14453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [14455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [14457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [14459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [14461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [14463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [14465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [14467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [14469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [14471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [14473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [14475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [14477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [14479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [14481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [14483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [14485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [14487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [14489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [14491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [14493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [14495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [14497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [14499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [14501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [14503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [14505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [14507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [14509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [14511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [14513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [14515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [14517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [14519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [14521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [14523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [14525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [14527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [14529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [14531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [14533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [14535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [14537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [14539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [14541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [14543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [14545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [14547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [14549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [14551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [14553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [14555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [14557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [14559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [14561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [14563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [14565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [14567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [14569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [14571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [14573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [14575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [14577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [14579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [14581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [14583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [14585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [14587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [14589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [14591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [14593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [14595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [14597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [14599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [14601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [14603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [14605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [14607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [14609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [14611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [14613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [14615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [14617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [14619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [14621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [14623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [14625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [14627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [14629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [14631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [14633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [14635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [14637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [14639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [14641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [14643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [14645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [14647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [14649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [14651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [14653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [14655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [14657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [14659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [14661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [14663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [14665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [14667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [14669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [14671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [14673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [14675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [14677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [14679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [14681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [14683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [14685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [14687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [14689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [14691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [14693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [14695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [14697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [14699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [14701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [14703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [14705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [14707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [14709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [14711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [14713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [14715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [14717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [14719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [14721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [14723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [14725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [14727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [14729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [14731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [14733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [14735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [14737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [14739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [14741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [14743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [14745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [14747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [14749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [14751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [14753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [14755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [14757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [14759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [14761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [14763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [14765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [14767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [14769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [14771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [14773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [14775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [14777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [14779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [14781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [14783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [14785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [14787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [14789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [14791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [14793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [14795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [14797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [14799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [14801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [14803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [14805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [14807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [14809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [14811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [14813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [14815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [14817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [14819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [14821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [14823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [14825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [14827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [14829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [14831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [14833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [14835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [14837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [14839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [14841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [14843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [14845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [14847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [14849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [14851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [14853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [14855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [14857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [14859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [14861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [14863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [14865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [14867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [14869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [14871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [14873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [14875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [14877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [14879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [14881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [14883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [14885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [14887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [14889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [14891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [14893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [14895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [14897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [14899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [14901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [14903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [14905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [14907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [14909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [14911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [14913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [14915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [14917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [14919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [14921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [14923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [14925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [14927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [14929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [14931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [14933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [14935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [14937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [14939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [14941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [14943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [14945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [14947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [14949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [14951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [14953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [14955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [14957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [14959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [14961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [14963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [14965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [14967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [14969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [14971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [14973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [14975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [14977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [14979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [14981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [14983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [14985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [14987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [14989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [14991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [14993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [14995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [14997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [14999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [15001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [15003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [15005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [15007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [15009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [15011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [15013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [15015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [15017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [15019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [15021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [15023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [15025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [15027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [15029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [15031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [15033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [15035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [15037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [15039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [15041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [15043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [15045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [15047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [15049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [15051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [15053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [15055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [15057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [15059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [15061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [15063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [15065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [15067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [15069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [15071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [15073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [15075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [15077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [15079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [15081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [15083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [15085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [15087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [15089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [15091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [15093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [15095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [15097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [15099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [15101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [15103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [15105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [15107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [15109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [15111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [15113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [15115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [15117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [15119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [15121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [15123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [15125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [15127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [15129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [15131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [15133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [15135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [15137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [15139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [15141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [15143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [15145] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [15147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [15149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [15151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [15153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [15155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [15157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [15159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [15161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [15163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [15165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [15167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [15169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [15171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [15173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [15175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [15177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [15179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [15181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [15183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [15185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [15187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [15189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [15191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [15193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [15195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [15197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [15199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [15201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [15203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [15205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [15207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [15209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [15211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [15213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [15215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [15217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [15219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [15221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [15223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [15225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [15227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [15229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [15231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [15233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [15235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [15237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [15239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [15241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [15243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [15245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [15247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [15249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [15251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [15253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [15255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [15257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [15259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [15261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [15263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [15265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [15267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [15269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [15271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [15273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [15275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [15277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [15279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [15281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [15283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [15285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [15287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [15289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [15291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [15293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [15295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [15297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [15299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [15301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [15303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [15305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [15307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [15309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [15311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [15313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [15315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [15317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [15319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [15321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [15323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [15325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [15327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [15329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [15331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [15333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [15335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [15337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [15339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [15341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [15343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [15345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [15347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [15349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [15351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [15353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [15355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [15357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [15359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [15361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [15363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [15365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [15367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [15369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [15371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [15373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [15375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [15377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [15379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [15381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [15383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [15385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [15387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [15389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [15391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [15393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [15395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [15397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [15399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [15401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [15403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [15405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [15407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [15409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [15411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [15413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [15415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [15417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [15419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [15421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [15423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [15425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [15427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [15429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [15431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [15433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [15435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [15437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [15439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [15441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [15443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [15445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [15447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [15449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [15451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [15453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [15455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [15457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [15459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [15461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [15463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [15465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [15467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [15469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [15471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [15473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [15475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [15477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [15479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [15481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [15483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [15485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [15487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [15489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [15491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [15493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [15495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [15497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [15499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [15501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [15503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [15505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [15507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [15509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [15511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [15513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [15515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [15517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [15519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [15521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [15523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [15525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [15527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [15529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [15531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [15533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [15535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [15537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [15539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [15541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [15543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [15545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [15547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [15549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [15551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [15553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [15555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [15557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [15559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [15561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [15563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [15565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [15567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [15569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [15571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [15573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [15575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [15577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [15579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [15581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [15583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [15585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [15587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [15589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [15591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [15593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [15595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [15597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [15599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [15601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [15603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [15605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [15607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [15609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [15611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [15613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [15615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [15617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [15619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [15621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [15623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [15625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [15627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [15629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [15631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [15633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [15635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [15637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [15639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [15641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [15643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [15645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [15647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [15649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [15651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [15653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [15655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [15657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [15659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [15661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [15663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [15665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [15667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [15669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [15671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [15673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [15675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [15677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [15679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [15681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [15683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [15685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [15687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [15689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [15691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [15693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [15695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [15697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [15699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [15701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [15703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [15705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [15707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [15709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [15711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [15713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [15715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [15717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [15719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [15721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [15723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [15725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [15727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [15729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [15731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [15733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [15735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [15737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [15739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [15741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [15743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [15745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [15747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [15749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [15751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [15753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [15755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [15757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [15759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [15761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [15763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [15765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [15767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [15769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [15771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [15773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [15775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [15777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [15779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [15781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [15783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [15785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [15787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [15789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [15791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [15793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [15795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [15797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [15799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [15801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [15803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [15805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [15807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [15809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [15811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [15813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [15815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [15817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [15819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [15821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [15823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [15825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [15827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [15829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [15831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [15833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [15835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [15837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [15839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [15841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [15843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [15845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [15847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [15849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [15851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [15853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [15855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [15857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [15859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [15861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [15863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [15865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [15867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [15869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [15871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [15873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [15875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [15877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [15879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [15881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [15883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [15885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [15887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [15889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [15891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [15893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [15895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [15897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [15899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [15901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [15903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [15905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [15907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [15909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [15911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [15913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [15915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [15917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [15919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [15921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [15923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [15925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [15927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [15929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [15931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [15933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [15935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [15937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [15939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [15941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [15943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [15945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [15947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [15949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [15951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [15953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [15955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [15957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [15959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [15961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [15963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [15965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [15967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [15969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [15971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [15973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [15975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [15977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [15979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [15981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [15983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [15985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [15987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [15989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [15991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [15993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [15995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [15997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [15999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [16001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [16003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [16005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [16007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [16009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [16011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [16013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [16015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [16017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [16019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [16021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [16023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [16025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [16027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [16029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [16031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [16033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [16035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [16037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [16039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [16041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [16043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [16045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [16047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [16049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [16051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [16053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [16055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [16057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [16059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [16061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [16063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [16065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [16067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [16069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [16071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [16073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [16075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [16077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [16079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [16081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [16083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [16085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [16087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [16089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [16091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [16093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [16095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [16097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [16099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [16101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [16103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [16105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [16107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [16109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [16111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [16113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [16115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [16117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [16119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [16121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [16123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [16125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [16127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [16129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [16131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [16133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [16135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [16137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [16139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [16141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [16143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [16145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [16147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [16149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [16151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [16153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [16155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [16157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [16159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [16161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), }; #ifdef __cplusplus